/* ===================================================================
   AEITEC — Design System v5.0
   Warme inkt-basis · signal coral accent · editorial grotesk
   Eén stylesheet voor alle pagina's.
   =================================================================== */

/* -------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------- */

:root {
    /* Brand */
    --brand:        #FF5C38;
    --brand-soft:   #FF7A5C;
    --brand-deep:   #E5431F;
    --amber:        #FFB020;
    --brand-tint:   rgba(255, 92, 56, .12);
    --brand-line:   rgba(255, 92, 56, .32);
    --brand-glow:   rgba(255, 92, 56, .28);

    /* Warme donkere basis (standaardthema) */
    --bg:           #0B0A09;
    --bg-2:         #121010;
    --surface:      #141211;
    --surface-2:    #1C1918;
    --surface-3:    #262221;

    --line:         rgba(255, 255, 255, .08);
    --line-strong:  rgba(255, 255, 255, .16);

    --fg:           #FBF8F5;
    --fg-2:         #ADA49D;
    --fg-3:         #786F68;

    --ok:           #34D399;
    --err:          #FF6B6B;

    --on-brand:     #1A0A04;

    /* Typografie */
    --font-display: 'Bricolage Grotesque', 'Space Grotesk', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.90rem);
    --step-0:  clamp(0.97rem, 0.94rem + 0.18vw, 1.06rem);
    --step-1:  clamp(1.15rem, 1.08rem + 0.36vw, 1.38rem);
    --step-2:  clamp(1.45rem, 1.28rem + 0.85vw, 1.95rem);
    --step-3:  clamp(1.85rem, 1.52rem + 1.55vw, 2.75rem);
    --step-4:  clamp(2.35rem, 1.75rem + 2.75vw, 3.95rem);
    --step-5:  clamp(2.90rem, 1.95rem + 4.40vw, 5.50rem);

    /* Ruimte */
    --gutter:   clamp(20px, 5vw, 32px);
    --section:  clamp(72px, 9vw, 132px);
    --max:      1220px;

    /* Vorm */
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow-md: 0 8px 24px -8px rgba(0,0,0,.6);
    --shadow-lg: 0 28px 60px -20px rgba(0,0,0,.75);

    --ease: cubic-bezier(.22, .61, .36, 1);
    --t:      .24s var(--ease);
    --t-fast: .14s var(--ease);
}

/* Licht thema — alleen tokens wisselen */
body.light-mode {
    --bg:          #FBF9F6;
    --bg-2:        #FFFFFF;
    --surface:     #FFFFFF;
    --surface-2:   #F5F1EC;
    --surface-3:   #EBE5DE;

    --line:        rgba(23, 17, 12, .10);
    --line-strong: rgba(23, 17, 12, .20);

    --fg:          #17110C;
    --fg-2:        #5A524B;
    --fg-3:        #8A8078;

    --brand:       #E5431F;
    --brand-soft:  #FF5C38;
    --brand-deep:  #C4360F;
    --brand-tint:  rgba(229, 67, 31, .09);
    --brand-line:  rgba(229, 67, 31, .28);
    --brand-glow:  rgba(229, 67, 31, .18);

    --on-brand:    #FFFFFF;

    --shadow-sm: 0 1px 2px rgba(23,17,12,.06);
    --shadow-md: 0 10px 30px -12px rgba(23,17,12,.16);
    --shadow-lg: 0 30px 70px -26px rgba(23,17,12,.24);
}

/* -------------------------------------------------------------------
   2. RESET & BASIS
   ------------------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--step-0);
    line-height: 1.65;
    color: var(--fg-2);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color .3s var(--ease), color .3s var(--ease);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--fg);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }

img, svg, video { display: block; max-width: 100%; height: auto; }

ul, ol { list-style: none; }

button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

::selection { background: var(--brand); color: var(--on-brand); }

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
    border-radius: 4px;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

section { position: relative; padding-block: var(--section); }

.section-rule { border-top: 1px solid var(--line); }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.text-center { text-align: center; }
.hidden { display: none !important; }

/* -------------------------------------------------------------------
   3. TYPOGRAFISCHE BOUWSTENEN
   ------------------------------------------------------------------- */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: var(--step--1);
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: currentColor;
    opacity: .6;
}

.section-header {
    max-width: 720px;
    margin-bottom: clamp(44px, 6vw, 76px);
}

.section-header.center {
    margin-inline: auto;
    text-align: center;
}

