/* ================================================================
   VvE LAADOPLOSSING - SHARED STYLESHEET (design system "2a Papier")
   ================================================================
   One file for the whole site. Every colour, radius and type size
   lives in :root so a sublabel is a token swap. No build step.

   Conventions
   - Root-absolute links (/nl/..., /en/...), clean URLs.
   - Page skeleton: header.site-header > hero/page-hero > sections
     > .cta-band (optional) > .powered-by > footer.site-footer
   - Section rhythm: .section (cream) and .section.alt (secondary
     cream). Columns are separated by a 2px ink top rule (.col-rule),
     lists by a 1px hairline (.list-rule). No shadows, no cards.
   - The quickscan page keeps its own nested CSS (.quickscan-app) and
     only shares header/footer and tokens.
   ================================================================ */

:root {
  /* colour */
  --bg: #F2EFEA;
  --bg-2: #EAE6DF;
  --ink: #1A1917;
  --text: #3C3B38;
  --muted: #6B6A66;
  --green: #1D5B3C;
  --green-dark: #164A30;
  --green-on-dark: #D8EBDD;
  --teal: #167A6F;            /* Charge&Co only */
  --hair: rgba(0, 0, 0, .12);
  --rule: var(--ink);
  --focus: #1D5B3C;
  --error: #B42318;
  --ok: #1D5B3C;
  /* diagram colours (same as the quickscan) */
  --c-supplier: #1E4B3A;
  --c-grid: #5FAF8A;
  --c-tax: #C9A24A;
  --c-ere: #3A8C5C;

  /* type */
  --font: Montserrat, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, Menlo, Consolas, "Liberation Mono", monospace;
  --fs-body: 17px;
  --fs-small: 15px;
  --fs-nav: 16px;
  --fs-lead: clamp(17px, 1.6vw, 20px);
  --fs-h1: clamp(42px, 6.5vw, 84px);
  --fs-h2: clamp(36px, 5vw, 64px);
  --fs-h2-s: clamp(32px, 4.5vw, 56px);
  --fs-h3: 26px;
  --fs-eyebrow: 13px;
  --lh-body: 1.6;

  /* layout */
  --max: 1440px;
  --side: clamp(20px, 4vw, 48px);
  --section: clamp(64px, 8vw, 112px);
  --section-s: clamp(48px, 6vw, 80px);
  --gap: 48px;
  --radius: 3px;
  --btn-h: 56px;
  --btn-h-s: 44px;
  --header-h: 80px;
  --prose: 720px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
a:hover { color: var(--green-dark); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
::selection { background: var(--green); color: var(--bg); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--side); top: -60px; z-index: 100;
  background: var(--ink); color: var(--bg); padding: 10px 16px;
  border-radius: var(--radius); text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 12px; }

.wrap { max-width: var(--max); margin: 0 auto; }

/* ---------- type ---------- */
.h1, h1 {
  font-size: var(--fs-h1); line-height: .98; font-weight: 800;
  letter-spacing: -.035em; color: var(--ink);
}
.h2, h2 {
  font-size: var(--fs-h2); line-height: 1.02; font-weight: 800;
  letter-spacing: -.03em; color: var(--ink);
}
h2.h2-s { font-size: var(--fs-h2-s); }
.h3, h3 {
  font-size: var(--fs-h3); line-height: 1.2; font-weight: 700;
  letter-spacing: -.02em;
}
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--text); }
.eyebrow {
  font: 600 var(--fs-eyebrow) var(--mono);
  letter-spacing: .06em; text-transform: uppercase; color: var(--green);
}
.eyebrow.muted { color: var(--muted); }
.eyebrow.teal { color: var(--teal); }
.num { font: 600 var(--fs-eyebrow) var(--mono); color: var(--green); }
.small { font-size: var(--fs-small); color: var(--muted); }
.text { color: var(--text); }
.green { color: var(--green); }
.prose { max-width: var(--prose); }
.prose p + p { margin-top: 1em; }
.prose h2 { font-size: clamp(28px, 3vw, 36px); margin-top: 2.2em; }
.prose h3 { margin-top: 1.6em; }
.prose h2 + p, .prose h3 + p { margin-top: .6em; }
.prose ul, .prose ol { padding-left: 1.3em; margin-top: 1em; }
.prose li + li { margin-top: .4em; }
.prose a { font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--green); color: var(--ink); }
.prose a:hover { color: var(--green); }

