/* === FASTLANE SPECIFIEKE STYLING === */

/* --- Hero --- */
/* === FASTLANE HERO (SYNCHRONISATIE) === */
.fastlane-hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px; /* Iets hoger voor alle features */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Achtergrond foto over volle breedte */
.fastlane-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../img/fastlane.png') no-repeat center 20%;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

/* Donkere overlay voor leesbaarheid */
.fastlane-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.fastlane-hero-content {
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 6rem 1.5rem;
}

/* Hero Badge Styling */
.fastlane-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: var(--primary-blue);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 147, 200, 0.25);
}

/* De Titel (Blauw + Wit) */
.fastlane-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.fastlane-hero-content h1 span {
    color: #ffffff;
    font-size: inherit;
    font-weight: inherit;
}

.hero-brand {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.hero-features span { 
    color: #ffffff;
    background: rgba(2, 132, 199, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* === RESPONSIVE FIXES === */
@media (max-width: 768px) {
    .fastlane-hero { min-height: 500px; }
    .fastlane-hero-content .hero-badge { display: none; }
    
    .fastlane-hero-content h1 { 
        font-size: 2.25rem; 
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .hero-features span {
        width: fit-content;
    }

    /* Sluit de intro box beter aan op het nieuwe design */
    .intro-premium-box {
        margin-top: -3rem;
        padding: 2.5rem 1.5rem;
    }
}

.hero-tag {
    display: inline-block;
    background: #0284c7;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.fastlane-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-brand {
    font-size: 1.5rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-features span { color: #0284c7; }

/* --- Intro --- */
.intro-premium-box {
    max-width: 900px;
    margin: -4rem auto 4rem;
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-top: 6px solid #0284c7;
}

.intro-premium-box h2 { color: #0c4a6e; margin-bottom: 1.5rem; }
.intro-premium-box p { font-size: 1.15rem; line-height: 1.8; color: var(--gray-700); }

/* --- Benefits --- */
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2.25rem; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.benefit-card h3 { font-size: 1.1rem; color: #0284c7; margin-bottom: 1rem; }

/* --- Exam Focus --- */
.section-exam-focus { padding: 6rem 0; }
.focus-wrapper { background: #f0f9ff; padding: 4rem; border-radius: 40px; }
.focus-wrapper h3 { font-size: 1.75rem; color: #0c4a6e; margin-bottom: 2rem; }

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.skills-grid ul { list-style: none; padding: 0; }
.skills-grid li { margin-bottom: 1.5rem; line-height: 1.6; }

/* --- Team --- */
.bg-dark { background: #f0f9ff; color: #0c4a6e; padding: 6rem 0; text-align: center; }
.team-content { max-width: 800px; margin: 0 auto; }
.team-content blockquote {
    font-size: 1.75rem;
    font-style: italic;
    margin-top: 2rem;
    color: #0284c7;
}

/* --- Trajectory --- */
.section-trajectory { padding: 6rem 0; }
.trajectory-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    text-align: center;
}

.step.highlight { border: 2px solid #0284c7; background: var(--white); transform: scale(1.05); }
.step-num {
    width: 40px; height: 40px; background: #0284c7; color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; font-weight: 800;
}

.step-meta { margin-top: 1rem; font-weight: 800; color: #e11d48; }

/* --- Theory & Pricing --- */
.section-theory-pricing { padding: 6rem 0; }
.theory-pricing-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-item {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid #e0f2fe;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: #0284c7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
}

.info-item h3 {
    font-size: 1.5rem;
    color: #0c4a6e;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-item p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #0284c7;
    color: #0284c7;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #0284c7;
    color: white;
    transform: translateY(-2px);
}

/* --- Audience --- */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 4rem 0; }
.audience-box { padding: 3rem; border-radius: 30px; }
.positive { background: #f0fdf4; border: 1px solid #bbf7d0; }
.negative { background: #fff1f2; border: 1px solid #fecdd3; }
.audience-box h3 { margin-bottom: 1.5rem; }
.audience-box ul { list-style: none; padding: 0; }
.audience-box li { margin-bottom: 0.8rem; display: flex; gap: 0.8rem; }
.positive li::before { content: "🌿"; }
.negative li::before { content: "🚫"; }

/* --- Final CTA --- */
.section-final-cta { 
    padding: 8rem 0; 
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}

.section-final-cta h2 {
    font-size: 2.5rem;
    color: #0c4a6e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-actions { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 2rem; 
    margin: 3rem 0; 
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #0284c7;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    background: #0369a1;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(2, 132, 199, 0.4);
}

.btn-whatsapp {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #0284c7;
    border: 2px solid #0284c7;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #0284c7;
    color: white;
    transform: translateY(-3px);
}

.cta-footer { 
    color: #475569;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .skills-grid, .audience-grid, .hero-features { grid-template-columns: 1fr; flex-direction: column; gap: 1rem; }
    .step.highlight { transform: none; }
    .intro-premium-box { padding: 2rem; margin-top: -2rem; }
    .cta-actions { flex-direction: column; }
    .theory-pricing-card { grid-template-columns: 1fr; gap: 2rem; }
    .info-item { padding: 2rem; }
    .section-final-cta h2 { font-size: 1.75rem; }
    .btn-primary, .btn-whatsapp { width: 100%; text-align: center; }
}