/* ─────────────────────────────────────────────
   DuurzaamWoonWijzer — homepage redesign v2
   Modern, clean, white, sans-serif
   ───────────────────────────────────────────── */

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

:root {
  /* surfaces */
  --bg:          #FFFFFF;
  --surface:     #FAFAF7;     /* subtle off-white for surfaces */
  --surface-2:   #F4F4EF;     /* slightly stronger surface */
  /* primary */
  --forest:      #0F3D2E;     /* deep green — surfaces, text, accents */
  --forest-2:    #0A2A20;
  --action:      #1B7A4F;     /* brighter green — reserved for buttons / CTAs */
  --action-2:    #145E3B;
  --moss:        #2C5B47;
  --moss-soft:   #E6EFE9;
  /* text — true greys, not warm */
  --ink:         #0A0A0A;
  --ink-mid:     #5C5C5A;
  --ink-light:   #9A9A97;
  /* lines */
  --line:        #EEEEEA;
  --line-2:      #E2E2DE;

  /* type — one family */
  --sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* radii — more modest */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* shadows — subtler */
  --shadow-sm: 0 1px 2px rgba(10,10,10,.04);
  --shadow-md: 0 8px 24px -10px rgba(10,10,10,.10), 0 2px 6px rgba(10,10,10,.04);
  --shadow-lg: 0 20px 48px -16px rgba(10,10,10,.14);

  --ease: cubic-bezier(.2,.7,.2,1);

  --max:      1200px;
  --reading:  680px;
  --gutter:   clamp(20px, 4vw, 40px);
}

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01","cv11";
  overflow-x: hidden;
  -webkit-font-feature-settings: "ss01","cv11";
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--forest); }

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

::selection { background: var(--forest); color: #fff; }

/* ─── Typography ─── */

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--forest);
  display: block;
}
.eyebrow.no-line::before { display: none; }
.eyebrow.on-dark { color: #BDD3C6; }
.eyebrow.on-dark::before { background: #BDD3C6; }

.h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
  color: var(--ink);
}
.h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -.028em;
  text-wrap: balance;
}
.h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.22;
  letter-spacing: -.012em;
}
.h2 em, .h1 em, .h3 em {
  font-style: normal;
  color: var(--ink-light);
  font-weight: 600;
}

.lede {
  font-family: var(--sans);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ink-mid);
  font-weight: 400;
  max-width: 56ch;
  letter-spacing: -.005em;
}

.body-sm { font-size: 14px; color: var(--ink-mid); }
.mono { font-family: var(--mono); font-feature-settings: "tnum"; }

/* ─── Containers ─── */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(72px, 9vw, 128px) 0; }
section.tight { padding: clamp(48px, 6vw, 80px) 0; }

/* ─── Nav ─── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .8);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, .92);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
}
.nav .brand,
.foot-brand .brand {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.015em;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.nav .brand em,
.foot-brand .brand em { font-style: normal; color: var(--action); font-weight: 700; }
.brand-mark { display: none; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: -.005em;
  padding: 6px 0;
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn).active { color: var(--ink); }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ─── Buttons ─── */

.btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.005em;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease), transform .12s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn.btn-primary { background: var(--ink); color: #fff; }
.btn.btn-primary:hover { background: #000; color: #fff; }
.btn.btn-primary:active { transform: scale(.98); }
.btn.btn-accent  { background: var(--action); color: #fff; font-weight: 600; }
.btn.btn-accent:hover  { background: var(--action-2); color: #fff; }
.btn.btn-ghost   {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-lg { padding: 15px 30px; font-size: 15px; border-radius: var(--r-pill); gap: 12px; }
.btn .arr { transition: transform .15s var(--ease); }
.btn:hover .arr { transform: translateX(2px); }

/* ─── Hero ─── */

.hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 120px);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(44px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.04em;
  margin-top: 28px;
  text-wrap: balance;
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--action);
  font-weight: 700;
  font-feature-settings: "tnum";
}
.hero h1 .underline {
  color: var(--action);
  font-weight: 700;
  font-feature-settings: "tnum";
}

.hero-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-mid);
  max-width: 56ch;
  margin-top: 32px;
  letter-spacing: -.005em;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  font-size: 14px;
  color: var(--ink-mid);
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--moss-soft);
  display: grid;
  place-items: center;
  color: var(--forest);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.hero-meta {
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 10px;
}
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--forest); display: inline-block; margin-right: 6px; vertical-align: middle; }

