/* ============================================================
   BattMobility B2B — Fleet Forward stylesheet
   ------------------------------------------------------------
   Gebaseerd op het BattMobility Design System v05 (juni 2026),
   toegepast met het B2B-palet "Fleet Forward" uit het brand book
   (sectie 3.3): B2B Key #1943A3, Future Blue accent, Urban Mist,
   Eco Horizon en Transit Sand voor datagedreven componenten.
   Regels die ongewijzigd gelden: Inter, radii 10/20/999,
   spacing 0/5/20/40/60/80/100, secties 80/40, geen schaduwen
   behalve de navigatiepil, knoppen met merk-pijl.
   ============================================================ */

/* ---- 1. Tokens ---- */
:root {
  /* Fleet Forward hoofdkleuren */
  --b2b-key: #1943A3;
  --b2b-key-hover: #143689;
  --b2b-key-75: #5372BA;   /* afgeleide tint, zie design system doc */
  --b2b-key-50: #8CA1D1;
  --b2b-key-25: #D1DAEE;
  --future-blue: #3D73F0;
  --eco-horizon: #D1E8D1;
  --eco-horizon-50: #E8F4E8;
  --transit-sand: #EACAA4;
  --transit-sand-25: #FAF1E4;
  --graphite-drive: #4F4F4F;
  --graphite-deep: #3E3E3E;
  --urban-mist: #D9D9D9;
  --off-white: #F6F9FD;
  --surface-warm: #FDFBF7;
  --white: #FFFFFF;
  --muted: #9F9F9F;
  --hairline: rgba(79, 79, 79, 0.16);
  --input-fill: #EDF2FB;

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-nav: 0 4px 24px rgba(79, 79, 79, 0.08);

  --radius-inner: 10px;
  --radius-card: 20px;
  --radius-pill: 999px;

  --container: 1280px;
}

/* ---- 2. Basis ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--graphite-drive);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--b2b-key); text-decoration: none; transition: color 0.2s var(--ease-standard); }
a:hover { color: var(--future-blue); }

:focus-visible {
  outline: none;
  border-radius: 4px;
  box-shadow: 0 0 0 2px var(--off-white), 0 0 0 5px rgba(25, 67, 163, 0.35);
}

::selection { background: var(--b2b-key-25); }

/* ---- 3. Typografie ---- */
h1, h2, h3, h4 { margin: 0 0 20px; font-weight: 500; letter-spacing: -0.02em; }

h1, .title-super { font-size: 72px; line-height: 86px; }
.title-1, h2 { font-size: 50px; line-height: 60px; }
.title-2 { font-size: 36px; line-height: 42px; }
h3, .title-3 { font-size: 24px; line-height: 32px; }

p { margin: 0 0 20px; }
p:last-child { margin-bottom: 0; }

.body-large { font-size: 20px; line-height: 31px; }
.body-standard { font-size: 16px; line-height: 26px; }
.body-small { font-size: 14px; line-height: 22px; }
.caption { font-size: 13px; line-height: 20px; }

.muted { color: var(--muted); }
.lead { font-size: 20px; line-height: 31px; max-width: 720px; }

/* ---- 4. Layout ---- */
.container { max-width: var(--container); margin: 0 auto; }

.section { padding: 80px 40px; }
.section-compact { padding: 60px 40px; }
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head > .section-label { margin-bottom: 20px; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- 5. Sectielabel & badges ---- */
.section-label {
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--b2b-key);
  background: var(--b2b-key-25);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.section-label.on-dark { color: var(--off-white); background: rgba(246, 249, 253, 0.14); }

.caption-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border: 1px solid rgba(79, 79, 79, 0.25);
  border-radius: var(--radius-pill);
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: var(--surface-warm);
  color: var(--graphite-drive);
}

.formule-badge { height: 40px; width: auto; }

