/* ============================================
   DataGrip v3 — "Cinematic Data" Theme
   Visueel rijker, bewegend, memorabel.
   ============================================ */

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

:root {
    --bg-deep: #08080e;
    --bg-surface: #0e0e18;
    --bg-card: #131320;
    --bg-card-hover: #1a1a2e;
    --bg-elevated: #1e1e33;

    --text-bright: #f0ede6;
    --text-primary: #d4d0c8;
    --text-secondary: #8a8680;
    --text-muted: #5a5650;

    /* Accent — teal (v7-stijl) */
    --accent-1: #4ECDC4;
    --accent-2: #3dbdb5;
    --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --accent-glow: rgba(78, 205, 196, 0.15);
    --accent-glow-teal: rgba(78, 205, 196, 0.12);

    --red: #ef6b5b;
    --red-dim: rgba(239, 107, 91, 0.12);
    --green: #4ECDC4;
    --green-dim: rgba(78, 205, 196, 0.12);
    --amber: #efbf5b;

    --border: rgba(255,255,255,0.06);
    --border-glow: rgba(78, 205, 196, 0.25);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --section-padding: 140px;
    --container: 1160px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-sans);
    background: var(--bg-deep);
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
a { color: inherit; text-decoration: none; }


/* ==========================================
   BACKGROUND CANVAS & GRAIN
   ========================================== */

#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Everything else above canvas */
.nav, .hero, .section, .footer {
    position: relative;
    z-index: 2;
}


/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: all 0.5s var(--ease);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(8, 8, 14, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
    font-size: 22px; font-weight: 600; color: var(--text-bright);
    letter-spacing: -0.5px;
}
.logo-bracket { color: var(--accent-1); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    font-size: 13px; font-weight: 500; color: var(--text-secondary);
    transition: color 0.3s ease; letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-bright); }

.nav-cta {
    padding: 9px 22px !important;
    background: var(--accent-gradient) !important;
    color: var(--bg-deep) !important;
    border-radius: 8px;
    font-weight: 600 !important;
    -webkit-text-fill-color: var(--bg-deep) !important;
    transition: all 0.3s ease !important;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow), 0 4px 20px var(--accent-glow-teal);
}

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: var(--text-bright); transition: all 0.3s ease; }


/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 32px; font-family: var(--font-sans);
    font-size: 15px; font-weight: 600; border: none; border-radius: 10px;
    cursor: pointer; transition: all 0.4s var(--ease);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-deep);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow), 0 8px 32px var(--accent-glow-teal);
}
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
    background: none; color: var(--text-secondary); font-weight: 500; padding: 15px 8px;
}
.btn-ghost:hover { color: var(--text-bright); }

.btn-secondary {
    background: transparent; color: var(--accent-1);
    border: 1px solid var(--border-glow); border-radius: 10px;
}
.btn-secondary:hover {
    background: var(--accent-glow);
    border-color: var(--accent-1);
    transform: translateY(-2px);
}


/* ==========================================
   HERO
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    position: relative; overflow: hidden;
}

.hero-glow {
    position: absolute; border-radius: 50%;
    filter: blur(100px); pointer-events: none;
    animation: glowFloat 12s ease-in-out infinite;
}
.hero-glow-1 {
    width: 600px; height: 600px;
    background: var(--accent-glow);
    top: -10%; right: -5%;
    animation-delay: 0s;
}
.hero-glow-2 {
    width: 500px; height: 500px;
    background: var(--accent-glow-teal);
    bottom: -15%; left: -10%;
    animation-delay: -6s;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content { max-width: 680px; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 28px;
}
.eyebrow-line {
    width: 32px; height: 1px;
    background: var(--accent-gradient);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 600; line-height: 1.12;
    margin-bottom: 32px; letter-spacing: -0.02em;
}
.hero-title em {
    font-style: italic;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-line { display: block; }

.hero-body p {
    font-size: 18px; color: var(--text-secondary);
    line-height: 1.8; margin-bottom: 12px; max-width: 560px;
}
.hero-emphasis {
    color: var(--text-bright) !important;
    font-weight: 400; margin-top: 20px !important;
}

.hero-actions { display: flex; align-items: center; gap: 8px; margin-top: 40px; }

/* Floating fragments */
.hero-fragments {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 45%; pointer-events: none;
}

.fragment {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 20px;
    backdrop-filter: blur(8px);
    animation: fragmentFloat 8s ease-in-out infinite;
    opacity: 0;
}
.frag-label {
    display: block; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-muted); margin-bottom: 4px;
}
.frag-value {
    display: block; font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
}
.frag-negative { color: var(--red); }
.frag-positive { color: var(--green); }
.frag-unknown { color: var(--amber); }
.frag-tag {
    display: inline-block; font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--green); margin-top: 4px;
    padding: 2px 8px; background: var(--green-dim); border-radius: 4px;
}

