/* ─────────────────────────────────────────────────────────────────────────
   VP Service, gedeelde component-CSS voor de bezoekerspagina's.
   Uit index.html gehaald toen de homepage werd opgesplitst: de secties staan
   nu op eigen pagina's, dus de opmaak moet op één plek staan in plaats van
   per pagina gekopieerd. Kleuren en tekstmaten komen uit /tokens.css.
   ───────────────────────────────────────────────────────────────────────── */
b, strong { font-weight: var(--fw-bold); }
/* Spectral is geladen op 400, 500 en 600. Zonder expliciet gewicht pakken h1 en h2
   de browserstandaard 700, en dat bestaat niet in dit font: de browser maakt er dan
   nep-vet van. Vandaar hetzelfde gewicht als de paginakop. */
h1, h2, h3 { font-weight: var(--fw-medium); }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Huisstijl-tokens (palet + fonts): centraal in /tokens.css */

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── UTILS ─────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.serif { font-family: var(--serif); }
.teal { color: var(--teal); }

/* ─── NAV ───────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(241, 244, 242,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 42, 40,0.06);
  transition: box-shadow 0.3s var(--ease);
}
nav.scrolled { box-shadow: 0 2px 24px rgba(27, 42, 40,0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1080px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo svg { display: block; }
.nav-logo-text {
  font-family: var(--serif); font-size: 21px; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1;
}
.nav-logo-text span { color: var(--teal); margin-left: 6px; }
.nav-logo-lock { display: flex; flex-direction: column; gap: 4px; }
.nav-logo-rule { width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.nav-logo-payoff { font-family: var(--sans); font-size: 9.5px; color: var(--slate); letter-spacing: 0.02em; line-height: 1; white-space: nowrap; }
.nav-logo-payoff em { color: var(--gold); font-style: italic; font-weight: var(--fw-bold); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  white-space: nowrap;
  font-size: var(--fs-card); font-weight: var(--fw-medium); color: var(--slate);
  text-decoration: none; letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.btn-nav {
  background: var(--btn); color: white !important;
  padding: 9px 20px; border-radius: 6px;
  font-size: var(--fs-card) !important; font-weight: var(--fw-bold) !important;
  transition: background 0.2s, transform 0.15s !important;
}
.btn-nav:hover { background: var(--btn-hover) !important; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--warm);
  padding: 24px; flex-direction: column; gap: 20px; z-index: 199;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: var(--fs-body); font-weight: var(--fw-medium); color: var(--ink); text-decoration: none; }
/* Diensten-dropdown (desktop) */
.nav-dd { position: relative; }
.nav-dd-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dd-toggle .car { color: var(--gold); font-size: var(--fs-caption); transition: transform 0.2s; }
.nav-dd:hover .nav-dd-toggle .car, .nav-dd:focus-within .nav-dd-toggle .car { transform: rotate(180deg); }
.nav-dd::after { content: ''; position: absolute; top: 100%; left: -16px; right: -16px; height: 16px; }
.nav-dd-panel {
  position: absolute; top: calc(100% + 14px); left: -14px;
  background: var(--white); border: 1px solid var(--warm); border-radius: 12px;
  box-shadow: 0 16px 44px rgba(21,54,48,.16); padding: 8px; min-width: 264px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s; z-index: 210;
}
.nav-dd:hover .nav-dd-panel, .nav-dd:focus-within .nav-dd-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-panel a { display: flex !important; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: var(--fs-card); color: var(--slate); }
.nav-dd-panel a:hover { background: rgba(30, 74, 67,0.06); color: var(--teal); }
.nav-dd-panel .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.nav-dd-panel .new { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: #fff; background: var(--gold); border-radius: 5px; padding: 1px 6px; margin-left: auto; }
/* Diensten-subitems (mobiel) */
.mobile-sub-head { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: var(--muted); }
.mobile-menu a.mobile-sub { font-size: var(--fs-card); color: var(--slate); padding-left: 14px; }

/* ─── HERO ──────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(180deg, #F4F7F5, #EAF0ED);
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.08;
}
.hero-circle-1 { width: 700px; height: 700px; top: -200px; right: -150px; }
.hero-circle-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; opacity: 0.05; }
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-caption); font-weight: var(--fw-bold);
  color: var(--pine); background: rgba(30, 74, 67,0.09); border: 1px solid rgba(30, 74, 67,0.16);
  padding: 7px 16px; border-radius: 40px; margin-bottom: 28px;
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 {
  font-family: var(--serif);
  font-size: var(--fs-h1);
  color: var(--ink); line-height: 1.12;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--pine); }
.hero-sub {
  font-size: var(--fs-body); color: var(--muted);
  line-height: 1.75; max-width: 480px; margin-bottom: 40px;
  font-weight: var(--fw-body);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--btn); color: white;
  padding: 14px 28px; border-radius: 8px;
  font-size: var(--fs-card); font-weight: var(--fw-bold); text-decoration: none;
  transition: all 0.2s var(--ease); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--btn-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(30, 74, 67,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--pine);
  padding: 14px 28px; border-radius: 8px;
  font-size: var(--fs-card); font-weight: var(--fw-medium); text-decoration: none;
  transition: all 0.2s; border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--pine); background: rgba(30, 74, 67,0.05); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
}
.hero-stat-num {
  font-family: var(--serif); font-size: var(--fs-num); color: var(--pine);
  line-height: 1; margin-bottom: 4px;
}
.hero-stat-num span { color: var(--brass); }
.hero-stat-label { font-size: var(--fs-caption); color: var(--muted); }

/* Hero card */
.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px; padding: 32px;
  box-shadow: 0 12px 34px rgba(21,54,48,.10);
}
.hero-card-title {
  font-size: var(--fs-caption);
  color: var(--teal); font-weight: var(--fw-bold); margin-bottom: 20px;
}
.hero-card-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.hero-card-item:last-child { border-bottom: none; }
.hero-card-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(30, 74, 67,0.15); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; font-size: var(--icon-sm);
}
.hero-card-label { font-size: var(--fs-card); font-weight: var(--fw-bold); color: var(--ink); margin-bottom: 2px; }
.hero-card-sub { font-size: var(--fs-caption); color: var(--muted); }
.hero-card-cta {
  margin-top: 24px; width: 100%; text-align: center;
  background: var(--btn); color: white; border: none;
  padding: 13px; border-radius: 8px; font-family: var(--sans);
  font-size: var(--fs-card); font-weight: var(--fw-bold); cursor: pointer;
  transition: all 0.2s; text-decoration: none; display: block;
}
.hero-card-cta:hover { background: var(--btn-hover); }
.hero-card-note { text-align: center; font-size: var(--fs-caption); color: var(--muted); margin-top: 10px; }