/* hero visual — bill chart card */
.hero-viz {
  position: relative;
}
.bill-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.4vw, 28px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.bill-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% 40% 30%;
  background: radial-gradient(ellipse, rgba(63,170,115,.18), transparent 60%);
  pointer-events: none;
}
.bc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.bc-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}
.bc-live {
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: -.005em;
  color: rgba(255,255,255,.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bc-live .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3FAA73;
  box-shadow: 0 0 0 0 rgba(63,170,115,.7);
  animation: bc-pulse 2.2s ease-out infinite;
  display: inline-block;
}
@keyframes bc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(63,170,115,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(63,170,115,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,170,115,0); }
}

.bc-figures {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  margin: 20px 0 4px;
  position: relative;
}
.bc-fig { display: flex; flex-direction: column; gap: 2px; }
.bc-fig-l {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}
.bc-fig-n {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
  font-feature-settings: "tnum";
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.bc-fig.old .bc-fig-n {
  color: rgba(255,255,255,.55);
}
.bc-fig.old .bc-fig-n .strike {
  position: absolute;
  left: -4px;
  right: -4px;
  top: 52%;
  height: 2px;
  background: rgba(255,255,255,.55);
  transform: rotate(-6deg);
}
.bc-fig.new .bc-fig-n {
  color: #3FAA73;
}
.bc-fig-d {
  font-size: 11px;
  font-family: var(--mono);
  color: rgba(255,255,255,.5);
  letter-spacing: -.005em;
  margin-top: 4px;
}
.bc-arrow {
  width: 24px;
  height: 24px;
  color: rgba(255,255,255,.35);
  align-self: flex-end;
  margin-bottom: 8px;
}

.bc-chart {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 16px;
  position: relative;
}

.bc-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: -.005em;
  position: relative;
  flex-wrap: wrap;
}
.bc-foot-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,.45);
}

@media (max-width: 900px) {
  .hero-viz { margin-top: 8px; }
}

