/* =================================================================
   Spoedkoerier24 — landing v2 (premium editorial)
   Palette: white + near-black + warm cream + red accent (#DC2626)
   Type: Inter Tight (display) + Inter (body) + JetBrains Mono (data)
   Layout: asymmetric, editorial, dense — anti-AI-generic
   ================================================================= */

:root {
  /* Color */
  --c-ink:       #0A0A0A;
  --c-ink-2:     #14181F;
  --c-ink-3:     #1F2937;
  --c-ink-soft:  #2E3744;
  --c-text:      #0A0A0A;
  --c-muted:     #5B6573;
  --c-muted-2:   #7E8896;
  --c-line:      #E5E1D9;
  --c-line-2:    #D4CFC4;
  --c-bg:        #FFFFFF;
  --c-bg-cream:  #F4F0E8;
  --c-bg-warm:   #FAF7F1;
  --c-bg-cold:   #F1F5F9;
  --c-red:       #DC2626;
  --c-red-deep:  #991B1B;
  --c-red-soft:  #FDECEC;
  --c-amber:     #F59E0B;
  --c-green:     #16A34A;

  /* Type */
  --f-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Layout */
  --max:  1280px;
  --max-narrow: 1100px;
  --gutter: clamp(18px, 4.2vw, 40px);
  --section-pad: clamp(64px, 9vw, 128px);

  /* Effects */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
  --sh-1: 0 1px 0 rgba(15,23,42,.04), 0 2px 6px rgba(15,23,42,.06);
  --sh-2: 0 1px 0 rgba(15,23,42,.04), 0 18px 40px -16px rgba(15,23,42,.18);
  --sh-3: 0 30px 80px -28px rgba(15,23,42,.45);
}

/* ============== reset ============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: clip;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
::selection { background: var(--c-red); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-ink); color: #fff; padding: 12px 18px; z-index: 1000;
}
.skip:focus { left: 12px; top: 12px; }

/* ============== type scale ============== */
.section-title {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: clamp(32px, 4.4vw, 58px);
  color: var(--c-ink);
  margin: 0 0 18px;
}
.section-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--c-muted);
  max-width: 62ch;
  margin: 0;
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-red);
  padding: 6px 10px;
  border: 1px solid var(--c-red-soft);
  background: rgba(220, 38, 38, .04);
  border-radius: 999px;
  margin-bottom: 16px;
}
.kicker.on-dark {
  color: #FCA5A5;
  border-color: rgba(252, 165, 165, .25);
  background: rgba(252, 165, 165, .08);
}
.kicker::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--c-red);
  border-radius: 50%;
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  padding: 0 var(--gutter);
  text-align: left;
}
.section-head-dark .section-title { color: #fff; }
.section-head-dark .section-lede { color: rgba(241, 245, 249, .7); }

/* ============== buttons ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 26px; font-size: 16px; border-radius: 14px; }
.btn-primary {
  background: var(--c-red); color: #fff;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.18), 0 4px 14px -4px rgba(220,38,38,.55);
}
.btn-primary:hover { background: #B91C1C; }
.btn-cta {
  background: var(--c-ink); color: #fff;
  padding: 11px 20px; border-radius: 10px;
}
.btn-cta:hover { background: var(--c-red); }
.btn-ghost-dark {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.22);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.35); }
.btn-full { width: 100%; }

/* ============== nav ============== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid var(--c-line);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo {
  display: inline-flex;
  align-items: center;
  color: var(--c-ink);
  flex-shrink: 0;
}
.logo img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 100%;
}
.site-footer .logo img { height: 36px; }
@media (max-width: 640px) {
  .logo img { height: 26px; }
}

.nav-links {
  margin-left: 8px;
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink-soft);
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { background: var(--c-bg-cold); color: var(--c-ink); }

.nav-cta-wrap {
  margin-left: auto;
  display: flex; align-items: center; gap: 12px;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
  padding: 6px 12px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: #fff;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, .55);
  animation: pulse-dot 2.4s ease-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, .55); }
  70%  { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 11px 10px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--c-ink); border-radius: 2px; }

.nav-mobile {
  display: none;
  padding: 6px var(--gutter) 18px;
  background: #fff;
  border-top: 1px solid var(--c-line);
}
.nav-mobile a {
  display: block; padding: 12px 8px; border-radius: 8px;
  font-weight: 500; color: var(--c-ink-soft);
}
.nav-mobile .btn { margin-top: 8px; }

/* ============== hero ============== */
.hero {
  position: relative;
  background: var(--c-ink);
  color: #fff;
  padding: clamp(40px, 5vw, 64px) 0 clamp(36px, 5vw, 56px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: .55;
}
.hero-bg svg { width: 100%; height: 100%; display: block; }
/* Geanimeerde route-line puls — beweegt langzaam van start naar eind */
@keyframes heroRouteMove {
  0%   { stroke-dashoffset: 2240; opacity: 0.0; }
  10%  { opacity: 0.95; }
  90%  { opacity: 0.95; }
  100% { stroke-dashoffset: 0; opacity: 0.0; }
}
#hero-route-anim {
  animation: heroRouteMove 5s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  #hero-route-anim { animation: none; opacity: 0; }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(220, 38, 38, .14), transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, .85) 100%);
  z-index: -1;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 20px;
}
.meta-pill { display: inline-flex; align-items: center; gap: 8px; }
.meta-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-red);
  box-shadow: 0 0 0 0 rgba(220,38,38,.6);
  animation: pulse-dot-red 1.8s ease-out infinite;
}
@keyframes pulse-dot-red {
  0%   { box-shadow: 0 0 0 0 rgba(220,38,38,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(220,38,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}
.meta-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.18);
}
.meta-text { color: rgba(255,255,255,.7); }
.meta-mono { font-family: var(--f-mono); color: #fff; font-weight: 500; }

.hero-title {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 16px;
  font-size: clamp(30px, 4.2vw, 56px);
  color: #fff;
}
.hero-emph {
  color: var(--c-red);
  font-style: italic;
  font-weight: 700;
}
.hero-soft {
  color: rgba(255,255,255,.55);
  font-weight: 700;
}

.hero-lede {
  max-width: 54ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(241, 245, 249, .75);
  margin: 0 0 26px;
}

.hero-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-facts {
  display: grid; gap: 18px 32px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 20px;
  max-width: 880px;
  margin: 0;
}
.hero-facts div { margin: 0; }
.hero-facts dt {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 2px;
}
.hero-facts dd {
  margin: 0;
  font-size: 13.5px;
  color: rgba(241,245,249,.6);
  line-height: 1.45;
  max-width: 22ch;
}

/* ============== marquee ============== */
.marquee {
  background: var(--c-bg-cream);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.marquee-track span { padding: 0 4px; }
.marquee-track i {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--c-red);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== calculator ============== */
.calc {
  background: var(--c-bg-warm);
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--c-line);
}
.calc-head {
  max-width: var(--max);
  margin: 0 auto clamp(36px, 5vw, 56px);
  padding: 0 var(--gutter);
}
.calc-head .section-title { max-width: 18ch; }

.calc-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.calc-form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--sh-1);
  display: grid; gap: 22px;
}
.calc-row { display: grid; gap: 16px; }
.calc-row-addr {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: end;
}
.calc-field { display: grid; gap: 6px; }
.cf-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-soft);
}
.cf-num {
  font-family: var(--f-mono);
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--c-ink); color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
}
.calc-field input {
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  background: var(--c-bg-warm);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  color: var(--c-ink);
  width: 100%;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.calc-field input:focus {
  outline: none;
  border-color: var(--c-ink);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(10, 10, 10, .06);
}
.cf-help {
  font-size: 12.5px;
  color: var(--c-muted);
  min-height: 16px;
  font-family: var(--f-mono);
  letter-spacing: -0.005em;
}
.cf-help.is-err { color: var(--c-red); }
.cf-help.is-ok { color: var(--c-green); }

.calc-swap {
  width: 44px; height: 44px;
  background: var(--c-ink); color: #fff;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .15s ease;
  align-self: end;
  margin-bottom: 0;
}
.calc-swap:hover { background: var(--c-red); transform: rotate(180deg); }

.calc-segments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.calc-segments label { position: relative; cursor: pointer; }
.calc-segments input { position: absolute; opacity: 0; pointer-events: none; }
.calc-segments span {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 16px;
  background: var(--c-bg-warm);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  transition: border-color .15s ease, background .15s ease;
}
.calc-segments strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-ink);
  letter-spacing: -0.015em;
}
.calc-segments em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--c-muted);
}
.calc-segments input:checked + span {
  background: var(--c-ink);
  border-color: var(--c-ink);
}
.calc-segments input:checked + span strong,
.calc-segments input:checked + span em { color: #fff; }
.calc-segments input:focus-visible + span { box-shadow: 0 0 0 3px rgba(220, 38, 38, .25); }

.calc-extras {
  border: 0; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.calc-extras legend {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-soft);
  margin-bottom: 4px;
}
.calc-check { position: relative; cursor: pointer; }
.calc-check input { position: absolute; opacity: 0; pointer-events: none; }
.calc-check span {
  display: flex; flex-direction: column; gap: 1px;
  padding: 12px 14px;
  background: var(--c-bg-warm);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  transition: border-color .15s ease, background .15s ease;
}
.calc-check strong {
  font-size: 14px; font-weight: 600;
  color: var(--c-ink);
}
.calc-check em {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--c-muted);
}
.calc-check input:checked + span {
  background: var(--c-red-soft);
  border-color: var(--c-red);
}
.calc-check input:checked + span strong { color: var(--c-red-deep); }
.calc-check input:focus-visible + span { box-shadow: 0 0 0 3px rgba(220, 38, 38, .2); }