/* Hero foto + chip */
.hero-photo { position: relative; }
/* picture-wrappers transparant maken zodat de bestaande img-styling blijft werken */
.hero-photo picture, .tband-pic picture, .cta-band-photo picture { display: contents; }
.hero-photo img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: 20px; border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(21,54,48,.16);
  filter: brightness(1.28) contrast(0.92) saturate(0.9);
}
/* Zachte crème-sluier zodat de donkere foto met de lichte pagina versmelt. */
.hero-photo::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(241,244,242,0.5), rgba(241,244,242,0.14) 60%);
}
.hero-photo-chip {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(251,252,251,.95); border: 1px solid var(--line);
  border-radius: 13px; padding: 11px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 34px rgba(21,54,48,.10);
}
.hero-photo-chip .ic {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(30,74,67,.10); display: flex;
  align-items: center; justify-content: center; font-size: var(--icon-sm); flex-shrink: 0;
}
.hero-photo-chip .t { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: var(--ink); }
.hero-photo-chip .s { font-size: var(--fs-caption); color: var(--muted); }

/* ─── FEATURE STRIP ──────────────── */
.fstrip { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fstrip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1080px; margin: 0 auto; padding: 26px 24px;
}
.fcard { display: flex; gap: 12px; align-items: flex-start; }
.fcard .ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(30,74,67,.10); display: flex;
  align-items: center; justify-content: center; font-size: var(--icon-sm); flex: 0 0 38px;
}
.fcard .l { font-size: var(--fs-card); font-weight: var(--fw-bold); color: var(--ink); }
.fcard .s { font-size: var(--fs-caption); color: var(--muted); }
@media (max-width: 900px) { .fstrip-inner { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (max-width: 600px) { .fstrip-inner { grid-template-columns: 1fr; } }

/* ─── Conversie-toevoegingen ─── */
.hero-reassure { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 18px 0 0; font-size: var(--fs-caption); color: var(--slate); }
.hero-reassure span { display: inline-flex; align-items: center; gap: 6px; }
.hero-reassure b { color: var(--pine); font-weight: var(--fw-bold); }
.fstrip-cap { text-align: center; font-size: var(--fs-caption); color: var(--muted); margin-top: 18px; letter-spacing: 0.02em; }
.fstrip-cap a { color: var(--teal); text-decoration: none; }
.guarantee-hero { text-align: center; max-width: 720px; margin: 0 auto 22px; background: rgba(30, 74, 67,0.05); border: 1px solid rgba(30, 74, 67,0.18); border-radius: 14px; padding: 15px 22px; font-size: var(--fs-card); color: var(--teal3); }
.guarantee-hero b { color: var(--pine); }
.guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 820px; margin: 0 auto 44px; }
@media (max-width: 640px) { .guarantees { grid-template-columns: 1fr; } }
.guarantee { display: flex; gap: 11px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 15px 18px; }
.guarantee .gi { color: var(--pine); font-weight: var(--fw-bold); flex: none; }
.guarantee .gt { font-size: var(--fs-card); font-weight: var(--fw-bold); color: var(--ink); }
.guarantee .gs { font-size: var(--fs-caption); color: var(--muted); line-height: 1.5; }
.pricing-reassure { text-align: center; font-size: var(--fs-caption); color: var(--muted); margin-top: 10px; }
.after-signup {
  margin-top: 28px; border: 1px solid var(--line); border-radius: 18px;
  background: var(--card); padding: 26px 28px;
}
.after-signup-kop {
  font-family: var(--serif); font-size: var(--fs-h3); color: var(--ink);
  text-align: center; margin-bottom: 20px;
}
.after-signup-stappen {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px 24px;
}
.after-signup-stappen li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: var(--fs-card); color: var(--slate); line-height: 1.6;
}
.after-signup-stappen b { color: var(--ink); font-weight: var(--fw-bold); }
.after-signup-num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--pine); color: #fff; font-size: var(--fs-caption); font-weight: var(--fw-bold);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; gap: 10px; padding: 10px 14px; background: rgba(251, 252, 251,0.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
  .mobile-cta a { flex: 1; text-align: center; padding: 12px; border-radius: 8px; font-size: var(--fs-card); font-weight: var(--fw-bold); text-decoration: none; }
  .mobile-cta .p { background: var(--btn); color: #fff; }
  .mobile-cta .s { background: transparent; color: var(--teal3); border: 1px solid var(--line); }
  body { padding-bottom: 66px; }
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

/* ─── TRUST BAND met foto ────────── */
.tband { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tband-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 1080px; margin: 0 auto; padding: 56px 24px; }
.tband-pic { position: relative; }
.tband-pic img {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: 20px; border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(21,54,48,.16);
  filter: brightness(1.28) contrast(0.92) saturate(0.9);
}
/* Zachte crème-sluier (stijl B, gelijk aan de hero) zodat de foto met de pagina versmelt. */
.tband-pic::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(241,244,242,0.5), rgba(241,244,242,0.14) 60%);
}
.tband-txt { display: flex; flex-direction: column; justify-content: center; }
.tband-txt h2 {
  font-family: var(--serif); font-size: var(--fs-h2);
  color: var(--ink); line-height: 1.22; margin: 16px 0 14px; letter-spacing: -0.01em;
}
.tband-txt h2 em { font-style: italic; color: var(--pine); }
.tband-txt p { font-size: var(--fs-card); color: var(--muted); line-height: 1.7; margin: 0 0 12px; }
.tband-secure { color: var(--pine); font-weight: var(--fw-bold); font-size: var(--fs-card); }
@media (max-width: 900px) {
  .tband-grid { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }
  .tband-pic img { height: 260px; }
}

