/* Header Booking Button */
.header-booking-btn {
    display: inline-block;
    background: var(--brand-blue);
    color: var(--text-light);
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 1.08em;
    margin-left: 30px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 10px rgba(0, 95, 115, 0.13);
    text-decoration: none;
    white-space: nowrap;
}
.header-booking-btn:hover {
    background: #004452;
    transform: scale(1.04);
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: none;
    border: 2px solid var(--brand-blue);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-left: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dark-mode-toggle:hover {
    background: var(--brand-blue);
    transform: scale(1.1);
}

.toggle-icon {
    font-size: 1.2em;
    transition: all 0.3s ease;
    position: absolute;
}

.dark-mode-toggle .dark-icon {
    opacity: 0;
    transform: translateY(20px);
}

.dark-mode-toggle .light-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Dark mode active state */
body.dark-mode .dark-mode-toggle .dark-icon {
    opacity: 1;
    transform: translateY(0);
}

body.dark-mode .dark-mode-toggle .light-icon {
    opacity: 0;
    transform: translateY(-20px);
}

@media (max-width: 900px) {
    .header-booking-btn {
        margin-left: 10px;
        padding: 11px 16px;
        font-size: 1em;
    }
    
    .dark-mode-toggle {
        width: 40px;
        height: 40px;
        margin-left: 10px;
    }
    
    .toggle-icon {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .header-booking-btn {
        display: block;
        margin: 18px auto 0 auto;
        width: 90%;
        text-align: center;
    }
    
    .dark-mode-toggle {
        position: absolute;
        right: 60px;
        top: 10px;
        margin: 0;
    }
}
/* Basisstile */
:root {
    --brand-blue: #005f73;
    --brand-blue-dark: #003d47;
    --brand-green-dark: #2a9d8f;
    --brand-green-darker: #1a6b61;
    --brand-green-light: #94d2bd;
    --bg-light: #f4f7f6;
    --bg-accent: #e8f7f4;
    --text-dark: #333;
    --text-light: #ffffff;
    --danger-red: #d90429;
}

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
            margin: 0;
            padding: 0;
        }

        /* --- NAVIGATION --- */
        /* Navigation Container - Layout Stabilisierung */
        [data-include="includes/navigation.html"] {
            min-height: 75px;
            display: block;
        }
        
        .main-nav {
            background-color: var(--text-light);
            padding: 15px 40px;
            border-bottom: 0.5px solid #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .main-nav .logo-link {
            display: block;
            height: 45px;
            order: 1; /* Logo bleibt immer links */
        }
        .main-nav .logo-svg {
            height: 100%;
            width: auto;
        }
        .main-nav ul {
            list-style: none;
            margin: 0 auto; /* Zentriert die Navigationspunkte */
            padding: 0;
            display: flex;
            justify-content: center; /* Stellt sicher, dass die Items zentriert sind */
            gap: 35px;
            order: 2; /* Navigation in der Mitte */
        }
        .main-nav a {
            text-decoration: none;
            color: var(--brand-blue);
            font-weight: 600;
            font-size: 1.05em; /* Leicht vergrößert für mehr Präsenz */
            transition: color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--brand-green-dark);
        }

        /* Burger Menu Button - Hidden by default, positioned right */
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            order: 3; /* Burger Menu immer rechts */
            background: none;
            border: none;
            outline: none;
        }

        .burger-menu span {
            width: 25px;
            height: 3px;
            background-color: var(--brand-blue);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Burger menu animation when active */
        .burger-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .container {
            max-width: 850px;
            margin: 20px auto;
            background-color: var(--text-light);
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        
        /* --- HEADER (JETZT MIT PROMINENTEM LOGO) --- */
        header {
            text-align: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
        }
        
        .header-logo-prominent {
            display: block;
            margin: 0 auto 30px auto; /* Zentriert das Logo und schafft Abstand nach unten */
            width: 120px; /* Definierte Größe für starken visuellen Anker */
            height: auto;
        }
        
        .main-headline {
            font-size: 2.4em;
            color: var(--brand-blue);
            font-weight: 700;
            line-height: 1.2;
            margin: 10px 0;
        }

        .sub-headline {
            font-size: 1.25em;
            font-weight: 400;
            max-width: 700px;
            margin: 15px auto 0 auto;
            color: #555;
        }

        /* ... (restliches CSS bleibt unverändert) ... */
        h2 { font-size: 2em; font-weight: 600; color: var(--brand-blue); border-bottom: 3px solid var(--brand-green-light); padding-bottom: 10px; margin-top: 50px; margin-bottom: 30px; text-align: center; }
        .problem-section { background-color: var(--bg-accent); padding: 25px; margin: 40px 0; border-radius: 8px; border: 1px solid var(--brand-green-light); }
        .problem-section h3 { text-align: center; margin-top: 0; font-size: 1.5em; color: var(--brand-blue); }
        .problem-list { list-style-type: none; padding-left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
        .problem-list li { position: relative; padding-left: 28px; }
        .problem-list li::before { content: '❌'; position: absolute; left: 0; font-size: 1.1em; }
        
        /* Solution Section - Positive styling */
        .solution-section { 
            background: linear-gradient(135deg, rgba(42,157,143,0.1) 0%, rgba(148,210,189,0.15) 100%); 
            padding: 30px; 
            margin: 40px 0; 
            border-radius: 10px; 
            border: 2px solid var(--brand-green-light); 
            box-shadow: 0 4px 15px rgba(42,157,143,0.1);
        }
        .solution-section h2 { 
            text-align: center; 
            margin-top: 0; 
            font-size: 1.8em; 
            color: var(--brand-green-dark); 
            border-bottom: 3px solid var(--brand-green-dark);
            padding-bottom: 15px;
            margin-bottom: 25px;
        }
        .solution-list { 
            list-style-type: none; 
            padding-left: 0; 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 15px 25px; 
        }
        .solution-list li { 
            position: relative; 
            padding-left: 35px; 
            padding: 12px 0 12px 35px;
            background-color: rgba(255,255,255,0.7);
            border-radius: 6px;
            border-left: 4px solid var(--brand-green-dark);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .solution-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 2px 8px rgba(42,157,143,0.2);
        }
        .solution-list li::before { 
            content: '✓'; 
            position: absolute; 
            left: 8px; 
            top: 12px;
            font-size: 1.3em; 
            color: var(--brand-green-dark);
            font-weight: bold;
        }
        .cta-section { text-align: center; background-color: var(--brand-blue-dark); color: var(--text-light); padding: 40px; border-radius: 8px; margin-top: 40px; box-shadow: 0 4px 16px rgba(0, 61, 71, 0.2); }
        .cta-section h2 { color: var(--text-light); border-bottom-color: var(--brand-green-light); font-size: 2.2em; margin-top: 0; }
        .cta-button { display: inline-block; background-color: var(--brand-blue); color: var(--text-light); padding: 18px 35px; text-decoration: none; font-weight: 700; border-radius: 8px; margin-top: 20px; font-size: 1.2em; transition: transform 0.2s, background-color 0.3s; box-shadow: 0 2px 8px rgba(0, 95, 115, 0.3); }
        .cta-button:hover { background-color: #004452; transform: scale(1.05); }
        
        /* New Homepage CTA Styles */
        .cta-button-secondary { 
            display: inline-block; 
            background-color: var(--brand-blue); 
            color: var(--text-light); 
            padding: 15px 30px; 
            text-decoration: none; 
            font-weight: 600; 
            border-radius: 8px; 
            margin-top: 15px; 
            font-size: 1.1em; 
            transition: transform 0.2s, background-color 0.3s; 
        }
        .cta-button-secondary:hover { 
            background-color: #004452; 
            transform: scale(1.02); 
        }
        
        .cta-button-outline { 
            display: inline-block; 
            background-color: transparent; 
            color: var(--text-light); 
            border: 2px solid var(--text-light); 
            padding: 16px 30px; 
            text-decoration: none; 
            font-weight: 600; 
            border-radius: 8px; 
            margin-top: 15px; 
            font-size: 1.1em; 
            transition: all 0.3s; 
        }
        .cta-button-outline:hover { 
            background-color: var(--text-light); 
            color: var(--brand-blue); 
            transform: scale(1.02); 
        }
        
        /* Homepage Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, var(--bg-accent) 0%, white 100%);
            padding: 35px;
            margin: 30px 0;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border: 2px solid var(--brand-green-light);
            border-left: 5px solid var(--brand-green-dark);
        }
        
        .highlight-box h3 {
            color: var(--brand-blue);
            font-size: 1.8em;
            margin-top: 0;
            margin-bottom: 20px;
            text-align: center;
        }
        
        /* Quick Win CTA Box - special styling for analyze page */
        .quick-win-cta {
            background: linear-gradient(135deg, rgba(42,157,143,0.1) 0%, rgba(148,210,189,0.2) 100%);
            padding: 25px 30px;
            margin: 25px 0;
            border-radius: 10px;
            border: 2px solid var(--brand-green-light);
            border-left: 5px solid var(--brand-green-dark);
            box-shadow: 0 4px 15px rgba(42,157,143,0.15);
            text-align: center;
        }
        
        .quick-win-cta p {
            margin: 0 0 20px 0;
            font-size: 1.1em;
            color: var(--brand-blue);
            line-height: 1.5;
        }
        
        .quick-win-cta strong {
            color: var(--brand-green-dark);
            font-weight: 700;
        }
        
        .quick-win-cta .cta-button {
            background: var(--brand-blue);
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 95, 115, 0.3);
        }
        
        .quick-win-cta .cta-button:hover {
            background: #004452;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 95, 115, 0.4);
        }
        
        .benefit-preview {
            margin: 25px 0;
        }
        
        .preview-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .preview-list li {
            padding: 12px 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-left: 4px solid var(--brand-green-dark);
        }
        
        .masterclass-cta {
            text-align: center;
            margin-top: 30px;
            padding: 25px;
            background: white;
            border-radius: 8px;
            border: 2px dashed var(--brand-green-dark);
        }
        
        /* Homepage CTA Options Layout */
        .cta-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }
        
        .cta-primary, .cta-secondary {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            text-align: center;
        }
        
        .cta-primary h3, .cta-secondary h3 {
            color: var(--text-light);
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.3em;
        }
        
        .cta-primary p, .cta-secondary p {
            color: #ddd;
            margin-bottom: 20px;
        }

/* Masterclass Page Specific Styles */
.highlight-premium {
    position: relative;
    border: 3px solid var(--brand-green-dark) !important;
    background: linear-gradient(135deg, var(--bg-accent) 0%, white 100%) !important;
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9em;
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.workshop-cta {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: rgba(42, 157, 143, 0.1);
    border-radius: 8px;
    border: 2px dashed var(--brand-green-dark);
}

.workshop-cta p.risk-reversal {
    margin-top: 15px;
    font-size: 0.9em;
    color: var(--brand-blue);
    font-weight: 600;
}

.urgency-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 30px;
    margin: 40px 0;
    border-radius: 12px;
    border-left: 5px solid #f39c12;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
}

.urgency-section h2 {
    color: #d68910;
    text-align: center;
    margin-top: 0;
    font-size: 2em;
}

#workshop-packages {
    scroll-margin-top: 100px;
}

/* New CTA Section Styles */
.primary-cta-section {
    text-align: center;
    margin: 40px 0 30px 0;
}

.cta-button-primary {
    display: inline-block;
    background-color: var(--brand-blue);
    color: var(--text-light);
    padding: 25px 50px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.4em;
    transition: transform 0.2s, background-color 0.3s;
    box-shadow: 0 6px 20px rgba(0, 95, 115, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-primary:hover {
    background-color: #004452;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 95, 115, 0.4);
}

.secondary-cta-section {
    text-align: center;
    margin: 30px 0;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-radius: 0;
}

.consultation-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.9em;
    margin-bottom: 10px;
    line-height: 1.5;
}

.consultation-link {
    color: var(--brand-green-dark);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 600;
    transition: color 0.3s;
    border-bottom: 1px dotted var(--brand-green-dark);
}

.consultation-link:hover {
    color: var(--brand-blue);
    border-bottom-color: var(--brand-blue);
}
        
        /* Credibility Box */
        .credibility-box {
            background-color: var(--bg-accent);
            padding: 25px;
            margin: 40px 0;
            border-radius: 8px;
            border-left: 5px solid var(--brand-green-dark);
        }
        
        .credibility-box h3 {
            text-align: center;
            margin-top: 0;
            font-size: 1.5em;
            color: var(--brand-blue);
        }
        
        .credibility-list {
            columns: 2;
            -webkit-columns: 2;
            -moz-columns: 2;
            column-gap: 30px;
            list-style: none;
            padding: 0;
        }

        .credibility-list li {
            padding: 8px 0;
            border-left: 3px solid var(--brand-green-light);
            padding-left: 15px;
            margin: 10px 0;
            break-inside: avoid;
        }

        .credibility-list li a {
            color: var(--brand-blue);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .credibility-list li a:hover {
            color: var(--brand-green-darker);
            border-bottom: 1px solid var(--brand-green-darker);
            text-decoration: none;
        }
        
        .risk-reversal {
            font-size: 0.9em;
            color: #ccc;
            margin-top: 10px;
        }
        
        /* About Page Specific Styles */
        .about-hero {
            display: flex;
            align-items: center;
            gap: 40px;
            margin: 40px 0;
            padding: 40px;
            background-color: var(--bg-accent);
            border-radius: 8px;
        }
        
        .profile-photo {
            width: 300px;
            height: 300px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid var(--brand-green-light);
            flex-shrink: 0;
        }
        
        .hero-text h1 {
            color: var(--brand-blue);
            margin-bottom: 20px;
            font-size: 2.2em;
        }
        
        .hero-text p {
            font-size: 1.1em;
            line-height: 1.7;
            color: var(--text-dark);
        }
        
        .philosophy-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }
        
        .philosophy-item {
            background-color: var(--bg-accent);
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid var(--brand-green-dark);
        }
        
        .philosophy-item h3 {
            color: var(--brand-blue);
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 1.3em;
        }
        
        .philosophy-item p {
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        .strong {
            font-weight: 700;
            color: var(--brand-blue);
        }
        
        footer { text-align: center; margin-top: 40px; padding: 20px; font-size: 0.9em; color: #777; }
        footer a { color: #555; text-decoration: none; }
        footer a:hover { text-decoration: underline; }
        
        @media (max-width: 768px) {
            /* Show burger menu on mobile */
            .burger-menu {
                display: flex;
            }

            /* Hide navigation menu by default on mobile */
            .main-nav ul {
                position: fixed;
                top: 76px; /* Height of nav bar */
                left: -100%;
                width: 100%;
                height: calc(100vh - 76px);
                background-color: var(--text-light);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                gap: 0;
                padding-top: 50px;
                transition: left 0.3s ease;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                z-index: 999;
            }

            /* Show menu when active */
            .main-nav ul.active {
                left: 0;
            }

            /* Style mobile menu items */
            .main-nav ul li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid #f0f0f0;
            }

            .main-nav ul li a {
                display: block;
                padding: 20px;
                font-size: 1.2em;
                width: 100%;
                transition: background-color 0.2s;
            }

            .main-nav ul li a:hover,
            .main-nav ul li a.active {
                color: var(--brand-green-dark);
            }

            /* Adjust main navigation for mobile - Logo links, Burger rechts */
            .main-nav {
                padding: 15px 20px;
                justify-content: space-between; /* Logo links, Burger rechts */
            }

            /* Logo bleibt sichtbar und links */
            /* Navigation Container - Mobile Layout Stabilisierung */
            [data-include="includes/navigation.html"] {
                min-height: 75px;
            }
            
            .main-nav .logo-link {
                display: block;
                height: 45px;
            }

            /* Navigation Menu wird versteckt */
            .main-nav ul {
                order: 4; /* Menu kommt nach allem anderen */
            }

            /* Other existing mobile styles */
            .problem-list { grid-template-columns: 1fr; }
            .container { padding: 20px; }
            .main-headline { font-size: 2em; }
            .credibility-list { columns: 1; -webkit-columns: 1; -moz-columns: 1; }
            
            /* About page mobile styles */
            .about-hero {
                flex-direction: column;
                text-align: center;
                padding: 25px;
                gap: 25px;
            }
            
            .profile-photo {
                width: 200px;
                height: 200px;
            }
            
            .hero-text h1 {
                font-size: 1.8em;
            }
            
            .philosophy-section {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .philosophy-item {
                padding: 20px;
            }
            
            /* New Homepage Mobile Styles */
            .preview-list {
                grid-template-columns: 1fr;
            }
            
            .cta-options {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .highlight-box {
                padding: 25px 20px;
            }
            
            .masterclass-cta {
                padding: 20px 15px;
            }
            
            /* New CTA Section Mobile Styles */
            .cta-button-primary {
                padding: 20px 30px;
                font-size: 1.2em;
            }
            
            .secondary-cta-section {
                padding: 20px 15px;
            }
            
            .consultation-text {
                font-size: 0.95em;
            }
        }

/* Analyse Page Specific Styles */
/* Header & Headlines for Analyse Page */
#analysis-tool h1 {
    font-size: 2.4em;
    color: var(--brand-blue);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 15px;
}

#analysis-tool .sub-headline {
    font-size: 1.25em;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #555;
    text-align: center;
}

.question-block {
    margin-bottom: 40px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 25px;
}

.question-block:last-of-type {
    border-bottom: none;
}

.question-block label {
    display: block;
    font-size: 1.3em;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 15px;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #777;
    margin-top: 5px;
}

.slider-container {
    position: relative;
    margin: 10px 0;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    outline: none;
    opacity: 0.8;
    transition: opacity .2s;
    position: relative;
    z-index: 2;
}

input[type="range"]:hover {
    opacity: 1;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: var(--brand-green-dark);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: var(--brand-green-dark);
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.1s ease;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.slider-ticks {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
}

.slider-ticks span {
    width: 2px;
    height: 16px;
    background: #bbb;
    border-radius: 1px;
    transform: translateY(-7px);
}

.slider-ticks span:first-child,
.slider-ticks span:last-child {
    background: #888;
}

/* Result Gate Styling (Lead Magnet) */
#result-gate {
    background-color: var(--bg-accent);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed var(--brand-green-dark);
}

#result-gate h2 {
    font-size: 2em;
    color: var(--brand-blue);
    margin-top: 0;
}

#score-display {
    font-size: 4em;
    font-weight: 700;
    color: var(--brand-green-dark);
    line-height: 1;
}

#score-text {
    font-size: 1.2em;
    color: var(--brand-blue);
    font-weight: 600;
}

#result-gate p {
    max-width: 500px;
    margin: 20px auto;
}

