/* ════════════════════════════════════════════════════════════════════════
   ERP Growth Hack Scan — design system
   Licht & zakelijk: wit canvas met één betrouwbaar blauw accent. Geen Inter.
   ════════════════════════════════════════════════════════════════════════ */

:root {
  /* Kleur — licht/wit canvas, koel grijs, één betrouwbaar blauw accent */
  --bg:        #ffffff;
  --bg-soft:   #f4f7fb;
  --surface:   #ffffff;
  --surface-2: #eaeff7;
  --line:      #e1e7f0;
  --line-soft: #eef2f7;

  --text:      #0f1b2e;
  --text-soft: #46566b;
  --muted:     #8593a6;

  --accent:    #2563eb;   /* vertrouwd blauw */
  --accent-dim:#1d4ed8;
  --accent-ink:#ffffff;   /* tekst óp het accent */

  --ok:        #16a34a;
  --warn:      #d97706;
  --bad:       #dc2626;

  /* Typografie */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Maatvoering */
  --wrap: 880px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 16px 40px -18px rgba(15,27,46,.16);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1100px 600px at 85% -8%, rgba(37,99,235,.07), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; line-height: 1.12; margin: 0 0 .4em; }
h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { margin: 0 0 1em; color: var(--text-soft); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 14px; border-radius: 0 0 8px 0; z-index: 50; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ── Header / footer ───────────────────────────────────────────────────── */
.site-header { border-bottom: 1px solid var(--line-soft); position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: blur(10px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: baseline; gap: 10px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-mark { width: 12px; height: 12px; border-radius: 3px; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(37,99,235,.14); transform: translateY(1px); }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .02em; }
.brand-sub { color: var(--muted); font-size: .82rem; font-family: var(--font-mono); }
.header-meta { color: var(--muted); font-size: .8rem; font-family: var(--font-mono); }

.site-footer { margin-top: auto; border-top: 1px solid var(--line-soft); padding: 18px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .85rem; flex-wrap: wrap; }

.app { padding-block: clamp(28px, 5vw, 56px); flex: 1; }

/* ── Generieke bouwstenen ──────────────────────────────────────────────── */
.card { background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow); }

.eyebrow { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-dim); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent-dim); }

.lede { font-size: 1.08rem; color: var(--text-soft); max-width: 60ch; }

.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; border: 0; border-radius: 10px; padding: 14px 22px; cursor: pointer; transition: transform .12s var(--ease), background .2s; }
.btn:disabled { opacity: .4; cursor: not-allowed; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:not(:disabled):hover { transform: translateY(-2px); background: #1d4ed8; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); }
.btn .arrow { transition: transform .15s var(--ease); }
.btn:not(:disabled):hover .arrow { transform: translateX(3px); }

.bullets { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.bullets li { position: relative; padding-left: 26px; color: var(--text-soft); }
.bullets li::before { content: ""; position: absolute; left: 4px; top: .55em; width: 8px; height: 8px;
  border-radius: 2px; background: var(--accent); transform: rotate(45deg); }

/* ── Intro ─────────────────────────────────────────────────────────────── */
.intro .meta-row { display: flex; flex-wrap: wrap; gap: 18px; margin: 22px 0 26px; color: var(--muted);
  font-family: var(--font-mono); font-size: .82rem; }
.intro .meta-row span { display: inline-flex; gap: 7px; align-items: center; }
.intro .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ── Voortgang ─────────────────────────────────────────────────────────── */
.progress { position: sticky; top: 62px; z-index: 15; padding: 14px 0 6px;
  background: color-mix(in srgb, var(--bg) 90%, transparent); backdrop-filter: blur(8px); }
.progress-head { display: flex; justify-content: space-between; font-family: var(--font-mono);
  font-size: .8rem; color: var(--muted); margin-bottom: 8px; }
.progress-track { height: 6px; background: var(--surface-2); border-radius: 99px; overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 99px; transition: width .35s var(--ease); }

/* ── Vragen ────────────────────────────────────────────────────────────── */
.questions { display: grid; gap: 18px; margin-top: 22px; }
.q { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(16px,2.4vw,24px);
  scroll-margin-top: 130px; transition: border-color .25s; }
.q[data-answered="true"] { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.q-top { display: flex; gap: 12px; align-items: baseline; margin-bottom: 14px; }
.q-index { font-family: var(--font-mono); color: var(--accent-dim); font-size: .85rem; }
.q-dim { margin-left: auto; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); padding: 3px 9px; border-radius: 99px; }
.q-text { font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; color: var(--text); }
.options { display: grid; gap: 10px; margin-top: 18px; }
.opt { display: flex; gap: 13px; align-items: flex-start; width: 100%; text-align: left;
  padding: 15px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color .15s, background .15s, transform .08s;
  background: var(--bg-soft); color: inherit; font-family: var(--font-body); font-size: 1rem; }
.opt:hover { border-color: var(--accent-dim); }
.opt:active { transform: scale(.995); }
.opt:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.opt:disabled { cursor: default; }
.opt .dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--muted); flex: 0 0 auto;
  margin-top: 1px; display: grid; place-items: center; transition: border-color .15s; }
.opt .dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); transform: scale(0); transition: transform .15s var(--ease); }
.opt.selected { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, var(--bg-soft)); }
.opt.selected .dot { border-color: var(--accent); }
.opt.selected .dot::after { transform: scale(1); }
.opt .opt-label { color: var(--text-soft); }
.opt.selected .opt-label { color: var(--text); }