/* ─── LOGOS BAR ──────────────────── */
.logos-bar {
  background: var(--warm); padding: 28px 0;
  border-top: 1px solid rgba(27, 42, 40,0.06);
  border-bottom: 1px solid rgba(27, 42, 40,0.06);
}
.logos-inner {
  display: flex; align-items: center; gap: 0;
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
}
.logos-label {
  font-size: var(--fs-caption);
  color: var(--muted); white-space: nowrap; margin-right: 40px; font-weight: var(--fw-medium);
}
.logos-track {
  display: flex; gap: 40px; align-items: center;
  flex-wrap: wrap;
}
.logos-track span {
  font-size: var(--fs-caption); font-weight: var(--fw-bold); color: rgba(27, 42, 40,0.3);

}

/* ─── SECTIONS ───────────────────── */
section { padding: 60px 0; }
.section-tag {
  display: inline-block; font-size: var(--fs-label); font-weight: var(--fw-bold);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal);
  border-bottom: 2px solid var(--brass); padding-bottom: 4px; margin-bottom: 20px;
}
.section-title {
  font-family: var(--serif); font-size: var(--fs-h2);
  color: var(--ink); line-height: 1.18; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-sub {
  font-size: var(--fs-body); color: var(--muted); line-height: 1.75;
  max-width: 540px; font-weight: var(--fw-body);
}

/* ─── WHY ────────────────────────── */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-visual {
  position: relative; padding: 48px;
  background: linear-gradient(165deg, #EAF0ED, #F1F4F2);
  border: 1px solid var(--line);
  border-radius: 24px; overflow: hidden;
}
.why-visual-bg {
  position: absolute; inset: 0; opacity: 0.06;
  background: radial-gradient(circle at 70% 30%, var(--teal), transparent 60%);
}
.law-box {
  background: var(--card); border: 1px solid var(--line);
  border-left: 4px solid var(--pine);
  border-radius: 14px; padding: 24px; position: relative; z-index: 2;
  box-shadow: 0 8px 24px rgba(21,54,48,.06);
}
.law-box-label {
  font-size: var(--fs-caption);
  color: var(--pine); font-weight: var(--fw-bold); margin-bottom: 12px;
}
.law-box-text {
  font-family: var(--serif); font-size: var(--fs-body); color: var(--ink);
  line-height: 1.5; font-style: italic;
}
.law-box-source { font-size: var(--fs-caption); color: var(--muted); margin-top: 12px; }
.why-check {
  display: flex; align-items: baseline; gap: 8px; margin-top: 20px;
  font-size: var(--fs-caption); color: var(--slate);
}
.why-check::before { content: '✓'; color: var(--pine); font-weight: var(--fw-bold); flex-shrink: 0; }

.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point { display: flex; gap: 20px; }
.why-point-num {
  font-family: var(--serif); font-size: var(--fs-num); color: var(--teal);
  line-height: 1; flex-shrink: 0; width: 40px;
}
.why-point-title { font-size: var(--fs-title); font-weight: var(--fw-bold); color: var(--ink); margin-bottom: 6px; }
.why-point-text { font-size: var(--fs-card); color: var(--muted); line-height: 1.7; }

/* ─── HOW ────────────────────────── */
.how { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.step {
  background: var(--white); padding: 32px 24px;
  position: relative;
}
.step:first-child { border-radius: 16px 0 0 16px; }
.step:last-child { border-radius: 0 16px 16px 0; }
.step-num {
  font-family: var(--serif); font-size: var(--fs-num); color: var(--teal);
  line-height: 1; margin-bottom: 20px; display: block;
}
.step-title { font-size: var(--fs-title); font-weight: var(--fw-bold); color: var(--ink); margin-bottom: 8px; }
.step-text { font-size: var(--fs-caption); color: var(--muted); line-height: 1.7; }
.step-connector {
  position: absolute; top: 50%; right: -20px;
  width: 40px; height: 2px; background: var(--warm);
  z-index: 1;
}
.step:last-child .step-connector { display: none; }

/* ─── DIENSTEN ──────────────────── */
.diensten { background: var(--white); }
.diensten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.dienst-card {
  border: 1px solid var(--warm); border-radius: 16px;
  padding: 32px; transition: all 0.25s var(--ease);
  cursor: default;
}
.dienst-card:hover {
  border-color: var(--teal); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 74, 67,0.1);
}
.dienst-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(30, 74, 67,0.08); display: flex;
  align-items: center; justify-content: center;
  font-size: var(--icon-md); margin-bottom: 20px;
}
.dienst-title { font-size: var(--fs-title); font-weight: var(--fw-bold); color: var(--ink); margin-bottom: 10px; }
.dienst-text { font-size: var(--fs-card); color: var(--muted); line-height: 1.7; }

/* ─── BELOFTEN + PRIVACY ────────── */
.beloften { background: var(--cream); }
.beloften .dienst-card { background: var(--white); }
.beloften .dienst-icon svg { display: block; }
.privacy-band { background: linear-gradient(180deg, #EAF0ED, #F1F4F2); }
.privacy-band .section-tag { color: var(--pine); }
.privacy-band-title { font-family: var(--serif); font-size: var(--fs-h2); color: var(--ink); line-height: 1.22; max-width: 620px; margin: 16px 0 14px; }
.privacy-band-sub { font-size: var(--fs-body); color: var(--muted); line-height: 1.7; max-width: 600px; margin-bottom: 48px; }
.privacy-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.privacy-pillar-rule { height: 3px; width: 32px; background: var(--gold); margin-bottom: 14px; }
.privacy-pillar-title { font-size: var(--fs-title); font-weight: var(--fw-bold); color: var(--ink); margin-bottom: 8px; }
.privacy-pillar-text { font-size: var(--fs-caption); color: var(--muted); line-height: 1.65; }
@media (max-width: 700px) { .privacy-pillars { grid-template-columns: 1fr; gap: 26px; } }

/* ─── PRICING ───────────────────── */
.pricing { background: var(--paper); position: relative; overflow: hidden; }
.pricing-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 50%, rgba(30, 74, 67,0.08) 0%, transparent 60%);
}
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-title { color: var(--ink); }
.pricing-header .section-sub { color: var(--muted); margin: 0 auto; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pricing-card {
  display: grid; grid-template-rows: subgrid; grid-row: span 10; align-content: start;
  border: 1px solid var(--line);
  border-radius: 20px; padding: 36px;
  background: var(--card);
  transition: all 0.3s var(--ease);
  position: relative;
}
.pricing-card:hover { border-color: var(--pine); background: var(--card); box-shadow: 0 12px 34px rgba(21,54,48,.10); }
.pricing-card.featured {
  border-color: var(--brass); background: var(--card);
  box-shadow: 0 0 0 3px rgba(154,119,54,.14), 0 12px 34px rgba(21,54,48,.10);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brass); color: white;
  font-size: var(--fs-caption); font-weight: var(--fw-bold);
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.pricing-name {
  font-family: var(--serif); font-size: var(--fs-h3); color: var(--ink);
  margin-bottom: 4px;
}
.pricing-employees { font-size: var(--fs-caption); color: var(--muted); margin-bottom: 24px; }
.pricing-price {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px;
}
.pricing-amount {
  font-family: var(--serif); font-size: var(--fs-num); color: var(--pine); line-height: 1;
}
.pricing-period { font-size: var(--fs-card); color: var(--muted); }
.pricing-annual { font-size: var(--fs-caption); color: var(--muted); margin-bottom: 28px; }
.pricing-annual span { color: var(--teal); }
.pricing-divider { height: 1px; background: var(--line); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li {
  display: flex; gap: 10px; font-size: var(--fs-card);
  color: var(--slate); align-items: flex-start;
}
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: var(--fw-bold); flex-shrink: 0; margin-top: 1px; }
.pricing-features li.extra { color: var(--muted); }
.pricing-features li.extra::before { content: '+'; }
.btn-pricing-primary {
  display: block; width: 100%; text-align: center;
  background: var(--btn); color: white;
  padding: 13px; border-radius: 8px;
  font-size: var(--fs-card); font-weight: var(--fw-bold); text-decoration: none;
  transition: all 0.2s; border: none; cursor: pointer; font-family: var(--sans);
}
.btn-pricing-primary:hover { background: var(--btn-hover); }
.pricing-card.featured .btn-pricing-primary { background: var(--brass-btn); }
.pricing-card.featured .btn-pricing-primary:hover { background: var(--brass-btn-hover); }
.intro-aanbod {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid rgba(154,119,54,0.45); background: rgba(154,119,54,0.07);
  border-radius: 16px; padding: 18px 22px; margin-bottom: 26px;
}
.intro-aanbod-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: rgba(154,119,54,0.16); display: flex; align-items: center; justify-content: center; }
.intro-aanbod-tag { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: #7a5d22; margin-bottom: 5px; }
.intro-aanbod-kop { font-size: var(--fs-title); font-weight: var(--fw-bold); color: var(--ink); margin-bottom: 4px; }
.intro-aanbod-tekst { font-size: var(--fs-caption); color: var(--slate); line-height: 1.6; }
.pricing-perhead { font-size: var(--fs-caption); color: var(--muted); margin-top: 2px; }
.pricing-perhead b { color: var(--teal); font-weight: var(--fw-bold); }
.pricing-note {
  text-align: center; margin-top: 40px;
  font-size: var(--fs-caption); color: var(--muted);
}
.pricing-note a { color: var(--teal); text-decoration: none; }

/* ─── TWEE VERPLICHTINGEN (VP + Wbk) ── */
.verplichtingen { background: var(--white); }
.duo-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(7, auto); gap: 12px 24px; margin-top: 44px; }
/* Subgrid lijnt elke sectie (o.a. het "De wet"-kader) over beide kaarten op gelijke hoogte uit. */
.duo-card { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 34px; display: grid; grid-row: span 7; grid-template-rows: subgrid; }
@media (max-width: 760px) {
  .duo-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .duo-card { grid-row: auto; grid-template-rows: none; display: flex; flex-direction: column; gap: 12px; }
}
.duo-card.is-wbk { border-color: rgba(30, 74, 67,0.22); }
.duo-tag { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: var(--gold); margin: 0; }
.duo-card h3 { font-family: var(--serif); font-size: var(--fs-h3); color: var(--ink); margin: 0; letter-spacing: -0.01em; }
.duo-scope { font-size: var(--fs-caption); color: var(--muted); margin: 0; }
.duo-what { font-size: var(--fs-card); color: var(--slate); line-height: 1.65; margin: 0; }
.duo-law { background: var(--cream); border-radius: 12px; padding: 15px 17px; margin: 0; }
.duo-law-label { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: var(--teal2); display: block; margin-bottom: 5px; }
.duo-law p { font-size: var(--fs-caption); color: var(--slate); margin: 0; line-height: 1.6; }
.duo-do-label { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: var(--muted); margin: 0; }
.duo-do { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.duo-do li { position: relative; padding-left: 26px; font-size: var(--fs-caption); color: var(--slate); line-height: 1.55; }
.duo-do li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: var(--fw-bold); }

/* Wbk-status per prijskaart */
.pricing-wbk { display: grid; grid-template-columns: auto 1fr; gap: 0 8px; align-items: start; border-radius: 11px; padding: 11px 13px; font-size: var(--fs-caption); line-height: 1.5; color: var(--slate); margin-top: auto; margin-bottom: 20px; }
.pricing-wbk b { display: block; justify-self: start; font-size: var(--fs-caption); font-weight: var(--fw-bold); color: #fff; border-radius: 5px; padding: 2px 7px; }
.pricing-wbk.is-muted { background: var(--warm); }
.pricing-wbk.is-muted b { background: var(--muted); }
.pricing-wbk.is-brass { background: rgba(154,119,54,0.12); }
.pricing-wbk.is-brass b { background: var(--brass); }
.pricing-wbk.is-pine { background: rgba(30, 74, 67,0.10); }
.pricing-wbk.is-pine b { background: var(--teal); }

/* Wbk add-on blok */
.wbk-addon { margin-top: 28px; background: var(--teal); color: #eaf0ed; border-radius: 22px; padding: 42px 40px; position: relative; overflow: hidden; }
.wbk-addon::after { content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%; top: -200px; right: -140px; background: radial-gradient(circle, rgba(216,176,106,0.16), transparent 68%); pointer-events: none; }
.wbk-addon-tag { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: var(--brass-light); margin-bottom: 12px; position: relative; }
.wbk-addon h3 { font-family: var(--serif); font-weight: var(--fw-bold); font-size: var(--fs-h2); color: #fff; margin: 0 0 10px; letter-spacing: -0.01em; position: relative; }
.wbk-addon-sub { font-size: var(--fs-card); color: rgba(234,240,237,0.82); margin: 0 0 28px; max-width: 68ch; position: relative; }
.wbk-addon-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; align-items: stretch; position: relative; }
.wbk-acard { display: flex; flex-direction: column; }
.wbk-acard ul { margin-top: 4px; }
.wbk-acard { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 24px; }
.wbk-acard-price { display: flex; align-items: baseline; gap: 7px; }
.wbk-acard-amt { font-family: var(--serif); font-weight: var(--fw-bold); font-size: var(--fs-num); color: #fff; line-height: 1; }
.wbk-acard-kind { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: var(--brass-light); }
.wbk-acard-premium { font-size: var(--fs-caption); color: var(--brass-light); margin: 7px 0 0; }
.wbk-acard-premium b { color: #fff; font-weight: var(--fw-bold); }
.wbk-acard-title { font-size: var(--fs-title); font-weight: var(--fw-bold); color: #fff; margin: 14px 0 14px; }
.wbk-acard ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.wbk-acard li { position: relative; padding-left: 24px; font-size: var(--fs-caption); color: rgba(234,240,237,0.85); line-height: 1.5; }
.wbk-acard li::before { content: '✓'; position: absolute; left: 0; color: var(--brass-light); font-weight: var(--fw-bold); }
.wbk-addon-note { margin: 24px 0 0; font-size: var(--fs-caption); color: rgba(234,240,237,0.72); position: relative; }
.wbk-addon-note b { color: #fff; font-weight: var(--fw-bold); }

/* ─── VERGELIJK ─── */
.vergelijk { background: var(--white); }
.cmp-wrap { max-width: 900px; margin: 42px auto 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-table { width: 100%; min-width: 500px; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.cmp-table th { text-align: left; font-size: var(--fs-caption); color: var(--muted); font-weight: var(--fw-bold); padding: 15px 18px; background: var(--cream); border-bottom: 1px solid var(--line); }
.cmp-table th.cmp-us { color: var(--teal); }
.cmp-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: var(--fs-card); }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table .cmp-feat { color: var(--ink); }
.cmp-table .cmp-usc { text-align: center; width: 130px; background: rgba(30, 74, 67,0.05); }
.cmp-table .cmp-them { text-align: center; width: 150px; }
.cmp-tick, .cmp-cross, .cmp-varies { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; color: #fff; }
.cmp-tick { background: var(--teal); font-size: var(--fs-card); }
.cmp-cross { background: var(--red); font-size: var(--fs-caption); }
.cmp-varies { background: var(--gold); font-size: var(--fs-card); font-weight: var(--fw-bold); }
.cmp-legend { display: flex; flex-wrap: wrap; gap: 20px 26px; justify-content: center; max-width: 900px; margin: 18px auto 0; font-size: var(--fs-caption); color: var(--slate); }
.cmp-legend span { display: inline-flex; align-items: center; gap: 8px; }
.cmp-legend i { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; color: #fff; font-style: normal; font-size: var(--fs-caption); flex: none; }
.cmp-legend .lg-tick { background: var(--teal); }
.cmp-legend .lg-varies { background: var(--gold); font-weight: var(--fw-bold); }
.cmp-legend .lg-cross { background: var(--red); font-size: var(--fs-caption); }

/* ─── WAARDE-ANKER ─── */
.value-anchor { max-width: 820px; margin: 0 auto; text-align: center; }
.value-anchor .va-lead { font-size: var(--fs-body); color: var(--slate); line-height: 1.7; margin: 6px auto 28px; max-width: 60ch; }
.va-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 26px; }
.va-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px 20px; text-align: left; }
.va-card .va-num { font-family: var(--serif); font-size: var(--fs-h3); color: var(--teal); line-height: 1; margin-bottom: 6px; }
.va-card .va-txt { font-size: var(--fs-caption); color: var(--slate); line-height: 1.5; }
.va-note { font-size: var(--fs-caption); color: var(--muted); line-height: 1.65; max-width: 62ch; margin: 0 auto 22px; }
.va-punch { font-family: var(--serif); font-size: var(--fs-h3); color: var(--ink); line-height: 1.4; max-width: 680px; margin: 0 auto; }
.va-punch em { font-style: italic; color: var(--teal); }

/* ─── SOCIAL PROOF ──────────────── */
.proof { background: var(--cream); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.proof-card {
  background: var(--white); border-radius: 16px; padding: 28px;
  border: 1px solid rgba(27, 42, 40,0.06);
}
.proof-stars { color: var(--gold); font-size: var(--fs-card); margin-bottom: 14px; letter-spacing: 2px; }
.proof-quote { font-size: var(--fs-card); color: var(--ink); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--slate));
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-card); font-weight: var(--fw-bold); color: white;
}
.proof-name { font-size: var(--fs-card); font-weight: var(--fw-bold); color: var(--ink); }
.proof-role { font-size: var(--fs-caption); color: var(--muted); }
.trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; margin-top: 56px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { font-size: var(--icon-sm); }
.trust-text { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: var(--slate); }

/* ─── FAQ ─────────────────────────── */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 80px; margin-top: 56px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--warm); padding-bottom: 24px; cursor: pointer; }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; font-size: var(--fs-title); font-weight: var(--fw-bold); color: var(--ink);
  padding-bottom: 0; transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-toggle { color: var(--teal); font-size: var(--icon-sm); flex-shrink: 0; line-height: 1; transition: transform 0.2s; }
.faq-a {
  font-size: var(--fs-card); color: var(--muted); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease), padding 0.35s;
}
.faq-item.open .faq-a { max-height: 200px; padding-top: 12px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ─── CTA BAND ───────────────────── */
.cta-band {
  background: var(--teal); padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0; opacity: 0.08;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.5) 0px, rgba(255,255,255,0.5) 1px, transparent 1px, transparent 40px);
}
/* Sfeerlaag: foto_1 (VP in gesprek) onder een pine-waas zodat de tekst leesbaar blijft
   en de scène subtiel doorleest. De waas is links dichter (tekst) dan rechts (foto). */
.cta-band-photo { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.cta-band-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.cta-band-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(21,54,48,0.88) 0%, rgba(30,74,67,0.68) 50%, rgba(30,74,67,0.48) 100%);
}
.cta-band-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.cta-band-title {
  font-family: var(--serif); font-size: var(--fs-h2);
  color: white; line-height: 1.2; letter-spacing: -0.02em;
}
.cta-band-sub { font-size: var(--fs-card); color: rgba(255,255,255,0.75); margin-top: 8px; }
.btn-white {
  background: white; color: var(--teal);
  padding: 15px 32px; border-radius: 8px;
  font-size: var(--fs-card); font-weight: var(--fw-bold); text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: var(--sans);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }

/* ─── CONTACT ────────────────────── */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: white; border: 1px solid var(--warm);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--icon-sm); flex-shrink: 0;
}
.contact-info-label { font-size: var(--fs-caption); color: var(--muted); margin-bottom: 2px; font-weight: var(--fw-medium); }
.contact-info-value { font-size: var(--fs-card); font-weight: var(--fw-bold); color: var(--ink); }

