@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --sp-sage:        #8daa91;
  --sp-plum:        #262220;
  --sp-night:       #161413;
  --sp-night-100:   #0f0d0c;
  --sp-plum-200:    #1e1b19;
  --sp-slate-300:   #8a8987;
  --sp-bone:        #d8d2c4;

  --sp-fg-1: var(--sp-bone);
  --sp-fg-2: #a39d91;
  --sp-fg-3: #766f64;

  --sp-border: rgba(216, 210, 196, 0.10);

  --sp-font-display: 'Chakra Petch', 'Bahnschrift', sans-serif;
  --sp-font-body:    'Space Grotesk', 'Inter', system-ui, sans-serif;
  --sp-font-mono:    'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sp-night);
  color: var(--sp-fg-1);
  font-family: var(--sp-font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) { .wrap { padding: 0 24px; } }

h1, h2, h3 { font-family: var(--sp-font-display); margin: 0; color: var(--sp-fg-1); font-weight: 600; }
h1 { font-size: 52px; line-height: 1.18; letter-spacing: -0.01em; font-weight: 600; }
h2 { font-size: 32px; line-height: 1.25; letter-spacing: 0; font-weight: 600; }
h3 { font-family: var(--sp-font-body); font-size: 19px; font-weight: 600; }
p { margin: 0 0 20px; color: var(--sp-fg-2); }
p:last-child { margin-bottom: 0; }
.lede { font-size: 19px; color: var(--sp-fg-1); line-height: 1.6; max-width: 640px; }

.label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sp-fg-3);
  margin-bottom: 18px;
}

.btn {
  display: inline-block;
  font-family: var(--sp-font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 4px;
  background: var(--sp-sage);
  color: var(--sp-night);
  transition: background 150ms ease;
}
.btn:hover { background: #b5d4a4; }
.text-link {
  font-size: 15px;
  color: var(--sp-fg-1);
  border-bottom: 1px solid var(--sp-fg-3);
  padding-bottom: 2px;
  transition: border-color 150ms ease, color 150ms ease;
}
.text-link:hover { color: var(--sp-sage); border-color: var(--sp-sage); }

/* -------- nav -------- */
header.site {
  border-bottom: 1px solid var(--sp-border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) { .nav-row { padding: 0 24px; } }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sp-font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand svg { width: 24px; height: 24px; opacity: 0.9; }
nav.primary { display: flex; align-items: center; gap: 34px; }
.nav-item { position: relative; font-size: 15px; color: var(--sp-fg-2); }
.nav-item:hover { color: var(--sp-fg-1); }
.nav-dd {
  position: absolute;
  top: calc(100% + 18px);
  left: -16px;
  min-width: 240px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms;
}
.nav-item.has-dd:hover .nav-dd,
.nav-item.has-dd:focus-within .nav-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd a { display: block; padding: 10px 16px; font-size: 14px; color: var(--sp-fg-2); }
.nav-dd a:hover { color: var(--sp-sage); }
@media (max-width: 900px) { nav.primary { display: none; } }

/* -------- section rhythm -------- */
section { padding: 140px 0; }
section + section { border-top: 1px solid var(--sp-border); }
@media (max-width: 640px) { section { padding: 88px 0; } }

/* -------- hero -------- */
.hero .label { color: var(--sp-fg-3); }
.hero h1 { margin-bottom: 32px; }
.hero p.lede { margin-bottom: 44px; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* -------- gezagvoerder -------- */
.captain { max-width: 700px; }
.captain .lede { margin-bottom: 20px; }
.captain-credentials {
  margin-top: 28px;
  font-family: var(--sp-font-mono);
  font-size: 13px;
  color: var(--sp-fg-3);
  letter-spacing: 0.02em;
}
.captain-credentials span { color: var(--sp-sage); }

/* -------- probleem: plain rows -------- */
.row-list { margin-top: 56px; }
.row-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--sp-border);
}
.row-item:last-child { border-bottom: 1px solid var(--sp-border); }
@media (max-width: 720px) { .row-item { grid-template-columns: 1fr; gap: 8px; } }
.row-item h3 { color: var(--sp-fg-1); }
.row-item p { font-size: 16px; margin-bottom: 0; }

/* -------- aanpak: stepper -------- */
.step-list { margin-top: 56px; }
.step-item {
  display: grid;
  grid-template-columns: 60px 1fr 180px;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--sp-border);
  align-items: baseline;
}
.step-item:last-child { border-bottom: 1px solid var(--sp-border); }
@media (max-width: 780px) {
  .step-item { grid-template-columns: 1fr; gap: 10px; }
}
.step-num { font-family: var(--sp-font-mono); font-size: 14px; color: var(--sp-fg-3); }
.step-body h3 { display: inline; }
.step-sub { font-size: 14px; color: var(--sp-fg-3); font-style: italic; margin-left: 10px; }
.step-body p { font-size: 15.5px; margin-top: 12px; margin-bottom: 0; max-width: 540px; }
.step-meta { text-align: right; }
@media (max-width: 780px) { .step-meta { text-align: left; } }
.step-meta .dur-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sp-fg-3); margin-bottom: 4px; }
.step-meta .dur-val { font-family: var(--sp-font-mono); font-size: 14px; color: var(--sp-fg-1); }
.step-item .text-link { display: inline-block; margin-top: 14px; font-size: 13.5px; }