/* ----- quote panel ----- */
.calc-quote {
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  position: sticky;
  top: 92px;
  box-shadow: var(--sh-3);
  display: grid; gap: 20px;
  overflow: hidden;
  position: relative;
}
.calc-quote::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(220, 38, 38, .25), transparent 60%);
  pointer-events: none;
}
.calc-quote > * { position: relative; z-index: 1; }
.quote-header { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.quote-kicker {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FCA5A5;
}
.quote-status {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: rgba(241, 245, 249, .55);
}
.quote-status.is-loading { color: var(--c-amber); }
.quote-status.is-ok { color: #BBF7D0; }
.quote-status.is-err { color: #FCA5A5; }

.quote-price {
  display: flex; align-items: flex-start; gap: 4px;
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.quote-currency { font-size: clamp(28px, 3vw, 38px); padding-top: 12px; }
.quote-num     { font-size: clamp(56px, 7vw, 92px); font-variant-numeric: tabular-nums; }
.quote-suffix  { font-size: clamp(28px, 3vw, 38px); padding-top: 12px; color: rgba(255,255,255,.65); }
.quote-sub {
  font-size: 13px;
  color: rgba(241, 245, 249, .55);
  font-family: var(--f-mono);
}

.quote-detail {
  display: grid; gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 18px;
}
.quote-detail > div {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.quote-detail > div:last-child { border-bottom: 0; }
.quote-detail dt {
  font-size: 13px;
  color: rgba(241, 245, 249, .55);
  margin: 0;
}
.quote-detail dd {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 13.5px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.quote-note {
  font-size: 12px;
  color: rgba(241, 245, 249, .45);
  line-height: 1.5;
  margin: 0;
}

/* ============== diensten (bento) ============== */
.diensten {
  background: #fff;
  padding: var(--section-pad) 0;
}
.diensten .section-head { padding: 0 var(--gutter); }
.bento {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
.bento-card {
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 26px 26px 24px;
  display: flex; flex-direction: column;
  background: #fff;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
  grid-column: span 2;
}
.bento-card:hover {
  border-color: var(--c-line-2);
  box-shadow: var(--sh-2);
  transform: translateY(-2px);
}
.bento-lead {
  grid-column: span 4;
  grid-row: span 2;
  background: var(--c-bg-cream);
  border-color: var(--c-line-2);
  padding: clamp(28px, 3vw, 44px);
}
.bento-dark {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}
.bento-dark h3 { color: #fff; }
.bento-dark p { color: rgba(241,245,249,.7); }
.bc-num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-red);
  margin-bottom: 14px;
}
.bento-dark .bc-num { color: #FCA5A5; }
.bento-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--c-ink);
  margin: 0 0 10px;
}
.bento-lead h3 { font-size: clamp(28px, 3vw, 38px); }
.bento-card p {
  color: var(--c-muted);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
}
.bc-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}
.bc-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--c-ink-soft);
}
.bc-list li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--c-red);
  font-weight: 700;
}
.bento-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 20px;
  font-weight: 600; color: var(--c-ink);
  font-size: 14.5px;
}
.bento-link:hover { color: var(--c-red); }