/* Wizard: één vraag per scherm met auto-doorklik (geen scrollen) */
.qstage { margin-top: 22px; min-height: 220px; }
.qcard { animation: qin .26s var(--ease) both; }
@keyframes qin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.qnav { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.qnav .btn-ghost:disabled { opacity: .35; cursor: default; }
.submit-hint { color: var(--muted); font-size: .88rem; font-family: var(--font-mono); }

/* ── Resultaat ─────────────────────────────────────────────────────────── */
.result { animation: rise .5s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.score-hero { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px,4vw,40px); align-items: center; }
@media (max-width: 620px){ .score-hero { grid-template-columns: 1fr; text-align: center; } }

.gauge { --val: 0; width: 168px; height: 168px; position: relative; margin-inline: auto; }
.gauge svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.gauge .track { fill: none; stroke: var(--surface-2); stroke-width: 12; }
.gauge .ring { fill: none; stroke: var(--accent); stroke-width: 12; stroke-linecap: round;
  stroke-dasharray: var(--circ); stroke-dashoffset: var(--circ); transition: stroke-dashoffset 1.1s var(--ease); }
.gauge .num { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.gauge .num b { font-family: var(--font-mono); font-weight: 600; font-size: 2.5rem; color: var(--text); line-height: 1; }
.gauge .num small { display: block; color: var(--muted); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; margin-top: 4px; }

.verdict-label { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 6px; }
.verdict-summary { color: var(--text-soft); max-width: 52ch; }

/* Dimensie-uitsplitsing */
.dims { display: grid; gap: 14px; margin-top: 30px; }
.dim { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.dim-head { display: flex; align-items: center; gap: 14px; padding: 16px 18px; }
.dim-name { font-family: var(--font-display); font-weight: 600; }
.dim-bar { flex: 1; height: 6px; background: var(--surface-2); border-radius: 99px; overflow: hidden; }
.dim-bar > i { display: block; height: 100%; width: 0; border-radius: 99px; transition: width .9s var(--ease); }
.dim-pct { font-family: var(--font-mono); font-size: .88rem; color: var(--text-soft); min-width: 46px; text-align: right; }
.lvl-low > i { background: var(--bad); }
.lvl-mid > i { background: var(--warn); }
.lvl-high > i { background: var(--ok); }
.dim-advice { padding: 0 18px 18px; border-top: 1px solid var(--line-soft); }
.dim-advice h4 { font-family: var(--font-display); font-size: 1rem; margin: 14px 0 6px; color: var(--text); }
.dim-advice .tag { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 99px; border: 1px solid var(--line); color: var(--muted); }
.tag.low { color: var(--bad); border-color: color-mix(in srgb, var(--bad) 45%, var(--line)); }
.tag.mid { color: var(--warn); border-color: color-mix(in srgb, var(--warn) 45%, var(--line)); }
.tag.high { color: var(--ok); border-color: color-mix(in srgb, var(--ok) 45%, var(--line)); }
.dim-advice p { margin: 0; }

.result-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Lead-formulier ────────────────────────────────────────────────────── */
.lead { margin-top: 34px; scroll-margin-top: 90px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
@media (max-width: 560px){ .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.span-2 { grid-column: 1 / -1; }
.field label { font-size: .88rem; color: var(--text-soft); font-weight: 500; }
.field label .req { color: var(--accent); }
.field input[type=text], .field input[type=email], .field input[type=tel] {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text); font-family: var(--font-body); font-size: 1rem; transition: border-color .15s; }
.field input:focus { outline: none; border-color: var(--accent); }
.field input::placeholder { color: var(--muted); }
.field[data-error="true"] input { border-color: var(--bad); }
.field .err { color: var(--bad); font-size: .8rem; min-height: 1em; }

.consent { display: flex; gap: 12px; align-items: flex-start; grid-column: 1 / -1;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; }
.consent[data-error="true"] { border-color: var(--bad); }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); flex: 0 0 auto; }
.consent label { font-size: .9rem; color: var(--text-soft); }

.form-foot { display: flex; align-items: center; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.form-status { font-family: var(--font-mono); font-size: .85rem; }
.form-status.error { color: var(--bad); }
.form-status.ok { color: var(--ok); }

/* ── Feedback ("Was deze scan behulpzaam?") + zachte lead ──────────────── */
.feedback { margin-top: 30px; }
.feedback h2 { margin: 0 0 16px; }
.fb-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.fb-btn { font-family: var(--font-display); font-weight: 500; font-size: 1rem; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 20px; cursor: pointer;
  color: var(--text); transition: border-color .15s, background .15s, transform .08s; }
.fb-btn:hover { border-color: var(--accent-dim); }
.fb-btn:active { transform: scale(.98); }
.fb-btn.selected { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, var(--bg-soft)); }
.feedback textarea { width: 100%; margin-top: 14px; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px; color: var(--text); font-family: var(--font-body);
  font-size: 1rem; resize: vertical; min-height: 52px; }
.feedback textarea:focus { outline: none; border-color: var(--accent); }
.fb-done { color: var(--ok); font-family: var(--font-mono); font-weight: 600; }
.optional { color: var(--muted); font-weight: 400; font-size: .85em; }

/* ── Bedankt ───────────────────────────────────────────────────────────── */
.thanks { text-align: center; padding: clamp(30px,6vw,60px) 0; animation: rise .5s var(--ease) both; }
.thanks .check { width: 64px; height: 64px; border-radius: 50%; background: color-mix(in srgb, var(--ok) 18%, transparent);
  border: 2px solid var(--ok); display: grid; place-items: center; margin: 0 auto 22px; color: var(--ok); font-size: 1.8rem; }

/* ── Foutstatus (config niet gevonden e.d.) ────────────────────────────── */
.fatal { text-align: center; padding: 60px 0; }
.fatal code { font-family: var(--font-mono); background: var(--surface-2); padding: 2px 7px; border-radius: 5px; color: var(--accent); }

/* ── Landing: hero + scan-keuze ────────────────────────────────────────── */
.hero { padding: clamp(8px, 3vw, 30px) 0 6px; }
.hero-title { font-size: clamp(2rem, 5.4vw, 3.4rem); letter-spacing: -.02em; max-width: 18ch; }
.hero-lede { font-size: clamp(1.05rem, 2vw, 1.2rem); max-width: 58ch; margin-top: 4px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats { display: flex; gap: clamp(22px, 4vw, 44px); flex-wrap: wrap; margin-top: 42px;
  padding-top: 28px; border-top: 1px solid var(--line-soft); }
.hero-stats > div { max-width: 24ch; }
.hero-stats b { display: block; font-family: var(--font-mono); font-weight: 600; font-size: 1.9rem;
  color: var(--accent); line-height: 1; }
.hero-stats span { display: block; color: var(--muted); font-size: .9rem; margin-top: 8px; line-height: 1.4; }

.scan-choose { margin-top: clamp(40px, 7vw, 64px); scroll-margin-top: 80px; }
.home-explainer { margin-top: clamp(40px, 7vw, 60px); }
.home-explainer > .lede { max-width: 64ch; margin-top: 6px; }
.scan-choose > .lede { max-width: 56ch; margin-top: 2px; }
.kennis-cta { margin-top: 34px; color: var(--text-soft); }

/* Discreet uitklapblok met de branchescans (vindbaar, niet prominent) */
.sectors { margin-top: clamp(34px, 6vw, 50px); border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); padding: 2px 18px; }
.sectors summary { cursor: pointer; padding: 15px 0; font-family: var(--font-display); font-weight: 500;
  color: var(--text-soft); list-style: none; }
.sectors summary::-webkit-details-marker { display: none; }
.sectors summary::before { content: "▸"; color: var(--accent); margin-right: 9px; display: inline-block; transition: transform .15s; }
.sectors[open] summary::before { transform: rotate(90deg); }
.sectors summary:hover { color: var(--accent); }
.sector-links { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 0 18px; }
.sector-links a { font-size: .9rem; color: var(--text-soft); border: 1px solid var(--line); border-radius: 99px;
  padding: 7px 14px; transition: border-color .15s, color .15s; }
.sector-links a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

.scan-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; margin-top: 26px; }
.scan-tile { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; transition: border-color .15s, transform .12s var(--ease); }
.scan-tile:hover { border-color: var(--accent); transform: translateY(-3px); text-decoration: none; }
.scan-tile h3 { color: var(--text); margin-bottom: 6px; }
.scan-tile p { color: var(--muted); font-size: .9rem; margin: 0; }
.scan-tile .go { color: var(--accent); font-family: var(--font-mono); font-size: .82rem; margin-top: 14px; display: inline-block; }

/* ── Header-navigatie ──────────────────────────────────────────────────── */
.header-right { display: flex; align-items: center; gap: 22px; }
.site-nav { display: flex; gap: 20px; }
.site-nav a { color: var(--text-soft); font-family: var(--font-display); font-weight: 500; font-size: .95rem; }
.site-nav a:hover { color: var(--accent); text-decoration: none; }
@media (max-width: 560px){ .header-meta { display: none; } .brand-sub { display: none; } .site-nav { gap: 14px; } }

/* ── Kennisbank-artikel ────────────────────────────────────────────────── */
.article { animation: rise .4s var(--ease) both; }
.back-link { display: inline-block; margin-bottom: 16px; font-family: var(--font-mono); font-size: .82rem; color: var(--muted); }
.back-link:hover { color: var(--accent); text-decoration: none; }
.article h2 { margin-top: 1.4em; }
.article .lede { margin-bottom: 8px; }

.stats-block { margin: 28px 0; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-top: 18px; }
.stat { background: linear-gradient(180deg, var(--surface), var(--bg-soft)); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 20px; transition: border-color .2s, transform .12s var(--ease); }
.stat:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); transform: translateY(-2px); }
.stat b { display: block; font-family: var(--font-mono); font-weight: 600; line-height: 1;
  font-size: clamp(1.9rem, 4.5vw, 2.7rem); color: var(--accent); }