.section-header.center .eyebrow::before { display: none; }

.section-title {
    font-size: var(--step-3);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: var(--step-1);
    color: var(--fg-2);
    line-height: 1.5;
    font-weight: 400;
}

.accent { color: var(--brand); }

/* -------------------------------------------------------------------
   4. KNOPPEN
   ------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: var(--step-0);
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--t-fast), background-color var(--t),
                border-color var(--t), color var(--t), box-shadow var(--t);
}

.btn:active { transform: translateY(1px); }

.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
    background: var(--brand);
    color: var(--on-brand);
    box-shadow: 0 10px 30px -12px var(--brand-glow);
}

.btn-primary:hover {
    background: var(--brand-soft);
    box-shadow: 0 14px 36px -12px var(--brand-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--fg);
    border-color: var(--line-strong);
}

.btn-secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-tint);
}

.btn-block { width: 100%; }

.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* -------------------------------------------------------------------
   5. NAVIGATIE
   ------------------------------------------------------------------- */

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 900;
    padding-block: 14px;
    border-bottom: 1px solid transparent;
    transition: background-color var(--t), border-color var(--t), padding var(--t);
}

.navbar.scrolled {
    padding-block: 8px;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
    border-bottom-color: var(--line);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo a { display: block; }

.logo img {
    height: 38px;
    width: auto;
    transition: opacity var(--t-fast);
}

.logo a:hover img { opacity: .8; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-inline: auto;
}

.nav-menu li a {
    display: block;
    padding: 9px 14px;
    border-radius: var(--r-pill);
    font-size: var(--step--1);
    font-weight: 500;
    color: var(--fg-2);
    transition: color var(--t-fast), background-color var(--t-fast);
}

.nav-menu li a:hover { color: var(--fg); background: var(--surface-2); }

.nav-menu li a.active { color: var(--brand); background: var(--brand-tint); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions .btn { padding: 11px 20px; font-size: var(--step--1); }

.theme-toggle {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    color: var(--fg-2);
    background: var(--surface);
    transition: var(--t);
}

.theme-toggle:hover { color: var(--brand); border-color: var(--brand-line); }

.theme-toggle svg { width: 17px; height: 17px; }

.sun-icon  { display: none; }
.moon-icon { display: block; }
body.light-mode .sun-icon  { display: block; }
body.light-mode .moon-icon { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 0 11px;
}

.hamburger span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--fg);
    border-radius: 2px;
    transition: var(--t);
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Scroll-voortgang + terug-naar-boven (door main.js aangemaakt) */
#scrollProgress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--brand), var(--amber));
    z-index: 1000;
    transition: width .1s linear;
}

#backToTop {
    position: fixed;
    right: clamp(16px, 3vw, 28px);
    bottom: clamp(16px, 3vw, 28px);
    z-index: 800;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: var(--r-pill);
    font-size: 18px;
    color: var(--fg);
    background: var(--surface-2);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--t);
}

#backToTop.visible { opacity: 1; visibility: visible; transform: none; }
#backToTop:hover { color: var(--brand); border-color: var(--brand-line); }

/* -------------------------------------------------------------------
   6. HERO — split layout met browser-mockup
   ------------------------------------------------------------------- */

.hero {
    padding-top: clamp(120px, 16vh, 176px);
    padding-bottom: clamp(64px, 8vw, 104px);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 720px;
    background:
        radial-gradient(60% 55% at 22% 12%, var(--brand-glow) 0%, transparent 68%),
        radial-gradient(45% 45% at 82% 4%, rgba(255, 176, 32, .14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(120% 70% at 50% 0%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(120% 70% at 50% 0%, #000 20%, transparent 75%);
    opacity: .55;
    pointer-events: none;
    z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px 7px 11px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-strong);
    background: var(--surface);
    font-size: var(--step--1);
    font-weight: 500;
    color: var(--fg-2);
    margin-bottom: 26px;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ok) 22%, transparent);
}

.hero-title {
    font-size: var(--step-5);
    font-weight: 600;
    letter-spacing: -.035em;
    margin-bottom: 22px;
}

.hero-title em {
    font-style: normal;
    color: var(--brand);
}

.hero-subtitle {
    font-size: var(--step-1);
    color: var(--fg-2);
    max-width: 52ch;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: var(--step--1);
    color: var(--fg-3);
}

.hero-trust svg {
    width: 15px;
    height: 15px;
    color: var(--brand);
    flex: none;
}

/* Browser-mockup, volledig in CSS */
.hero-visual { position: relative; }

.mock-window {
    border-radius: var(--r-lg);
    border: 1px solid var(--line-strong);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
}

.mock-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
    background: var(--surface-2);
}