/* ============== voertuigen ============== */
.voertuigen {
  background: var(--c-bg-cream);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.voertuigen .section-head { padding: 0 var(--gutter); }
.v-scroll-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.v-scroll-wrap::after {
  /* Subtle gradient-fade rechts = visuele scroll-hint */
  content: "";
  position: absolute;
  top: 0; right: var(--gutter); bottom: 0;
  width: 50px;
  pointer-events: none;
  background: linear-gradient(to left, var(--c-bg-cream), transparent);
  border-top-right-radius: var(--r-md);
  border-bottom-right-radius: var(--r-md);
}
.v-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px var(--gutter) 0;
  max-width: var(--max);
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}
.v-scroll-hint svg {
  animation: vsHintBounce 1.6s ease-in-out infinite;
}
@keyframes vsHintBounce {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}
.v-scroll {
  padding: 4px 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--c-line-2) transparent;
}
.v-scroll::-webkit-scrollbar { height: 8px; }
.v-scroll::-webkit-scrollbar-track { background: transparent; }
.v-scroll::-webkit-scrollbar-thumb { background: var(--c-line-2); border-radius: 8px; }
.v-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 22px;
  scroll-snap-align: start;
  display: grid;
  gap: 14px;
  transition: border-color .15s ease, transform .15s ease;
}
.v-card:hover { border-color: var(--c-ink); transform: translateY(-3px); }
.v-img {
  background: var(--c-bg-warm);
  border-radius: var(--r-md);
  padding: 12px;
  display: grid;
  place-items: center;
  min-height: 120px;
}
.v-img img {
  max-width: 100%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.12));
}
.v-meta h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  color: var(--c-ink);
}
.v-cap {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--c-muted);
}
.v-price {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--c-line-2);
}
.vp-from {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.vp-amount {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}
.v-foot {
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 0 var(--gutter);
  font-size: 13.5px;
  color: var(--c-muted);
}

/* ============== werkwijze (timeline) ============== */
.werkwijze {
  background: var(--c-ink);
  color: #fff;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.werkwijze::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 50% at 20% 0%, rgba(220,38,38,.12), transparent 60%),
    radial-gradient(40% 50% at 90% 100%, rgba(220,38,38,.08), transparent 60%);
  pointer-events: none;
}
.werkwijze > * { position: relative; }
.timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--gutter);
  max-width: var(--max-narrow);
  display: grid;
  gap: 0;
}
.timeline li {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.timeline li:last-child { border-bottom: 0; }
.tl-num {
  font-family: var(--f-mono);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  color: rgba(255,255,255,.18);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.timeline li:hover .tl-num { color: var(--c-red); }
.tl-body h3 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 2.4vw, 32px);
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}
.tl-body p {
  color: rgba(241,245,249,.72);
  margin: 0 0 14px;
  max-width: 62ch;
  font-size: clamp(15px, 1.15vw, 17px);
}
.tl-time {
  display: inline-flex;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #FCA5A5;
  padding: 5px 10px;
  border: 1px solid rgba(252, 165, 165, .25);
  background: rgba(252, 165, 165, .06);
  border-radius: 999px;
}

/* ============== waarom ============== */
.waarom {
  background: #fff;
  padding: var(--section-pad) 0;
}
.waarom-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.waarom-left .section-title { max-width: 14ch; }
.waarom-lede {
  font-size: 17px;
  color: var(--c-muted);
  max-width: 56ch;
  margin: 14px 0 26px;
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.why-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--c-ink-soft);
  line-height: 1.55;
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 8px;
  width: 18px; height: 18px;
  background:
    linear-gradient(135deg, var(--c-red), var(--c-red-deep));
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12.5l4 4 10-10' stroke='white' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12.5l4 4 10-10' stroke='white' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat;
}
.why-list li strong { color: var(--c-ink); margin-right: 4px; }
.why-list.on-dark li { color: rgba(241,245,249,.78); }
.why-list.on-dark li strong { color: #fff; }
.why-list.on-dark li::before {
  background: var(--c-red);
}

.waarom-right { display: grid; gap: 22px; }
.big-quote {
  background: var(--c-bg-cream);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 38px);
  position: relative;
  border: 1px solid var(--c-line-2);
}
.bq-mark {
  position: absolute;
  top: -10px; left: 22px;
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
  color: var(--c-red);
}
.big-quote p {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  margin: 18px 0 0;
}
.stat-block {
  display: grid;
  gap: 0;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.stat-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-line);
}
.stat-row:last-child { border-bottom: 0; }
.stat-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.025em;
  color: var(--c-ink);
}
.stat-row:nth-child(odd) .stat-num { color: var(--c-red); }
.stat-lbl {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============== branches ============== */
.branches {
  background: var(--c-bg-warm);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--c-line);
}
.branches .section-head { padding: 0 var(--gutter); }
.branch-pills {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap; gap: 10px;
}
.branch-pill {
  display: inline-flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.branch-pill:hover {
  border-color: var(--c-red);
  background: var(--c-red-soft);
  transform: translateY(-2px);
}
.branch-pill strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-ink);
  letter-spacing: -0.015em;
}
.branch-pill {
  font-size: 13px;
  color: var(--c-muted);
}