/* hero stats strip */
.stats {
  margin-top: clamp(64px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.stat-cell {
  padding: 28px 0;
  padding-right: 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-cell:last-child { border-right: 0; }
.stat-cell:first-child { padding-left: 0; }
.stat-cell:not(:first-child) { padding-left: 32px; }
.stat-cell .n {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.035em;
  font-feature-settings: "tnum";
}
.stat-cell .l {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: -.005em;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 22px 0; padding-right: 20px; }
  .stat-cell:not(:first-child) { padding-left: 20px; }
  .stat-cell:nth-child(2) { border-right: 0; }
  .stat-cell:nth-child(3) { padding-left: 0; border-right: 1px solid var(--line); }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ─── Decision tree (Beslisboom) ─── */

.beslisboom {
  background: var(--forest);
  color: #fff;
  border-radius: var(--r-lg);
  margin: 0 var(--gutter);
  position: relative;
  overflow: hidden;
}
.beslisboom-inner {
  padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.beslisboom h2 {
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 14px 0 18px;
  max-width: 16ch;
  text-wrap: balance;
}
.beslisboom h2 em { color: #BDD3C6; font-style: normal; }
.beslisboom .lede {
  color: rgba(255,255,255,.7);
  max-width: 50ch;
}

.bb-progress {
  display: flex;
  gap: 8px;
  margin: 40px 0 28px;
  align-items: center;
  flex-wrap: wrap;
}
.bb-step-pill {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.003em;
}
.bb-step-pill .num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 600;
}
.bb-step-pill.active { color: #fff; }
.bb-step-pill.active .num { background: #fff; border-color: #fff; color: var(--forest); }
.bb-step-pill.done .num { background: rgba(255,255,255,.85); border-color: rgba(255,255,255,.85); color: var(--forest); }
.bb-step-pill.done { color: rgba(255,255,255,.7); }
.bb-step-sep { flex: 0 0 20px; height: 1px; background: rgba(255,255,255,.18); }

.bb-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 36px);
}
.bb-question {
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -.025em;
}
.bb-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 600px) {
  .bb-options { grid-template-columns: 1fr; }
}
.bb-opt {
  text-align: left;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: background .15s var(--ease), border-color .15s var(--ease);
  letter-spacing: -.005em;
}
.bb-opt:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.4); }
.bb-opt .sub { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 4px; display: block; font-weight: 400; }
.bb-opt .arr { color: rgba(255,255,255,.4); transition: transform .15s var(--ease), color .15s; }
.bb-opt:hover .arr { transform: translateX(3px); color: #fff; }
.bb-back {
  margin-top: 22px;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.55);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: -.005em;
}
.bb-back:hover { color: #fff; }

/* result panel */
.bb-result {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 820px) {
  .bb-result { grid-template-columns: 1fr; }
}
.bb-rec h3 {
  font-family: var(--sans);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 12px 0 18px;
  text-wrap: balance;
}
.bb-rec h3 em { color: #BDD3C6; font-style: normal; }
.bb-rec p { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.55; margin-bottom: 22px; }
.bb-rec-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.bb-rec-stat {
  padding: 18px 16px 18px 0;
  border-right: 1px solid rgba(255,255,255,.14);
}
.bb-rec-stat:last-child { border-right: 0; }
.bb-rec-stat:not(:first-child) { padding-left: 16px; }
.bb-rec-stat .n {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1;
  letter-spacing: -.025em;
  font-feature-settings: "tnum";
}
.bb-rec-stat .l { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 8px; display: block; font-weight: 500; }

.bb-rec-articles {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bb-rec-articles a {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  letter-spacing: -.005em;
}
.bb-rec-articles a:last-child { border-bottom: 0; }
.bb-rec-articles a:hover { color: #BDD3C6; }
.bb-rec-articles a .arr { margin-left: auto; color: rgba(255,255,255,.4); transition: transform .15s var(--ease); }
.bb-rec-articles a:hover .arr { transform: translateX(3px); color: #fff; }

/* lead form */
.bb-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 36px);
}
.bb-form h4 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.022em;
  margin-bottom: 6px;
}
.bb-form .sub { font-size: 13.5px; color: var(--ink-mid); margin-bottom: 22px; letter-spacing: -.005em; }
.bb-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.bb-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bb-form label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: -.003em;
}
.bb-form input {
  font-family: var(--sans);
  font-size: 14.5px;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  background: #fff;
  border-radius: var(--r-sm);
  color: var(--ink);
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
  letter-spacing: -.005em;
}
.bb-form input::placeholder { color: var(--ink-light); }
.bb-form input:focus { outline: 0; border-color: var(--forest); box-shadow: 0 0 0 3px var(--moss-soft); }
.bb-form .submit-row { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.bb-form .submit-row .btn { justify-content: center; padding: 14px 22px; width: 100%; }
.bb-form .legal { font-size: 11.5px; color: var(--ink-light); line-height: 1.5; letter-spacing: -.003em; }
.bb-form .legal a { color: var(--ink-mid); text-decoration: underline; text-underline-offset: 2px; }

.bb-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.bb-trust-item {
  font-size: 12px;
  color: var(--ink-mid);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.bb-trust-item svg { width: 14px; height: 14px; color: var(--forest); }

.bb-success {
  text-align: center;
  padding: 32px 8px;
}
.bb-success .check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--moss-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.bb-success h4 { font-size: 22px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.02em; }
.bb-success p { color: var(--ink-mid); font-size: 14px; }

/* ─── Story / verhaal section ─── */

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 840px) { .story-inner { grid-template-columns: 1fr; } }
.story-aside { position: sticky; top: 96px; }
.story-aside .photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-light);
  font-size: 13px;
  max-width: 320px;
}
.story-aside .meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-mid);
  max-width: 320px;
  border-top: 1px solid var(--line);
}
.story-aside .meta-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -.005em;
}
.story-aside .meta-row:last-child { border-bottom: 0; }
.story-aside .meta .k { color: var(--ink-light); }
.story-aside .meta .v { color: var(--ink); font-weight: 500; font-feature-settings: "tnum"; }

.story-body p {
  font-family: var(--sans);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 60ch;
  letter-spacing: -.008em;
}
.story-body strong { font-weight: 600; color: var(--ink); }

.timeline {
  margin-top: 56px;
  border-left: 1px solid var(--line-2);
  padding-left: 32px;
}
.tl-row {
  position: relative;
  padding-bottom: 32px;
}
.tl-row:last-child { padding-bottom: 0; }
.tl-row::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink-light);
}
.tl-row.current::before {
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 0 0 4px var(--moss-soft);
}
.tl-row .year {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.tl-row h4 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  margin: 4px 0 8px;
  letter-spacing: -.015em;
}
.tl-row p {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.55;
  max-width: 56ch;
  letter-spacing: -.005em;
}