.mock-bar i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--line-strong);
}

.mock-bar i:first-child { background: var(--brand); }

.mock-url {
    margin-left: 10px;
    flex: 1;
    padding: 4px 12px;
    border-radius: var(--r-pill);
    background: var(--bg);
    border: 1px solid var(--line);
    font-size: 11px;
    color: var(--fg-3);
    letter-spacing: .02em;
}

.mock-body { padding: 20px; background: var(--bg-2); }

.mock-topline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
}

.mock-topline .mark {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--brand), var(--amber));
}

.mock-topline .links { display: flex; gap: 7px; margin-left: auto; }
.mock-topline .links i {
    width: 26px;
    height: 5px;
    border-radius: 3px;
    background: var(--surface-3);
}

.mock-line {
    height: 11px;
    border-radius: 4px;
    background: var(--surface-3);
    margin-bottom: 10px;
}

.mock-line.lg { height: 17px; }
.mock-line.brand { background: linear-gradient(90deg, var(--brand), var(--amber)); }
.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-line.w45 { width: 45%; }
.mock-line.w35 { width: 35%; }

.mock-cta {
    width: 96px;
    height: 26px;
    border-radius: var(--r-pill);
    background: var(--brand);
    margin: 20px 0 26px;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mock-cards div {
    height: 62px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    background: var(--surface);
}

.mock-cards div:nth-child(2) { border-color: var(--brand-line); }

.hero-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    border-radius: var(--r-md);
    background: var(--surface);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-lg);
    font-size: var(--step--1);
    line-height: 1.25;
}

.hero-chip strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--fg);
    letter-spacing: -.02em;
}

.hero-chip span { color: var(--fg-3); font-size: .78rem; }

.hero-chip .icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: none;
    border-radius: var(--r-sm);
    background: var(--brand-tint);
    color: var(--brand);
}

.hero-chip .icon svg { width: 16px; height: 16px; }

.chip-speed  { left: -18px;  bottom: 16%; }
.chip-score  { right: -14px; top: 12%; }

/* -------------------------------------------------------------------
   7. MARQUEE / TICKER
   ------------------------------------------------------------------- */

.ticker {
    border-block: 1px solid var(--line);
    padding-block: 16px;
    overflow: hidden;
    background: var(--bg-2);
}

.ticker-track {
    display: flex;
    gap: 46px;
    width: max-content;
    animation: ticker-scroll 38s linear infinite;
}

.ticker-track span {
    display: flex;
    align-items: center;
    gap: 46px;
    font-family: var(--font-display);
    font-size: var(--step-1);
    font-weight: 500;
    letter-spacing: -.02em;
    color: var(--fg-3);
    white-space: nowrap;
}

.ticker-track span::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    opacity: .7;
}

@keyframes ticker-scroll {
    to { transform: translateX(-50%); }
}

.ticker:hover .ticker-track { animation-play-state: paused; }

/* -------------------------------------------------------------------
   8. OVER ONS
   ------------------------------------------------------------------- */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
}

.about-lead {
    font-family: var(--font-display);
    font-size: var(--step-2);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -.025em;
    color: var(--fg);
    margin-bottom: 22px;
}

.about-body p + p { margin-top: 16px; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 36px;
}

.about-stats .stat {
    padding: 20px 18px;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    background: var(--surface);
}

.about-stats .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--step-2);
    font-weight: 600;
    color: var(--brand);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stats .stat-label {
    font-size: var(--step--1);
    color: var(--fg-3);
}

.about-visual {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
}

.about-visual img { width: 100%; }

/* -------------------------------------------------------------------
   9. DIENSTEN — bento grid
   ------------------------------------------------------------------- */

.services-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.service-card {
    position: relative;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: var(--surface);
    overflow: hidden;
    transition: border-color var(--t), transform var(--t), background-color var(--t);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: auto -30% -60% -30%;
    height: 200px;
    background: radial-gradient(50% 60% at 50% 100%, var(--brand-glow), transparent 70%);
    opacity: 0;
    transition: opacity var(--t);
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--brand-line);
    transform: translateY(-3px);
}

