

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 120px 24px 80px;
}

.hero-badge {
    background: rgba(30, 78, 216, 0.12);
    border: 1px solid rgba(30, 78, 216, 0.35);
    color: var(--accent-light);
    font-size: 0.78rem; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 32px;
    animation: fadeUp 0.7s ease both;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.95; margin-bottom: 16px;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero-image-wrap {
    margin-top: 60px; width: 100%; max-width: 1100px;
    margin-left: auto; margin-right: auto; padding: 0 20px;
    animation: fadeUp 0.7s 0.45s ease both;
}

.hero-banner-img {
    width: 100%; height: auto; border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.hero-tagline{
    margin-bottom: 30px;
}

/* ==========================================================================
   5. PAGE SECTIONS (Features, Stats, CTA)
   ========================================================================== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px;
}

.features-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.stats-row {
    display: flex; background: var(--surface);
    border: 1px solid var(--border); border-radius: 20px;
    margin-top: 80px; overflow: hidden;
    margin-bottom: 100px
}

.stat-item { flex: 1; padding: 48px 40px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 3rem; color: var(--accent-light); }

.cta-band {
    background: var(--surface); border-top: 1px solid var(--border);
    padding: 100px 0; text-align: center;
}

/* ==========================================================================
   6. FOOTER & ANIMATIONS
   ========================================================================= */
footer { padding: 48px 0; border-top: 1px solid var(--border); color: var(--text-muted); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .stats-row { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .features-grid {
        /* We dwingen de grid naar 1 kolom en verminderen de tussenruimte */
        grid-template-columns: 1fr; 
        gap: 16px;
    }

    .feature-card {
        /* Minder padding zodat de tekst niet 'opgesloten' zit */
        padding: 24px 20px; 
        border-radius: 12px;
    }

    .feature-card h3 {
        font-size: 1.25rem; /* Iets compacter voor mobiel */
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        text-align: center; /* Ziet er vaak beter uit op mobiel */
        margin-bottom: 32px;
    }
    
}