/* ─── Resultaten grid ─── */

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
@media (max-width: 880px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
.result-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  transition: border-color .15s var(--ease), background .15s var(--ease);
  position: relative;
}
.result-card:hover { border-color: var(--line-2); background: #fff; }
.result-card .ico {
  width: 22px;
  height: 22px;
  color: var(--ink-light);
  margin-bottom: 36px;
  stroke-width: 1.5;
}
.result-card .big {
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.035em;
  display: block;
  font-feature-settings: "tnum";
}
.result-card .lbl {
  font-size: 13px;
  color: var(--ink-mid);
  font-weight: 500;
  margin-top: 8px;
  display: block;
  letter-spacing: -.005em;
}
.result-card .det {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: block;
  letter-spacing: -.003em;
}

/* ─── Featured artikelen ─── */

.featured-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.featured-head .actions { display: flex; gap: 10px; }

.feat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
@media (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid .feat-card.hero-feat { grid-column: 1 / -1; grid-row: auto; min-height: 280px; }
}
@media (max-width: 580px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-grid .feat-card.hero-feat { grid-column: 1; }
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s var(--ease), background .15s var(--ease);
  position: relative;
}
.feat-card:hover { border-color: var(--line-2); background: #fff; }
.feat-card.hero-feat {
  grid-row: span 2;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  padding: clamp(28px, 3vw, 40px);
  justify-content: space-between;
  min-height: 380px;
}
.feat-card.hero-feat:hover { background: #000; border-color: #000; }
.feat-card.hero-feat .cat { color: rgba(255,255,255,.55); }
.feat-card.hero-feat h3 {
  font-family: var(--sans);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.028em;
  color: #fff;
}
.feat-card.hero-feat .meta { color: rgba(255,255,255,.5); }
.feat-card.hero-feat .visual {
  height: 200px;
  border-radius: var(--r-sm);
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
    var(--forest);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.4);
  font-size: 13px;
  letter-spacing: -.005em;
}

.feat-card .cat {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: -.005em;
}
.feat-card h3 {
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.018em;
}
.feat-card .meta {
  font-size: 12.5px;
  color: var(--ink-light);
  margin-top: auto;
  letter-spacing: -.005em;
}

/* full article index */
.idx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 820px) { .idx-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .idx-grid { grid-template-columns: 1fr; } }
.idx-row {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 22px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: background .15s var(--ease);
  background: transparent;
}
.idx-row::after {
  content: "Lees meer →";
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--forest);
  transition: transform .2s var(--ease), color .15s var(--ease);
  align-self: flex-start;
}
.idx-row:hover { background: var(--surface); }
.idx-row:hover::after { color: var(--action); transform: translateX(3px); }
.idx-row .cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink-mid);
  background: var(--surface-2);
  padding: 3px 9px;
  border-radius: 4px;
  align-self: flex-start;
  text-transform: none;
}
/* Categorie-kleuren — afkomstig uit huidige live site */
.idx-row[data-cat="warmtepomp"]   .cat { background:#fff2ea; color:#a4502a; }
.idx-row[data-cat="zonnepanelen"] .cat { background:#fffbe8; color:#8d6e0a; }
.idx-row[data-cat="laadpaal"]     .cat { background:#f3f0fc; color:#574491; }
.idx-row[data-cat="thuisbatterij"].cat { background:#edf4fd; color:#2c609a; }
.idx-row[data-cat="isolatie"]     .cat { background:#edf3f9; color:#3a6584; }
.idx-row[data-cat="subsidie"]     .cat { background:#eaf2eb; color:#3b5e43; }
.idx-row[data-cat="vergelijk"]    .cat { background:#e8f7f5; color:#216d65; }

/* Subtiele top-streep in dezelfde kleur — als visuele anker */
.idx-row { border-top: 2px solid transparent; }
.idx-row[data-cat="warmtepomp"]   { border-top-color:#d4693a; }
.idx-row[data-cat="zonnepanelen"] { border-top-color:#c49a0f; }
.idx-row[data-cat="laadpaal"]     { border-top-color:#7055b5; }
.idx-row[data-cat="thuisbatterij"]{ border-top-color:#3a7ec5; }
.idx-row[data-cat="isolatie"]     { border-top-color:#4a7fa8; }
.idx-row[data-cat="subsidie"]     { border-top-color:#4d7a57; }
.idx-row[data-cat="vergelijk"]    { border-top-color:#2a8b80; }
.idx-row h4 {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.015em;
  color: var(--ink);
}
.idx-row .meta {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: auto;
  padding-top: 8px;
  letter-spacing: -.003em;
}
.idx-row p {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-mid);
  letter-spacing: -.005em;
  margin: 0;
}

/* category filters */
.cat-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.chip {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-mid);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: -.005em;
  transition: all .15s var(--ease);
}
.chip:hover { color: var(--ink); border-color: var(--line-2); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ─── Author bio ─── */

.author-block {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  border: 1px solid var(--line);
}
@media (max-width: 720px) { .author-block { grid-template-columns: 1fr; } }
.author-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-light);
  font-size: 13px;
  max-width: 220px;
}
.author-text h3 { margin-bottom: 16px; }
.author-text p {
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 62ch;
  letter-spacing: -.008em;
}
.author-text p strong { color: var(--ink); font-weight: 600; }
.author-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) { .author-meta { grid-template-columns: repeat(2, 1fr); } }
.author-meta .m { font-size: 12.5px; color: var(--ink-mid); letter-spacing: -.005em; }
.author-meta .m strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.025em;
  margin-bottom: 4px;
  font-feature-settings: "tnum";
}

/* ─── Disclosure / sources strip ─── */

.disclosure {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 32px;
  border: 1px solid var(--line);
}
.disclosure .ico {
  width: 18px;
  height: 18px;
  color: var(--ink-mid);
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 1.5;
}
.disclosure p {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.55;
  max-width: 75ch;
  letter-spacing: -.005em;
}
.disclosure p strong { color: var(--ink); font-weight: 600; }

/* ─── Offerte CTA section (big closing) ─── */

.cta-block {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(48px, 6vw, 88px) clamp(28px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  position: relative;
}
@media (max-width: 820px) { .cta-block { grid-template-columns: 1fr; } }
.cta-block h2 { color: #fff; }
.cta-block h2 em { color: rgba(255,255,255,.5); font-style: normal; }
.cta-block p { color: rgba(255,255,255,.7); font-size: 16px; max-width: 50ch; margin-top: 18px; letter-spacing: -.005em; }
.cta-services {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-service {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  color: #fff;
  transition: background .15s var(--ease), border-color .15s var(--ease);
}
.cta-service:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.30); color: #fff; }
.cta-service .l { font-size: 16px; font-weight: 600; letter-spacing: -.015em; }
.cta-service .s { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 2px; letter-spacing: -.005em; }
.cta-service .arr { color: rgba(255,255,255,.5); transition: transform .15s var(--ease), color .15s; }
.cta-service:hover .arr { color: #fff; transform: translateX(2px); }

/* ─── Sources / methodology ─── */

.sources {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 4vw, 64px);
  padding-top: 64px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .sources { grid-template-columns: 1fr; } }
.sources h3 { margin-bottom: 14px; }
.sources p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 62ch;
  letter-spacing: -.005em;
}
.source-list {
  list-style: none;
  font-size: 14px;
  color: var(--ink-mid);
  display: grid;
  gap: 4px;
}
.source-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.source-list li:last-child { border-bottom: 0; }
.source-list a {
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.005em;
}
.source-list a::after {
  content: "↗";
  margin-left: auto;
  color: var(--ink-light);
  font-size: 13px;
}
.source-list a:hover { color: var(--forest); }

/* ─── Footer ─── */

footer.foot {
  background: var(--surface);
  color: var(--ink-mid);
  padding: clamp(56px, 6vw, 88px) 0 32px;
  margin-top: clamp(56px, 6vw, 96px);
  border-top: 1px solid var(--line);
}
.foot-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 820px) { .foot-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-inner { grid-template-columns: 1fr; } }
.foot-brand p {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.55;
  margin-top: 18px;
  max-width: 36ch;
  letter-spacing: -.005em;
}
.foot-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -.005em;
}
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a {
  color: var(--ink-mid);
  font-size: 14px;
  letter-spacing: -.005em;
}
.foot-col a:hover { color: var(--ink); }
.foot-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-light);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  letter-spacing: -.003em;
}

/* ─── Floating sticky CTA (mobile) ─── */

.floating-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 14px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.005em;
}
.floating-cta .l { font-size: 14px; font-weight: 500; }
.floating-cta:hover { color: #fff; }
@media (max-width: 720px) {
  .floating-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* ═════════════════════════════════════════════
   ARTIKEL / VERGELIJK / BEDANKT — pagina-componenten
   ═════════════════════════════════════════════ */

/* ─── Breadcrumb ─── */

.crumb {
  font-size: 13px;
  color: var(--ink-light);
  letter-spacing: -.003em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.crumb a { color: var(--ink-light); }
.crumb a:hover { color: var(--ink); }
.crumb .sep { color: var(--line-2); }
.crumb .current { color: var(--ink-mid); font-weight: 500; }

/* ─── Article hero ─── */

.article-hero {
  padding: clamp(48px, 6vw, 96px) 0 clamp(40px, 4vw, 64px);
}
.article-hero .crumb { margin-bottom: 32px; }
.article-hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.035em;
  max-width: 22ch;
  text-wrap: balance;
  color: var(--ink);
}
.article-hero h1 em { font-style: normal; color: var(--ink-light); font-weight: 600; }
.article-hero .deck {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-mid);
  margin-top: 24px;
  max-width: 58ch;
  line-height: 1.5;
  letter-spacing: -.005em;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  font-size: 14px;
  color: var(--ink-mid);
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article-byline .author-line { display: flex; align-items: center; gap: 10px; }
.article-byline .author-line .name { color: var(--ink); font-weight: 500; }
.article-byline .meta-line { display: flex; gap: 18px; flex-wrap: wrap; }
.article-byline .meta-line span { display: inline-flex; align-items: center; gap: 6px; }
.article-byline .sep { color: var(--line-2); }

.article-image {
  margin-top: 32px;
  border-radius: var(--r-md);
  aspect-ratio: 16/8;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-light);
  font-size: 13px;
}

/* ─── Two-col layout ─── */

.doc-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding-bottom: clamp(72px, 9vw, 128px);
}
@media (max-width: 980px) {
  .doc-wrap { grid-template-columns: 1fr; }
  .doc-wrap .sidebar { display: none; }
}

/* ─── Article body ─── */

.doc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}
.doc > * + * { margin-top: 22px; }
.doc h2 {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.025em;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  text-wrap: balance;
}
.doc h3 {
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.015em;
  margin-top: 36px;
  color: var(--ink);
}
.doc p {
  color: var(--ink);
  letter-spacing: -.005em;
  max-width: 68ch;
}
.doc p strong { font-weight: 600; color: var(--ink); }
.doc a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--line-2); }
.doc a:hover { color: var(--forest); text-decoration-color: var(--forest); }
.doc ul, .doc ol {
  margin-left: 0;
  padding-left: 20px;
  max-width: 64ch;
  color: var(--ink);
}
.doc li {
  margin-bottom: 8px;
  letter-spacing: -.005em;
}
.doc li::marker { color: var(--ink-light); }

/* Lead paragraph */
.doc .lead {
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-mid);
  letter-spacing: -.01em;
  max-width: 62ch;
}

/* Stat row inside article */
.doc .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0;
}
@media (max-width: 600px) { .doc .stat-row { grid-template-columns: 1fr; } }
.doc .stat-row .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
}
.doc .stat-row .card .n {
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
  font-feature-settings: "tnum";
  display: block;
}
.doc .stat-row .card .l {
  font-size: 13px;
  color: var(--ink-mid);
  margin-top: 8px;
  display: block;
  letter-spacing: -.005em;
}