.service-card:hover::after { opacity: 1; }

.service-card.wide { grid-column: span 3; }

.service-card > * { position: relative; z-index: 1; }

.service-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    background: var(--brand-tint);
    border: 1px solid var(--brand-line);
    color: var(--brand);
    margin-bottom: 22px;
}

.service-icon svg { width: 20px; height: 20px; }

.service-card h3 {
    font-size: var(--step-1);
    margin-bottom: 10px;
}

.service-card p {
    font-size: var(--step-0);
    color: var(--fg-2);
    margin-bottom: 18px;
}

.service-meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

/* Afsluitende kaart in de bento met een call to action */
.service-card.is-cta {
    justify-content: center;
    border-color: var(--brand-line);
    background:
        radial-gradient(80% 130% at 100% 0%, var(--brand-tint), transparent 60%),
        var(--surface);
}

.service-card.is-cta h3 { font-size: var(--step-2); }
.service-card.is-cta .btn { align-self: flex-start; margin-top: 6px; }
.service-card.is-cta::after { display: none; }

.tag {
    padding: 5px 11px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: var(--bg-2);
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--fg-3);
}

/* -------------------------------------------------------------------
   10. PORTFOLIO — showcase rijen
   ------------------------------------------------------------------- */

.portfolio-showcase {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vw, 28px);
}

.showcase-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    padding: clamp(24px, 3vw, 36px);
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    background: var(--surface);
    transition: border-color var(--t), background-color var(--t);
}

.showcase-item:hover { border-color: var(--brand-line); }

.showcase-item:nth-child(even) { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
.showcase-item:nth-child(even) .showcase-text { order: 2; }

.showcase-index {
    display: block;
    font-family: var(--font-display);
    font-size: var(--step--1);
    font-weight: 600;
    letter-spacing: .16em;
    color: var(--brand);
    margin-bottom: 16px;
}

.showcase-text h3 {
    font-size: var(--step-2);
    margin-bottom: 12px;
}

.showcase-text p {
    color: var(--fg-2);
    margin-bottom: 22px;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: var(--step-0);
    color: var(--fg);
}

.showcase-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--t-fast);
}

.showcase-item:hover .showcase-link { color: var(--brand); }
.showcase-item:hover .showcase-link svg { transform: translate(3px, -3px); }

.showcase-media {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-2);
    aspect-ratio: 16 / 10;
}

.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s var(--ease);
}

.showcase-item:hover .showcase-media img { transform: scale(1.03); }

/* -------------------------------------------------------------------
   11. PRIJZEN — featured + compacte kaarten
   ------------------------------------------------------------------- */

.pricing-layout {
    display: grid;
    gap: 14px;
}

.pricing-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 26px;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    background: var(--surface);
    transition: border-color var(--t), transform var(--t);
}

.pricing-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }

.pricing-card.featured {
    border-color: var(--brand-line);
    background:
        linear-gradient(160deg, var(--brand-tint), transparent 46%),
        var(--surface);
    box-shadow: 0 24px 60px -32px var(--brand-glow);
}

.pricing-card.featured:hover { border-color: var(--brand); }

.popular-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    padding: 5px 13px;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    background: var(--brand);
    color: var(--on-brand);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pricing-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.pricing-head h3 {
    font-size: var(--step-1);
    letter-spacing: -.02em;
}

.pricing-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: none;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    background: var(--bg-2);
    color: var(--brand);
}

.pricing-icon svg { width: 17px; height: 17px; }

.pricing-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.price-from {
    width: 100%;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--fg-3);
    margin-bottom: 4px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: var(--step-3);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1;
    color: var(--fg);
}

.price-period { font-size: var(--step--1); color: var(--fg-3); }

.price-recurring {
    width: 100%;
    margin-top: 8px;
    font-size: var(--step--1);
    font-weight: 600;
    color: var(--brand);
}

.package-best-for {
    padding: 12px 14px;
    margin-bottom: 20px;
    border-radius: var(--r-sm);
    background: var(--bg-2);
    border: 1px solid var(--line);
    font-size: var(--step--1);
    color: var(--fg-2);
}

.package-best-for strong { color: var(--fg); font-weight: 600; }

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 26px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--step--1);
    color: var(--fg-2);
    line-height: 1.45;
}

.pricing-features .check {
    display: grid;
    place-items: center;
    width: 17px;
    height: 17px;
    flex: none;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--brand-tint);
    color: var(--brand);
    font-size: 10px;
    font-weight: 700;
}