/* ============== faq ============== */
.faq {
  background: #fff;
  padding: var(--section-pad) 0;
}
.faq-head {
  max-width: var(--max-narrow);
  margin: 0 auto 36px;
  padding: 0 var(--gutter);
}
.faq-list {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.faq-list details {
  border-bottom: 1px solid var(--c-line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: -0.015em;
  color: var(--c-ink);
  position: relative;
  padding-right: 48px;
  transition: color .15s ease;
}
.faq-list summary:hover { color: var(--c-red); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  color: var(--c-red);
  transition: transform .25s ease;
}
.faq-list details[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}
.faq-a {
  padding: 0 0 24px;
  max-width: 70ch;
}
.faq-a p {
  margin: 0;
  color: var(--c-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ============== final CTA ============== */
.cta-final {
  background: var(--c-ink);
  color: #fff;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 0% 100%, rgba(220, 38, 38, .14), transparent 60%),
    radial-gradient(40% 40% at 100% 0%, rgba(220, 38, 38, .10), transparent 60%);
  pointer-events: none;
}
.cta-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  position: relative;
  align-items: start;
}
.cta-copy .section-title { color: #fff; max-width: 16ch; }
.cta-copy p { color: rgba(241,245,249,.7); max-width: 50ch; margin: 0 0 22px; }

.cta-form {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 32px);
  display: grid; gap: 14px;
}
.cta-form label { display: grid; gap: 6px; }
.cta-form label span {
  font-size: 13px; font-weight: 600;
  color: rgba(241,245,249,.85);
}
.cta-form input,
.cta-form textarea {
  font: inherit;
  font-size: 16px;
  padding: 13px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  border-radius: 10px;
  width: 100%;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(241,245,249,.45); }
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--c-red);
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .25);
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-hint { font-size: 12px; color: rgba(241,245,249,.5); margin: 0; }
.form-success {
  background: rgba(22, 163, 74, .12);
  border: 1px solid rgba(22, 163, 74, .35);
  color: #BBF7D0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  display: flex; flex-direction: column; gap: 2px;
}

/* ============== footer ============== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--c-line);
  padding: 64px 0 28px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 36px;
}
.foot-brand-col { display: grid; gap: 14px; align-content: start; }
.foot-tag {
  color: var(--c-muted);
  max-width: 40ch;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
}
.foot-col h4 {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted-2);
  margin: 0 0 14px;
}
.foot-col a {
  display: block;
  padding: 5px 0;
  color: var(--c-ink-soft);
  font-size: 14.5px;
  transition: color .15s ease;
}
.foot-col a:hover { color: var(--c-red); }

.foot-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 22px var(--gutter) 0;
  border-top: 1px solid var(--c-line);
  display: grid; gap: 8px;
}
.foot-bottom p {
  margin: 0;
  font-size: 12.5px;
  color: var(--c-muted-2);
  line-height: 1.55;
}
.foot-legal { max-width: 88ch; }

/* ============== responsive ============== */
@media (max-width: 1100px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-quote { position: static; }
  .cta-grid { grid-template-columns: 1fr; }
  .waarom-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento-lead { grid-column: span 4; grid-row: span 1; }
  .bento-card { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta-wrap .status-pill { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile.is-open { display: block; }
  .calc-row-addr { grid-template-columns: 1fr; }
  .calc-swap { transform: rotate(90deg); justify-self: center; margin: 4px 0; }
  .calc-swap:hover { transform: rotate(270deg); }
  .timeline li { grid-template-columns: 1fr; gap: 16px; }
  .tl-num { font-size: clamp(40px, 12vw, 60px); }
}

@media (max-width: 640px) {
  .row-2 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-lead { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; border-radius: 14px; padding: 12px; }
  .meta-divider { display: none; }
  .calc-segments { grid-template-columns: 1fr 1fr; }
  .quote-num { font-size: clamp(48px, 14vw, 72px); }
}

/* ============== MODALS (full-page overlay) ============== */
.sk-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: skModalIn .22s ease;
}
.sk-modal[hidden] { display: none; }
@keyframes skModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.sk-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 22, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.sk-modal-panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 30px 80px -16px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.04);
  animation: skModalPanelIn .26s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes skModalPanelIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.sk-modal-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #FDECEC;
  color: #DC2626;
  margin: 0 0 18px;
}
.sk-modal-title {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #0F172A;
  margin: 0 0 10px;
  line-height: 1.2;
}
.sk-modal-text {
  font-size: 15px;
  line-height: 1.55;
  color: #475569;
  margin: 0 0 18px;
}
.sk-modal-text strong { color: #0F172A; font-weight: 600; }
.sk-modal-info {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 0 22px;
  display: grid;
  gap: 6px;
}
.sk-modal-info:empty { display: none; }
.sk-modal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
  padding: 3px 0;
}
.sk-modal-k {
  color: #64748B;
  font-weight: 500;
  flex-shrink: 0;
}
.sk-modal-v {
  color: #0F172A;
  font-weight: 600;
  text-align: right;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 12.5px;
  word-break: break-word;
}
.sk-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sk-modal-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 18px;
  border-radius: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .12s;
}
.sk-modal-btn:active { transform: translateY(1px); }
.sk-modal-btn-primary {
  background: #DC2626;
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(220, 38, 38, 0.55);
}
.sk-modal-btn-primary:hover { background: #B91C1C; }
.sk-modal-btn-ghost {
  background: #fff;
  color: #0F172A;
  border-color: #CBD5E1;
}
.sk-modal-btn-ghost:hover { background: #F1F5F9; border-color: #94A3B8; }

@media (max-width: 480px) {
  .sk-modal-panel { padding: 28px 22px 22px; border-radius: 18px; }
  .sk-modal-title { font-size: 19px; }
  .sk-modal-actions { flex-direction: column-reverse; }
  .sk-modal-btn { width: 100%; }
}

/* =====================================================================
   SUB-PAGE LAYOUTS — gedeelde stijlen voor alle content-pagina's
   ===================================================================== */

/* Breadcrumbs */
.breadcrumbs {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter) 4px;
  font-size: 13px;
  color: var(--c-muted);
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs li + li::before {
  content: "›";
  color: var(--c-muted-2);
  font-size: 14px;
}
.breadcrumbs a {
  color: var(--c-muted);
  transition: color .12s ease;
}
.breadcrumbs a:hover { color: var(--c-red); }
.breadcrumbs [aria-current="page"] {
  color: var(--c-ink);
  font-weight: 600;
}

/* Sub-page hero (compacter dan homepage-hero) */
.sub-hero {
  background: var(--c-ink);
  color: #fff;
  padding: clamp(36px, 5vw, 64px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sub-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 80% 0%, rgba(220, 38, 38, .12), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.sub-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sub-hero h1 {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: clamp(28px, 3.6vw, 46px);
  margin: 0 0 14px;
  color: #fff;
  max-width: 20ch;
}
.sub-hero p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(241, 245, 249, .78);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 60ch;
}
.sub-hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sub-hero-quick {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background .15s ease, border-color .15s ease;
}
.quick-btn:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
}
.quick-btn svg { flex-shrink: 0; }
.quick-btn.is-wa { background: rgba(37, 211, 102, .14); border-color: rgba(37, 211, 102, .35); }
.quick-btn.is-wa:hover { background: rgba(37, 211, 102, .22); }

/* Sub-page content sections */
.content-block {
  background: #fff;
  padding: clamp(48px, 6vw, 88px) 0;
}
.content-block.is-cream { background: var(--c-bg-cream); }
.content-block.is-warm  { background: var(--c-bg-warm); }
.content-block.is-dark  { background: var(--c-ink); color: #fff; }
.content-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.content-inner.is-narrow { max-width: var(--max-narrow); }
.content-block h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--c-ink);
}
.content-block.is-dark h2 { color: #fff; }
.content-block h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  margin: 28px 0 10px;
  color: var(--c-ink);
}
.content-block.is-dark h3 { color: #fff; }
.content-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-ink-soft);
  margin: 0 0 14px;
  max-width: 70ch;
}
.content-block.is-dark p { color: rgba(241, 245, 249, .8); }
.content-block ul, .content-block ol {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-ink-soft);
  padding-left: 1.4em;
  margin: 0 0 18px;
  max-width: 70ch;
}
.content-block.is-dark ul,
.content-block.is-dark ol { color: rgba(241, 245, 249, .82); }
.content-block li { margin-bottom: 4px; }
.content-block strong { color: var(--c-ink); font-weight: 600; }
.content-block.is-dark strong { color: #fff; }
.content-block a { color: var(--c-red); text-decoration: underline; text-underline-offset: 2px; }
.content-block a:hover { color: var(--c-red-deep); }
.content-block.is-dark a { color: #FCA5A5; }
.content-block.is-dark a:hover { color: #fff; }
/* Exception: buttons en card-links binnen content-blocks niet onderstrepen
   en niet de generieke .content-block a-kleur (rood) erven — anders is
   witte tekst op .btn-primary onleesbaar (rood-op-rood, bug 2026-05-25). */
.content-block .btn,
.content-block .content-card,
.content-block .content-card-link,
.content-block .mini-cta-actions .btn,
.content-block .bento-link { text-decoration: none; color: inherit; }
.content-block .content-card:hover { color: inherit; }

/* ============== SERVICE-VISUAL slot (foto onder sub-hero) ============== */
.service-visual {
  background: #0F172A;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.service-visual img {
  width: 100%;
  height: clamp(180px, 28vw, 360px);
  object-fit: cover;
  display: block;
  opacity: .96;
}
.service-visual .service-visual-placeholder {
  width: 100%;
  height: clamp(180px, 28vw, 360px);
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03) 10px, transparent 10px, transparent 20px),
    linear-gradient(135deg, #14181F 0%, #1F2937 100%);
  color: rgba(255,255,255,.5);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ============== FAQ-pagina elementen ============== */
.faq-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--c-line);
}
.faq-cats-lbl {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-right: 6px;
}
.faq-cats a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-ink-soft);
  text-decoration: none;
  transition: background .12s, border-color .12s, color .12s;
}
.faq-cats a:hover {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: #fff;
}
.faq-cat-h {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-red);
  margin: 28px 0 10px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
  scroll-margin-top: 90px;
}
.faq-cat-h:first-of-type { border-top: 0; padding-top: 0; margin-top: 16px; }

