/* ============================================================
   Daniel Pardoen â gedeeld design-systeem
   Klassiek/zakelijk (serif) Ã AI/tech (mono + raster)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400..600;1,6..72,400..500&family=Hanken+Grotesk:ital,wght@0,300..700;1,400..500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

/* ---- Tokens ---- */
:root {
  --bg:        #F3F3EF;
  --paper:     #FAFAF7;
  --surface:   #FFFFFF;
  --ink:       #14171B;
  --ink-soft:  #474C53;
  --muted:     #828690;

  --line:      #E2E1DA;
  --line-soft: #ECEBE4;

  --navy:      #16294C;   /* kern, diep */
  --navy-700:  #20406F;   /* hover / 2e vlak */
  --blue:      #3E6FB0;   /* mid accent */
  --blue-300:  #8FB2DC;
  --blue-200:  #C2D6EE;
  --wash:      #E9F0F9;   /* lichte blauwwas */
  --wash-line: #D7E3F2;

  --maxw: 1220px;
  --gutter: clamp(20px, 5vw, 64px);

  --r-sm: 4px;
  --r:    10px;
  --r-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(16,30,55,.05), 0 2px 8px rgba(16,30,55,.05);
  --shadow:    0 6px 18px rgba(16,30,55,.07), 0 24px 60px rgba(16,30,55,.09);

  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body:  'Hanken Grotesk', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, monospace;

  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0:  1rem;
  --step-1:  clamp(1.05rem, 1rem + 0.25vw, 1.1875rem);
  --step-2:  clamp(1.5rem, 1.3rem + 0.9vw, 2.05rem);
  --step-3:  clamp(2rem, 1.55rem + 2vw, 3rem);
  --step-4:  clamp(2.25rem, 1.55rem + 3vw, 3.75rem);
  --display: clamp(2.5rem, 1.5rem + 4.4vw, 4.5rem);
}

/* ---- Base ---- */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.62;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.012em;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-weight: 560; }

p { text-wrap: pretty; }
::selection { background: var(--navy); color: #fff; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }

/* ---- i18n ---- */
html[data-lang="nl"] [data-lang="en"] { display: none !important; }
html[data-lang="en"] [data-lang="nl"] { display: none !important; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(60px, 8.5vw, 128px); }
.section--tight { padding-block: clamp(44px, 6vw, 84px); }

.bg-paper { background: var(--paper); }
.bg-wash  { background: var(--wash); }
.bg-navy  { background: var(--navy); color: #E4EAF3; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

/* eyebrow â mono technische tag */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 0.65em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--blue-300); }
.eyebrow--plain::before { display: none; }
.bg-navy .eyebrow { color: var(--blue-300); }
.bg-navy .eyebrow::before { background: var(--blue); }

.lead { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); font-weight: 400; }
.bg-navy .lead { color: #B6C3D9; }
.muted { color: var(--muted); }

/* serif accent / pull quote */
.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.85em 1.4em;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 600; line-height: 1;
  border-radius: 4px; border: 1px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-700); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--wash); }
.btn .ar { transition: transform .2s ease; }
.btn:hover .ar { transform: translateX(3px); }

.txtlink {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-weight: 600; text-decoration: none; color: var(--navy);
  border-bottom: 1px solid var(--blue-200); padding-bottom: 1px;
  transition: gap .2s ease, border-color .2s ease, color .2s ease;
}
.txtlink:hover { gap: 0.72em; border-color: var(--navy); }
.bg-navy .txtlink { color: #fff; border-color: rgba(255,255,255,.3); }
.pillar--ai .txtlink { color: #fff; border-color: rgba(255,255,255,.35); }
.pillar--ai .txtlink:hover { border-color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: color-mix(in srgb, var(--bg) 94%, transparent); }
.nav { display: flex; align-items: center; gap: 22px; height: 74px; }
.brand {
  font-family: var(--font-serif); font-weight: 560; font-size: 1.24rem; letter-spacing: -0.01em;
  text-decoration: none; color: var(--ink); margin-right: auto; white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: 0.18em;
}
.brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); align-self: flex-end; margin-bottom: 4px; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; padding: 0; }
.nav-links a {
  text-decoration: none; font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding-block: 4px; white-space: nowrap; transition: color .18s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--blue); border-radius: 2px; }