.pricing-card .btn { margin-top: auto; width: 100%; }

/* -------------------------------------------------------------------
   12. WERKWIJZE — stepper
   ------------------------------------------------------------------- */

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(90deg, var(--brand-line), var(--line) 60%, transparent);
}

.process-step { position: relative; }

.step-number {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 1px solid var(--brand-line);
    background: var(--bg);
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--t);
}

.process-step:hover .step-number {
    background: var(--brand);
    color: var(--on-brand);
    border-color: var(--brand);
}

.step-content h3 {
    font-size: var(--step-1);
    margin-bottom: 10px;
}

.step-content p {
    font-size: var(--step--1);
    color: var(--fg-2);
}

.process-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: clamp(48px, 6vw, 80px);
    padding: clamp(28px, 4vw, 44px);
    border-radius: var(--r-xl);
    border: 1px solid var(--brand-line);
    background:
        radial-gradient(70% 140% at 8% 0%, var(--brand-tint), transparent 62%),
        var(--surface);
}

.process-cta h3 { font-size: var(--step-2); margin-bottom: 8px; }
.process-cta p { color: var(--fg-2); }

/* -------------------------------------------------------------------
   13. QUIZ
   ------------------------------------------------------------------- */

.quiz-wrapper {
    max-width: 860px;
    margin-inline: auto;
    padding: clamp(26px, 4vw, 44px);
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.quiz-progress-container { margin-bottom: 34px; }

.quiz-progress-bar-bg {
    height: 4px;
    border-radius: var(--r-pill);
    background: var(--surface-3);
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    width: 12.5%;
    border-radius: var(--r-pill);
    background: linear-gradient(90deg, var(--brand), var(--amber));
    transition: width .35s var(--ease);
}

.quiz-progress-text {
    margin-top: 10px;
    font-size: var(--step--1);
    font-weight: 500;
    color: var(--fg-3);
}

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: quiz-in .3s var(--ease); }

@keyframes quiz-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}

.quiz-step-title {
    font-size: var(--step-2);
    margin-bottom: 8px;
}

.quiz-step-subtitle {
    color: var(--fg-3);
    font-size: var(--step--1);
    margin-bottom: 26px;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin: 26px 0;
}

.quiz-option-card { display: block; position: relative; cursor: pointer; }
.quiz-option-card input { position: absolute; inset: 0; opacity: 0; pointer-events: none; }

.quiz-option-card .option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 16px 18px;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    background: var(--bg-2);
    transition: var(--t);
}

.quiz-option-card:hover .option-content {
    border-color: var(--line-strong);
    transform: translateY(-2px);
}

.quiz-option-card input:checked + .option-content {
    border-color: var(--brand);
    background: var(--brand-tint);
}

.quiz-option-card input:focus-visible + .option-content {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.option-icon { font-size: 1.3rem; line-height: 1; flex: none; }

.option-label {
    font-size: var(--step--1);
    font-weight: 500;
    color: var(--fg);
    line-height: 1.3;
}

.quiz-contact-form {
    display: grid;
    gap: 16px;
    margin: 26px 0;
}

.quiz-form-group label,
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: var(--step--1);
    font-weight: 500;
    color: var(--fg-2);
}

.quiz-form-group input {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    background: var(--bg-2);
    color: var(--fg);
    transition: var(--t-fast);
}

.quiz-form-group input::placeholder { color: var(--fg-3); }

.quiz-form-group input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-tint);
}

.quiz-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 6px;
}

.quiz-result-display {
    text-align: center;
    padding: 12px 0;
}

.result-check-icon { font-size: 2.6rem; margin-bottom: 14px; }

.quiz-result-display h3 { font-size: var(--step-2); margin-bottom: 10px; }
.quiz-result-display p { color: var(--fg-2); margin-bottom: 24px; }

.result-recommendation {
    padding: 22px;
    margin-bottom: 26px;
    border-radius: var(--r-md);
    border: 1px solid var(--brand-line);
    background: var(--brand-tint);
    text-align: left;
}

.result-recommendation h4 {
    font-size: var(--step-1);
    color: var(--brand);
    margin-bottom: 8px;
}

/* -------------------------------------------------------------------
   14. CONTACT & FORMULIER
   ------------------------------------------------------------------- */

.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 3vw, 40px);
    align-items: start;
}