/* ============== WERKGEBIED — NL-kaart ============== */
.nl-map-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 860px) {
  .nl-map-wrap { grid-template-columns: 1fr; }
  .nl-map { max-width: 360px; margin: 0 auto; }
}
.nl-map { width: 100%; }
.nl-map svg { width: 100%; height: auto; display: block; }
.nl-map-side h2 { margin-bottom: 14px; }
.nl-map-side p { font-size: 15.5px; color: var(--c-muted); line-height: 1.65; }
.nl-map-key {
  list-style: none;
  padding: 16px 0 0;
  margin: 12px 0 0;
  border-top: 1px solid var(--c-line);
  display: grid;
  gap: 6px;
}
.nl-map-key li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--c-ink-soft);
}
.nl-map-key-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nl-map-city text { pointer-events: none; }

/* ============== STAD-PAGINA elementen ============== */
.city-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 860px) {
  .city-intro { grid-template-columns: 1fr; }
  .city-silhouet { order: -1; max-width: 360px; margin: 0 auto; }
}
.city-intro h2 { margin-bottom: 14px; }
.city-silhouet {
  width: 100%;
  display: block;
  color: var(--c-ink);
  opacity: .85;
}
.city-silhouet svg { width: 100%; height: auto; display: block; }
.city-hub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--c-line);
}
.city-hub-lbl {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  margin-right: 4px;
}
.city-hub-pill {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-ink-soft);
}
.city-stories-lede {
  color: var(--c-muted);
  margin-bottom: 22px;
}
.city-stories {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}
.city-story {
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-red);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: minmax(110px, 140px) 1fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 640px) {
  .city-story { grid-template-columns: 1fr; gap: 4px; }
}
.city-story-time {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-red);
  padding-top: 3px;
}
.city-story p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--c-ink-soft);
}

/* Stat-strip: inline highlight-cards in content-blocks */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 18px 0 26px;
}
.stat-strip-item {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.content-block.is-cream .stat-strip-item { background: #fff; }
.content-block.is-warm .stat-strip-item { background: #fff; }
.content-block.is-dark .stat-strip-item {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
}
.stat-strip-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  color: var(--c-red);
  line-height: 1;
}
.content-block.is-dark .stat-strip-num { color: #FCA5A5; }
.stat-strip-lbl {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--c-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
}
.stat-strip-sub {
  font-size: 13px;
  color: var(--c-ink-soft);
  margin-top: 2px;
  line-height: 1.45;
}
.content-block.is-dark .stat-strip-lbl { color: rgba(241,245,249,.5); }
.content-block.is-dark .stat-strip-sub { color: rgba(241,245,249,.7); }

/* Two-column layouts */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
}

/* Content cards (used on branches/diensten overview pages) */
.content-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 24px;
}
.content-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.content-card:hover {
  border-color: var(--c-line-2);
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
}
.content-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--c-ink);
}
.content-card p {
  font-size: 14.5px;
  color: var(--c-muted);
  margin: 0 0 12px;
  line-height: 1.55;
}
.content-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-red);
}

.content-cards.is-dark .content-card {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .10);
}
.content-cards.is-dark .content-card h3 { color: #fff; }
.content-cards.is-dark .content-card p { color: rgba(241, 245, 249, .65); }
.content-cards.is-dark .content-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .22);
}

/* Branche-grid: 8 cards in bento-mix met iconen */
.branche-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.branche-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 22px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
}
.branche-card:hover { border-color: var(--c-line-2); box-shadow: var(--sh-2); transform: translateY(-2px); }
.branche-card-lead {
  grid-column: span 4;
  grid-row: span 2;
  background: var(--c-bg-cream);
  border-color: var(--c-line-2);
  padding: clamp(24px, 3vw, 36px);
}
.branche-card-dark {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}
.branche-card-dark h3 { color: #fff; }
.branche-card-dark p { color: rgba(241,245,249,.72); }
.branche-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-red-soft);
  color: var(--c-red);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.branche-card-lead .branche-icon { width: 56px; height: 56px; }