.contact-form { background: var(--white); border-radius: 20px; padding: 40px; border: 1px solid var(--warm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: var(--slate); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--sans); font-size: var(--fs-card); color: var(--ink);
  border: 1px solid var(--warm); border-radius: 8px;
  padding: 11px 14px; background: var(--cream);
  transition: border-color 0.2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: var(--btn); color: white;
  border: none; border-radius: 8px; padding: 14px;
  font-family: var(--sans); font-size: var(--fs-card); font-weight: var(--fw-bold);
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--btn-hover); transform: translateY(-1px); }
.form-privacy { font-size: var(--fs-caption); color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.5; }
.form-privacy a { color: var(--teal); text-decoration: none; }

/* ─── VP AANMELDING ──────────────── */
.nav-vp-link {
  font-size: var(--fs-card) !important; font-weight: var(--fw-medium);
  color: var(--teal) !important;
  border-bottom: 1px dashed rgba(30, 74, 67,0.4);
  padding-bottom: 1px;
}
.nav-vp-link:hover { border-bottom-color: var(--teal) !important; }

.vp-section-label {
  font-size: var(--fs-label); font-weight: var(--fw-bold); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pine);
  border-bottom: 2px solid var(--brass); padding-bottom: 4px;
  display: inline-block; margin-bottom: 20px;
}