.stat span { display: block; margin-top: 12px; color: var(--text-soft); font-size: .94rem; line-height: 1.4; }
.stat small { display: block; margin-top: 9px; color: var(--muted); font-size: .78rem; }

.facts-block { margin: 30px 0; }
.fact-list { display: grid; gap: 14px; margin-top: 18px; }
.fact { display: flex; gap: 18px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px; transition: border-color .2s; }
.fact:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.fact-num { font-family: var(--font-mono); color: var(--accent-dim); font-size: 1rem; padding-top: 3px; flex: 0 0 auto; }
.fact h3 { margin: 0 0 5px; font-family: var(--font-display); font-size: 1.08rem; color: var(--text); }
.fact p { margin: 0; }

.prose-block { margin: 26px 0; }
.prose-block p { max-width: 66ch; }

.article-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin: 38px 0 8px; flex-wrap: wrap; }
.article-cta h2 { margin: 0 0 6px; }
.article-cta p { margin: 0; max-width: 48ch; }
.article-cta .btn { flex: 0 0 auto; }

.sources { margin-top: 34px; border-top: 1px solid var(--line-soft); padding-top: 16px; }
.sources h3 { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.sources ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: .82rem; }
.sources li { margin-bottom: 4px; }

/* ── Extra artikel-bouwstenen (gevarieerde layouts) ────────────────────── */
.callout { border-left: 3px solid var(--accent); background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px; margin: 28px 0; }
.callout h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: 1.05rem; color: var(--text); }
.callout p { margin: 0; }