/* ---------- buttons and links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: var(--btn-h); padding: 0 28px;
  background: var(--ink); color: var(--bg);
  border: 2px solid var(--ink); border-radius: var(--radius);
  font: 700 17px var(--font); text-decoration: none; cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: var(--green); border-color: var(--green); color: var(--bg); }
.btn.btn-green { background: var(--green); border-color: var(--green); }
.btn.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn.btn-light { background: var(--bg); border-color: var(--bg); color: var(--ink); }
.btn.btn-light:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn.btn-outline { background: transparent; color: var(--ink); }
.btn.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn.btn-s { height: var(--btn-h-s); padding: 0 20px; font-size: 15px; }
.btn.btn-l { height: 60px; padding: 0 32px; font-size: 18px; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }
.link {
  color: var(--ink); font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--green); padding-bottom: 3px;
}
.link:hover { color: var(--green); }
p .link, li .link { padding-bottom: 1px; }
.link-mono {
  display: inline-block; font: 600 12px var(--mono); letter-spacing: .05em;
  text-transform: uppercase; color: var(--green); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.link-mono:hover { color: var(--green-dark); }
.link-teal { color: var(--teal); font-weight: 700; text-decoration: none; }
.link-teal:hover { color: #115E56; }
.actions { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

/* ---------- header (sticky, white, full width) ---------- */
.site-header-bar {
  position: sticky; top: 0; z-index: 30;
  background: #fff; border-bottom: 1px solid var(--hair);
}
.site-header {
  position: relative;
  display: flex; align-items: center; gap: 28px;
  height: var(--header-h); padding: 0 var(--side);
}
.site-header .brand { display: block; flex: none; }
.site-header .brand img { height: clamp(40px, 4vw, 48px); width: auto; }
.nav-main { display: flex; gap: 24px; margin-left: auto; flex: none; white-space: nowrap; }
.nav-main a, .nav-side .login {
  color: var(--ink); font-weight: 600; font-size: var(--fs-nav); text-decoration: none;
}
.nav-main a:hover { color: var(--green); }
.nav-main a[aria-current="page"] { border-bottom: 2px solid var(--green); padding-bottom: 2px; }
.nav-side { display: flex; gap: 20px; align-items: center; flex: none; }
.nav-side .lang { font: 600 13px var(--mono); color: var(--muted); text-decoration: none; letter-spacing: .04em; }
.nav-side .lang:hover { color: var(--ink); }
.nav-side .login { font-weight: 700; border-bottom: 2px solid var(--green); padding-bottom: 2px; }
.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
  background: none; border: 0; padding: 0; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.nav-panel { display: none; }