.branche-card-dark .branche-icon { background: rgba(220,38,38,.16); color: #FCA5A5; }
.branche-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  margin: 0;
}
.branche-card-lead h3 { font-size: clamp(22px, 2.4vw, 30px); }
.branche-card p {
  font-size: 14.5px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.55;
}
.branche-card-lead p { font-size: 15.5px; max-width: 60ch; }
.branche-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--c-red);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .branche-grid { grid-template-columns: repeat(4, 1fr); }
  .branche-card-lead { grid-column: span 4; grid-row: span 1; }
  .branche-card { grid-column: span 2; }
}
@media (max-width: 640px) {
  .branche-grid { grid-template-columns: 1fr; }
  .branche-card, .branche-card-lead { grid-column: span 1; }
}

/* Mid-page CTA block (klein conversie-blok tussen secties) */
.mini-cta {
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  margin: 0 auto;
  max-width: var(--max-narrow);
  position: relative;
  overflow: hidden;
}
.mini-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 50% at 100% 0%, rgba(220, 38, 38, .18), transparent 60%);
  pointer-events: none;
}
.mini-cta > * { position: relative; z-index: 1; }
.mini-cta h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: #fff;
}
.mini-cta p {
  margin: 0;
  color: rgba(241, 245, 249, .7);
  font-size: 14.5px;
  max-width: 50ch;
}
.mini-cta-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .mini-cta { grid-template-columns: 1fr; }
}

/* In-page compacte aanvraagform (op sub-pagina's) */
.aanvraag-page {
  background: var(--c-bg-warm);
  padding: clamp(56px, 7vw, 96px) 0;
}
.aanvraag-page-inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.aanvraag-page-head {
  text-align: center;
  margin-bottom: 28px;
}
.aanvraag-page-head h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  margin: 8px 0 8px;
  color: var(--c-ink);
}
.aanvraag-page-head p {
  color: var(--c-muted);
  margin: 0;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.aanvraag-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.aanvraag-quick a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .12s;
}
.aanvraag-quick a:active { transform: translateY(1px); }
.aanvraag-quick-bel {
  background: var(--c-ink);
  color: #fff;
  border: 1px solid var(--c-ink);
}
.aanvraag-quick-bel:hover { background: #1F2937; }
.aanvraag-quick-wa {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}
.aanvraag-quick-wa:hover { background: #1ebf5a; border-color: #1ebf5a; }

/* Standaard aanvraag-form (compleet) — gebruikt op homepage + alle sub-pagina's */
.s24-form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  gap: 14px;
  box-shadow: var(--sh-1);
}
.s24-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.s24-form .form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px) {
  .s24-form .form-row, .s24-form .form-row-3 { grid-template-columns: 1fr; }
}
.s24-form label {
  display: grid;
  gap: 5px;
}
.s24-form label > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-soft);
}
.s24-form label > span em {
  font-style: normal;
  color: var(--c-muted-2);
  font-weight: 400;
  margin-left: 4px;
}
.s24-form input,
.s24-form select,
.s24-form textarea {
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  color: var(--c-ink);
  width: 100%;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.s24-form input:focus,
.s24-form select:focus,
.s24-form textarea:focus {
  outline: none;
  border-color: var(--c-ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 10, 10, .07);
}
.s24-form textarea { resize: vertical; min-height: 92px; }
.s24-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235B6573' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}
.s24-form .form-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.s24-form .form-radio {
  position: relative;
  cursor: pointer;
}
.s24-form .form-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.s24-form .form-radio span {
  display: inline-block;
  padding: 9px 14px;
  background: var(--c-bg-alt);
  border: 1.5px solid var(--c-line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--c-ink-soft);
  transition: background .15s, border-color .15s, color .15s;
}
.s24-form .form-radio input:checked + span {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: #fff;
}
.s24-form .form-radio input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .25);
}
.s24-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--c-ink-soft);
  line-height: 1.5;
}
.s24-form .form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--c-red);
}
.s24-form .form-check a { color: var(--c-red); }
.s24-form .form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 22px;
  background: var(--c-red);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background .15s, transform .12s, box-shadow .18s;
  box-shadow: 0 4px 14px -4px rgba(220, 38, 38, 0.55);
}
.s24-form .form-submit:hover { background: var(--c-red-deep); }
.s24-form .form-submit:active { transform: translateY(1px); }
.s24-form .form-success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
/* [hidden]-attribuut moet display:none winnen van display:flex hierboven */
.s24-form .form-success[hidden] { display: none; }
.s24-form .form-foot-hint {
  font-size: 12px;
  color: var(--c-muted-2);
  margin: 0;
  text-align: center;
}

/* ============== MOBILE STICKY BOTTOM BAR (Bel / WA / Aanvraag) ============== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -6px 24px -8px rgba(15, 23, 42, 0.15);
  padding: 8px var(--gutter) calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-ink);
  text-decoration: none;
  border-radius: 10px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
}
.mobile-bar a:active { transform: translateY(1px); }
.mobile-bar .mb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--c-red);
}
.mobile-bar .mb-bel .mb-icon { color: var(--c-ink); }
.mobile-bar .mb-wa  { background: rgba(37, 211, 102, .08); border-color: rgba(37, 211, 102, .25); }
.mobile-bar .mb-wa .mb-icon { color: #25D366; }
.mobile-bar .mb-aanvraag {
  background: var(--c-red);
  color: #fff;
  border-color: var(--c-red);
}
.mobile-bar .mb-aanvraag .mb-icon { color: #fff; }

@media (max-width: 760px) {
  .mobile-bar { display: grid; }
  /* Voeg padding-bottom toe aan body zodat content niet onder de bar valt */
  body { padding-bottom: 72px; }
}

