:root {
    /* GAD Burkhardtsdorf Branding - Blau/Türkis */
    --primary-color: #2B5797; /* GAD Logo Dunkelblau */
    --primary-dark: #1a3a6a;  /* Dunkleres Blau für Kontrast */
    --accent-color: #00A3B4;  /* Türkis/Cyan - modern & technisch */
    --accent-hover: #008999;  /* Dunkleres Türkis für Hover */
    --secondary-color: #4A90C2; /* Helleres Blau */
    --tertiary-color: #2B5797; /* GAD Blau */
    --success-color: #27ae60;  /* Grün für Erfolg */
    --text-color: #333333;
    --background-light: #F5F7FA;
    --white: #FFFFFF;
    --light-blue: #E8F4FC; /* Sehr helles Blau für Backgrounds */

    /* Spacing */
    --container-padding: 2rem;
    --section-spacing: 5rem;

    /* Transitions */
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hidden {
    display: none !important;
}

.d-none-mobile {
    display: block;
}

@media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* Navigation - Sauberer Header */
.navbar {
    background: var(--white);
    padding: 1rem 0; /* Zurückgesetzt */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
    /* Logo in weißem Container für saubere Optik */
    border-radius: 10px;
    background: var(--white);
    padding: 8px 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Logo Container für bessere Optik */
.logo {
    display: flex;
    align-items: center;
}

.nav-trust-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color); /* GAD Blau statt Türkis */
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.nav-cta {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-icon {
    font-size: 1rem;
}

/* ========================================
   HERO SECTION - Neues modernes Design
   ======================================== */
.hero-section.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Gleichmäßig 50/50 */
    min-height: 600px;
    height: calc(100vh - 80px);
    max-height: 750px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* Linke Seite - Text Content */
.hero-text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Content zentrieren */
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    position: relative;
    z-index: 5;
}

/* Dekorativer Kreis im Hintergrund */
.hero-text-side::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,163,180,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-text-content {
    max-width: 700px; /* Wider for buttons side-by-side */
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Eyebrow / Tagline */
.eyebrow-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.eyebrow-line {
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
}

/* Hero Title */
.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.title-highlight {
    color: var(--accent-color);
    display: block;
    font-size: 3.5rem;
}

/* Hero Subtext */
.hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    max-width: 100%; /* Volle Breite wie Benefits */
}

/* Hero Features - Horizontal Layout */
.hero-features {
    display: flex;
    flex-wrap: nowrap; /* Nicht umbrechen */
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-feature:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.25rem;
    width: auto;
    height: auto;
    background: none;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.feature-text span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

/* Hero CTA */
.hero-cta-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap !important;
    margin-top: 1.5rem;
    max-width: 100%; /* Begrenzt auf den Content-Bereich */
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    flex: 0 1 auto; /* Nur so breit wie nötig */
    padding: 1.2rem 2.2rem; /* Leicht kompakter */
}

.hero-cta:hover {
    background: var(--accent-hover);
}

.cta-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* WhatsApp Button */
.wa-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 2.2rem; /* Identisch zu hero-cta */
    font-size: 1.1rem;
    font-weight: 700;
    background: #25D366;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-speed);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex: 0 1 auto; /* Nur so breit wie nötig */
}

.wa-cta-button:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