@media (max-width: 1380px) {
  .nav-main { gap: 20px; }
  .nav-main a, .nav-side .login { font-size: 15px; }
  .site-header .brand img { height: clamp(34px, 3.4vw, 44px); }
}
@media (max-width: 1200px) {
  .site-header { gap: 16px; }
  .site-header .brand img { height: 40px; }
  .nav-main, .nav-side { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header.open .nav-panel {
    display: block; position: absolute; left: 0; right: 0; top: var(--header-h);
    background: #fff; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--hair);
    padding: 12px var(--side) 28px; max-height: calc(100vh - var(--header-h)); overflow: auto;
  }
  .nav-panel a { display: block; padding: 14px 0; border-bottom: 1px solid var(--hair);
    color: var(--ink); font-weight: 600; font-size: 18px; text-decoration: none; }
  .nav-panel a[aria-current="page"] { color: var(--green); }
  .nav-panel .panel-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; padding-top: 20px; }
  .nav-panel .panel-actions a { border: 0; padding: 0; font-size: 16px; }
  .nav-panel .panel-actions .btn { padding: 0 20px; }
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative; min-height: clamp(560px, 56vw, 720px);
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.hero .hero-media {
  position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--bg-2);
}
.hero .hero-media img, .hero .hero-media video {
  width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%;
}
.hero .hero-veil {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242,239,234,.97) 0%, rgba(242,239,234,.9) 38%, rgba(242,239,234,.35) 70%, rgba(242,239,234,0) 100%),
    linear-gradient(180deg, rgba(242,239,234,.55) 0, rgba(242,239,234,0) 160px),
    linear-gradient(0deg, rgba(242,239,234,.9) 0, rgba(242,239,234,0) 200px);
}
.hero .hero-inner {
  position: relative;
  padding: clamp(56px, 8vw, 112px) var(--side) clamp(48px, 7vw, 96px);
  max-width: 820px;
}
.hero h1 { margin-top: 0; font-size: clamp(38px, 5.4vw, 72px); }
.hero .h1-sub { display: block; margin-top: 16px; color: var(--green); font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.hero .lead { margin-top: 28px; max-width: 560px; }
.hero .actions { margin-top: 36px; }
@media (max-width: 700px) {
  .hero .hero-media img { object-position: 78% 50%; }
  .hero .hero-veil { background:
    linear-gradient(180deg, rgba(242,239,234,.96) 0, rgba(242,239,234,.85) 55%, rgba(242,239,234,.4) 100%); }
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  padding: clamp(40px, 6vw, 88px) var(--side) clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: 32px 64px; align-items: end; border-bottom: 2px solid var(--ink);
}
@media (min-width: 960px) { .page-hero { grid-template-columns: 1.25fr 1fr; } }
.page-hero h1 { font-size: clamp(34px, 4.4vw, 58px); margin-top: 20px; }
.page-hero .h1-sub { display: block; margin-top: 14px; color: var(--green); font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.page-hero .lead { max-width: 520px; }
.page-hero.narrow { grid-template-columns: 1fr; max-width: none; }
.page-hero.narrow .lead { margin-top: 24px; max-width: 640px; }

/* ---------- sections ---------- */
.section { padding: var(--section) var(--side); }
.section.tight { padding-top: var(--section-s); padding-bottom: var(--section-s); }
.section.alt { background: var(--bg-2); }
.section.flush-top { padding-top: 0; }
.section-head { max-width: 1100px; }
.section-head .lead { margin-top: 24px; max-width: 560px; }
.section-head .eyebrow + h2 { margin-top: 24px; }
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(32px, 5vw, 64px); align-items: start;
}
.split.center { align-items: center; }
.split-narrow > :first-child { max-width: 480px; }

/* columns with the 2px ink top rule */
.cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap); margin-top: clamp(40px, 6vw, 80px);
}
.cols.cols-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }
.col-rule { border-top: 2px solid var(--rule); padding-top: 28px; }
.col-rule .num { display: block; }
.col-rule h3 { margin-top: clamp(16px, 3vw, 44px); }
.col-rule > h3:first-child { margin-top: 0; }
.col-rule p { color: var(--text); margin-top: 14px; }
.col-rule .link, .col-rule .link-mono { display: inline-block; margin-top: 18px; }

/* stacked list with hairlines (steps, article lists) */
.list-rule { border-top: 1px solid var(--hair); }
.list-rule > * { border-bottom: 1px solid var(--hair); }
.step {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px 32px; padding: 28px 0;
}
.step .step-title { display: flex; gap: 16px; align-items: baseline; }
.step .step-title strong { font-size: 22px; font-weight: 700; letter-spacing: -.01em; line-height: 1.3; }
.step p { color: var(--text); }
.step .link-mono { margin-top: 12px; }
.co-note {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
  font: 600 13px var(--mono); color: var(--teal);
}
.co-note img { height: 14px; width: auto; }
.co-link { display: block; margin-top: 14px; }
.co-link img { height: 26px; width: auto; }