.contact-info {
    padding: clamp(28px, 3.5vw, 40px);
    border-radius: var(--r-xl);
    border: 1px solid var(--brand-line);
    background:
        radial-gradient(80% 120% at 10% 0%, var(--brand-tint), transparent 60%),
        var(--surface);
}

.contact-info h3 { font-size: var(--step-2); margin-bottom: 12px; }
.contact-info > p { color: var(--fg-2); margin-bottom: 32px; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.contact-item:last-child { border-bottom: 0; }

.contact-item svg {
    width: 18px;
    height: 18px;
    flex: none;
    margin-top: 3px;
    color: var(--brand);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--fg-3);
    margin-bottom: 3px;
}

.contact-item p { color: var(--fg); font-size: var(--step-0); }
.contact-item p a:hover { color: var(--brand); }

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: var(--step--1);
    color: var(--fg-3);
}

.contact-note svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--ok); }

.contact-form {
    padding: clamp(28px, 3.5vw, 40px);
    border-radius: var(--r-xl);
    border: 1px solid var(--line);
    background: var(--surface);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line);
    background: var(--bg-2);
    color: var(--fg);
    transition: var(--t-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-3); }

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-tint);
}

.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.error-message {
    display: none;
    margin-top: 7px;
    font-size: .8rem;
    color: var(--err);
}

.form-group.error .error-message { display: block; }

.form-group.error input,
.form-group.error textarea {
    border-color: var(--err);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--err) 14%, transparent);
}

/* Honeypot — onzichtbaar voor mensen, zichtbaar voor bots */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
    font-size: var(--step--1);
    color: var(--fg-3);
    line-height: 1.5;
    cursor: pointer;
}

.form-group.error .form-consent { color: var(--fg-2); }

.form-consent input {
    width: 16px;
    height: 16px;
    flex: none;
    margin-top: 3px;
    accent-color: var(--brand);
}

.form-consent a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

.form-feedback {
    display: none;
    align-items: flex-start;
    gap: 11px;
    margin-top: 18px;
    padding: 15px 17px;
    border-radius: var(--r-sm);
    font-size: var(--step--1);
    line-height: 1.5;
}

.form-feedback.show { display: flex; }

.form-feedback.is-success {
    background: color-mix(in srgb, var(--ok) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--ok) 34%, transparent);
    color: var(--fg);
}

.form-feedback.is-error {
    background: color-mix(in srgb, var(--err) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--err) 34%, transparent);
    color: var(--fg);
}

.form-feedback svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }
.form-feedback.is-success svg { color: var(--ok); }
.form-feedback.is-error svg { color: var(--err); }

/* -------------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------------- */

.footer {
    padding-top: clamp(56px, 7vw, 88px);
    padding-bottom: 32px;
    border-top: 1px solid var(--line);
    background: var(--bg-2);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 56px);
    padding-bottom: clamp(40px, 5vw, 64px);
}

.footer-brand img { height: 36px; width: auto; margin-bottom: 18px; }

.footer-brand p {
    font-size: var(--step--1);
    color: var(--fg-3);
    max-width: 34ch;
}

.footer-section h4 {
    font-family: var(--font-body);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--fg-3);
    margin-bottom: 16px;
}

.footer-section ul { display: flex; flex-direction: column; gap: 10px; }

.footer-section li,
.footer-section a {
    font-size: var(--step--1);
    color: var(--fg-2);
}

.footer-section a:hover { color: var(--brand); }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.footer-bottom p { font-size: .82rem; color: var(--fg-3); }

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: .82rem;
}

.footer-legal-links a { color: var(--fg-3); }
.footer-legal-links a:hover { color: var(--brand); }
.footer-legal-links span { display: none; }

/* -------------------------------------------------------------------
   16. SUBPAGINA'S — page header, FAQ, juridisch, 404
   ------------------------------------------------------------------- */

.page-header {
    position: relative;
    padding-top: clamp(130px, 17vh, 180px);
    padding-bottom: clamp(40px, 5vw, 64px);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: -60% -10% auto -10%;
    height: 460px;
    background: radial-gradient(50% 50% at 30% 100%, var(--brand-glow), transparent 70%);
    pointer-events: none;
}

.page-header .container { position: relative; }

.page-header h1 { font-size: var(--step-4); margin-bottom: 14px; }
.page-header p { font-size: var(--step-1); color: var(--fg-2); max-width: 60ch; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: var(--step--1);
    color: var(--fg-3);
}