.pullquote { margin: 32px 0; }
.pullquote blockquote { margin: 0; border: 0; padding: 0; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem); line-height: 1.3; color: var(--text); }
.pullquote blockquote::before { content: "“"; color: var(--accent); margin-right: 2px; }
.pullquote figcaption { margin-top: 12px; color: var(--muted); font-family: var(--font-mono); font-size: .85rem; }

.steps-block { margin: 30px 0; }
.steps { list-style: none; padding: 0; margin: 18px 0 0; }
.step { display: flex; gap: 16px; padding-bottom: 22px; position: relative; }
.step:not(:last-child)::before { content: ""; position: absolute; left: 17px; top: 38px; bottom: 0; width: 2px; background: var(--line); }
.step-n { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 16%, var(--surface));
  border: 1px solid var(--accent); color: var(--accent); display: grid; place-items: center; font-family: var(--font-mono); font-weight: 600; }
.step h3 { margin: 6px 0 4px; font-family: var(--font-display); font-size: 1.05rem; color: var(--text); }
.step p { margin: 0; }

.checklist-block { margin: 28px 0; }
.checklist { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 11px; }
.checklist li { position: relative; padding-left: 30px; color: var(--text-soft); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ok); font-weight: 700; }

.table-block { margin: 28px 0; }
.table-wrap { overflow-x: auto; margin-top: 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
table.cmp { width: 100%; border-collapse: collapse; font-size: .94rem; }
table.cmp th, table.cmp td { text-align: left; padding: 12px 15px; border-bottom: 1px solid var(--line); }
table.cmp tr:last-child td { border-bottom: 0; }
table.cmp th { font-family: var(--font-display); color: var(--text); font-weight: 600; background: var(--surface); }
table.cmp td { color: var(--text-soft); }
table.cmp td:first-child { color: var(--text); font-weight: 500; }

.related-block { margin: 32px 0 0; border-top: 1px solid var(--line-soft); padding-top: 22px; }
.related-list { display: grid; gap: 10px; margin-top: 14px; }
.related-link { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 16px; color: var(--text);
  transition: border-color .15s, transform .12s var(--ease); }
.related-link:hover { border-color: var(--accent); transform: translateX(3px); text-decoration: none; }
.related-link > span { color: var(--accent); }

/* ── Profielstap (kwalificatie: ERP / omzet / omvang) ──────────────────── */
.profile-fields { display: grid; gap: 26px; margin-top: 26px; }
.profile-field > label { display: block; font-weight: 500; color: var(--text-soft); font-size: .95rem; }
.profile-field select {
  width: 100%; margin-top: 9px; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 13px 14px; color: var(--text);
  font-family: var(--font-body); font-size: 1rem; cursor: pointer; transition: border-color .15s;
}
.profile-field select:focus { outline: none; border-color: var(--accent); }

.slider-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.slider-head output { font-family: var(--font-mono); color: var(--accent); font-size: .95rem; font-weight: 600; }

.profile-field input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; margin-top: 16px;
  border-radius: 99px; background: var(--surface-2); outline: none; cursor: pointer;
}
.profile-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg); box-shadow: 0 0 0 1px var(--accent);
  cursor: pointer; transition: transform .1s var(--ease);
}
.profile-field input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.12); }
.profile-field input[type=range]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(37,99,235,.3); }
.profile-field input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent);
  border: 3px solid var(--bg); box-shadow: 0 0 0 1px var(--accent); cursor: pointer;
}
.profile-field input[type=range]::-moz-range-track { height: 6px; border-radius: 99px; background: var(--surface-2); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