/* ---------- tier table ---------- */
.tier-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--ink); }
.tier-table th, .tier-table td { text-align: left; padding: 18px 0; border-bottom: 1px solid var(--hair); }
.tier-table th { font: 600 12px var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.tier-table td { font-size: 18px; }
.tier-table td.price, .tier-table th.price { text-align: right; font-variant-numeric: tabular-nums; }
.tier-table td.price { font-weight: 700; font-size: 22px; letter-spacing: -.02em; white-space: nowrap; }
.tier-table .note { font-size: var(--fs-small); color: var(--muted); }
.tier-table tr.current td { background: var(--bg-2); }
.tier-table td:first-child, .tier-table th:first-child { padding-left: 4px; }
.tier-table td.price, .tier-table th.price { padding-right: 4px; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- donuts (energy section) ---------- */
.donuts {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(8px, 2vw, 24px);
  align-items: center; max-width: 620px; margin: 0 auto; width: 100%;
}
.donut { text-align: center; }
.donut .eyebrow { display: block; margin-bottom: 14px; }
.donut .ring { position: relative; margin: 0 auto; }
.donut svg { display: block; width: 100%; height: auto; }
.donut svg path { transition: opacity .15s; cursor: default; }
.donut svg:hover path { opacity: .55; }
.donut svg path:hover { opacity: 1; }
.donut .centre {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; pointer-events: none;
}
.donut .centre strong { font-weight: 700; white-space: nowrap; letter-spacing: -.03em; line-height: 1; color: var(--c-supplier); }
.donut .centre span { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.3; }
.donut-arrow { font: 700 clamp(22px, 3vw, 30px) var(--mono); color: var(--c-supplier); padding-top: 28px; }
.donut-legend {
  list-style: none; padding: 0; margin: 18px auto 0; max-width: 250px;
  font-size: 14px; color: var(--text); text-align: left;
}
.donut-legend li { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; border-bottom: 1px solid var(--hair); }
.donut-legend li span:first-child::before {
  content: ""; display: inline-block; width: 10px; height: 10px; margin-right: 8px; background: var(--dot, var(--ink));
}
.donut-legend li b { font-variant-numeric: tabular-nums; font-weight: 600; }
.donut-note { font-size: var(--fs-small); color: var(--muted); margin-top: 20px; max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.tip {
  position: fixed; z-index: 50; pointer-events: none; opacity: 0;
  background: var(--ink); color: var(--bg); padding: 8px 12px; border-radius: var(--radius);
  font-size: 13px; line-height: 1.4; transition: opacity .12s;
}
.tip b { display: block; font-weight: 700; }
@media (max-width: 560px) {
  .donuts { grid-template-columns: 1fr; }
  .donut-arrow { transform: rotate(90deg); padding: 0; text-align: center; }
}

/* ---------- CTA band ---------- */
.cta-band-wrap { padding: 0 var(--side); }
.cta-band {
  background: var(--green); color: var(--bg);
  padding: clamp(36px, 5vw, 72px) clamp(24px, 5vw, 64px);
  display: flex; flex-wrap: wrap; gap: 32px 48px; align-items: center; justify-content: space-between;
}
.cta-band h2 { color: var(--bg); font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
.cta-band p { font-size: 18px; line-height: 1.6; color: var(--green-on-dark); margin-top: 20px; max-width: 560px; }
.cta-band > div { flex: 1 1 360px; }
.cta-band .actions { flex: 0 1 auto; }

/* ---------- powered by Charge&Co ---------- */
.powered-by {
  padding: clamp(40px, 5vw, 64px) var(--side);
  display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: center;
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
}
.powered-by img { height: clamp(44px, 5vw, 64px); width: auto; }
.powered-by > div { flex: 1 1 420px; }
.powered-by p.text { font-size: 16px; margin-top: 8px; max-width: 760px; }

/* ---------- footer ---------- */
.site-footer { padding: clamp(40px, 5vw, 64px) var(--side) 48px; font-size: var(--fs-small); color: var(--muted); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, minmax(160px, 1fr));
  gap: 32px 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand img { height: 36px; width: auto; }
.site-footer .brand p { margin-top: 16px; max-width: 320px; }
.site-footer h4 { font: 600 12px var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.site-footer ul { list-style: none; padding: 0; margin: 14px 0 0; }
.site-footer li + li { margin-top: 10px; }
.site-footer a { color: var(--ink); text-decoration: none; font-weight: 500; }
.site-footer a:hover { color: var(--green); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between;
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--hair);
}
.footer-bottom nav { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- callouts ---------- */
.callout { border-left: 3px solid var(--green); padding: 4px 0 4px 20px; margin-top: 1.4em; color: var(--text); }
.callout .callout-title { font-weight: 700; color: var(--ink); }
.callout.warn { border-color: var(--c-tax); }
.callout.info { border-color: var(--muted); }

/* ---------- forms ---------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; height: 48px; padding: 0 14px; font: 400 17px var(--font);
  color: var(--ink); background: #fff; border: 1.5px solid var(--ink); border-radius: var(--radius);
}
.field textarea { height: auto; min-height: 150px; padding: 12px 14px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid var(--focus); outline-offset: 2px; }
.field .hint { font-size: 14px; color: var(--muted); margin-top: 6px; }
.field.error input, .field.error textarea { border-color: var(--error); }
.field .error-msg { color: var(--error); font-size: 14px; margin-top: 6px; font-weight: 600; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { font-size: 15px; margin-top: 14px; min-height: 22px; font-weight: 600; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--error); }

/* ---------- kennisbank ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.chip {
  height: 40px; padding: 0 16px; border-radius: var(--radius); cursor: pointer;
  font: 600 14px var(--font); border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
}
.chip[aria-pressed="true"] { background: var(--ink); color: var(--bg); }
.chips .count { margin-left: auto; font: 600 13px var(--mono); color: var(--muted); }
.kb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 40px 48px; }
.kb-card { display: block; text-decoration: none; color: var(--ink); border-top: 2px solid var(--ink); padding-top: 22px; }
.kb-card .meta { display: flex; justify-content: space-between; font: 600 12px var(--mono); letter-spacing: .05em; text-transform: uppercase; color: var(--green); }
.kb-card .meta span:last-child { color: var(--muted); }
.kb-card h3 { font-size: 22px; margin-top: 18px; }
.kb-card p { color: var(--text); margin-top: 12px; font-size: 16px; }
.kb-card:hover h3 { color: var(--green); }
.kb-card[hidden] { display: none; }
.kb-featured { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 40px; align-items: center; text-decoration: none; color: var(--ink); }
.kb-featured .media { aspect-ratio: 4 / 3; background: var(--bg-2); overflow: hidden; }
.kb-featured .media img { width: 100%; height: 100%; object-fit: cover; }
.article { padding: clamp(40px, 6vw, 80px) var(--side); }
.article .article-head { max-width: 860px; }
.article .article-head h1 { font-size: clamp(34px, 4.8vw, 60px); margin-top: 20px; }
.article .article-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; font: 600 12px var(--mono); letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.article .article-body { max-width: var(--prose); margin-top: clamp(32px, 4vw, 56px); }
.related { max-width: var(--prose); margin-top: clamp(40px, 5vw, 64px); border-top: 2px solid var(--ink); padding-top: 24px; }
.related h2 { font-size: 22px; }
.related ul { list-style: none; padding: 0; margin: 16px 0 0; }
.related li { padding: 12px 0; border-bottom: 1px solid var(--hair); display: flex; gap: 16px; align-items: baseline; }
.related li .tag { font: 600 11px var(--mono); letter-spacing: .05em; text-transform: uppercase; color: var(--green); flex: none; min-width: 110px; }
.related li a { color: var(--ink); text-decoration: none; font-weight: 600; }
.related li a:hover { color: var(--green); }

/* ---------- FAQ accordion ---------- */
.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--hair); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 0; font-size: 20px; font-weight: 700; letter-spacing: -.01em; display: flex; justify-content: space-between; gap: 24px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font: 700 24px var(--mono); color: var(--green); flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq .answer { padding: 0 0 24px; color: var(--text); max-width: var(--prose); }

/* ---------- 404 / utility pages ---------- */
.error-wrap { padding: clamp(80px, 12vw, 160px) var(--side); max-width: 760px; }
.error-wrap .code { font: 600 13px var(--mono); color: var(--green); letter-spacing: .06em; }

/* ---------- print ---------- */
@media print {
  .site-header, .site-footer, .cta-band-wrap, .powered-by, .nav-toggle, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}

/* ---------- money flow (tarieven) ---------- */
.flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: clamp(12px, 2vw, 28px);
  align-items: start; margin-top: clamp(40px, 6vw, 72px);
}
.flow-step { border-top: 2px solid var(--ink); padding-top: 22px; }
.flow-step h3 { font-size: 22px; margin-top: 12px; }
.flow-lines { list-style: none; padding: 0; margin: 18px 0 0; }
.flow-lines li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--hair); font-size: 15px; }
.flow-lines li b { font: 600 12px var(--mono); letter-spacing: .04em; text-transform: uppercase; color: var(--green); text-align: right; }
.flow-step .small { margin-top: 14px; }
.flow-arrow { font: 700 clamp(22px, 3vw, 30px) var(--mono); color: var(--c-supplier); padding-top: 60px; }
@media (max-width: 900px) {
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); padding: 0; text-align: center; }
}