/* ---- 6. Knoppen ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s var(--ease-standard);
}
.btn:hover { transform: translateY(-2px); }
.btn-arrow { width: 0.72em; height: 0.67em; flex: none; }

.btn-primary { background: var(--b2b-key); color: var(--off-white); }
.btn-primary:hover { background: var(--b2b-key-hover); color: var(--off-white); }

.btn-secondary { background: var(--eco-horizon); color: var(--graphite-drive); }
.btn-secondary:hover { background: #C2E0C3; color: var(--graphite-drive); }

.btn-dark { background: var(--graphite-drive); color: var(--off-white); }
.btn-dark:hover { color: var(--off-white); }

.btn-light { background: var(--white); color: var(--b2b-key); }
.btn-light:hover { color: var(--b2b-key-hover); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--urban-mist);
  color: var(--graphite-drive);
}
.btn-outline:hover { color: var(--b2b-key); border-color: var(--b2b-key); }

.btn-compact { padding: 0 20px; height: 40px; font-size: 14px; }
.btn-large { padding: 0 40px; height: 60px; }

/* ---- 7. Navigatie ---- */
.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  padding: 10px 10px 10px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-nav); /* enige schaduw in het systeem */
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 34px; width: auto; }

/* Geanimeerd logo (intro on load, loop on hover) — zie battmobility.be */
.wm-logo-container { width: 100%; height: 100%; cursor: pointer; }
.wm-logo-container svg { display: block; width: 100%; height: 100%; }

.wm-anim-pill    { animation: pillIntro 2s ease-in-out 1 forwards; }
.wm-anim-cutout  { animation: cutoutIntro 2s ease-in-out 1 forwards; }
.wm-anim-part-01 { animation: part01Intro 2s ease-in-out 1 forwards; }
.wm-anim-part-02 { animation: part02Intro 2s ease-in-out 1 forwards; }

.wm-logo-container:hover .wm-anim-pill    { animation: pillLoop 2s ease-in-out infinite; }
.wm-logo-container:hover .wm-anim-cutout  { animation: cutoutLoop 2s ease-in-out infinite; }
.wm-logo-container:hover .wm-anim-part-01 { animation: part01Loop 2s ease-in-out infinite; }
.wm-logo-container:hover .wm-anim-part-02 { animation: part02Loop 2s ease-in-out infinite; }

@keyframes pillIntro {
  0%   { opacity: 0; width: 125px; height: 125px; x: 30px; rx: 62.5px; }
  10%  { opacity: 1; width: 125px; x: 30px; }
  25%  { width: 185px; x: 0px; }
  100% { opacity: 1; width: 185px; height: 125px; x: 0px; rx: 62.5px; }
}
@keyframes cutoutIntro {
  0%, 25% { opacity: 0; }
  30%     { opacity: 1; }
  100%    { opacity: 1; }
}
@keyframes part01Intro {
  0%, 35% { opacity: 0; transform: translateX(-190px); }
  40%     { opacity: 1; }
  50%,100%{ transform: translateX(0); opacity: 1; }
}
@keyframes part02Intro {
  0%, 45% { opacity: 0; transform: translateX(-190px); }
  50%     { opacity: 1; }
  60%,100%{ transform: translateX(0); opacity: 1; }
}
@keyframes pillLoop {
  0%   { opacity: 0; width: 125px; height: 125px; x: 30px; rx: 62.5px; }
  10%  { opacity: 1; width: 125px; x: 30px; }
  25%  { width: 185px; x: 0px; }
  90%  { opacity: 1; width: 185px; height: 125px; x: 0px; rx: 62.5px; }
  100% { opacity: 0; width: 185px; x: 0px; }
}
@keyframes cutoutLoop {
  0%, 25% { opacity: 0; }
  30%     { opacity: 1; }
  90%     { opacity: 1; }
  100%    { opacity: 0; }
}
@keyframes part01Loop {
  0%, 35% { opacity: 0; transform: translateX(-190px); }
  40%     { opacity: 1; }
  50%     { transform: translateX(0); opacity: 1; }
  90%     { transform: translateX(0); opacity: 1; }
  100%    { transform: translateX(0); opacity: 0; }
}
@keyframes part02Loop {
  0%, 45% { opacity: 0; transform: translateX(-190px); }
  50%     { opacity: 1; }
  60%     { transform: translateX(0); opacity: 1; }
  90%     { transform: translateX(0); opacity: 1; }
  100%    { transform: translateX(0); opacity: 0; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.nav-menu a:not(.btn) {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  color: var(--graphite-drive);
  font-size: 15px;
  font-weight: 500;
}
.nav-menu a:not(.btn):hover { color: var(--b2b-key); background: var(--off-white); }
.nav-menu a[aria-current="page"] { color: var(--b2b-key); background: var(--b2b-key-25); }
.nav-menu-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--graphite-drive);
  border-radius: 2px;
  transition: transform 0.2s var(--ease-standard), opacity 0.2s var(--ease-standard);
}
.nav-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Minimale header voor focus-landingspagina's (Car Policy Scan) */
.header-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px;
}
.header-minimal img { height: 38px; width: auto; }
.header-minimal a.back { font-size: 14px; font-weight: 500; }