/* Tables */
.doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14.5px;
  font-feature-settings: "tnum";
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.doc thead th {
  background: transparent;
  color: var(--ink-mid);
  padding: 14px 12px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.doc tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  letter-spacing: -.005em;
}
.doc tbody tr:last-child td { border-bottom: 0; }
.doc tbody td:first-child { color: var(--ink-mid); }
.doc tr.hl td {
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
}
.doc tr.hl td:first-child { color: var(--ink); }

/* Callouts — info, tip, note */
.doc .callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 32px 0;
  border-left: 2px solid var(--ink);
}
.doc .callout .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ink-mid);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.doc .callout p {
  color: var(--ink);
  font-size: 15px;
  margin-top: 0;
  max-width: 70ch;
}
.doc .callout p + p { margin-top: 10px; }
.doc .callout.tip { background: #FCFBF1; border-color: #EDE6BF; border-left-color: #BB7B12; }
.doc .callout.tip .lbl { color: #BB7B12; }
.doc .callout.note { background: var(--moss-soft); border-color: #C5D9CB; border-left-color: var(--forest); }
.doc .callout.note .lbl { color: var(--forest); }
.doc .callout.urgent { background: #FCF5EE; border-color: #EAD1B3; border-left-color: #A0531E; }
.doc .callout.urgent .lbl { color: #A0531E; }

/* Mid-article CTA */
.doc .mid-cta {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-md);
  padding: 28px 32px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 640px) { .doc .mid-cta { grid-template-columns: 1fr; } }
.doc .mid-cta h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 0;
}
.doc .mid-cta p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.5;
  letter-spacing: -.005em;
}
.doc .mid-cta .urg {
  color: #FFC689;
  font-size: 12.5px;
  font-weight: 500;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Inline timeline (months) */
.doc .ml {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  margin: 28px 0;
  align-items: start;
}
.doc .ml-row {
  display: contents;
}
.doc .ml-mnd {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  text-align: center;
  height: fit-content;
  background: var(--moss-soft);
}
.doc .ml-content {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.doc .ml-content:last-child { border-bottom: 0; }
.doc .ml-content strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.doc .ml-content p { font-size: 14.5px; color: var(--ink-mid); margin: 0; max-width: 64ch; }

/* Sources & related bottom */
.doc .bronnen {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.doc .bronnen h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin: 0 0 14px;
  border: 0;
  padding: 0;
}
.doc .bronnen ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
  max-width: none;
}
.doc .bronnen li {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.doc .bronnen li:last-child { border-bottom: 0; }
.doc .bronnen a {
  color: var(--ink);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.005em;
  text-decoration: none;
}
.doc .bronnen a::after {
  content: "↗";
  margin-left: auto;
  color: var(--ink-light);
}
.doc .bronnen a:hover { color: var(--forest); }

/* Inline lead form (Solvari placeholder block) */
.lead-block {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 64px);
  margin: 56px 0 0;
  position: relative;
}
.lead-block .eyebrow.on-dark { color: rgba(255,255,255,.6); }
.lead-block .eyebrow.on-dark::before { background: rgba(255,255,255,.4); }
.lead-block h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: -.028em;
  margin: 12px 0 14px;
  line-height: 1.06;
  border: 0;
  padding: 0;
}
.lead-block h2 em { color: rgba(255,255,255,.5); font-style: normal; }
.lead-block .deck {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  max-width: 56ch;
  line-height: 1.55;
}
.lead-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.lead-trust .item {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -.005em;
}
.lead-trust .item .v { color: #fff; font-weight: 600; }

.lead-iframe {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 28px;
  margin-top: 24px;
  min-height: 480px;
  display: grid;
  place-items: center;
  text-align: center;
}
.lead-iframe .placeholder-note {
  font-size: 13px;
  color: var(--ink-light);
  max-width: 40ch;
  margin: 0 auto;
}
.lead-iframe .placeholder-note strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ─── Sidebar ─── */

.sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sb-card {
  border-radius: var(--r-md);
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.sb-card h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 14px;
}

/* Offer card */
.sb-card.sb-offer {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.sb-card.sb-offer h4 { color: rgba(255,255,255,.55); }
.sb-card.sb-offer .ttl {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.018em;
  margin-bottom: 6px;
  display: block;
}
.sb-card.sb-offer .sub {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  margin-bottom: 18px;
  letter-spacing: -.005em;
}
.sb-card.sb-offer .btn {
  width: 100%;
  justify-content: center;
}
.sb-card.sb-offer .meta {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  margin-top: 12px;
  letter-spacing: -.003em;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* TOC */
.sb-card.sb-toc nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sb-card.sb-toc nav li {
  margin-bottom: 2px;
}
.sb-card.sb-toc nav a {
  font-size: 13.5px;
  color: var(--ink-mid);
  letter-spacing: -.005em;
  display: block;
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -12px;
  line-height: 1.4;
}
.sb-card.sb-toc nav a:hover { color: var(--ink); border-left-color: var(--line-2); }
.sb-card.sb-toc nav a.active { color: var(--ink); border-left-color: var(--forest); font-weight: 500; }

/* Related */
.sb-card.sb-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sb-card.sb-related li {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.sb-card.sb-related li:first-child { padding-top: 0; }
.sb-card.sb-related li:last-child { border-bottom: 0; padding-bottom: 0; }
.sb-card.sb-related a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -.005em;
}
.sb-card.sb-related a:hover { color: var(--forest); }
.sb-card.sb-related .tag {
  font-size: 11px;
  color: var(--ink-mid);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -.003em;
}

/* ─── Author bio inline (article footer) ─── */

.author-bio-inline {
  margin-top: 56px;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 540px) { .author-bio-inline { grid-template-columns: 1fr; } }
.author-bio-inline .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-light);
  font-size: 15px;
  font-weight: 500;
}
.author-bio-inline .bio strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.author-bio-inline .bio p {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 0;
  letter-spacing: -.005em;
}
.author-bio-inline .bio a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-2); }
.author-bio-inline .bio a:hover { color: var(--forest); text-decoration-color: var(--forest); }

.disclosure-small {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-light);
  line-height: 1.55;
  letter-spacing: -.003em;
}