.fragment-1 { top: 18%; right: 15%; animation-delay: 0s; }
.fragment-2 { top: 40%; right: 5%; animation-delay: -2s; }
.fragment-3 { top: 60%; right: 25%; animation-delay: -4s; }
.fragment-4 { top: 78%; right: 10%; animation-delay: -6s; }

@keyframes fragmentFloat {
    0% { opacity: 0; transform: translateY(20px); }
    15% { opacity: 0.85; transform: translateY(0); }
    85% { opacity: 0.85; transform: translateY(-8px); }
    100% { opacity: 0; transform: translateY(-20px); }
}


/* ==========================================
   SECTIONS GENERAL
   ========================================== */

.section { padding: var(--section-padding) 0; }
.section-header { margin-bottom: 60px; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin-left: auto; margin-right: auto; }

.section-label {
    display: inline-block; font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    margin-bottom: 18px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 600; line-height: 1.2;
    color: var(--text-bright); letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px; color: var(--text-secondary);
    margin-top: 18px; max-width: 540px; line-height: 1.7;
}

.section-footer { margin-top: 56px; max-width: 600px; }
.section-footer p { font-size: 17px; color: var(--text-secondary); line-height: 1.8; }


/* ==========================================
   WAAROM
   ========================================== */

.section-waarom {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.waarom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.waarom-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 44px 36px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.waarom-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.waarom-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 8px 40px var(--accent-glow);
}
.waarom-card:hover::after { transform: scaleX(1); }

.waarom-icon {
    width: 48px; height: 48px; display: flex;
    align-items: center; justify-content: center;
    border-radius: 12px; margin-bottom: 24px;
    background: var(--accent-glow);
}
.waarom-icon span {
    font-size: 16px; font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waarom-card h3 {
    font-family: var(--font-serif); font-size: 22px; font-weight: 600;
    color: var(--text-bright); margin-bottom: 12px; line-height: 1.3;
}
.waarom-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }


/* ==========================================
   AANPAK
   ========================================== */

.section-aanpak { background: var(--bg-deep); }

.aanpak-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px; align-items: start;
}

.aanpak-steps { display: flex; flex-direction: column; gap: 0; }

.aanpak-step {
    display: flex; gap: 24px; padding: 28px 0;
}

.step-marker {
    display: flex; flex-direction: column; align-items: center; gap: 0;
    padding-top: 4px; flex-shrink: 0;
}
.step-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent-gradient);
    box-shadow: 0 0 16px var(--accent-glow);
    flex-shrink: 0;
}
.step-line {
    width: 2px; flex: 1; min-height: 60px;
    background: linear-gradient(to bottom, var(--accent-1), transparent);
    opacity: 0.3;
}

.step-content h4 {
    font-family: var(--font-serif); font-size: 22px; font-weight: 600;
    color: var(--text-bright); margin-bottom: 8px;
}
.step-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.75; }

/* Quote card */
.aanpak-right { position: sticky; top: 140px; }

.aanpak-quote-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    position: relative; overflow: hidden;
}
.kern-quote-glow {
    position: absolute; top: -40px; right: -40px;
    width: 200px; height: 200px; border-radius: 50%;
    background: var(--accent-glow); filter: blur(60px);
    pointer-events: none;
}
.aanpak-quote-card blockquote p {
    font-family: var(--font-serif);
    font-size: 24px; font-weight: 600; font-style: italic;
    line-height: 1.5; color: var(--text-bright);
    position: relative;
}


/* ==========================================
   DIENSTEN
   ========================================== */

.section-diensten {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dienst-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 44px 40px;
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
    cursor: default;
}

/* Glow effect that follows cursor */
.dienst-glow {
    position: absolute; width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none; opacity: 0;
    transition: opacity 0.4s ease;
    transform: translate(-50%, -50%);
}
.dienst-card:hover .dienst-glow { opacity: 1; }

.dienst-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.dienst-number {
    font-size: 13px; font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.dienst-card h3 {
    font-family: var(--font-serif); font-size: 24px; font-weight: 600;
    color: var(--text-bright); margin-bottom: 14px; line-height: 1.3;
}
.dienst-card > p {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.75; margin-bottom: 24px;
}

.dienst-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.dienst-tags li {
    font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
    padding: 5px 14px; border-radius: 100px;
    background: var(--accent-glow);
    color: var(--accent-1);
}


/* ==========================================
   HASHMATCH BANNER
   ========================================== */

.section-hashmatch { padding: 80px 0; background: var(--bg-deep); }

.hashmatch-card {
    border-radius: 24px; overflow: hidden;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.hashmatch-bg-pattern {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        90deg, transparent, transparent 60px,
        rgba(78,205,196,0.03) 60px, rgba(78,205,196,0.03) 61px
    ), repeating-linear-gradient(
        0deg, transparent, transparent 60px,
        rgba(78,205,196,0.03) 60px, rgba(78,205,196,0.03) 61px
    );
    pointer-events: none;
}

.hashmatch-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; padding: 60px; align-items: center;
    position: relative;
}