#result-gate input[type="email"] {
    padding: 15px;
    width: 80%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.1em;
    margin: 10px auto;
}

#result-gate .cta-button {
    width: 80%;
    max-width: 400px;
    background-color: var(--brand-blue);
}

#result-gate .cta-button:hover {
    background-color: #004452;
}

/* E-Mail Gate Styles */
.email-gate-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.result-preview {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--brand-green-dark);
    margin-bottom: 30px;
}

.result-preview h3 {
    color: var(--brand-blue);
    font-size: 1.8em;
    margin-bottom: 10px;
}

.result-preview h2 {
    color: var(--brand-green-dark);
    font-size: 2.2em;
    margin-bottom: 20px;
}

.result-preview p {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--text-dark);
}

.email-form-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.email-form-box h3 {
    color: var(--brand-blue);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.email-form-box p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.email-form-box .form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.email-form-box input[type="email"] {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.email-form-box input[type="email"]:focus {
    outline: none;
    border-color: var(--brand-green-dark);
}

.email-form-box .privacy-note {
    font-size: 0.85em;
    color: #666;
    margin-top: 15px;
}

.email-form-box .privacy-note a {
    color: var(--brand-green-dark);
    text-decoration: none;
}

.email-form-box .privacy-note a:hover {
    text-decoration: underline;
}

/* Result Display Styles */
.result-display {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    border-left: 5px solid var(--brand-green-dark);
}

.result-display h3 {
    color: var(--brand-blue);
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.result-display h2 {
    color: var(--brand-green-dark);
    font-size: 2.2em;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.result-display ul {
    margin: 20px 0;
    padding-left: 25px;
}

.result-display ul li {
    margin: 10px 0;
    line-height: 1.6;
}

.result-display .highlight-box {
    background: var(--bg-accent);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid var(--brand-green-dark);
}

.result-display .cta-section {
    background: var(--brand-blue-dark);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}

.result-display .cta-section h3 {
    color: white;
    margin-top: 0;
}

.result-display .cta-section ul {
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
    padding-left: 30px;
}

.result-display .cta-section ul li {
    margin: 15px 0;
    line-height: 1.7;
    color: white;
    position: relative;
}

.result-display .cta-section ul li::marker {
    color: var(--brand-green-light);
    font-size: 1.2em;
}

.email-input-section {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid var(--brand-green-light);
}

.email-input-section input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1.1em;
    margin: 10px 0;
    box-sizing: border-box;
}

.email-input-section .cta-button {
    width: 100%;
    margin-top: 15px;
    background-color: var(--brand-blue);
}

.email-input-section .cta-button:hover {
    background-color: #004452;
}

.calendly-cta {
    background: var(--bg-accent);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: center;
    border: 2px solid var(--brand-green-light);
}

.calendly-cta h3 {
    color: var(--brand-blue);
    margin-top: 0;
}

/* Analyse-specific CTA Button */
#analysis-tool .cta-button {
    display: block;
    width: 60%;
    margin: 40px auto 0 auto;
    background-color: var(--brand-blue);
    color: var(--text-light);
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.2em;
    transition: transform 0.2s, background-color 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

#analysis-tool .cta-button:hover {
    background-color: #004452;
    transform: scale(1.05);
}

/* Typewriter Animation */
.ki-typewriter::after {
    content: '|';
    animation: blink 1s steps(1) infinite;
    color: var(--brand-blue);
    font-weight: bold;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.ki-typewriter-finished::after {
    display: none;
}

/* Demo Control Button */
.demo-control {
    text-align: center;
    margin: 30px 0;
}

.demo-restart-btn {
    background-color: var(--brand-blue);
    color: var(--text-light);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.demo-restart-btn:hover {
    background-color: #004a5c;
    transform: scale(1.05);
}

.demo-restart-btn:active {
    transform: scale(0.98);
}

/* Statistics Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-box {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--brand-green-dark);
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Live Demo Responsive Styles */
@media (max-width: 768px) {
    .ticket-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .ticket-time {
        margin-left: 0;
    }
    
    .ai-response {
        flex-direction: column;
        gap: 8px;
    }
    
    .ai-icon {
        font-size: 1.3em;
    }

    /* CTA Button Mobile Fix */
    .cta-button,
    .result-display .cta-section .cta-button {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center !important;
        box-sizing: border-box !important;
        padding: 16px 20px !important;
        font-size: 1.1em !important;
    }

    .cta-section {
        padding: 25px 20px !important;
    }

    .result-display .cta-section {
        padding: 25px 20px !important;
    }
}

/* Datenschutzerklärung & Legal Pages Specific Styles */
/* Typografie für Rechtstexte */
.legal-page h1 {
    font-size: 2.4em;
    color: var(--brand-blue);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #003440;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
    text-align: left;
}

.legal-page h3 {
    font-size: 1.4em;
    color: #003440;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 1.2em;
    color: #003440;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page p,
.legal-page li {
    color: #444;
}

.legal-page a {
    color: var(--brand-green-dark);
    text-decoration: none;
}

.legal-page a:hover {
    color: var(--brand-blue);
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--brand-green-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--brand-blue);
    font-size: 1.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-green-dark);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-group select {
    cursor: pointer;
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

/* Form responsive styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 25px 20px;
        margin: 20px;
    }
    
    .form-group label {
        font-size: 1em;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    /* E-Mail Gate Mobile */
    .email-gate-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .result-preview,
    .email-form-box {
        padding: 20px;
    }
    
    .result-preview h3 {
        font-size: 1.4em;
    }
    
    .result-preview h2 {
        font-size: 1.8em;
    }
    
    .email-form-box h3 {
        font-size: 1.3em;
    }
    
    .email-form-box p {
        font-size: 1em;
    }
}

/* Sticky CTA Button Responsive Styles */
@media (max-width: 768px) {
    .sticky-cta-container {
        position: sticky !important;
        top: 60px !important;
        margin: 15px 0 !important;
    }
    
    .sticky-cta-container .cta-button {
        padding: 12px 20px !important;
        font-size: 0.95em !important;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .sticky-cta-container .cta-button {
        padding: 10px 15px !important;
        font-size: 0.9em !important;
    }
}

/* Elegant Professional Dark Mode */
@media (prefers-color-scheme: dark) {
    body:not(.light-mode) {
        background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%) !important;
        color: #e8eaed !important;
    }
    
    body:not(.light-mode) {
        --bg-light: #1a1f2e;
        --bg-accent: #242b3d;
        --text-dark: #e8eaed;
        --text-light: #ffffff;
    }
    
    /* Premium Navigation */
    body:not(.light-mode) .main-nav {
        background: rgba(15, 20, 25, 0.95) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(42, 157, 143, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    body:not(.light-mode) .main-nav a {
        color: #e8eaed !important;
        transition: all 0.3s ease;
    }
    
    body:not(.light-mode) .main-nav a:hover,
    body:not(.light-mode) .main-nav a.active {
        color: #94d2bd !important;
        text-shadow: 0 0 8px rgba(148, 210, 189, 0.3);
    }
    
    /* Elegant Content Containers */
    body:not(.light-mode) .container {
        background: linear-gradient(135deg, #1a1f2e 0%, #242b3d 100%) !important;
        border: 1px solid rgba(148, 210, 189, 0.1);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
        color: #e8eaed !important;
    }
    
    /* Premium Cards */
    body:not(.light-mode) .angebot-box,
    body:not(.light-mode) .credibility-box {
        background: linear-gradient(135deg, #242b3d 0%, #2a3142 100%) !important;
        border: 1px solid rgba(148, 210, 189, 0.15);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
        color: #e8eaed !important;
    }
    
    /* Elegant Typography */
    body:not(.light-mode) h1,
    body:not(.light-mode) h2,
    body:not(.light-mode) h3,
    body:not(.light-mode) h4 {
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    body:not(.light-mode) p {
        color: #d1d5db !important;
    }
    
    /* Premium Forms */
    body:not(.light-mode) input, 
    body:not(.light-mode) textarea, 
    body:not(.light-mode) select {
        background: rgba(36, 43, 61, 0.8) !important;
        border: 1px solid rgba(148, 210, 189, 0.2);
        color: #e8eaed !important;
        backdrop-filter: blur(5px);
    }
    
    body:not(.light-mode) input::placeholder,
    body:not(.light-mode) textarea::placeholder {
        color: #9ca3af !important;
    }

    /* Analyse Tool Dark Mode */
    body:not(.light-mode) #analysis-tool {
        background: transparent !important;
    }

    body:not(.light-mode) #analysis-tool h1 {
        color: #ffffff !important;
    }

    body:not(.light-mode) #analysis-tool .sub-headline {
        color: #c1c7d0 !important;
    }

    body:not(.light-mode) .question-block {
        background: linear-gradient(135deg, #242b3d 0%, #2a3142 100%) !important;
        border: 1px solid rgba(148, 210, 189, 0.15) !important;
    }

    body:not(.light-mode) .question-block label {
        color: #ffffff !important;
    }

    body:not(.light-mode) input[type="range"] {
        background: rgba(148, 210, 189, 0.2) !important;
    }

    body:not(.light-mode) input[type="range"]::-webkit-slider-thumb {
        background: #94d2bd !important;
    }

    body:not(.light-mode) input[type="range"]::-moz-range-thumb {
        background: #94d2bd !important;
    }

    body:not(.light-mode) .slider-labels {
        color: #9ca3af !important;
    }

    /* Email Gate & Result Display Dark Mode */
    body:not(.light-mode) .email-gate-section {
        background: transparent !important;
    }

    body:not(.light-mode) .result-preview {
        background: linear-gradient(135deg, #242b3d 0%, #2a3142 100%) !important;
        border: 1px solid rgba(148, 210, 189, 0.15) !important;
        border-left: 5px solid #94d2bd !important;
    }

    body:not(.light-mode) .result-preview h3 {
        color: #94d2bd !important;
    }

    body:not(.light-mode) .result-preview h2 {
        color: #ffffff !important;
    }

    body:not(.light-mode) .result-preview p {
        color: #e8eaed !important;
    }

    body:not(.light-mode) .email-form-box {
        background: linear-gradient(135deg, #1a202e 0%, #242b3d 100%) !important;
        border: 1px solid rgba(148, 210, 189, 0.1) !important;
    }

    body:not(.light-mode) .email-form-box h3 {
        color: #94d2bd !important;
    }

    body:not(.light-mode) .email-form-box p {
        color: #e8eaed !important;
    }

    body:not(.light-mode) .email-form-box input[type="email"] {
        background: rgba(36, 43, 61, 0.8) !important;
        color: #e8eaed !important;
        border: 1px solid rgba(148, 210, 189, 0.3) !important;
    }

    body:not(.light-mode) .email-form-box input[type="email"]:focus {
        border-color: #94d2bd !important;
        box-shadow: 0 0 0 3px rgba(148, 210, 189, 0.2) !important;
    }

    body:not(.light-mode) .privacy-note {
        color: #9ca3af !important;
    }

    body:not(.light-mode) .privacy-note a {
        color: #94d2bd !important;
    }

    body:not(.light-mode) .result-display {
        background: linear-gradient(135deg, #1a202e 0%, #242b3d 100%) !important;
        border: 1px solid rgba(148, 210, 189, 0.15) !important;
        border-left: 5px solid #94d2bd !important;
    }

    body:not(.light-mode) .result-display h2,
    body:not(.light-mode) .result-display h3 {
        color: #ffffff !important;
    }

    body:not(.light-mode) .result-display p,
    body:not(.light-mode) .result-display li {
        color: #e8eaed !important;
    }
}

/* Dark Mode für Hard Facts Box - FINAL VERSION - 2024-11-24 - prefers-color-scheme */
@media (prefers-color-scheme: dark) {
    .highlight-box.hard-facts-box {
        background: linear-gradient(135deg, #1a202e 0%, #242b3d 100%) !important;
        border: 1px solid rgba(148, 210, 189, 0.3) !important;
        border-left: 5px solid #94d2bd !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5) !important;
    }

    .highlight-box.hard-facts-box h3 {
        color: #94d2bd !important;
    }

    .fact-label {
        color: #94d2bd !important;
        font-weight: 600 !important;
    }

    .fact-value {
        color: #ffffff !important;
    }

    .fact-old {
        color: #9ca3af !important;
    }

    .fact-arrow {
        color: #94d2bd !important;
    }

    .fact-new {
        color: #94d2bd !important;
        font-weight: 700 !important;
    }

    .fact-quote {
        color: #e8eaed !important;
        font-style: italic !important;
    }

    .fact-disclaimer {
        color: #94d2bd !important;
        border-top-color: rgba(148, 210, 189, 0.3) !important;
    }
}

/* Case Study Cards - Light Mode */
.case-card.problem {
    background: #fff;
    border: 1px solid #ddd;
}

.case-card.solution {
    background: linear-gradient(135deg, rgba(42,157,143,0.05) 0%, rgba(148,210,189,0.1) 100%);
}

.case-card h3,
.case-title {
    color: #555;
}

.case-list li {
    color: #555;
}

.case-visual.chaos {
    background: #f4f4f4;
    color: #888;
}

.chaos-text {
    color: #666;
}

.case-text-area {
    background: white;
    color: var(--text-dark);
}

.case-text-area h3 {
    color: var(--brand-blue);
}

/* Hard Facts - Light Mode */
.hard-facts-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hard-facts-box h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
}

.facts-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.fact-item {
    flex: 1;
    min-width: 200px;
}

.fact-label {
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact-value {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--brand-blue);
    margin-top: 5px;
}

.fact-old {
    text-decoration: line-through;
    opacity: 0.6;
}

.fact-arrow {
    color: var(--brand-green-dark);
    margin: 0 5px;
}

.fact-new {
    color: var(--brand-green-dark);
    font-size: 1.3em;
}

.fact-quote {
    margin-top: 20px;
    font-style: italic;
    font-size: 0.95em;
    color: #555;
}

.fact-disclaimer {
    margin-top: 25px;
    font-size: 0.75em;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 10px;
    text-align: center;
    line-height: 1.4;
}

/* Dark Mode für Case Study Cards - prefers-color-scheme */
@media (prefers-color-scheme: dark) {
    .case-card.problem {
        background: linear-gradient(135deg, #242b3d 0%, #2a3142 100%) !important;
        border: 1px solid rgba(148, 210, 189, 0.15) !important;
    }

    /* v2024-11-24-v2 Solution Card Dark Background - FULL HEIGHT */
    .case-card.solution {
        background: #1a202e !important;  /* Solid dark background for whole card */
        border: 2px solid rgba(148, 210, 189, 0.3) !important;
    }

    .case-study-section .case-card.solution {
        background: #1a202e !important;
    }

    .case-card h3,
    .case-title {
        color: #94d2bd !important;
    }

    .case-list li {
        color: #e8eaed !important;
    }

    .case-visual.chaos {
        background: #1a202e !important;
        color: #9ca3af !important;
        border-color: rgba(148, 210, 189, 0.2) !important;
    }

    .chaos-text {
        color: #9ca3af !important;
    }

    /* Solution Card - Screenshot bleibt hell, Text-Bereich wird dunkel */
    .case-text-area {
        background: linear-gradient(135deg, #1a202e 0%, #242b3d 100%) !important;
        color: #e8eaed !important;
    }

    .case-text-area h3 {
        color: #94d2bd !important;
    }

    .case-text-area .case-list li {
        color: #e8eaed !important;
    }
}

/* Match auto dark mode for form elements */
@media (prefers-color-scheme: dark) {
    body:not(.light-mode) .contact-form {
        background: linear-gradient(135deg, #242b3d 0%, #2a3142 100%) !important;
        border: 1px solid rgba(148, 210, 189, 0.15);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        color: #e8eaed !important;
    }

    body:not(.light-mode) .form-group label {
        color: #ffffff !important;
    }

    body:not(.light-mode) .form-group input,
    body:not(.light-mode) .form-group select,
    body:not(.light-mode) .form-group textarea {
        background: rgba(36, 43, 61, 0.8) !important;
        border: 1px solid rgba(148, 210, 189, 0.2) !important;
        color: #e8eaed !important;
        backdrop-filter: blur(5px);
    }

    body:not(.light-mode) .form-group input::placeholder,
    body:not(.light-mode) .form-group textarea::placeholder {
        color: #9ca3af !important;
    }

    body:not(.light-mode) .ticket-question {
        color: #e8eaed !important;
    }

    body:not(.light-mode) .ticket-question strong {
        color: #ffffff !important;
    }

    body:not(.light-mode) .ai-text {
        color: #d1d5db !important;
    }

    body:not(.light-mode) .ticket-id {
        color: #9ca3af !important;
    }

    body:not(.light-mode) .ticket-time {
        color: #9ca3af !important;
    }
}

/* Match auto dark mode for yellow sections */
@media (prefers-color-scheme: dark) {
    body:not(.light-mode) .urgency-section {
        background: linear-gradient(135deg, #2a3142 0%, #363d50 100%) !important;
        border-left: 5px solid #94d2bd !important;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }

    body:not(.light-mode) .urgency-section h2 {
        color: #94d2bd !important;
    }
}

@media (prefers-color-scheme: dark) {
    body:not(.light-mode) [style*="background-color: #fff3cd"],
    body:not(.light-mode) [style*="background: white"] {
        background: linear-gradient(135deg, #242b3d 0%, #2a3142 100%) !important;
        color: #e8eaed !important;
    }

    body:not(.light-mode) [style*="border: 1px solid #ffeaa7"] {
        border: 1px solid rgba(148, 210, 189, 0.15) !important;
    }
}

/* Mobile Pop-up Styles */
#mobile-popup { 
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); 
    border-radius: 8px; 
    margin: 0 20px; 
}

/* FAQ Styles - Details/Summary Elements */
details {
    margin: 15px 0;
    border: 1px solid var(--brand-green-light);
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
}

details:hover {
    border-color: var(--brand-green-dark);
    box-shadow: 0 2px 8px rgba(42, 157, 143, 0.15);
}

summary {
    cursor: pointer;
    font-weight: bold;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    user-select: none;
    color: var(--brand-blue);
}

summary:hover {
    background: rgba(148, 210, 189, 0.1);
}

details[open] summary {
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid var(--brand-green-light);
    background: var(--brand-blue);
    color: white;
}

details[open] summary:hover {
    background: #004a5c;
}

details p {
    padding: 15px 20px;
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Additional utility styles */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments for FAQs */
@media (max-width: 768px) {
    details {
        margin: 10px 0;
    }
    
    summary {
        padding: 12px 15px;
        font-size: 0.95em;
    }
    
    details p {
        padding: 12px 15px;
        font-size: 0.9em;
    }
}

/* FAQ Section Heading Styles */
#workshop-faq h3 { 
    margin-top: 20px; 
    font-size: 1.2em; 
    color: #005f73; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 5px; 
}

/* Dark Mode für Mobile Navigation - System Dark Mode Detection */
@media (prefers-color-scheme: dark) {
    @media (max-width: 768px) {
        body:not(.light-mode) .main-nav ul {
            background: linear-gradient(135deg, #1a1f2e 0%, #242b3d 100%) !important;
            border-right: 1px solid rgba(148, 210, 189, 0.2);
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5) !important;
        }
        
        body:not(.light-mode) .main-nav ul li {
            border-bottom: 1px solid rgba(148, 210, 189, 0.1) !important;
        }
        
        body:not(.light-mode) .main-nav ul li a {
            color: #e8eaed !important;
            transition: all 0.3s ease;
        }
        
        body:not(.light-mode) .main-nav ul li a:hover,
        body:not(.light-mode) .main-nav ul li a.active {
            color: #94d2bd !important;
            background: rgba(148, 210, 189, 0.1) !important;
            text-shadow: 0 0 8px rgba(148, 210, 189, 0.3);
        }
    }

    /* Dark Mode für Kontrast-verbesserte Elemente */
    body:not(.light-mode) .consultation-text {
        color: #e8eaed !important;
    }
    
    body:not(.light-mode) .consultation-link {
        color: #94d2bd !important;
        border-bottom-color: #94d2bd !important;
    }
    
    body:not(.light-mode) .consultation-link:hover {
        color: #ffffff !important;
        border-bottom-color: #ffffff !important;
    }
    
    body:not(.light-mode) .secondary-cta-section {
        background: linear-gradient(135deg, #242b3d 0%, #2a3142 100%) !important;
        border: 1px solid rgba(148, 210, 189, 0.15) !important;
    }

    /* Dark Mode für Analyse-Ergebnisse */
    body:not(.light-mode) .result-display {
        background: linear-gradient(135deg, #1a1f2e 0%, #242b3d 100%) !important;
        border-left: 5px solid #94d2bd !important;
        color: #e8eaed !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
    }

    body:not(.light-mode) .result-display h3 {
        color: #94d2bd !important;
    }

    body:not(.light-mode) .result-display h2 {
        color: #ffffff !important;
    }

    body:not(.light-mode) .result-display p {
        color: #e8eaed !important;
    }

    body:not(.light-mode) .result-display ul li {
        color: #e8eaed !important;
    }

    body:not(.light-mode) .result-display .highlight-box {
        background: linear-gradient(135deg, #2a3142 0%, #3a4155 100%) !important;
        border-left: 4px solid #94d2bd !important;
        color: #e8eaed !important;
    }

    body:not(.light-mode) .result-display .highlight-box h3 {
        color: #ffffff !important;
    }

    body:not(.light-mode) .result-display .highlight-box p {
        color: #e8eaed !important;
    }

    body:not(.light-mode) .result-display .cta-section {
        background: linear-gradient(135deg, #003d47 0%, #005f73 100%) !important;
    }

    body:not(.light-mode) .result-display .cta-section h3 {
        color: #ffffff !important;
    }

    body:not(.light-mode) .result-display .cta-section p {
        color: #ffffff !important;
    }

    /* Dark Mode für Credibility-Links */
    body:not(.light-mode) .credibility-list li a {
        color: #94d2bd !important;
    }

    body:not(.light-mode) .credibility-list li a:hover {
        color: #ffffff !important;
        border-bottom-color: #ffffff !important;
    }
}