.nav-right { display: flex; align-items: center; gap: 14px; }

.lang { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: 4px; padding: 3px; background: var(--surface); }
.lang button {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--font-mono); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 4px 9px; border-radius: 2px; color: var(--ink-soft);
  transition: background .18s ease, color .18s ease;
}
.lang button:hover { color: var(--ink); }
.lang button[aria-pressed="true"] { background: var(--navy); color: #fff; }

.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; margin-left: 4px; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 1060px) {
  .nav-links, .nav .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav.open, .mnav-cb:checked ~ .mobile-nav { display: block; }
}

.mnav-cb { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--paper); }
.mobile-nav ul { list-style: none; margin: 0; padding: 12px var(--gutter) 22px; display: grid; gap: 2px; }
.mobile-nav a { text-decoration: none; display: block; padding: 13px 4px; font-size: 1.12rem; font-weight: 500; border-bottom: 1px solid var(--line-soft); font-family: var(--font-serif); }
.mobile-nav .btn { margin-top: 14px; width: 100%; justify-content: center; font-family: var(--font-body); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: #B7C3D8; }
.site-footer a { color: #B7C3D8; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-block: clamp(54px, 7vw, 90px); }
.footer-brand .brand { color: #fff; }
.footer-brand .brand .dot { background: var(--blue-300); }
.footer-brand p { color: #92A1BC; max-width: 36ch; margin-top: 16px; }
.footer-col h4 { color: #fff; font-size: 0.74rem; font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 11px; font-size: 0.98rem; }
.qs-link { display: inline-flex; align-items: center; gap: 8px; }
.qs-link svg { flex: none; opacity: .8; transition: transform .18s ease; }
.qs-link:hover svg { transform: translateY(2px); color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 0.85rem; color: #7E8DA8; }
.footer-bottom .lang { background: transparent; border-color: rgba(255,255,255,.2); }
.footer-bottom .lang button { color: #C9D2E1; }
.footer-bottom .lang button[aria-pressed="true"] { background: #fff; color: var(--navy); }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof { border-block: 1px solid var(--line); background: var(--paper); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: clamp(26px, 3.6vw, 42px) clamp(18px,2.4vw,30px); border-left: 1px solid var(--line); position: relative; }
.proof-item:first-child { border-left: 0; }
.proof-item .n { font-family: var(--font-serif); font-size: clamp(2rem, 1.3rem+2.2vw, 3rem); font-weight: 500; letter-spacing: -0.02em; color: var(--navy); line-height: 1; }
.proof-item .l { margin-top: 12px; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 780px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(odd) { border-left: 0; }
  .proof-item:nth-child(3), .proof-item:nth-child(4) { border-top: 1px solid var(--line); }
}

/* ============================================================
   PILLARS â twee werelden, contrasterend
   ============================================================ */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }
.pillar { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: clamp(28px, 3.4vw, 46px); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pillar .num { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; }
.pillar h3 { font-size: var(--step-2); margin-top: 14px; }
.pillar .p-desc { margin-top: 14px; font-size: var(--step-1); line-height: 1.5; }
.pillar ul { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 13px; }
.pillar li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; line-height: 1.45; }
.pillar li svg { flex: none; width: 19px; height: 19px; margin-top: 3px; }
.pillar .p-foot { margin-top: auto; }

/* Advies = klassiek, licht */
.pillar--advies { background: var(--surface); border: 1px solid var(--line); }
.pillar--advies .num { color: var(--muted); }
.pillar--advies .p-desc { color: var(--ink-soft); }
.pillar--advies li svg { color: var(--navy); }

/* AI = tech, navy met raster */
.pillar--ai { background: var(--navy); color: #C8D3E6; }
.pillar--ai h3 { color: #fff; }
.pillar--ai .num { color: var(--blue-300); }
.pillar--ai .p-desc { color: #B6C3D9; }
.pillar--ai li svg { color: var(--blue-300); }
.pillar--ai::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .38;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(150deg, transparent 55%, #000 100%);
          mask-image: linear-gradient(150deg, transparent 55%, #000 100%);
}
.pillar > * { position: relative; }

/* ============================================================
   SPEED BAND (AI verschil)
   ============================================================ */
.speed { display: grid; grid-template-columns: 1.2fr 0.9fr; gap: clamp(28px,4vw,56px); align-items: center;
  background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: clamp(34px, 4.5vw, 66px); position: relative; overflow: hidden; }
.speed::before { content:""; position:absolute; inset:0; pointer-events:none; opacity:.4;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px; -webkit-mask-image: linear-gradient(120deg,#000,transparent 75%); mask-image: linear-gradient(120deg,#000,transparent 75%); }
.speed > * { position: relative; }
.speed h2 { color: #fff; font-size: var(--step-3); margin-top: 14px; }
.speed-copy p { color: #B7C2D6; margin-top: 18px; max-width: 44ch; font-size: var(--step-1); line-height: 1.5; }
.speed-case { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); padding: clamp(22px,2.6vw,30px); }
.speed-case .case-tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-300); display: inline-flex; align-items: center; gap: 0.5em; }
.speed-case .case-tag::before { content: "âº"; }
.speed-case p { color: #D4DCEA; margin-top: 14px; font-size: 0.98rem; line-height: 1.55; }
.speed-case .case-punch { color: #fff; font-family: var(--font-serif); font-style: italic; font-size: 1.12rem; line-height: 1.4; }
@media (max-width: 860px) { .speed { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 920px) { .t-grid { grid-template-columns: 1fr; max-width: 640px; } }
.tcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px,3vw,36px); display: flex; flex-direction: column; }
.tcard .quote { font-family: var(--font-serif); font-size: var(--step-1); line-height: 1.4; color: var(--ink); font-weight: 400; }
.tcard .who { margin-top: auto; padding-top: 26px; }
.tcard .who .name { font-weight: 600; }
.tcard .who .role { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.tcard .mark { font-family: var(--font-serif); font-size: 3rem; line-height: 0.5; color: var(--blue-300); height: 26px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; font-size: var(--step-3); max-width: 20ch; }
.cta-band p { color: #B7C2D6; margin-top: 16px; max-width: 48ch; }
.cta-band .actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band::after { content: ""; position: absolute; right: -8%; top: -40%; width: 56%; height: 180%;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px; transform: rotate(8deg); pointer-events: none; }
.cta-band > * { position: relative; }

/* ============================================================
   SECTION HEADINGS / PROSE / MEDIA
   ============================================================ */
.sec-head { max-width: 58ch; }
.sec-head h2 { font-size: var(--step-3); margin-top: 16px; }
.sec-head p { margin-top: 16px; }
/* pijlers-sectiekop op volle contentbreedte */
#pijlers .sec-head { max-width: none; }

.prose p { margin-top: 1.1em; color: var(--ink-soft); }
.prose h3 { font-size: var(--step-2); margin-top: 1.7em; }
.prose ul { margin-top: 1em; padding-left: 1.1em; color: var(--ink-soft); }
.prose li { margin-top: .5em; }

.framed { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--wash); }
.framed img { width: 100%; height: 100%; object-fit: cover; }

.ph { position: relative; border-radius: var(--r); overflow: hidden;
  background: repeating-linear-gradient(45deg, var(--wash), var(--wash) 11px, #DCE7F4 11px, #DCE7F4 22px);
  border: 1px dashed var(--wash-line); display: grid; place-items: center; color: var(--blue);
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.04em; text-align: center; padding: 16px; }

/* capability chips (mono) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.02em; color: var(--navy-700);
  border: 1px solid var(--wash-line); background: var(--wash); border-radius: 4px; padding: 7px 12px; }
.bg-navy .chip { color: #C8D3E6; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }

.skip { position: absolute; left: 12px; top: -60px; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 6px; z-index: 100; transition: top .2s; }
.skip:focus { top: 12px; }

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* footer LinkedIn pill (variant C) */
.li-pill { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; padding: 8px 8px 8px 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; text-decoration: none;
  transition: background .2s ease, border-color .2s ease; }
.li-pill:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }
.li-pill img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }
.li-pill .pmeta { display: grid; }
.li-pill .pn { color: #fff; font-weight: 600; font-size: 0.92rem; line-height: 1.1; }
.li-pill .pu { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.02em; color: #92A1BC; margin-top: 2px; }
.li-pill .pbtn { display: inline-flex; align-items: center; gap: 6px; margin-left: 6px; background: #fff; color: var(--navy);
  border-radius: 999px; padding: 7px 14px; font-weight: 600; font-size: 0.85rem; }
.li-pill .pbtn svg { width: 15px; height: 15px; flex: none; }

/* ============================================================
   PAGE HERO (binnenpagina's)
   ============================================================ */
.page-hero { padding-block: clamp(48px, 6vw, 96px) clamp(40px, 5vw, 72px); }
.page-hero .eyebrow { margin-bottom: 22px; }
.page-hero h1 { font-size: var(--step-4); max-width: 20ch; }
.page-hero .lead { margin-top: 24px; max-width: 60ch; }
.page-hero--split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px,5vw,72px); align-items: start; }
@media (max-width: 900px) { .page-hero--split { grid-template-columns: 1fr; } }

.breadcrumb { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); display: flex; gap: 0.6em; align-items: center; }
.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }

/* two-col content */
.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.split--rev { grid-template-columns: 0.85fr 1.15fr; }
@media (max-width: 880px) { .split, .split--rev { grid-template-columns: 1fr; } }
.split-aside { position: sticky; top: 100px; }

/* feature list with rule */
.deflist { display: grid; gap: 0; }
.deflist .row { display: grid; grid-template-columns: auto 1fr; gap: clamp(18px,3vw,44px); padding-block: 26px; border-top: 1px solid var(--line); align-items: baseline; }
.deflist .row:last-child { border-bottom: 1px solid var(--line); }
.deflist .k { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--blue); padding-top: 4px; }
.deflist .v h3 { font-size: var(--step-1); }
.deflist .v p { margin-top: 8px; color: var(--ink-soft); font-size: var(--step-1); line-height: 1.55; }

/* "not this" callout */
.notlist { display: grid; gap: 12px; }
.notlist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.notlist li svg { flex: none; width: 19px; height: 19px; margin-top: 3px; color: var(--muted); }

/* case cards */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .cases { grid-template-columns: 1fr; } }
.case { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px,3vw,34px); display: flex; flex-direction: column; }
.case .case-k { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); }
.case h3 { font-size: var(--step-1); margin-top: 14px; }
.case p { margin-top: 12px; color: var(--ink-soft); font-size: var(--step-1); line-height: 1.55; }
.case .res { margin-top: auto; padding-top: 20px; font-family: var(--font-serif); font-style: italic; color: var(--navy); }

/* steps / proces */
.steps { counter-reset: step; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px,3vw,40px); padding-block: 30px; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step .idx { counter-increment: step; font-family: var(--font-serif); font-size: 2rem; color: var(--blue-300); line-height: 1; }
.step .idx::before { content: "0" counter(step); }
.step h3 { font-size: var(--step-1); }
.step p { margin-top: 8px; color: var(--ink-soft); max-width: 56ch; font-size: var(--step-1); line-height: 1.55; }

/* timeline */
.timeline { position: relative; }
.tl-group { margin-top: clamp(36px,5vw,64px); }
.tl-group:first-child { margin-top: 0; }
.tl-group > h2 { font-size: var(--step-2); display: flex; align-items: baseline; gap: 0.7em; }
.tl-group > h2 .yr { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; color: var(--blue); text-transform: none; }
.tl-items { margin-top: 24px; border-left: 2px solid var(--line); padding-left: clamp(22px,3vw,38px); display: grid; gap: 30px; }
.tl-item { position: relative; }
.tl-item::before { content: ""; position: absolute; left: calc(-1 * clamp(22px,3vw,38px) - 6px); top: 7px; width: 10px; height: 10px; border-radius: 50%; background: var(--surface); border: 2px solid var(--blue); }
.tl-item .when { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; color: var(--muted); }
.tl-item h3 { font-size: var(--step-1); margin-top: 6px; }
.tl-item .org { color: var(--navy-700); font-weight: 600; }
.tl-item p { margin-top: 8px; color: var(--ink-soft); max-width: 64ch; font-size: var(--step-1); line-height: 1.55; }

/* full testimonial grid */
.t-grid--all { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .t-grid--all { grid-template-columns: 1fr; } }

/* contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(36px,5vw,72px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; font-size: 1rem; transition: border-color .18s ease, box-shadow .18s ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--wash); }
.field textarea { resize: vertical; min-height: 140px; }
.form-note { margin-top: 6px; padding: 14px 16px; background: var(--wash); border: 1px solid var(--wash-line); border-radius: var(--r-sm); font-size: 0.92rem; color: var(--navy-700); }
.contact-aside { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px,3vw,36px); }
.contact-aside .crow { display: grid; gap: 4px; padding-block: 18px; border-top: 1px solid var(--line); }
.contact-aside .crow:first-of-type { border-top: 0; padding-top: 0; }
.contact-aside .crow .ck { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.contact-aside .crow .cv { font-size: 1.05rem; }
.contact-aside .crow .cv a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--blue-200); }
.contact-aside .crow .cv a:hover { border-color: var(--navy); }

/* generic intro block */
.rich { max-width: 68ch; }
.rich p { margin-top: 1.15em; color: var(--ink-soft); font-size: var(--step-1); line-height: 1.6; }
.rich p:first-child { margin-top: 0; }
.rich p.first-lead { color: var(--ink); line-height: 1.55; }
.rich h3 { font-size: var(--step-2); margin-top: 1.5em; }
.rich h3 + p { margin-top: 0.7em; }

/* scenario pull-quotes ("Herken je dit?") */
.pquote { padding-block: clamp(48px, 7vw, 100px); }
.pquote .tag { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; display: inline-block; }
.pquote .q { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.6rem, 1rem + 2.4vw, 2.6rem); line-height: 1.22; letter-spacing: -0.015em; color: var(--ink); max-width: 20ch; }
.pquote .q .mk { color: var(--blue-300); }
.pquote--navy { background: var(--navy); position: relative; overflow: hidden; }
.pquote--navy::after { content: ""; position: absolute; right: -8%; top: -40%; width: 50%; height: 180%; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 30px 30px; transform: rotate(8deg); pointer-events: none; }
.pquote--navy .wrap { position: relative; }
.pquote--navy .tag { color: var(--blue-300); }
.pquote--navy .q { color: #fff; font-style: italic; }

/* FAQ (verplaatst naar contactpagina) */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px,5vw,72px); align-items: start; }
@media (max-width: 860px) { .faq-layout { grid-template-columns: 1fr; } }
.faq-head h2 { font-size: var(--step-3); margin-top: 16px; }
.faq-head .lead { margin-top: 16px; }
.faq-list { display: grid; gap: 0; }
.qa { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--line); }
.qa:first-child { border-top: 0; padding-top: 0; }
.qa-n { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; color: var(--blue); padding-top: 10px; }
.qa-main { min-width: 0; }
.qa-q { width: 100%; display: flex; align-items: baseline; justify-content: space-between; gap: 18px; background: none; border: 0; padding: 6px 0; cursor: pointer; text-align: left; font-family: var(--font-serif); font-weight: 500; font-size: var(--step-1); color: var(--ink); letter-spacing: -0.01em; }
.qa-toggle { flex: none; position: relative; width: 18px; height: 18px; align-self: center; }
.qa-toggle::before, .qa-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--blue); transition: transform .22s ease, opacity .22s ease; }
.qa-toggle::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.qa-toggle::after { width: 2px; height: 14px; transform: translate(-50%,-50%); }
.qa.open .qa-toggle::after { transform: translate(-50%,-50%) scaleY(0); opacity: 0; }
.qa-a { margin-top: 8px; color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.55; max-width: 58ch; display: none; }
.qa.open .qa-a { display: block; }
@media (prefers-reduced-motion: no-preference) { .qa-q:hover .qa-toggle::before, .qa-q:hover .qa-toggle::after { background: var(--navy); } }

/* ============================================================
   LEGAL (voorwaarden / privacy / disclaimer)
   ============================================================ */
.legal-layout { display: grid; grid-template-columns: 0.32fr 0.68fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 880px) { .legal-layout { grid-template-columns: 1fr; } }
.legal-toc { position: sticky; top: 100px; }
@media (max-width: 880px) { .legal-toc { position: static; } }
.legal-toc .toc-k { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.legal-toc ol { list-style: none; counter-reset: toc; padding: 0; margin: 0; display: grid; gap: 2px; }
.legal-toc li { counter-increment: toc; }
.legal-toc a { display: flex; gap: 0.7em; padding: 7px 0; text-decoration: none; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.35; border-bottom: 1px solid transparent; transition: color .16s ease; }
.legal-toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--font-mono); font-size: 0.72rem; color: var(--blue); padding-top: 3px; flex: none; }
.legal-toc a:hover { color: var(--ink); }

.legal { max-width: 70ch; }
.legal .upd { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.04em; color: var(--muted); }
.legal .notice { background: var(--wash); border: 1px solid var(--wash-line); border-radius: var(--r); padding: 16px 18px; font-size: 0.95rem; line-height: 1.55; color: var(--navy-700); margin: 22px 0 8px; }
.legal .notice strong { color: var(--navy); }
.legal .art { padding-block: clamp(26px, 3.4vw, 40px); border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.legal .art h2 { font-size: var(--step-2); display: flex; gap: 0.55em; align-items: baseline; }
.legal .art h2 .anr { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; color: var(--blue); flex: none; }
.legal .art h3 { font-size: var(--step-1); margin-top: 1.3em; }
.legal .art p { margin-top: 0.95em; color: var(--ink-soft); font-size: var(--step-1); line-height: 1.62; }
.legal .art ul, .legal .art ol { margin-top: 0.7em; padding-left: 1.35em; color: var(--ink-soft); font-size: var(--step-1); line-height: 1.55; }
.legal .art li { margin-top: 0.45em; }
.legal .art li::marker { color: var(--blue); }
.legal .art a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--blue-200); }
.legal .art a:hover { border-color: var(--navy); }
.legal .lblock { margin-top: clamp(44px, 6vw, 80px); }
.legal .lblock:first-child { margin-top: 0; }
.legal .lblock > .eyebrow { margin-bottom: 8px; }