/* ─── FOOTER ─────────────────────── */
footer { background: var(--ink); padding: 60px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-text { font-size: var(--fs-caption); color: rgba(241, 244, 242,0.45); line-height: 1.75; margin-top: 16px; max-width: 260px; }
.footer-col-title { font-size: var(--fs-caption); font-weight: var(--fw-bold); color: rgba(241, 244, 242,0.85); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: var(--fs-caption); color: rgba(241, 244, 242,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(241, 244, 242,0.07);
  padding-top: 28px; display: flex;
  align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: var(--fs-caption); color: rgba(241, 244, 242,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: var(--fs-caption); color: rgba(241, 244, 242,0.3); text-decoration: none; }
.footer-legal a:hover { color: var(--teal); }

/* ─── TOAST ──────────────────────── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  background: var(--teal); color: white;
  padding: 14px 24px; border-radius: 10px;
  font-size: var(--fs-card); font-weight: var(--fw-bold);
  box-shadow: 0 8px 32px rgba(30, 74, 67,0.4);
  transform: translateY(80px); opacity: 0;
  transition: all 0.35s var(--ease);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── ANIMATIONS ─────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .diensten-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
}
@media (max-width: 600px) {
  section { padding: 44px 0; }
  .steps { grid-template-columns: 1fr; }
  .diensten-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  /* Vergelijkingstabel past binnen het scherm, geen horizontaal scrollen meer:
     min-width los, smallere icoon-kolommen en compactere padding/tekst. */
  .cmp-table { min-width: 0; }
  .cmp-table th, .cmp-table td { padding: 11px 9px; font-size: var(--fs-caption); }
  /* Op een telefoon moet de tabel binnen het scherm passen, anders moet je
     horizontaal scrollen. De kolomkop pakt daarom de labelmaat. */
  .cmp-table th { font-size: var(--fs-label); letter-spacing: 0.02em; padding-top: 13px; padding-bottom: 13px; }
  .cmp-table .cmp-usc, .cmp-table .cmp-them { width: 58px; }
  .cmp-tick, .cmp-cross, .cmp-varies { width: 24px; height: 24px; }
}

/* ─── PAGINAKOP (donkere band met h1) ─────────────────────────────────────
   Gedeeld met de bestaande subpagina's. Op deze ink-achtergrond is het label
   pine-light, niet pine: pine (#1e4a43) op ink (#1b2a28) is praktisch
   onleesbaar. Zie de contrastregel in CLAUDE.md §7. */
.page-head { background: var(--ink); padding: 130px 0 56px; position: relative; overflow: hidden; }
.page-head::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, var(--teal) 0%, transparent 70%); opacity: 0.14; top: -240px; right: -160px; pointer-events: none; }
.page-head .page-tag { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-label); letter-spacing: 0.16em; text-transform: uppercase; font-weight: var(--fw-bold); color: var(--pine-light); border: 1px solid rgba(127, 167, 155, 0.45); padding: 6px 14px; border-radius: 40px; margin-bottom: 22px; position: relative; z-index: 2; }
.page-head h1 { font-family: var(--serif); font-weight: var(--fw-medium); font-size: var(--fs-h1); color: var(--cream); line-height: 1.14; letter-spacing: -0.02em; position: relative; z-index: 2; max-width: 18ch; }
.page-head p { color: rgba(241, 244, 242, 0.72); font-size: var(--fs-body); max-width: 58ch; margin-top: 18px; position: relative; z-index: 2; }
@media (max-width: 900px) { .page-head { padding: 104px 0 40px; } }