/* ---- 8. Hero ---- */
.hero {
  position: relative;
  width: calc(100% - 40px);
  max-width: var(--container);
  height: 720px;
  margin: 0 auto;
  padding: 200px 40px 60px;
  border-radius: var(--radius-card);
  overflow: hidden;
  color: var(--off-white);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* leesbaarheids-scrim, geen decoratieve gradient (Figma node 23:93) */
  background: linear-gradient(240deg, rgba(79, 79, 79, 0.28) 0%, rgba(79, 79, 79, 0.8) 98.55%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
  max-width: 760px;
}
.hero h1 { margin: 0; max-width: 820px; }
.hero .lead { color: rgba(246, 249, 253, 0.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px; }
/* Hero-tekstblok en knoppen volgens Figma (23:773 en 23:793) */
.hero-copy { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.hero-copy p { margin: 0; }
.hero-sub { font-size: 36px; line-height: 42px; font-weight: 500; color: var(--off-white); }
.hero .hero-actions { gap: 10px; margin-top: 40px; }

.hero-stat {
  flex: none;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  color: var(--graphite-drive);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 20px;
  width: 405px;
  max-width: 100%;
}
.hero-stat-text { display: flex; flex-direction: column; width: 198px; flex: none; }
.hero-stat strong { font-size: 50px; line-height: 60px; font-weight: 500; color: var(--b2b-key); }
.hero-stat-label {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--b2b-key);
}
.hero-stat-caption { font-size: 14px; line-height: 22px; color: var(--muted); }
.hero-stat-media {
  flex: 1;
  align-self: stretch;
  min-width: 100px;
  border-radius: var(--radius-inner);
  overflow: hidden;
}
.hero-stat-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 65%; }

/* Sobere paginahero (subpagina's) */
.page-hero { padding: 200px 40px 40px; }
.page-hero h1 { font-size: 50px; line-height: 60px; margin-bottom: 20px; }

/* ---- 9. USP-pillen (brand book pill-communicatie) ---- */
.pill-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}
.pill-strip .pill,
.pill-ticker .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid var(--urban-mist);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  background: var(--white);
  white-space: nowrap;
}
.pill-strip .pill::before,
.pill-ticker .pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--b2b-key);
}

/* USP-ticker: oneindige marquee (toegelaten motion in het design system).
   Twee identieke groepen + translateX(-50%) = naadloze loop; hover pauzeert. */
.pill-ticker {
  overflow: hidden;
  padding: 40px 0;
  /* Geknipt op de containerbreedte, gelijk met de hero-kaart */
  width: calc(100% - 40px);
  max-width: var(--container);
  margin: 0 auto;
}
.pill-ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: pill-ticker-loop 56s linear infinite;
}
.pill-ticker-group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex: 0 0 auto;
}
.pill-ticker:hover .pill-ticker-track { animation-play-state: paused; }
@keyframes pill-ticker-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- 10. Kaarten ---- */
.card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 40px;
  transition: transform 0.2s var(--ease-standard);
}
a.card { color: inherit; display: block; }
.card:hover { transform: translateY(-4px); }
.card h3 { margin-bottom: 5px; }

.card-blue {
  background: var(--b2b-key);
  color: var(--off-white);
  border: none;
  border-radius: var(--radius-card);
  padding: 40px;
}
.card-blue h3, .card-blue h2 { color: var(--off-white); }

.card-green {
  background: var(--eco-horizon);
  color: var(--graphite-drive);
  border: none;
  border-radius: var(--radius-card);
  padding: 40px;
}

.card-sand { background: var(--transit-sand-25); border: none; }

/* Stappenkaart (01/02/03, brand book blueprint) */
.step-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.step-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.step-card .step-body { padding: 20px; display: flex; gap: 20px; align-items: baseline; }
.step-card .step-nr { font-size: 24px; line-height: 32px; font-weight: 500; color: var(--b2b-key); }
.step-card h3 { font-size: 18px; line-height: 26px; margin-bottom: 5px; }
.step-card p { font-size: 14px; line-height: 22px; color: var(--muted); }