.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { opacity: .5; }

/* FAQ */
.faq-wrapper {
    max-width: 860px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 4vw, 52px);
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--step-2);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color var(--t);
}

.faq-item.active { border-color: var(--brand-line); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 19px 22px;
    text-align: left;
    font-family: var(--font-display);
    font-size: var(--step-0);
    font-weight: 600;
    letter-spacing: -.015em;
    color: var(--fg);
}

.faq-question:hover { color: var(--brand); }

.faq-icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    flex: none;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--brand);
    font-size: 1rem;
    line-height: 1;
    transition: var(--t);
}

.faq-item.active .faq-icon { background: var(--brand); color: var(--on-brand); border-color: var(--brand); }

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s var(--ease);
}

.faq-item.active .faq-answer { grid-template-rows: 1fr; }

.faq-answer > * { min-height: 0; overflow: hidden; }

.faq-answer p {
    padding: 0 22px 6px;
    font-size: var(--step--1);
    color: var(--fg-2);
}

.faq-answer p:last-child { padding-bottom: 20px; }

.faq-contact-cta {
    max-width: 860px;
    margin: clamp(48px, 6vw, 72px) auto 0;
    padding: clamp(28px, 4vw, 44px);
    text-align: center;
    border-radius: var(--r-xl);
    border: 1px solid var(--brand-line);
    background:
        radial-gradient(60% 130% at 50% 0%, var(--brand-tint), transparent 62%),
        var(--surface);
}

.faq-contact-cta h3 { font-size: var(--step-2); margin-bottom: 8px; }
.faq-contact-cta p { color: var(--fg-2); margin-bottom: 22px; }

/* Juridische pagina's */
.legal-wrapper {
    max-width: 780px;
    margin-inline: auto;
}

.legal-updated {
    display: inline-block;
    padding: 5px 13px;
    margin-bottom: 32px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: .78rem;
    color: var(--fg-3);
}

.legal-intro {
    padding: 22px 24px;
    margin-bottom: 40px;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    border-left: 3px solid var(--brand);
    background: var(--surface);
    color: var(--fg-2);
}

.legal-section { margin-bottom: 38px; }

.legal-section h2 {
    font-size: var(--step-1);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.legal-section h3 {
    font-size: var(--step-0);
    margin: 22px 0 10px;
}

.legal-section p { margin-bottom: 14px; color: var(--fg-2); }

.legal-section ul,
.legal-section ol {
    margin: 0 0 16px 2px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.legal-section li {
    position: relative;
    padding-left: 20px;
    color: var(--fg-2);
    font-size: var(--step-0);
}

.legal-section li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: .68em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand);
}

.legal-section a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }

.legal-section strong { color: var(--fg); font-weight: 600; }

/* Afsluitend contactblok onderaan de juridische pagina's */
.legal-contact {
    padding: clamp(22px, 3vw, 32px);
    margin-top: 44px;
    border-radius: var(--r-lg);
    border: 1px solid var(--brand-line);
    background:
        radial-gradient(70% 130% at 0% 0%, var(--brand-tint), transparent 62%),
        var(--surface);
}

.legal-contact h2 {
    font-size: var(--step-1);
    margin-bottom: 12px;
}

.legal-contact p { color: var(--fg-2); }
.legal-contact p + p { margin-top: 12px; }
.legal-contact strong { color: var(--fg); }
.legal-contact a { color: var(--brand); }

/* Brede tabellen mogen zelf scrollen, de pagina niet */
.cookie-table,
.legal-table {
    overflow-x: auto;
    margin-bottom: 16px;
    border-radius: var(--r-sm);
    -webkit-overflow-scrolling: touch;
}

.cookie-table table { margin-bottom: 0; min-width: 520px; }

.legal-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: var(--step--1);
}

.legal-section th,
.legal-section td {
    padding: 11px 14px;
    text-align: left;
    border: 1px solid var(--line);
}

.legal-section th { background: var(--surface-2); color: var(--fg); font-weight: 600; }