.cta-hint {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* Rechte Seite - Bild */
.hero-image-side-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Gradient Overlay über dem Bild */
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 30%),
                linear-gradient(0deg, rgba(0,0,0,0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Kein Bottom-Fade mehr */
.hero-section::after {
    display: none;
}

/* Location Badge */
.hero-location-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10;
}

.location-icon {
    font-size: 1rem;
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .hero-text-side {
        padding: 3rem 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .hero-section.split-hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .hero-text-side {
        padding: 3rem 2rem;
        padding-left: 2rem;
        order: 2;
        text-align: center;
    }
    
    .hero-text-side::before {
        display: none;
    }
    
    .hero-text-content {
        max-width: 100%;
    }
    
    .eyebrow-wrapper {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta-wrapper {
        flex-direction: row; /* Side by side on mobile */
        justify-content: center;
        gap: 0.75rem;
    }

    .hero-cta-wrapper .cta-button,
    .hero-cta-wrapper .wa-cta-button {
        padding: 1rem 1.25rem;
        font-size: 0.85rem;
        flex: 1;
        max-width: 200px;
        white-space: nowrap;
    }
    
    .hero-image-side-wrapper {
        order: 1;
        height: 300px;
    }
    
    .hero-image-overlay {
        background: linear-gradient(0deg, var(--primary-color) 0%, transparent 50%);
    }
    
    .hero-location-badge {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .title-highlight {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        width: 100%;
        justify-content: center;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .hero-text-side {
        padding: 4rem;
    }
    
    .hero-text-content {
        max-width: 650px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .title-highlight {
        font-size: 4rem;
    }
}

/* Warum GAD Section */
.reasons-section {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.reason-card-gad {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.reason-card-gad:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.reason-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--background-light);
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reason-card-gad:hover .reason-image img {
    transform: scale(1.1);
}

.reason-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
}

.reason-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.reason-content p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Benefits Section */
.support-section {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.support-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.support-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

.support-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    background: var(--background-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.support-item:hover .support-icon {
    background: var(--accent-color);
    transform: scale(1.1) rotate(5deg);
}

.support-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.support-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.trust-bar {
    margin-top: 4rem;
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Job Section */
.job-section {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.job-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.job-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.job-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.job-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.job-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Process Section */
.process-section {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
    border: 1px solid #edf2f7;
}

.process-step::after {
    content: '→';
    position: absolute;
    top: 25px;
    right: -1.5rem;
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(0, 163, 180, 0.3);
}

.process-step h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Process CTA Section */
.process-cta {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
    flex-wrap: nowrap !important;
    width: 100%;
    max-width: 1000px; /* Breite der 3 Kacheln ca. */
    margin-left: auto;
    margin-right: auto;
}

.process-cta .cta-button, 
.process-cta .wa-cta-button {
    flex: 0 1 auto;
    padding: 1.2rem 2.2rem;
    font-size: 1.1rem;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .process-step::after {
        display: none;
    }
    
    .process-cta {
        flex-direction: row; /* Keep side by side */
        gap: 0.75rem;
        margin-top: 3rem;
    }
    
    .process-cta .cta-button, 
    .process-cta .wa-cta-button {
        padding: 1rem 1rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: 140px;
        white-space: nowrap;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid #7FE0E8; /* Helles Türkis */
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-role {
    font-weight: 700;
    font-size: 1rem;
}

.author-years {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-spacing) 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 1.5rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 80px;
    margin-bottom: 2rem;
    /* Logo in weißem Container im Footer */
    background: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    color: var(--white);
    margin: 0 1rem;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.partner-logo {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.partner-logo img {
    height: 30px;
    /* Bewerberfabrik Logo in eigenem Container */
    background: var(--white);
    padding: 5px 10px;
    border-radius: 6px;
}

/* Buttons */
.cta-button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: 0 10px 20px rgba(0, 163, 180, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 163, 180, 0.35);
    background-color: var(--accent-hover);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 10px 20px rgba(0, 163, 180, 0.25); }
    50% { transform: scale(1.05); box-shadow: 0 15px 35px rgba(0, 163, 180, 0.45); }
    100% { transform: scale(1); box-shadow: 0 10px 20px rgba(0, 163, 180, 0.25); }
}

.pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}

/* Quiz Overlay */
.quiz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quiz-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quiz-container {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 95%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-quiz {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-quiz:hover {
    color: var(--accent-color);
}

/* Quiz Steps & Forms */
.quiz-step h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.options-grid {
    display: grid;
    gap: 1rem;
}

.option-btn {
    background: var(--background-light);
    border: 2px solid #eee;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}

.option-btn:hover {
    border-color: var(--secondary-color);
    background: #f0f4f8;
}

.option-btn.selected {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--white);
}

.quiz-input-field {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1.2rem;
    text-align: center;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.quiz-input-field:focus {
    outline: none;
    border-color: var(--accent-color);
}

.success-screen {
    padding: 2rem 0;
    text-align: center;
}

.success-screen .success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.submit-btn {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .nav-container {
        gap: 1rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .cta-icon {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Modal Specifics */
#whatsapp-modal .quiz-container {
    border-top: 5px solid #25D366;
}

#whatsapp-modal h2 {
    color: #25D366;
}

#whatsapp-modal .cta-button {
    background-color: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

#whatsapp-modal .cta-button:hover {
    background-color: #20bd5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1e1e1e;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn.accept-all { background: var(--accent-color); color: #fff; }
.cookie-btn.accept-all:hover { background: var(--accent-hover); }
.cookie-btn.essentials { background: transparent; border: 1px solid #666; color: #ccc; }