/* Statistiektegel (datagedreven, Eco Horizon / Transit Sand) */
.stat-tile {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 40px 20px;
  text-align: center;
}
.stat-tile strong {
  display: block;
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
  color: var(--b2b-key);
}
.stat-tile span { font-size: 14px; line-height: 22px; color: var(--muted); }
.stat-tile.accent-green { background: var(--eco-horizon-50); border: none; }
.stat-tile.accent-sand { background: var(--transit-sand-25); border: none; }

/* Checklist (Eco Horizon chips) */
.checklist { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 26px; }
.checklist .check {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--eco-horizon);
  color: var(--graphite-drive);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.card-blue .checklist .check { background: rgba(246, 249, 253, 0.2); color: var(--off-white); }

/* Case-kaart */
.case-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.case-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.case-card .case-body { padding: 20px 20px 40px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.case-card .case-kpi { font-size: 24px; line-height: 32px; font-weight: 500; color: var(--b2b-key); }
.case-card .case-name { font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 500; color: var(--muted); }
.case-card p { font-size: 15px; line-height: 24px; }
.case-card .case-link { margin-top: auto; padding-top: 20px; font-weight: 500; font-size: 15px; }

/* ---- 11. Prijstabel ---- */
.price-table-wrap { overflow-x: auto; border: 1px solid var(--hairline); border-radius: var(--radius-card); background: var(--white); }
.price-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.price-table th, .price-table td { text-align: left; padding: 20px; font-size: 16px; line-height: 26px; }
.price-table thead th {
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--hairline);
}
.price-table tbody tr + tr td { border-top: 1px solid var(--hairline); }
.price-table .price { font-weight: 500; color: var(--b2b-key); white-space: nowrap; }

/* ---- 12. Accordeon (native details) ---- */
.accordion { display: flex; flex-direction: column; gap: 20px; }
.accordion details {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 0;
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 60px 20px 20px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  position: relative;
  border-radius: var(--radius-card);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 26px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--graphite-drive);
  border-bottom: 2px solid var(--graphite-drive);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease-standard);
}
.accordion details[open] summary { color: var(--b2b-key); }
.accordion details[open] summary::after { transform: rotate(225deg); border-color: var(--b2b-key); }
.accordion .accordion-body { padding: 0 20px 20px; font-size: 16px; line-height: 26px; }

/* ---- 13. Formulieren ---- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; line-height: 22px; font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: var(--graphite-drive);
  background: var(--input-fill);
  border: 2px solid transparent;
  border-radius: var(--radius-inner);
  padding: 12px 14px;
  transition: border-color 0.2s var(--ease-standard), background 0.2s var(--ease-standard), box-shadow 0.2s var(--ease-standard);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--b2b-key);
  box-shadow: 0 0 0 3px rgba(25, 67, 163, 0.15);
}
.form-note { font-size: 13px; line-height: 20px; color: var(--muted); }

/* ---- 14. Quote ---- */
.quote-block {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 40px;
}
.quote-block img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; flex: none; }
.quote-block blockquote { margin: 0; font-size: 24px; line-height: 32px; font-weight: 500; }
.quote-block cite { display: block; margin-top: 20px; font-style: normal; font-size: 14px; line-height: 22px; color: var(--muted); }

/* ---- 15. CTA-band & donkere secties ---- */
.cta-band {
  background: var(--b2b-key);
  color: var(--off-white);
  border-radius: var(--radius-card);
  padding: 80px 40px;
  text-align: center;
}
.cta-band h2 { color: var(--off-white); max-width: 720px; margin: 0 auto 20px; }
.cta-band p { max-width: 620px; margin: 0 auto 40px; color: rgba(246, 249, 253, 0.88); }
.cta-band .hero-actions { justify-content: center; margin: 0; }

.section-dark { background: var(--graphite-drive); color: var(--off-white); }
.section-dark h2, .section-dark h3 { color: var(--off-white); }

/* "Goed om te weten" (KBC-patroon: juridisch/feitelijk apart) */
.note-block {
  background: var(--surface-warm);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 40px;
}
.note-block h3 { font-size: 18px; line-height: 26px; }
.note-block p, .note-block li { font-size: 14px; line-height: 22px; color: var(--graphite-drive); }
.note-block ul { margin: 0; padding-left: 20px; }