/* ─── Pakketkiezer op mobiel ──────────────────────────────────────────────
   Drie prijskaarten onder elkaar waren op een telefoon 8,4 schermen scrollen,
   terwijl je pakketten juist naast elkaar wilt leggen. Onder 820px kies je er
   daarom één tegelijk. Geen JavaScript: radio's plus ~-selectors, zodat het
   ook werkt als een script niet laadt. Op desktop staan de drie kaarten
   gewoon naast elkaar en is de kiezer verborgen. */
.pricing-cards > .tier-radio { position: absolute; width: 1px; height: 1px; opacity: 0; }
.tier-switch { display: none; }

@media (max-width: 820px) {
  .tier-switch {
    grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 4px; background: var(--warm); border-radius: 12px; padding: 4px; margin-bottom: 4px;
  }
  .tier-switch label {
    text-align: center; padding: 11px 6px; border-radius: 9px; cursor: pointer;
    font-size: var(--fs-card); font-weight: var(--fw-bold); color: var(--slate);
    transition: background 0.15s var(--ease), color 0.15s var(--ease);
  }
  .pricing-cards > div.pricing-card { display: none; grid-row: auto; }
  #tk-basis:checked   ~ .tier-switch label[for="tk-basis"],
  #tk-plus:checked    ~ .tier-switch label[for="tk-plus"],
  #tk-premium:checked ~ .tier-switch label[for="tk-premium"] {
    background: var(--white); color: var(--teal3); box-shadow: var(--shadow-sm);
  }
  /* Zichtbare focus voor toetsenbordgebruik; de radio zelf is visueel verborgen. */
  .tier-radio:focus-visible ~ .tier-switch label[for] { outline: 2px solid var(--btn); outline-offset: 2px; }
  #tk-basis:checked   ~ div.pricing-card:nth-of-type(2) { display: block; }
  #tk-plus:checked    ~ div.pricing-card:nth-of-type(3) { display: block; }
  #tk-premium:checked ~ div.pricing-card:nth-of-type(4) { display: block; }
}