/* -------- pre-flight checklist, plain -------- */
.checklist-plain { margin-top: 40px; }
.checklist-plain .item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--sp-border);
  font-size: 15px;
}
.checklist-plain .item:last-child { border-bottom: 1px solid var(--sp-border); }
.checklist-plain .status { font-family: var(--sp-font-mono); font-size: 12.5px; letter-spacing: 0.03em; color: var(--sp-sage); white-space: nowrap; }

/* -------- metrics: typographic row -------- */
.metric-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 56px; }
@media (max-width: 900px) { .metric-row { grid-template-columns: repeat(2, 1fr); } }
.metric-item { padding-right: 12px; }
.metric-item .num { font-family: var(--sp-font-display); font-size: 30px; font-weight: 600; color: var(--sp-fg-1); line-height: 1; margin-bottom: 12px; }
.metric-item .num span { color: var(--sp-sage); }
.metric-item .title { font-size: 14px; font-weight: 600; color: var(--sp-fg-1); margin-bottom: 6px; }
.metric-item .desc { font-size: 13px; color: var(--sp-fg-3); line-height: 1.5; }
.metric-note { margin-top: 40px; font-size: 13px; color: var(--sp-fg-3); }

/* -------- routes: plain columns -------- */
.route-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 56px; }
@media (max-width: 780px) { .route-cols { grid-template-columns: 1fr; gap: 40px; } }
.route-cols .tag { font-family: var(--sp-font-mono); font-size: 12px; color: var(--sp-sage); letter-spacing: 0.04em; margin-bottom: 14px; }
.route-cols h3 { margin-bottom: 12px; }
.route-cols p { font-size: 15px; }
.route-cols .route-val { font-size: 13.5px; color: var(--sp-fg-3); margin-top: 14px; }

/* -------- inzichten: plain list -------- */
.insight-list { margin-top: 48px; }
.insight-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--sp-border);
}
.insight-row:last-child { border-bottom: 1px solid var(--sp-border); }
.insight-row .cat { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sp-fg-3); min-width: 90px; }
.insight-row h3 { flex: 1; font-weight: 500; font-size: 18px; }
@media (max-width: 640px) { .insight-row { flex-direction: column; gap: 8px; } }

/* -------- tools -------- */
.tools-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 56px; }
@media (max-width: 720px) { .tools-cols { grid-template-columns: 1fr; gap: 40px; } }
.tools-cols h3 { margin-bottom: 12px; }
.tools-cols p { font-size: 15px; margin-bottom: 16px; }

/* -------- final cta -------- */
.final-cta { text-align: center; }
.final-cta .label { justify-content: center; }
.final-cta h2 { max-width: 560px; margin: 0 auto 20px; }
.final-cta p.lede { max-width: 480px; margin: 0 auto 44px; }
.final-actions { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }

/* -------- footer -------- */
footer.site { padding: 72px 0 40px; border-top: 1px solid var(--sp-border); }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; margin-bottom: 64px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; max-width: 220px; color: var(--sp-fg-3); }
.footer-col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sp-fg-3); margin-bottom: 18px; font-weight: 500; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: var(--sp-fg-2); }
.footer-col a:hover { color: var(--sp-sage); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--sp-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--sp-fg-3);
}
.footer-bottom a { color: var(--sp-fg-3); }
.footer-bottom a:hover { color: var(--sp-sage); }

/* =========================================================================
   Gedeelde stijlen voor onderliggende pagina's (aanpak, voor-wie, de wet,
   cbw-check, documenten, over, contact, privacy)
   ========================================================================= */