/* Sectiebanden: secties met een eigen achtergrondkleur, gescheiden door
   hairlines. Zet .band op elke sectie (hairline bovenaan) en combineer
   optioneel met een kleurvariant. Zie designsystem.html voor het ritme. */
.band { border-top: 1px solid var(--hairline); }
.band-warm { background: var(--surface-warm); }
.band-blue { background: var(--b2b-key-25); }
.band-green { background: var(--eco-horizon-50); }
.band-sand { background: var(--transit-sand-25); }
.band-blue .section-label { background: rgba(255, 255, 255, 0.65); }
.band-dark { background: var(--graphite-drive); color: var(--off-white); }
.band-dark h2, .band-dark h3 { color: var(--off-white); }
.band-dark .lead, .band-dark .body-standard { color: rgba(246, 249, 253, 0.85); }
.band-dark .muted { color: rgba(246, 249, 253, 0.6); }
.band-dark .section-label { color: var(--off-white); background: rgba(246, 249, 253, 0.14); }

/* ---- 16. Footer ---- */
.site-footer {
  background: var(--graphite-drive);
  color: var(--off-white);
  width: calc(100% - 40px);
  max-width: var(--container);
  margin: 60px auto 20px;
  border-radius: var(--radius-card);
  padding: 80px 40px 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand img { height: 42px; width: auto; margin-bottom: 20px; }
.footer-baseline { font-size: 16px; line-height: 26px; font-weight: 500; color: var(--off-white); }
.footer-meta { font-size: 14px; line-height: 22px; color: rgba(246, 249, 253, 0.64); }
.footer-title {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(246, 249, 253, 0.56);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--off-white); font-size: 15px; }
.footer-col a:hover { color: var(--b2b-key-50); }
.footer-legal {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(246, 249, 253, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(246, 249, 253, 0.64);
}
.footer-legal a {
  color: rgba(246, 249, 253, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  font-weight: 500;
  margin-left: 20px;
}
.footer-legal a:first-child { margin-left: 0; }
.footer-legal a:hover { color: var(--off-white); }

/* ---- 17. Hulpjes ---- */
.mt-20 { margin-top: 20px; } .mt-40 { margin-top: 40px; } .mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; } .mb-40 { margin-bottom: 40px; } .mb-60 { margin-bottom: 60px; }
.center { text-align: center; }
.maxw-720 { max-width: 720px; }
.maxw-860 { max-width: 860px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- 18. Responsief ---- */
@media (max-width: 1024px) {
  h1, .title-super { font-size: 56px; line-height: 66px; }
  .title-1, h2 { font-size: 40px; line-height: 48px; }
  .title-2 { font-size: 32px; line-height: 38px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: auto; }
  .nav-open .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-card);
    padding: 20px;
    box-shadow: var(--shadow-nav);
  }
  .nav-open .nav-menu a:not(.btn) { padding: 12px 14px; font-size: 16px; }
  .nav-open .nav-menu .nav-menu-cta { display: block; margin-top: 5px; }
  .nav-pill { position: relative; }
  .hero { height: auto; }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-sub { font-size: 32px; line-height: 38px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; line-height: 26px; }
  h1, .title-super { font-size: 44px; line-height: 52px; }
  .title-1, h2 { font-size: 34px; line-height: 40px; }
  .title-2 { font-size: 28px; line-height: 34px; }
  h3, .title-3 { font-size: 20px; line-height: 28px; }
  .section, .section-compact { padding: 60px 20px; }
  .hero { width: calc(100% - 20px); padding: 160px 20px 40px; }
  .page-hero { padding: 160px 20px 20px; }
  .page-hero h1 { font-size: 38px; line-height: 46px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { width: calc(100% - 20px); margin: 40px auto 10px; padding: 60px 20px 40px; }
  .quote-block { flex-direction: column; align-items: flex-start; }
  .nav-cta { display: none; }
  .header-minimal { padding: 20px; }
  .hero-actions .btn-large { height: auto; padding: 14px 22px; }
  .hero-stat { width: 100%; }
  .hero-stat-text { width: auto; flex: 1; min-width: 0; }
  .hero-stat strong { font-size: 40px; line-height: 48px; }
  .hero-sub { font-size: 28px; line-height: 34px; }
}

/* ---- 19. Beweging beperken ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