/* ---------- compare widget (tarieven) ---------- */
.compare { border-top: 2px solid var(--ink); padding-top: 28px; }
.compare-out { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; margin-top: 8px; }
.compare-out strong { display: block; font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; letter-spacing: -.03em; line-height: 1; margin: 10px 0 8px; font-variant-numeric: tabular-nums; }
.compare-out .small { display: block; }
.compare-diff { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--hair); font-size: 18px; }
.compare-diff b { font-weight: 800; font-size: 24px; letter-spacing: -.02em; }
.compare .small { margin-top: 14px; }
@media (max-width: 480px) { .compare-out { grid-template-columns: 1fr; } .compare-out .donut-arrow { transform: rotate(90deg); padding: 0; } }
.link.on-dark { color: var(--bg); border-color: var(--bg); }
.link.on-dark:hover { color: #fff; }

/* ---------- checklists (besturen / beheerders) ---------- */
.checklist { list-style: none; padding: 0; margin: 0; border-top: 2px solid var(--ink); }
.checklist li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--hair); color: var(--text); }
.checklist li::before { content: ""; width: 18px; height: 18px; margin-top: 4px; border: 2px solid var(--green); border-radius: var(--radius); background:
  linear-gradient(var(--green), var(--green)) center / 8px 8px no-repeat; }