/* ═════════════════════════════════════════════
   VERGELIJK — product cards & comparison table
   ═════════════════════════════════════════════ */

.winner-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  position: relative;
}
@media (max-width: 820px) { .winner-card { grid-template-columns: 1fr; } }
.winner-card .badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.winner-card h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -.028em;
  line-height: 1.05;
  margin: 14px 0 10px;
}
.winner-card .deck {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 52ch;
  letter-spacing: -.005em;
}
.winner-card .visual {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-light);
  font-size: 13px;
}
.winner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.winner-stats .s {
  padding: 16px 12px 16px 0;
  border-right: 1px solid var(--line);
}
.winner-stats .s:last-child { border-right: 0; padding-right: 0; }
.winner-stats .s:not(:first-child) { padding-left: 16px; }
.winner-stats .s .n {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--ink);
  display: block;
  line-height: 1;
  font-feature-settings: "tnum";
}
.winner-stats .s .l {
  font-size: 11.5px;
  color: var(--ink-mid);
  margin-top: 6px;
  display: block;
  letter-spacing: -.003em;
}

/* Product cards grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 40px 0;
}
.product-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color .15s var(--ease);
}
.product-card:hover { border-color: var(--line-2); }
.product-card .rank {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-mid);
  font-feature-settings: "tnum";
  letter-spacing: -.003em;
}
.product-card .visual {
  aspect-ratio: 4/3;
  background: var(--surface);
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-light);
  font-size: 12px;
}
.product-card .brand {
  font-size: 12.5px;
  color: var(--ink-mid);
  letter-spacing: -.003em;
}
.product-card .name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.018em;
  color: var(--ink);
  line-height: 1.2;
}
.product-card .badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.product-card .b {
  font-size: 11px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-mid);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  letter-spacing: -.003em;
}
.product-card.featured .b.win {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.product-card .stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.product-card .stats .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  letter-spacing: -.005em;
}
.product-card .stats .k { color: var(--ink-mid); }
.product-card .stats .v { color: var(--ink); font-weight: 500; font-feature-settings: "tnum"; }
.product-card .price {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.product-card .price-note { font-size: 12px; color: var(--ink-light); margin-top: -8px; }

.pros-cons {
  margin-top: 8px;
  display: grid;
  gap: 12px;
}
.pros-cons .pl {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.005em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.pros-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}
.pros-cons li {
  font-size: 13px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
  letter-spacing: -.005em;
  line-height: 1.45;
}
.pros-cons .pro li::before { content: "+"; position: absolute; left: 0; color: var(--forest); font-weight: 600; }
.pros-cons .con li::before { content: "−"; position: absolute; left: 0; color: var(--ink-light); font-weight: 600; }

.product-card .actions {
  margin-top: auto;
  padding-top: 14px;
}

/* Comparison table — wide */
.compare-table {
  margin: 40px 0;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  overflow-x: auto;
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  letter-spacing: -.005em;
}
.compare-table thead th {
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.compare-table thead th.win {
  background: var(--ink);
  color: #fff;
}
.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--ink-mid);
  background: var(--surface);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .v-best { color: var(--forest); font-weight: 600; }

