/* ========== BASIS & VARIABLEN ========== */
/* CSS Variables */
:root {
    --primary-orange: #FF6600;
    --primary-orange-dark: #e55c00;
    --primary-orange-light: #ff8533;
    --primary-blue: #1a3a5c;
    --primary-blue-light: #2a4a6c;
    --primary-blue-dark: #0f2a42;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #e0e0e0;
    --dark-gray: #666666;
    --text-dark: #333333;
    --text-light: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-blue);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-orange-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

ul {
    list-style: none;
}

/* ========== HEADER ========== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.logo-icon {
    font-size: 2rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Desktop: margin-right 250px */
@media (min-width: 1025px) {
    .header-right {
        margin-right: 250px;
    }
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding-top: 5rem;
    z-index: 999;
}

.nav.active {
    right: 0;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
}

/* CTA Phone Button */
.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.625rem 1rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-phone:hover {
    background: var(--primary-orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-icon {
    font-size: 1.25rem;
}

.cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cta-label {
    font-size: 0.7rem;
    opacity: 0.9;
}

.cta-number {
    font-weight: 700;
    font-size: 0.9rem;
}

/* ========== MOBILE MENU BUTTON ========== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== NAV OVERLAY ========== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== MOBILE NAVIGATION ========== */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }

    .header-right {
        display: flex;
        align-items: center;
    }

    .cta-phone {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100%;
        background: var(--white);
        z-index: 10000;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 15px rgba(0,0,0,0.15);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.25rem;
        display: block;
        padding: 0.75rem 0;
        border-left: 4px solid transparent;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--light-gray);
        border-left-color: var(--primary-orange);
    }

    /* Mobile CTA anzeigen im Menu */
    .nav .cta-phone {
        display: flex;
        margin-top: 2rem;
    }

    /* Body scroll lock wenn Menu offen */
    body.menu-open {
        overflow: hidden;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: rgba(255, 102, 0, 0.15);
    transform: rotate(-15deg);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.hero h1 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
    border-color: var(--primary-orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
}

/* ========== FEATURES ========== */
.features {
    padding: 3rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    gap: 1.25rem;
}

.feature-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border-left: 4px solid var(--primary-orange);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 3rem 0;
    background: var(--primary-blue);
    color: var(--text-light);
}

.about h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about p {
    color: rgba(255, 255, 255, 0.9);
}

.about-list {
    list-style: none;
    margin-top: 1.5rem;
}