.checklist.none li::before { border-color: var(--muted); background: linear-gradient(var(--muted), var(--muted)) center / 8px 2px no-repeat; }
.checklist li strong { color: var(--ink); }
.cols.cols-6 { grid-template-columns: repeat(3, 1fr); gap: 36px 32px; }
.cols.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 36px 32px; }
@media (max-width: 900px) { .cols.cols-6, .cols.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cols.cols-6, .cols.cols-4 { grid-template-columns: 1fr; } }
.cols.cols-6 .col-rule h3 { font-size: 20px; margin-top: 14px; }
.cols.cols-6 .col-rule p { font-size: 15px; }
.deliverable { border-top: 2px solid var(--ink); padding-top: 22px; }
.deliverable h3 { font-size: 22px; margin-top: 12px; }
.deliverable p { color: var(--text); margin-top: 12px; font-size: 16px; }

/* ---------- hoe het werkt ---------- */
.stepnav { display: flex; flex-wrap: wrap; gap: 0 32px; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--hair); }
.stepnav a { display: flex; gap: 12px; align-items: baseline; padding: 16px 0; color: var(--ink); font-weight: 700; text-decoration: none; font-size: 17px; }
.stepnav a:hover { color: var(--green); }
.stap, [id] { scroll-margin-top: calc(var(--header-h) + 24px); }
.stap-grid { display: grid; gap: 24px; border-top: 2px solid var(--ink); padding-top: 22px; }
.stap-grid > div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--hair); }
.stap-grid > div:last-child { border-bottom: 0; }
.stap-grid p { color: var(--text); }
@media (max-width: 560px) { .stap-grid > div { grid-template-columns: 1fr; gap: 6px; } }
.instap { margin-top: 8px; border-left: 3px solid var(--green); padding: 4px 0 4px 20px; }
.instap p { color: var(--ink); font-weight: 600; margin-top: 6px; }

/* ---------- over ons ---------- */
.person { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: start; border-top: 2px solid var(--ink); padding-top: 24px; }
.person img { width: 180px; height: 180px; object-fit: cover; }
.person h3 { font-size: 24px; }
.person p { color: var(--text); margin-top: 10px; }
@media (max-width: 560px) { .person { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-methods { display: grid; gap: 0; border-top: 2px solid var(--ink); }
.contact-methods a, .contact-methods div.method { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--hair); color: var(--ink); text-decoration: none; }
.contact-methods .val { font-weight: 700; white-space: nowrap; }
.contact-methods a:hover .val { color: var(--green); }
.contact-methods p { color: var(--text); font-size: 15px; margin-top: 4px; }
.company { margin-top: 32px; font-size: 15px; color: var(--muted); }
.company dt { font: 600 11px var(--mono); letter-spacing: .06em; text-transform: uppercase; margin-top: 12px; }
.company dd { margin: 2px 0 0; color: var(--ink); }
.iframe-wrap { border-top: 2px solid var(--ink); padding-top: 24px; }
.iframe-wrap iframe { width: 100%; border: 0; display: block; background: #fff; }

/* ---------- legal ---------- */
.legal { padding: clamp(40px, 6vw, 80px) var(--side); }
.legal .prose h2 { font-size: clamp(24px, 2.6vw, 30px); margin-top: 2em; }
.legal .prose h3 { font-size: 20px; }
.legal .prose table { width: 100%; border-collapse: collapse; margin-top: 1em; font-size: 15px; }
.legal .prose td, .legal .prose th { text-align: left; padding: 10px 8px 10px 0; border-bottom: 1px solid var(--hair); vertical-align: top; }
.prose ul + p, .prose ol + p, .prose .callout + p { margin-top: 1em; }
.prose img { margin: 1.5em 0; }