/* Decision matrix — "welk merk past bij jou" */
.decision-matrix {
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 28px;
  margin: 40px 0;
  border: 1px solid var(--line);
}
.decision-matrix h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.018em;
  margin: 0 0 18px;
  border: 0;
  padding: 0;
}
.decision-matrix ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.decision-matrix li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  letter-spacing: -.005em;
}
@media (max-width: 600px) { .decision-matrix li { grid-template-columns: 1fr; gap: 4px; } }
.decision-matrix .scenario { font-weight: 500; color: var(--ink); }
.decision-matrix .pick { color: var(--ink-mid); }
.decision-matrix .pick strong { color: var(--ink); font-weight: 600; }

/* ═════════════════════════════════════════════
   BEDANKT-pagina
   ═════════════════════════════════════════════ */

.thanks {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 128px) var(--gutter);
  text-align: left;
}
.thanks .check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--moss-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin-bottom: 32px;
}
.thanks h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 18px;
  text-wrap: balance;
  max-width: 18ch;
}
.thanks h1 em { font-style: normal; color: var(--ink-light); font-weight: 600; }
.thanks .lead {
  font-size: clamp(18px, 1.5vw, 20px);
  color: var(--ink-mid);
  margin-bottom: 56px;
  max-width: 58ch;
  letter-spacing: -.005em;
  line-height: 1.5;
}