.hashmatch-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--text-muted);
    margin-bottom: 14px; display: block;
}

.hashmatch-content h3 {
    font-family: var(--font-serif); font-size: 36px; font-weight: 600;
    margin-bottom: 14px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hashmatch-content p {
    color: var(--text-secondary); font-size: 16px;
    line-height: 1.75; margin-bottom: 28px;
}

.hash-animation {
    font-family: 'SF Mono','Fira Code','Consolas', monospace;
    font-size: 13px;
    display: flex; flex-direction: column; gap: 12px;
}
.hash-line {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; background: rgba(255,255,255,0.02);
    border-radius: 10px; border: 1px solid var(--border);
}
.hash-input { color: var(--text-secondary); }
.hash-arrow { color: var(--text-muted); display: flex; }
.hash-output { color: var(--text-muted); font-size: 12px; }
.hash-match {
    border-color: var(--border-glow);
    background: var(--accent-glow);
}
.hash-match .hash-input, .hash-match .hash-output { color: var(--accent-1); }
.hash-match .hash-arrow { color: var(--accent-2); }


/* ==========================================
   RESULTATEN
   ========================================== */

.section-resultaten { background: var(--bg-deep); }

.resultaten-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.resultaat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px;
    display: grid; grid-template-columns: 220px 1fr;
    gap: 48px; align-items: start;
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.resultaat-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.resultaat-featured {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(78,205,196,0.04) 100%);
}

.resultaat-stat { text-align: center; padding-top: 8px; }
.resultaat-number {
    display: block;
    font-family: var(--font-serif); font-size: 56px; font-weight: 600;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.resultaat-unit {
    display: block; font-size: 13px; color: var(--text-muted);
    margin-top: 10px; line-height: 1.4;
}

.resultaat-body h3 {
    font-family: var(--font-serif); font-size: 22px; font-weight: 600;
    color: var(--text-bright); margin-bottom: 12px; line-height: 1.3;
}
.resultaat-body p {
    font-size: 16px; color: var(--text-secondary); line-height: 1.8;
}


/* ==========================================
   OVER ONS
   ========================================== */

.section-over {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.over-content { max-width: 680px; }
.over-lead {
    font-size: 21px; color: var(--text-bright);
    font-weight: 400; line-height: 1.7; margin-bottom: 20px;
}
.over-text p {
    font-size: 17px; color: var(--text-secondary);
    line-height: 1.8; margin-bottom: 16px;
}


/* ==========================================
   CONTACT
   ========================================== */

.section-contact { background: var(--bg-deep); }

.contact-content {
    max-width: 640px; margin: 0 auto; text-align: center;
}
.contact-content .section-header { margin-bottom: 48px; }
.contact-content .section-subtitle { text-align: center; margin: 18px auto 0; }

.contact-form { text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 500;
    color: var(--text-secondary); margin-bottom: 6px;
}
.form-group input, .form-group textarea {
    width: 100%; padding: 14px 18px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 10px; color: var(--text-bright);
    font-family: var(--font-sans); font-size: 15px; font-weight: 300;
    transition: all 0.3s ease; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 8px; }


/* ==========================================
   FOOTER
   ========================================== */

.footer { padding: 72px 0 36px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: start; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 10px; }
.footer-links { display: flex; gap: 72px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.14em; color: var(--text-muted); margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: var(--text-secondary); transition: color 0.25s ease; }
.footer-col a:hover { color: var(--text-bright); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }


/* ==========================================
   ANIMATIONS
   ========================================== */

.fade-in {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

::selection { background: var(--accent-1); color: var(--bg-deep); }

.nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6); z-index: 99;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }


/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    :root { --section-padding: 100px; }
    .hero-fragments { display: none; }
    .aanpak-layout { grid-template-columns: 1fr; gap: 48px; }
    .aanpak-right { position: static; }
    .diensten-grid { grid-template-columns: 1fr; }
    .hashmatch-inner { grid-template-columns: 1fr; }
    .resultaat-card { grid-template-columns: 1fr; gap: 24px; }
    .resultaat-stat { text-align: left; display: flex; align-items: baseline; gap: 12px; }
    .resultaat-number { font-size: 40px; }
    .waarom-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --section-padding: 80px; }
    body { font-size: 16px; }
    .container { padding: 0 24px; }

    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px;
        height: 100vh; background: var(--bg-surface);
        flex-direction: column; align-items: flex-start;
        padding: 100px 36px 40px; gap: 16px;
        transition: right 0.4s var(--ease);
        border-left: 1px solid var(--border);
    }
    .nav-links.open { right: 0; }
    .nav-links a { font-size: 17px; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 36px; }
    .footer-links { gap: 40px; }

    .dienst-card, .resultaat-card, .waarom-card { padding: 32px 28px; }
    .hashmatch-inner { padding: 36px 28px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .section-header h2 { font-size: 26px; }
}