/* ─── Tarieven in het kort (homepage) ─────────────────────────────────────
   Drie knoppen naar /tarieven/, geen volledige prijskaarten. De homepage moet
   iemand helpen kiezen waar hij heen wil, niet alles al vertellen. */
.mini-prijzen { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 36px; }
.mini-prijs {
  display: flex; flex-direction: column; gap: 4px; text-decoration: none;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 24px 22px; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.mini-prijs:hover { border-color: var(--teal2); transform: translateY(-2px); }
.mini-prijs:focus-visible { outline: 2px solid var(--btn); outline-offset: 3px; }
.mp-naam   { font-family: var(--serif); font-size: var(--fs-h3); color: var(--ink); line-height: 1.1; }
.mp-bedrag { font-family: var(--serif); font-size: var(--fs-num); color: var(--teal); line-height: 1.05; }
.mp-wie    { font-size: var(--fs-caption); color: var(--muted); }

/* ─── VP-strip (homepage) ─────────────────────────────────────────────────
   Compacte verwijzing naar de wervingspagina. Op donker dus crème en
   pine-light, nooit pine. */
.vp-strip { background: var(--ink); }
.vp-strip .vp-section-label { color: var(--pine-light); }
.vp-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
@media (max-width: 700px) { .vp-strip-inner { flex-direction: column; align-items: flex-start; } }