.thanks-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.thanks-steps li {
  display: grid;
  grid-template-columns: 56px 1fr 100px;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (max-width: 640px) {
  .thanks-steps li { grid-template-columns: 40px 1fr; }
  .thanks-steps li .when { grid-column: 2; padding-top: 4px; }
}
.thanks-steps .n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: grid;
  place-items: center;
  font-feature-settings: "tnum";
}
.thanks-steps .t strong {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.thanks-steps .t p {
  font-size: 14.5px;
  color: var(--ink-mid);
  margin: 0;
  line-height: 1.55;
  max-width: 56ch;
  letter-spacing: -.005em;
}
.thanks-steps .when {
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: -.003em;
  text-align: right;
}
@media (max-width: 640px) {
  .thanks-steps .when { text-align: left; }
}

.thanks .tip-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--forest);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin-bottom: 56px;
}
.thanks .tip-block .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--forest);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.thanks .tip-block p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
  max-width: 65ch;
  letter-spacing: -.005em;
}

.thanks .further {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.thanks .further h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 18px;
}
.thanks .further-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 540px) { .thanks .further-list { grid-template-columns: 1fr; } }
.thanks .further-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.005em;
  transition: background .15s var(--ease), border-color .15s var(--ease);
}
.thanks .further-list a:hover { background: var(--bg); border-color: var(--line-2); color: var(--ink); }
.thanks .further-list a .arr { color: var(--ink-light); }

.thanks .next-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