/* footer legal links */
.footer-legal { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 0; margin: 0; font-size: 0.85rem; }
.footer-bottom .footer-legal a { color: #7E8DA8; }
.footer-bottom .footer-legal a:hover { color: #fff; }

/* ============================================================
   TWEAKS-PANEEL (ontwerp-preview; verborgen voor bezoekers)
   ============================================================ */
.tweaks-panel {
  position: fixed; right: 18px; bottom: 18px; z-index: 200; width: 270px;
  display: none; background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
  padding: 15px 16px 14px; font-family: var(--font-body);
}
.tweaks-panel.open { display: block; }
.tweaks-panel .tw-head { display: flex; align-items: center; justify-content: space-between; }
.tweaks-panel .tw-title { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); }
.tweaks-panel .tw-close { background: none; border: 0; cursor: pointer; font-size: 1.25rem; line-height: 1; color: var(--muted); padding: 0 2px; }
.tweaks-panel .tw-close:hover { color: var(--ink); }
.tweaks-panel .tw-note { font-size: 0.73rem; color: var(--muted); line-height: 1.42; margin: 8px 0 6px; }
.tweaks-panel .tw-row { margin-top: 15px; }
.tweaks-panel .tw-label { display: flex; align-items: baseline; justify-content: space-between; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 7px; }
.tweaks-panel .tw-label b { font-family: var(--font-mono); font-size: 0.78rem; font-weight: 500; color: var(--navy); }
.tweaks-panel input[type=range] { width: 100%; accent-color: var(--navy); cursor: pointer; margin: 0; }
.tweaks-panel .tw-reset { margin-top: 16px; width: 100%; background: transparent; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 8px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--ink-soft); cursor: pointer; transition: border-color .18s ease, color .18s ease; }
.tweaks-panel .tw-reset:hover { border-color: var(--ink); color: var(--ink); }