/* Bel/WA chips in desktop nav */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-bel, .nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid var(--c-line);
  background: #fff;
  color: var(--c-ink);
  transition: border-color .12s, background .12s, color .12s;
}
.nav-bel svg, .nav-wa svg { flex-shrink: 0; }
.nav-bel:hover { border-color: var(--c-ink); }
.nav-wa { color: #25D366; border-color: rgba(37, 211, 102, .35); }
.nav-wa:hover { background: rgba(37, 211, 102, .08); }
@media (max-width: 1100px) {
  .nav-bel span, .nav-wa span { display: none; }
}
@media (max-width: 760px) {
  .nav-bel, .nav-wa { display: none; }
}

/* ============== REDIRECT OVERLAY (doorstuur-melding naar HVT) ============== */
.sk-redirect {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: skRedirectIn .25s ease;
}
.sk-redirect[hidden] { display: none; }
@keyframes skRedirectIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.sk-redirect-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 22, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sk-redirect-panel {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 36px 36px 28px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px -16px rgba(0, 0, 0, 0.5);
  animation: skRedirectPanelIn .3s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes skRedirectPanelIn {
  from { opacity: 0; transform: translateY(10px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.sk-redirect-spinner {
  width: 44px; height: 44px;
  border: 3px solid #FDECEC;
  border-top-color: #DC2626;
  border-radius: 50%;
  margin: 0 auto 18px;
  animation: skRedirectSpin .9s linear infinite;
}
@keyframes skRedirectSpin { to { transform: rotate(360deg); } }
.sk-redirect-title {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: #0F172A;
  margin: 0 0 8px;
  line-height: 1.25;
}
.sk-redirect-text {
  font-size: 14.5px;
  color: #64748B;
  line-height: 1.55;
  margin: 0 0 18px;
}
.sk-redirect-bar {
  height: 4px;
  background: #F1F5F9;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 4px;
}
.sk-redirect-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #DC2626, #B91C1C);
  border-radius: 999px;
  animation: skRedirectFill 600ms linear forwards;
}
@keyframes skRedirectFill {
  from { width: 0; }
  to   { width: 100%; }
}

@media (max-width: 480px) {
  .sk-redirect-panel { padding: 28px 22px 22px; }
  .sk-redirect-title { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =====================================================================
   CALCULATOR — 1-op-1 met hartvoortransport.com (alleen scoped binnen
   #calculator zodat de rest van de site eigen design behoudt)
   ===================================================================== */
#calculator {
  background: var(--c-bg-warm);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  /* HVT-CSS-variabelen: gescoped binnen calculator zodat geen botsing met de rest */
  --red:        #D63031;
  --red-dark:   #A52020;
  --red-light:  #E84040;
  --red-bright: #ff4f50;
  --red-glow:   rgba(214,48,49,.12);
  --dark:       #0F1114;
  --dark-2:     #171A1F;
  --dark-3:     #1E2228;
  --anthracite-dark: #1A1D22;
  --white:      #FFF;
  --gray-mid:   #9A9896;
  --gray-light: #EDECEA;
  --border:     rgba(255,255,255,.10);
  --border-light: #E4E2DE;
  --font-display: 'Inter Tight','Inter',system-ui,sans-serif;
  --font-body:    'Inter',system-ui,sans-serif;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-xl: 16px;
  --shadow-widget: 0 24px 60px -24px rgba(15,17,20,.45), 0 8px 24px -8px rgba(15,17,20,.25);
}

.calc-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
#calculator .calc-head { padding: 0 0 28px; max-width: 760px; }

.calc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.calc-widget {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-widget);
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  color: #fff;
}
.calc-header {
  background: var(--dark);
  padding: 1.75rem 2rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.calc-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
}
.calc-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.03em;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
}
.calc-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.calc-body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.field-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.45rem;
  display: block;
}

/* VOERTUIG */
#calculator .voertuig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.voertuig-option { position: relative; }
.voertuig-option input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.voertuig-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 12px 12px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.18s;
  text-align: left;
  user-select: none;
  background: rgba(255,255,255,0.04);
  min-height: 96px;
}
.voertuig-label:hover {
  border-color: rgba(214,48,49,0.4);
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.voertuig-option input:checked + .voertuig-label {
  border-color: var(--red);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 2px var(--red-glow);
}
.voertuig-option input:checked + .voertuig-label::before {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 16px; height: 16px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.voertuig-icon {
  flex: 0 0 110px;
  width: 110px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voertuig-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.voertuig-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.voertuig-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.voertuig-spec {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.78);
  margin-top: 2px;
  letter-spacing: 0;
  line-height: 1.3;
}

/* ADDRESS BLOCK */
.address-block {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.1rem 0.85rem;
  border: 1px solid var(--border);
}
.address-block-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.85rem;
}
.address-block-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.address-block-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.land-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  align-items: center;
}
.land-flag {
  flex-shrink: 0;
  width: 28px; height: 20px;
  border-radius: 3px;
  object-fit: cover;
}
.land-select-wrap { position: relative; flex: 1; }
.land-select {
  width: 100%;
  padding: 0.6rem 2rem 0.6rem 0.85rem;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.land-select option { background: var(--dark-2); color: var(--white); }
.land-select:focus { border-color: var(--red); }
.land-chevron {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gray-mid);
}

.address-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.address-row {
  display: flex;
  gap: 6px;
  align-items: center;
}
.address-input-wrap {
  flex: 1;
  position: relative;
}
.address-input {
  width: 100%;
  padding: 0.65rem 0.9rem 0.65rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.address-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.address-input::placeholder { color: rgba(255,255,255,0.4); }
.address-pin {
  position: absolute;
  left: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.suggestions-box {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--dark-2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  z-index: 9999;
  max-height: 240px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}
/* Address-row is positioning context voor suggesties; geef zijn parent een
   stack-context anders kan een volgende .address-block (eigen stacking context
   door background+padding) er overheen renderen op sommige browsers. */
#calculator .address-row { position: relative; z-index: 2; }
#calculator .address-row:has(.suggestions-box.open) { z-index: 10000; }
#calculator .address-block { position: relative; }
.suggestions-box.open { display: block; }
.suggestion-item {
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.12s;
  border-bottom: 1px solid var(--border);
}
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: rgba(255,255,255,0.06); }
.sug-main { font-weight: 500; font-size: 0.85rem; color: #fff; }
.sug-sub { font-size: 0.73rem; color: rgba(255,255,255,0.6); margin-top: 1px; }

.remove-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.remove-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(214,48,49,0.08);
}

.add-stop-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px dashed rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  width: 100%;
  transition: all 0.15s;
  margin-top: 6px;
}
.add-stop-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

#calculator .divider {
  height: 1px;
  background: var(--border);
  margin: 0 -2rem;
}

.calc-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(214,48,49,0.3);
}
.calc-btn:hover {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(214,48,49,0.4);
}
.calc-btn:disabled {
  background: rgba(255,255,255,0.1);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.calc-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.85rem 0 0;
  line-height: 1.5;
}
.calc-disclaimer strong { color: rgba(255, 255, 255, 0.85); font-weight: 600; }