.about-list li {
    padding: 0.5rem 0;
    color: var(--primary-orange-light);
    font-weight: 500;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
    padding: 3rem 0;
    background: var(--white);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-item {
    background: var(--light-gray);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
}

.service-item::before {
    content: '→';
    color: var(--primary-orange);
    margin-right: 0.75rem;
    font-weight: 700;
}

.services-preview .btn {
    display: block;
    text-align: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 3rem 0;
    background: var(--light-gray);
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-text {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.contact-info {
    display: grid;
    gap: 1.25rem;
}

.contact-item {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item strong {
    color: var(--primary-blue);
    display: block;
    font-size: 0.875rem;
}

.contact-item a {
    color: var(--primary-orange);
    font-weight: 600;
}

/* ========== FOOTER ========== */
.footer {
    background: #2c3e50;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-left: 5px;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ============================================
   LEISTUNGEN PAGE
   ============================================ */
.page-header {
    background: var(--primary-blue);
    padding: 2rem 0;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: rgba(255, 102, 0, 0.1);
    transform: rotate(-15deg);
}

.page-header h1 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-header-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.page-content {
    padding: 2rem 0;
}

.service-section {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.service-section h3 {
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-section p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ========== LEISTUNGEN GRID ========== */
.leistungen-section {
    padding: 3rem 0;
    background: var(--white);
}

.leistungen-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.leistung-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leistung-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.leistung-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gray);
}

.leistung-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leistung-card:hover .leistung-image img {
    transform: scale(1.05);
}

.leistung-content {
    padding: 1.5rem;
}

.leistung-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.leistung-content p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.leistung-content ul {
    list-style: none;
    padding: 0;
}

.leistung-content ul li {
    padding: 0.35rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.leistung-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

/* ========== LEISTUNGEN CTA ========== */
.leistungen-cta {
    text-align: center;
    background: var(--primary-blue);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
}

.leistungen-cta h2 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   IMPRESSUM & DATENSCHUTZ PAGE
   ============================================ */
.legal-section {
    padding: 2rem 0 3rem;
    background: var(--light-gray);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-block {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.legal-block h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.legal-block h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    color: var(--primary-blue);
}

.legal-block h3:first-child {
    margin-top: 0;
}

.legal-block p,
.legal-block li {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-block ul {
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

.legal-block li {
    margin-bottom: 0.5rem;
}

.legal-block a {
    color: var(--primary-orange);
    word-break: break-word;
}

.legal-block a:hover {
    text-decoration: underline;
}

.legal-date {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ============================================
   FOCUS STYLES
   ============================================ */
a:focus,
button:focus {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

/* ============================================
   RESPONSIVE: MOBILE FIRST (Default)
   ============================================ */

/* ========== RESPONSIVE: Mobile ========== */
@media (max-width: 768px) {
    .leistungen-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE: TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    body {
        font-size: 17px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .service-section {
        padding: 2rem;
    }
}

/* ============================================
   RESPONSIVE: DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    body {
        font-size: 18px;
    }

    /* Navigation Desktop */
    .mobile-menu-btn {
        display: none;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .nav {
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding-top: 0;
        margin-right: 150px;
        margin-left: 100px;
    }

    .nav-list {
        display: flex;
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: var(--border-radius-sm);
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--light-gray);
        border-left: none;
        border-bottom-color: var(--primary-orange);
    }

    /* Hero */
    .hero {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 2.75rem;
        max-width: 700px;
    }

    .hero-content {
        max-width: 600px;
    }

    /* Features */
    .features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* About */
    .about {
        padding: 4rem 0;
    }

    .about-content {
        max-width: 800px;
    }

    /* Services */
    .services-preview {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* Contact */
    .contact {
        padding: 4rem 0;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    /* Page Header */
    .page-header {
        padding: 3.5rem 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header-subtitle {
        font-size: 1.25rem;
    }

    /* Page Content */
    .page-content {
        padding: 3rem 0;
    }

    .service-section {
        padding: 2rem;
    }

    /* Leistungen */
    .leistungen-section {
        padding: 4rem 0;
    }

    .leistungen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leistung-image {
        height: 220px;
    }

    .leistung-content {
        padding: 2rem;
    }

    .leistungen-cta {
        padding: 3rem;
    }

    .leistungen-cta h2 {
        font-size: 1.75rem;
    }

    /* Legal Pages */
    .legal-section {
        padding: 3rem 0 4rem;
    }

    .legal-content {
        padding: 3rem 0;
    }

    .legal-block {
        padding: 2rem;
    }
}

/* ============================================
   RESPONSIVE: LARGE DESKTOP (1200px+)
   ============================================ */
@media (min-width: 1200px) {
    /* Page Header */
    .page-header {
        padding: 4rem 0;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    /* Leistungen */
    .leistungen-section {
        padding: 5rem 0;
    }

    .leistungen-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .leistung-image {
        height: 250px;
    }

    .leistung-content {
        padding: 2rem;
    }

    .leistung-content h3 {
        font-size: 1.35rem;
    }

    .leistungen-cta {
        padding: 4rem;
    }

    .leistungen-cta h2 {
        font-size: 2rem;
    }

    /* Legal Pages */
    .legal-section {
        padding: 4rem 0 5rem;
    }

    .legal-content {
        padding: 4rem 0;
    }

    .legal-block {
        padding: 2.5rem;
    }
}

/* ============================================
   ACCESSIBILITY: Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }

    body {
        font-size: 12pt;
    }
}







/* ============================================
   TEASER
   ============================================ */

/* --- HERO BUTTONS --- */
.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
}

/* --- TEASER SECTION --- */
.teaser {
    padding: 60px 0;
    background: #f8f9fa;
}

.teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.teaser-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.teaser-badge {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.teaser-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.teaser-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.teaser-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.teaser-list li {
    padding: 8px 0;
    color: #333;
}

@media (max-width: 768px) {
    .teaser-grid {
        grid-template-columns: 1fr;
    }
    .teaser-image {
        order: -1;
    }
}

/* --- SECTION TITLES --- */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff8533 0%, #e55c00 100%);
    color: #fff;
}

.testimonials .section-title {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-stars {
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 60px 0;
    background: #2c3e50;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #2c3e50;
}



/* ============================================
   FOOTER
   ============================================ */

/* --- FOOTER --- */
.footer {
    background: ##1a3a5c;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-nav {
margin-left: 50px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    max-width: 250px;
}

.footer-contact h4,
.footer-nav h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e67e22;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-list .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 16px;
}

.contact-list .contact-icon {
    font-size: 16px;
}

.contact-list a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: #e67e22;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e67e22;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 13px;
}

.footer-links {
margin-left: 5px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    .contact-list .contact-item {
        justify-content: center;
    }
}

/* ============================================
   TOOLBOX
   ============================================ */

.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip-box {
  visibility: hidden;
  width: 600px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Positioniert die Box über dem Begriff */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-container:hover .tooltip-box {
  visibility: visible;
  opacity: 1;
}


/* ============================================
   AKTION
   ============================================ */
/* --- AKTION HERO --- */
.aktion-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.aktion-badge {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aktion-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.aktion-subtitle {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.aktion-text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* --- AKTION DETAILS --- */
.aktion-details {
    padding: 60px 0;
    background: #f8f9fa;
}

.aktion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.aktion-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.aktion-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.aktion-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.aktion-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background: #e67e22;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.step-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.aktion-conditions {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.aktion-conditions p {
    margin: 8px 0;
    color: #333;
}

/* --- AKTION VORTEILE --- */
.aktion-vorteile {
    padding: 60px 0;
}

.aktion-vorteile h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.vorteil-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vorteil-icon {
    width: 50px;
    height: 50px;
    background: #e67e22;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.vorteil-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.vorteil-card p {
    color: #666;
    font-size: 14px;
}

/* --- AKTION CTA --- */
.aktion-cta {
    background: #2c3e50;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.aktion-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.aktion-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.aktion-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.aktion-contact {
    margin-top: 20px;
    color: #aaa;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .aktion-grid {
        grid-template-columns: 1fr;
    }
    
    .aktion-image {
        order: -1;
    }
    
    .aktion-hero h1 {
        font-size: 28px;
    }
    
    .aktion-subtitle {
        font-size: 22px;
    }
    
    .vorteile-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .vorteile-grid {
        grid-template-columns: 1fr;
    }
}