/* -------- page hero (kleiner dan de homepage-hero) -------- */
.page-hero { padding-bottom: 88px; }
.page-hero h1 { font-size: 42px; line-height: 1.2; margin-bottom: 20px; }
.page-hero .lede { margin-bottom: 0; }
.breadcrumb { font-size: 13px; color: var(--sp-fg-3); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--sp-sage); }

/* -------- long-form content (De wet, Privacy) -------- */
.prose { max-width: 720px; }
.prose h2 { font-size: 24px; margin-top: 56px; margin-bottom: 18px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; margin-top: 32px; margin-bottom: 12px; color: var(--sp-fg-1); }
.prose p { font-size: 15.5px; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 22px; color: var(--sp-fg-2); font-size: 15.5px; }
.prose li { margin-bottom: 10px; line-height: 1.55; }
.prose li::marker { color: var(--sp-sage); }
.prose strong { color: var(--sp-fg-1); font-weight: 600; }
.callout {
  border-left: 2px solid var(--sp-border-sage, rgba(141,170,145,0.35));
  padding: 4px 0 4px 20px;
  margin: 32px 0;
  font-size: 14.5px;
  color: var(--sp-fg-3);
}

/* -------- pricing rows (Documenten) -------- */
.price-list { margin-top: 48px; }
.price-item {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  gap: 32px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--sp-border);
}
.price-item:last-child { border-bottom: 1px solid var(--sp-border); }
@media (max-width: 780px) { .price-item { grid-template-columns: 1fr; gap: 10px; } }
.price-item .price-name { font-family: var(--sp-font-display); font-size: 18px; }
.price-item .price-sub { font-size: 13px; color: var(--sp-fg-3); font-style: italic; margin-top: 2px; }
.price-item p { font-size: 14.5px; margin-bottom: 0; }
.price-val { text-align: right; }
@media (max-width: 780px) { .price-val { text-align: left; } }
.price-val .amount { font-family: var(--sp-font-mono); font-size: 16px; color: var(--sp-sage); }
.price-val .note { font-size: 12px; color: var(--sp-fg-3); margin-top: 4px; }

/* -------- downloads list (Documenten) -------- */
.download-list { margin-top: 16px; }
.download-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; border-top: 1px solid var(--sp-border);
}
.download-row:last-child { border-bottom: 1px solid var(--sp-border); }
.download-row .fname { font-size: 15px; color: var(--sp-fg-1); }
.download-row .fmeta { font-size: 12.5px; color: var(--sp-fg-3); font-family: var(--sp-font-mono); }

/* -------- form (Contact) -------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; max-width: 640px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field label { font-size: 13px; color: var(--sp-fg-3); }
.form-field input, .form-field textarea {
  background: var(--sp-plum-200);
  border: 1px solid var(--sp-border);
  border-radius: 5px;
  padding: 12px 14px;
  font-family: var(--sp-font-body);
  font-size: 15px;
  color: var(--sp-fg-1);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--sp-sage);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { border: none; cursor: pointer; }
.contact-meta { margin-top: 48px; display: flex; flex-direction: column; gap: 6px; font-size: 14.5px; color: var(--sp-fg-2); }
.contact-meta a:hover { color: var(--sp-sage); }

/* -------- Cbw-check quiz -------- */
.quiz-box { max-width: 620px; margin-top: 48px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-progress { font-family: var(--sp-font-mono); font-size: 12px; color: var(--sp-fg-3); margin-bottom: 16px; letter-spacing: 0.05em; }
.quiz-question { font-family: var(--sp-font-display); font-size: 22px; margin-bottom: 24px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  text-align: left;
  background: var(--sp-plum-200);
  border: 1px solid var(--sp-border);
  border-radius: 6px;
  padding: 16px 18px;
  font-family: var(--sp-font-body);
  font-size: 15px;
  color: var(--sp-fg-1);
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
}
.quiz-option:hover { border-color: var(--sp-sage); background: var(--sp-plum); }
.quiz-result { padding-top: 8px; }
.quiz-result-tag { font-family: var(--sp-font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sp-sage); margin-bottom: 14px; }
.quiz-result h3 { font-size: 26px; font-family: var(--sp-font-display); margin-bottom: 16px; }
.quiz-result p { font-size: 15.5px; max-width: 520px; }
.quiz-restart { margin-top: 24px; font-size: 13.5px; color: var(--sp-fg-3); cursor: pointer; border-bottom: 1px solid var(--sp-fg-3); display: inline-block; }
.quiz-restart:hover { color: var(--sp-sage); border-color: var(--sp-sage); }
.quiz-disclaimer { margin-top: 40px; font-size: 12.5px; color: var(--sp-fg-3); max-width: 560px; }