.calc-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 0.25rem;
}
.calc-loading.show { display: flex; }
@keyframes calc-spin { to { transform: rotate(360deg); } }
.spinner {
  width: 18px; height: 18px;
  border: 2px solid var(--gray-light);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: calc-spin 0.7s linear infinite;
}

.calc-result {
  display: none;
  background: var(--anthracite-dark);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
}
.calc-result.show {
  display: block;
  animation: calc-fadeUp 0.35s ease;
}
@keyframes calc-fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.result-label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.7rem;
}
.result-legs {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}
.result-leg {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}
.rl-name { color: rgba(255,255,255,0.55); }
.rl-val { color: rgba(255,255,255,0.85); font-weight: 600; font-variant-numeric: tabular-nums; }
.result-leg.is-total .rl-name { color: rgba(255,255,255,0.7); font-weight: 600; }
.result-leg.is-total .rl-val { color: #fff; }
.result-leg.is-vehicle .rl-name { color: rgba(255,255,255,0.6); }
.result-leg.is-vehicle .rl-val { color: rgba(255,255,255,0.7); }
.r-div {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0.8rem 0;
}
.result-extras {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  margin-bottom: 0.8rem;
}
.result-extra {
  display: flex;
  justify-content: space-between;
  font-size: 0.79rem;
}
.re-name { color: rgba(255,255,255,0.6); }
.re-val { color: rgba(255,255,255,0.6); font-weight: 600; }
.result-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.rp-left .rp-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}
.rp-left .rp-note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
}
.result-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.result-price em {
  color: var(--red-light);
  font-style: normal;
}
/* Result-action row: Direct boeken (primary) + Offerte aanvragen (ghost) */
.result-actions {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 8px;
  margin-top: 0.9rem;
}
@media (max-width: 520px) {
  .result-actions { grid-template-columns: 1fr; }
}
.offerte-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.95rem 1rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s, border-color 0.18s, color 0.18s;
  text-align: center;
}
.offerte-btn:active { transform: translateY(1px); }
.offerte-btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(214, 48, 49, 0.55);
}
.offerte-btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 20px -6px rgba(214, 48, 49, 0.65);
}
.offerte-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}
.offerte-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* offerte form inline */
.offerte-form {
  display: none;
  margin-top: 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.1rem;
}
.offerte-form.show {
  display: block;
  animation: calc-fadeUp 0.3s ease;
}
.of-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.8rem;
}
.of-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}
.of-group label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.of-group input {
  padding: 0.55rem 0.8rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #fff;
  background: rgba(255,255,255,0.08);
  outline: none;
  transition: border-color 0.2s;
}
.of-group input::placeholder { color: rgba(255,255,255,0.3); }
.of-group textarea {
  padding: 0.55rem 0.8rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #fff;
  background: rgba(255,255,255,0.08);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  min-height: 38px;
  width: 100%;
  box-sizing: border-box;
}
.of-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.of-group input:focus, .of-group textarea:focus { border-color: var(--red); }
.of-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.of-submit:hover { background: var(--red-dark); }
.of-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.calc-success {
  display: none;
  text-align: center;
  padding: 1.1rem;
  background: rgba(39,174,96,0.15);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: 10px;
  color: #fff;
  margin-top: 0.75rem;
}
.calc-success.show { display: block; }
.calc-success p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

@media (max-width: 640px) {
  #calculator .voertuig-grid { grid-template-columns: 1fr; }
  .calc-body { padding: 1.25rem; }
  .calc-result { padding: 1rem; }
  .result-price { font-size: 2rem; }
  .result-price-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .of-grid { grid-template-columns: 1fr; }
  .offerte-form { padding: 0.8rem; }
  .of-group input, .of-group textarea { font-size: 16px; }
}

/* ============================================================================
   AEO / AI-search blokken — toegevoegd 2026-05-25 ronde "saaiheid + cases"
   ============================================================================ */

/* --- TL;DR / In 1 oogopslag --- */
.tldr-section {
  background: #FAF7F1;
  padding: clamp(28px, 4vw, 48px) 16px;
  border-bottom: 1px solid var(--c-line);
}
.tldr-inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
}
.tldr-block {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: clamp(20px, 2.5vw, 32px);
  box-shadow: 0 1px 3px rgba(10,10,10,0.04);
}
.tldr-kicker {
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-red);
  margin: 0 0 8px;
}
.tldr-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--c-ink);
}
.tldr-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.tldr-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-ink);
}
.tldr-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--c-red);
  border-radius: 1px;
}

/* --- Vanaf-prijs-tabel + voorbeeldritten-tabel (gedeelde styling) --- */
.prijs-tabel-wrap,
.voorbeeld-tabel-wrap {
  overflow-x: auto;
  margin: 18px 0 12px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg, 12px);
  background: #fff;
}
.prijs-tabel,
.voorbeeld-tabel {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.prijs-tabel thead th,
.voorbeeld-tabel thead th {
  text-align: left;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: #FAF7F1;
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-line);
}
.prijs-tabel tbody th,
.prijs-tabel tbody td,
.voorbeeld-tabel tbody th,
.voorbeeld-tabel tbody td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--c-line);
  vertical-align: middle;
}
.prijs-tabel tbody tr:last-child th,
.prijs-tabel tbody tr:last-child td,
.voorbeeld-tabel tbody tr:last-child th,
.voorbeeld-tabel tbody tr:last-child td {
  border-bottom: 0;
}
.prijs-tabel tbody th,
.voorbeeld-tabel tbody th {
  font-weight: 600;
  color: var(--c-ink);
  white-space: nowrap;
}
.prijs-tabel .num,
.voorbeeld-tabel .num {
  text-align: right;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-red);
  white-space: nowrap;
}
.prijs-tabel-foot,
.voorbeeld-tabel-foot {
  font-size: 13px;
  color: var(--c-muted);
  margin: 12px 0 0;
}

/* --- Sector-blocks (vervangt verzonnen 'dagdeel'-cases) --- */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.sector-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-red);
  border-radius: var(--r-lg, 12px);
  padding: 16px 18px;
}
.sector-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--c-ink);
}
.sector-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-ink);
}