/* 404 */
.error-page {
    min-height: calc(100vh - 220px);
    display: grid;
    place-items: center;
    padding: clamp(120px, 18vh, 180px) var(--gutter) clamp(56px, 8vw, 88px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    inset: -30% -10% auto -10%;
    height: 700px;
    background: radial-gradient(50% 50% at 50% 40%, var(--brand-glow), transparent 68%);
    pointer-events: none;
}

.error-content { position: relative; max-width: 620px; }

.error-code {
    font-family: var(--font-display);
    font-size: clamp(5rem, 18vw, 10rem);
    font-weight: 700;
    line-height: .9;
    letter-spacing: -.05em;
    background: linear-gradient(135deg, var(--brand), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 18px;
}

.error-title { font-size: var(--step-3); margin-bottom: 14px; }
.error-description { color: var(--fg-2); margin-bottom: 30px; }

.search-box { max-width: 420px; margin: 0 auto 26px; }

.search-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--fg);
    text-align: center;
    transition: var(--t-fast);
}

.search-input::placeholder { color: var(--fg-3); }

.search-input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-tint);
}

.error-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
}

.quick-links h2,
.quick-links h3 {
    font-family: var(--font-body);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--fg-3);
    margin-bottom: 14px;
}

.quick-links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.quick-link {
    padding: 8px 16px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: var(--step--1);
    color: var(--fg-2);
    transition: var(--t);
}

.quick-link:hover { border-color: var(--brand); color: var(--brand); }

/* -------------------------------------------------------------------
   17. SCROLL REVEAL
   ------------------------------------------------------------------- */

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: opacity .6s var(--ease), transform .6s var(--ease);
    will-change: opacity, transform;
}

.reveal        { transform: translateY(20px); }
.reveal-left   { transform: translateX(-22px); }
.reveal-right  { transform: translateX(22px); }
.reveal-scale  { transform: scale(.97); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: none;
}

/* -------------------------------------------------------------------
   18. RESPONSIVE
   ------------------------------------------------------------------- */

/* Tussenbreedtes: de menubalk krijgt het krap voordat hij inklapt. */
@media (max-width: 1140px) {
    .nav-menu li a { padding-inline: 10px; }
    .nav-actions .btn { padding-inline: 16px; }
    .logo img { height: 32px; }
}

@media (max-width: 1080px) {
    .services-bento { grid-template-columns: repeat(4, 1fr); }
    .service-card { grid-column: span 2; }
    .service-card.wide { grid-column: span 4; }

    .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 28px 18px; }
    .process-timeline::before { display: none; }
}

@media (max-width: 960px) {
    .nav-menu {
        position: fixed;
        inset: 0 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 88px var(--gutter) 26px;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        transform: translateY(-102%);
        transition: transform .32s var(--ease);
        z-index: -1;
    }

    .nav-menu.active { transform: none; }

    .nav-menu li a {
        padding: 13px 16px;
        border-radius: var(--r-sm);
        font-size: var(--step-0);
    }

    .hamburger { display: flex; }
    .nav-menu { margin-inline: 0; }
    .nav-actions { margin-left: auto; }

    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 560px; }
    .mock-window { transform: none; }
    .chip-speed { left: 0; bottom: -18px; }
    .chip-score { right: 0; top: -18px; }

    .about-grid { grid-template-columns: 1fr; }

    .showcase-item,
    .showcase-item:nth-child(even) { grid-template-columns: 1fr; }
    .showcase-item:nth-child(even) .showcase-text { order: 0; }

    .contact-wrapper { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    :root { --section: clamp(56px, 12vw, 80px); }

    /* Op een telefoon is er geen ruimte voor de knop naast het menu;
       de menulijst bevat zelf een Contact-link. */
    .nav-actions .btn-primary { display: none; }

    .services-bento { grid-template-columns: 1fr; }
    .service-card,
    .service-card.wide { grid-column: span 1; }

    .process-timeline { grid-template-columns: 1fr; }

    .about-stats { grid-template-columns: 1fr; }
    .about-stats .stat { display: flex; align-items: baseline; gap: 12px; }
    .about-stats .stat-number { margin-bottom: 0; }

    .form-row { grid-template-columns: 1fr; gap: 0; }

    .hero-buttons .btn,
    .error-buttons .btn { width: 100%; }

    .quiz-options-grid { grid-template-columns: 1fr; }
    .quiz-nav-buttons .btn { flex: 1 1 140px; }

    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .process-cta { flex-direction: column; align-items: flex-start; }
    .process-cta .btn { width: 100%; }
}

/* -------------------------------------------------------------------
   19. TOEGANKELIJKHEID
   ------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media print {
    .navbar, .footer, #backToTop, #scrollProgress, .hero-visual { display: none !important; }
    body { background: #fff; color: #000; }
}
