/* =========================================================================
   Waardeanalyse.nl — landingspagina
   Designsysteem: rustig, premium, vertrouwenwekkend. Eén groen accent.
   ========================================================================= */

:root {
  /* Neutrals — warme, zeer laag-verzadigde groen-slate */
  --ink:        oklch(0.25 0.014 165);
  --ink-soft:   oklch(0.42 0.012 165);
  --muted:      oklch(0.55 0.010 165);
  --faint:      oklch(0.68 0.008 165);
  --line:       oklch(0.915 0.006 165);
  --line-soft:  oklch(0.955 0.005 165);
  --bg:         oklch(0.992 0.004 150);
  --bg-tint:    oklch(0.975 0.010 160);
  --surface:    #ffffff;

  /* Accent — diep, kalm groen (default). Overschrijfbaar via Tweaks. */
  --accent:        oklch(0.53 0.105 162);
  --accent-strong: oklch(0.46 0.105 162);
  --accent-tint:   oklch(0.955 0.030 162);
  --accent-line:   oklch(0.88 0.045 162);
  --on-accent:     #ffffff;

  /* Voorbeeldrapport-huisstijl (fictief kantoor) — bewust ANDERS dan de pagina.
     Overschrijfbaar via data-office. */
  --office:        #1d3461;
  --office-strong: #16284a;
  --office-tint:   #eef2f9;
  --office-line:   #d7e0ef;
  --office-accent: #c08a2d;

  --font-display: "Schibsted Grotesk", system-ui, sans-serif;
  --font-text:    "Schibsted Grotesk", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(20, 35, 30, 0.04), 0 1px 3px rgba(20, 35, 30, 0.05);
  --shadow-md: 0 10px 30px -12px rgba(20, 35, 30, 0.16), 0 2px 8px rgba(20, 35, 30, 0.04);
  --shadow-lg: 0 30px 70px -28px rgba(20, 35, 30, 0.30), 0 8px 24px -12px rgba(20, 35, 30, 0.12);

  --container: 1180px;

  /* Typografie-schaal */
  --text-xs:   12px;
  --text-sm:   13px;
  --text-ui:   14px;
  --text-base: 15px;
  --text-body: 17px;
  --text-md:   18px;
  --text-lg:   19px;
  --text-xl:   20px;

  --header-h: 64px;
}

/* Serif-koppen variant (Tweaks) */
[data-font="serif"] {
  --font-display: "Newsreader", Georgia, serif;
}

/* Accent-presets (Tweaks) */
[data-accent="blue"]       { --accent: oklch(0.55 0.13 256); --accent-strong: oklch(0.48 0.13 256); --accent-tint: oklch(0.96 0.03 256); --accent-line: oklch(0.88 0.05 256); }
[data-accent="navy"]       { --accent: oklch(0.40 0.09 258); --accent-strong: oklch(0.33 0.09 258); --accent-tint: oklch(0.955 0.025 258); --accent-line: oklch(0.88 0.04 258); }
[data-accent="terracotta"] { --accent: oklch(0.58 0.12 45);  --accent-strong: oklch(0.50 0.12 45);  --accent-tint: oklch(0.96 0.03 45);  --accent-line: oklch(0.89 0.05 45); }

/* =========================================================================
   Reset + basis
   ========================================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-text);
  background: var(--bg);
  color: var(--ink);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv01";
  padding-top: var(--header-h);
}
body.page-landing { padding-top: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--accent-tint); }

/* =========================================================================
   Layout helpers
   ========================================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }

.section { padding-block: 116px; }
.section--tight { padding-block: 84px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-strong);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: var(--accent); opacity: 0.6;
}
.eyebrow--center::before { display: none; }

.section-head { max-width: 720px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head p { margin-top: 20px; font-size: var(--text-lg); color: var(--ink-soft); max-width: 620px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: var(--text-base); letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 1px 2px rgba(20,35,30,.12), inset 0 1px 0 rgba(255,255,255,.14); }
.btn--primary:hover { background: var(--accent-strong); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink-soft); background: var(--surface); }
.btn--light { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 16px 30px; font-size: var(--text-body); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--accent-strong); font-size: var(--text-base);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

.link-arrow--light { color: rgba(255,255,255,.92); }
.link-arrow--light:hover { color: #fff; }

/* =========================================================================
   Header — solid white (report) / transparent overlay (landing hero)
   ========================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

/* Overlay header — transparent over hero, white text */
.site-header--overlay {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header--overlay:not(.is-scrolled) .brand-name,
.site-header--overlay:not(.is-scrolled) .brand-name span { color: #fff; }
.site-header--overlay:not(.is-scrolled) .nav a {
  color: rgba(255,255,255,.9);
}
.site-header--overlay:not(.is-scrolled) .nav a:hover { color: #fff; }
.site-header--overlay:not(.is-scrolled) .header-cta .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.42);
}
.site-header--overlay:not(.is-scrolled) .header-cta .btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.65);
}
.site-header--overlay:not(.is-scrolled) .nav-toggle {
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.site-header--overlay:not(.is-scrolled) .nav-toggle:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55);
}

/* Scrolled past hero — solid white header */
.site-header--overlay.is-scrolled {
  background: #fff;
  border-bottom-color: var(--line);
}
.site-header--overlay.is-scrolled .brand-name,
.site-header--overlay.is-scrolled .brand-name span { color: inherit; text-shadow: none; }
.site-header--overlay.is-scrolled .nav a { color: var(--ink-soft); text-shadow: none; }
.site-header--overlay.is-scrolled .nav a:hover { color: var(--ink); }
.site-header--overlay.is-scrolled .header-cta .btn--ghost {
  color: var(--ink);
  border-color: var(--line);
}
.site-header--overlay.is-scrolled .header-cta .btn--ghost:hover {
  background: var(--surface);
  border-color: var(--ink-soft);
}
.site-header--overlay.is-scrolled .nav-toggle {
  color: var(--ink);
  border-color: var(--line);
}
.site-header--overlay.is-scrolled .nav-toggle:hover { background: var(--surface); }

/* Mobile nav — dark panel when overlay, white when scrolled */
.site-header--overlay:not(.is-scrolled) .nav-mobile {
  background: rgba(12, 22, 18, 0.92);
  border-top-color: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.site-header--overlay:not(.is-scrolled) .nav-mobile nav a {
  color: rgba(255,255,255,.88);
  border-bottom-color: rgba(255,255,255,.1);
}
.site-header--overlay:not(.is-scrolled) .nav-mobile nav a:hover { color: #fff; }
.site-header--overlay:not(.is-scrolled) .nav-mobile-cta .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.site-header--overlay:not(.is-scrolled) .nav-mobile-cta .btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  height: var(--header-h);
  gap: 16px;
}
.header-inner--report {
  display: flex;
  justify-content: flex-start;
}
.report-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-base); font-weight: 600; color: var(--ink-soft);
  transition: color .15s ease;
}
.report-back svg { width: 18px; height: 18px; }
.report-back:hover { color: var(--accent-strong); }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; z-index: 1; justify-self: start; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent); color: var(--on-accent);
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 18px; height: 18px; }
.brand-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--text-body); letter-spacing: -0.02em; line-height: 1;
}
.brand-name b { font-weight: 600; }
.brand-name span { color: var(--muted); font-weight: 500; }
.site-header--overlay:not(.is-scrolled) .brand-name span { color: rgba(255,255,255,.72); }

.nav {
  position: static;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 24px);
  flex-shrink: 0;
  justify-self: center;
}
.nav a {
  font-size: var(--text-ui);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav a:hover { color: var(--ink); }

.header-end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  z-index: 1;
  justify-self: end;
}
.header-cta { display: flex; align-items: center; gap: 8px; }
.header-cta .btn {
  padding: 9px 16px;
  font-size: var(--text-ui);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 9px;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  flex: none; position: relative;
}
.nav-toggle-icon { width: 22px; height: 22px; position: absolute; transition: opacity .2s ease, transform .2s ease; }
.nav-toggle-icon--close { opacity: 0; transform: scale(.85); }
.site-header.is-menu-open .nav-toggle-icon--open { opacity: 0; transform: scale(.85); }
.site-header.is-menu-open .nav-toggle-icon--close { opacity: 1; transform: scale(1); }

.nav-mobile {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 12px 28px 24px;
}
.nav-mobile nav { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile nav a {
  display: block; padding: 14px 4px; font-size: var(--text-body); font-weight: 500;
  color: var(--ink-soft); border-bottom: 1px solid var(--line-soft);
}
.nav-mobile nav a:hover { color: var(--ink); }
.nav-mobile-cta { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.nav-mobile-cta .btn { width: 100%; justify-content: center; }

body.is-menu-open { overflow: hidden; }

@media (max-width: 1280px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* =========================================================================
   Hero — light, tool-forward
   ========================================================================= */
.hero--photo {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 48px) 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(72% 60% at 50% -12%, var(--accent-tint), transparent 70%),
    linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 58%);
}
.hero--photo .hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr;
  justify-items: center; text-align: center;
  gap: 48px;
}
.hero--photo .hero-copy { max-width: 760px; }
.hero--photo h1 { font-size: clamp(38px, 5.4vw, 62px); font-weight: 600; letter-spacing: -0.035em; color: var(--ink); }
.hero--photo h1 .accent { color: var(--accent-strong); }
.hero--photo .hero-sub { margin: 24px auto 0; font-size: var(--text-lg); line-height: 1.55; color: var(--ink-soft); max-width: 600px; }
.hero--photo .hero-actions { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.hero--photo .hero-meta { margin-top: 30px; display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.hero--photo .hero-meta-item { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); font-weight: 500; }
.hero--photo .hero-meta-item svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.hero--photo .hero-pill {
  background: var(--accent-tint); border: 1px solid color-mix(in oklab, var(--accent) 22%, transparent);
  color: var(--accent-strong);
  display: inline-flex; align-items: center;
  padding: 8px 16px; border-radius: 999px; font-size: var(--text-sm); font-weight: 600;
  margin-bottom: 24px; white-space: nowrap;
}

/* Hero product card — widget demo */
.hero-visual { position: relative; max-width: 460px; margin: 0 auto; width: 100%; }
.hero-product {
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid var(--line);
  animation: heroFadeUp .7s ease both;
}
.hero-product-photo { position: relative; }
.hero-product-photo img { width: 100%; height: 200px; object-fit: cover; object-position: center 40%; display: block; }
.hero-product-form { padding: 20px 22px 22px; }
.hero-product-form .hero-widget-brand { margin-bottom: 16px; }
.hero-widget-brand {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-soft);
}
.hero-widget-logo.report-logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line); padding: 5px;
}
.hero-widget-office { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero-widget-office b {
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-ui);
  letter-spacing: -.02em; color: var(--ink); line-height: 1.2;
}
.hero-widget-office span { font-size: var(--text-sm); color: var(--muted); line-height: 1.2; }
.hero-product-form h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; margin-top: 16px; }
.hero-product-form .step-badge { margin-top: 12px; font-size: 11px; padding: 5px 11px; }
.hero-product-form .widget-input { margin-top: 14px; padding: 12px 14px; font-size: 14px; }
.hero-product-form .widget-btn { margin-top: 12px; padding: 13px; font-size: 15px; }
.hero-product-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-top: 1px solid var(--line-soft);
  font-size: var(--text-ui); font-weight: 600; color: var(--accent-strong);
  background: var(--bg);
}
.hero-product-link svg { width: 16px; height: 16px; }
.hero-product-link:hover { background: var(--accent-tint); }

/* --- HERO DEMO ANIMATION PANELS --- */
.hero-product--demo {
  padding: 16px 20px 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
}
.hero-product--demo .widget-host {
  margin-bottom: 12px;
}
.hero-product--demo .hero-widget-brand {
  margin-bottom: 0;
}
.demo-states-container {
  position: relative;
  height: 245px;
  overflow: hidden;
  margin-top: 4px;
}
.demo-state-pane {
  position: absolute;
  inset: 0;
  padding: 16px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-product[data-step="type"] [data-pane="type"],
.hero-product[data-step="value"] [data-pane="value"],
.hero-product[data-step="lead"] [data-pane="lead"] {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* State 1: Typing Panel */
.demo-state-pane[data-pane="type"] h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}
.demo-state-pane[data-pane="type"] .step-badge {
  align-self: flex-start;
  font-size: 11px;
  padding: 4px 10px;
  background: var(--bg-soft);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.demo-state-pane[data-pane="type"] .widget-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 14px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--ink);
  margin-bottom: 12px;
}
.demo-state-pane[data-pane="type"] .widget-input svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}
.demo-state-pane[data-pane="type"] .caret {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--accent-strong);
  margin-left: 2px;
  animation: caret-blink 0.8s infinite;
}
@keyframes caret-blink {
  50% { opacity: 0; }
}
.demo-state-pane[data-pane="type"] .widget-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent-strong);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-state-pane[data-pane="type"] .widget-btn.active {
  background: var(--accent-hover);
  transform: scale(0.96);
}

/* State 2: Value Calculated */
.demo-value-card {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.demo-value-header {
  margin-bottom: 8px;
}
.demo-value-badge {
  display: inline-block;
  background: var(--accent-tint);
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-ui);
  letter-spacing: -.02em;
  padding: 5px 12px;
  border-radius: 999px;
}
.demo-value-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2px;
}
.demo-value-address {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}
.demo-value-band {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.3;
  margin-bottom: 12px;
}
.demo-value-band b {
  color: var(--ink);
}
.demo-value-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}
.demo-spec-item {
  font-size: var(--text-xs);
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}
.demo-spec-item b {
  display: block;
  font-size: var(--text-sm);
  color: var(--ink);
  margin-bottom: 2px;
}

/* State 3: Lead Toast Panel */
.demo-lead-toast {
  background: #f0fdf4;
  border: 1px dashed #16a34a;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
}
.lead-toast-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #166534;
  font-size: var(--text-sm);
  margin-bottom: 8px;
}
.lead-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
.lead-toast-body {
  background: #ffffff;
  border: 1px solid #dcfce7;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lead-data-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--muted);
}
.lead-data-row span {
  font-weight: 500;
}
.lead-data-row b {
  color: var(--ink);
}
.lead-data-row b.lead-highlight {
  color: #16a34a;
  font-weight: 700;
}
.lead-toast-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #15803d;
  font-size: 11px;
  font-weight: 600;
}
.lead-toast-footer svg.check-icon {
  width: 14px;
  height: 14px;
  color: #16a34a;
}

.hero-value-badge {
  position: absolute; left: 16px; bottom: 14px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  color: var(--office); font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-ui); letter-spacing: -.02em; padding: 7px 13px;
  border-radius: 999px; box-shadow: var(--shadow-md); font-feature-settings: "tnum";
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product { animation: none; }
}

/* Widget-mockup */
.widget {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 30px; position: relative; z-index: 2; max-width: 440px;
}
.widget--compact {
  padding: 18px 20px; max-width: none; width: 100%;
  animation: heroFadeUp .7s .2s ease both;
}
.widget--compact h3 { font-size: 17px; margin-top: 0; }
.widget--compact .step-badge { margin-top: 10px; font-size: 11px; padding: 5px 11px; }
.widget--compact .widget-input { margin-top: 12px; padding: 11px 14px; font-size: 14px; }
.widget--compact .widget-btn { margin-top: 10px; padding: 12px; font-size: 15px; }
.widget--compact .widget-host { margin-bottom: 14px; }
.widget-host {
  display: flex; align-items: center; gap: 8px; font-size: var(--text-sm); color: var(--faint);
  font-family: var(--font-mono); margin-bottom: 22px;
}
.widget-host .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.widget-host .dot:first-child { background: #e6685f; }
.widget-host .dot:nth-child(2) { background: #e9b94e; }
.widget-host .dot:nth-child(3) { background: var(--accent); }
.widget-host span { margin-left: auto; }
.widget h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.12; }
.widget .step-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  background: var(--accent-tint); color: var(--accent-strong);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
}
.widget-label { margin-top: 22px; font-size: 15px; font-weight: 600; }
.widget-help { margin-top: 4px; font-size: 14px; color: var(--muted); }
.widget-progress { margin-top: 20px; }
.widget-progress .row { display: flex; justify-content: space-between; font-size: var(--text-sm); font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.widget-progress .row b { color: var(--accent-strong); }
.widget-track { height: 7px; border-radius: 999px; background: var(--line-soft); overflow: hidden; }
.widget-track i { display: block; height: 100%; width: 38%; border-radius: 999px; background: var(--accent); }
.widget-input {
  margin-top: 18px; display: flex; align-items: center; gap: 11px;
  border: 1.5px solid var(--accent-line); border-radius: var(--radius); padding: 14px 16px;
  background: var(--bg); color: var(--muted); font-size: 15px;
}
.widget-input svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.widget-input .caret { width: 1.5px; height: 18px; background: var(--accent); margin-left: -4px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.widget-btn {
  margin-top: 14px; width: 100%; background: var(--accent); color: var(--on-accent);
  border: none; border-radius: var(--radius); padding: 15px; font-weight: 600; font-size: 16px;
  font-family: var(--font-display); display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
}
.widget-btn svg { width: 17px; height: 17px; }
.widget-trust { margin-top: 18px; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.widget-trust span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.widget-trust svg { width: 14px; height: 14px; color: var(--accent); }

@media (max-width: 940px) {
  .hero--photo { min-height: auto; padding: calc(var(--header-h) + 16px) 0 72px; }
  .hero--photo .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero--photo .hero-copy { max-width: none; }
  .hero-visual { max-width: 460px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .hero--photo .hero-meta { flex-direction: column; gap: 10px; }
  .hero-product-photo img { height: 180px; }
  body:not(.page-landing) { padding-top: var(--header-h); }
}

/* Hero layout-varianten (Tweaks) */
[data-hero="centered"] .hero--photo .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
[data-hero="centered"] .hero--photo .hero-copy { max-width: 720px; }
[data-hero="centered"] .hero--photo .hero-sub { margin-inline: auto; }
[data-hero="centered"] .hero--photo .hero-actions,
[data-hero="centered"] .hero--photo .hero-meta { justify-content: center; }
[data-hero="centered"] .hero-visual { margin-inline: auto; }
[data-hero="visual-left"] .hero--photo .hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
[data-hero="visual-left"] .hero--photo .hero-visual { order: -1; margin-left: 0; margin-right: auto; }

/* =========================================================================
   Logos / vertrouwensbalk
   ========================================================================= */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trustbar-inner { padding-block: 30px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trustbar-label { font-size: 13px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--faint); }
.trustbar-items { display: flex; gap: 38px; flex-wrap: wrap; align-items: center; }
.trustbar-items span { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.02em; color: var(--faint); }

/* =========================================================================
   Rapport-sectie (de held)
   ========================================================================= */
.report-section { background: linear-gradient(180deg, var(--bg), var(--bg-tint)); border-top: 1px solid var(--line-soft); position: relative; }
.report-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.report-head .eyebrow { margin-bottom: 20px; }
.report-head h2 { font-size: clamp(34px, 4.6vw, 54px); letter-spacing: -0.035em; }
.report-head h2 em { font-style: normal; color: var(--accent-strong); }
.report-head p { margin-top: 22px; font-size: var(--text-lg); color: var(--ink-soft); max-width: 720px; margin-inline: auto; line-height: 1.6; }

.report-points--inline {
  position: static;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  max-width: 960px;
  margin-inline: auto;
}
.report-points--inline .report-point { flex: 1 1 240px; max-width: 300px; }

.report-embed { max-width: 820px; margin: 0 auto; }
.report-embed-actions { text-align: center; margin-top: 20px; }

.report-teaser-copy { display: flex; align-items: center; justify-content: center; }

.report-stage { position: relative; display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 48px; align-items: start; }
@media (max-width: 980px) { .report-stage { grid-template-columns: 1fr; gap: 40px; } }

.report-teaser {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 48px; align-items: center; max-width: 920px; margin-inline: auto;
}
@media (max-width: 820px) { .report-teaser { grid-template-columns: 1fr; gap: 32px; } }
.report-teaser-preview {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.report-teaser-preview img { width: 100%; height: 320px; object-fit: cover; object-position: center 40%; display: block; }
.report-teaser-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.report-teaser-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.report-teaser-list li {
  display: flex; align-items: flex-start; gap: 12px; font-size: var(--text-base); color: var(--ink-soft); line-height: 1.45;
}
.report-teaser-list svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 1px; }

.report-page-main { padding: 40px 0 80px; }
.report-page-wrap { max-width: 820px; }
.page-report .report-doc::after { display: none; }

.report-points:not(.report-points--inline) { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 980px) { .report-points:not(.report-points--inline) { position: static; flex-direction: row; flex-wrap: wrap; } }
.report-point { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); flex: 1 1 240px; }
.report-point .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; margin-bottom: 14px; }
.report-point .ic svg { width: 20px; height: 20px; }
.report-point b { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--text-base); letter-spacing: -.01em; }
.report-point p { margin-top: 6px; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Het rapport-document zelf */
.report-doc {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden;
  position: relative;
}
.report-doc::after {
  content: "VOORBEELDRAPPORT"; position: absolute; top: 32px; right: -52px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  padding: 7px 60px; transform: rotate(45deg); box-shadow: var(--shadow-sm); z-index: 5;
}
.report-doc-head { background: var(--office); color: #fff; padding: 30px 38px; padding-right: 72px; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.report-doc-brand { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.report-doc-head-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex: none; }
.report-nvm-logo { height: 28px; width: auto; object-fit: contain; background: #fff; border-radius: 6px; padding: 4px 6px; }
.report-logo {
  width: 50px; height: 50px; border-radius: 12px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.03em; flex: none;
}
.report-logo--compound { position: relative; padding: 6px; background: #fff; border-color: rgba(255,255,255,.35); }
.report-logo-nvm { width: 100%; height: 100%; object-fit: contain; display: block; }
.report-logo-initials { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.report-doc-brand-text { min-width: 0; }
.report-doc-brand .nm { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -.02em; }
.report-doc-brand .sub { font-size: var(--text-sm); opacity: .8; letter-spacing: .03em; margin-top: 4px; }
.report-doc-head .meta { text-align: right; font-size: var(--text-sm); opacity: .85; line-height: 1.5; }
.report-doc-head .meta b { display: block; font-size: var(--text-ui); opacity: 1; font-weight: 600; }

.report-hero-photo { width: 100%; overflow: hidden; border-bottom: 1px solid var(--line); }
.report-hero-photo img { width: 100%; height: 220px; object-fit: cover; object-position: center 40%; display: block; }

.report-doc-body { padding: 38px; }
.report-address { display: flex; align-items: center; gap: 14px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.report-address h4 { font-size: var(--text-lg); font-weight: 600; letter-spacing: -.02em; }
.report-address p { font-size: 14px; color: var(--muted); margin-top: 2px; }
.report-address .ref { margin-left: auto; text-align: right; font-size: 12px; color: var(--faint); font-family: var(--font-mono); }

.report-value { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; padding-block: 30px; border-bottom: 1px solid var(--line); align-items: center; }
@media (max-width: 620px) { .report-value { grid-template-columns: 1fr; gap: 26px; } }
.report-value .label { font-size: var(--text-sm); font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.report-value .amount { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 6vw, 52px); letter-spacing: -0.04em; color: var(--office); font-feature-settings: "tnum"; line-height: 1; margin-top: 8px; }
.report-value .band { margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; font-size: var(--text-ui); color: var(--ink-soft); }
.report-value .band b { color: var(--office); font-weight: 600; font-feature-settings: "tnum"; }
.report-value .conf { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; background: var(--office-tint); color: var(--office-strong); font-size: var(--text-sm); font-weight: 600; padding: 6px 12px; border-radius: 999px; }
.report-value .conf svg { width: 14px; height: 14px; }

/* Mini staafgrafiek (waarde-ontwikkeling) */
.report-chart { min-width: 0; overflow: visible; }
.report-chart .ct-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.report-chart .ct-head .t { font-size: 13px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.report-chart .ct-head .d { font-size: 12px; color: var(--office); font-weight: 600; }
.report-bars { display: flex; align-items: flex-end; gap: 9px; height: 110px; }
.report-bars .bar { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 7px; height: 100%; }
.report-bars .bar i { display: block; width: 100%; min-height: 4px; border-radius: 5px 5px 0 0; background: var(--office-tint); }
.report-bars .bar.on i { background: var(--office); }
.report-bars .bar span { font-size: 10.5px; text-align: center; color: var(--faint); font-weight: 500; flex: none; }

.report-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 30px; }
@media (max-width: 620px) { .report-specs { grid-template-columns: repeat(2, 1fr); } }
.report-specs .spec { background: var(--surface); padding: 18px 20px; }
.report-specs .spec .k { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.report-specs .spec .k svg { width: 14px; height: 14px; color: var(--office); }
.report-specs .spec .v { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -.02em; margin-top: 7px; font-feature-settings: "tnum"; }

.report-cta-strip { margin-top: 30px; background: var(--office-tint); border: 1px solid var(--office-line); border-radius: var(--radius-lg); padding: 28px 32px; display: flex; align-items: center; gap: 24px; }
.report-cta-strip .av { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; flex: none; border: 2px solid #fff; box-shadow: var(--shadow-sm); }
.av--placeholder {
  display: grid; place-items: center; background: var(--office); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -.02em;
}
.report-cta-strip .txt { flex: 1; min-width: 0; }
.report-cta-strip .txt b { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.report-cta-strip .txt p { font-size: var(--text-ui); color: var(--ink-soft); margin-top: 2px; }
.report-cta-strip .act { margin-left: auto; display: flex; gap: 10px; flex: none; }
.report-doc-cta-btn { background: var(--office); color: #fff; border: none; border-radius: 999px; padding: 12px 22px; font-family: var(--font-display); font-weight: 600; font-size: var(--text-ui); white-space: nowrap; cursor: pointer; }
.report-doc-cta-btn.ghost { background: #fff; color: var(--office); border: 1px solid var(--office-line); }
@media (max-width: 620px) {
  .report-doc-head { flex-direction: column; align-items: stretch; padding: 24px 22px; padding-right: 22px; }
  .report-doc-head-right { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
  .report-doc-head .meta { text-align: left; }
  .report-hero-photo img { height: 180px; }
  .report-cta-strip { flex-wrap: wrap; padding: 22px 20px; gap: 18px; }
  .report-cta-strip .act { margin-left: 0; width: 100%; flex-direction: column; }
  .report-doc-cta-btn { width: 100%; text-align: center; }
}

.report-disclaimer { margin-top: 22px; text-align: center; font-size: 13px; color: var(--faint); display: flex; align-items: center; justify-content: center; gap: 8px; }
.report-disclaimer svg { width: 15px; height: 15px; flex: none; }

.report-teaser-copy { display: flex; align-items: center; justify-content: center; }

.report-note { margin-top: 40px; text-align: center; }
.report-note p { font-size: var(--text-base); color: var(--muted); max-width: 560px; margin: 14px auto 0; }
.report-note .swatch-hint { display: inline-flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 9px 9px 9px 18px; box-shadow: var(--shadow-sm); font-size: var(--text-ui); color: var(--ink-soft); font-weight: 500; }
.report-note .swatch-hint .sw { display: flex; gap: 6px; }
.report-note .swatch-hint .sw i { width: 22px; height: 22px; border-radius: 6px; border: 1px solid rgba(0,0,0,.06); }

/* =========================================================================
   Vergelijking
   ========================================================================= */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
@media (max-width: 860px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { border-radius: var(--radius-xl); padding: 38px; position: relative; }
.compare-card.cold { background: var(--surface); border: 1px solid var(--line); }
.compare-card.warm { background: var(--ink); color: #fff; border: 1px solid var(--ink); box-shadow: var(--shadow-lg); }
.compare-card .tagline { display: inline-flex; align-items: center; gap: 9px; font-size: var(--text-sm); font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px; }
.compare-card.cold .tagline { background: var(--bg-tint); color: var(--muted); }
.compare-card.warm .tagline { background: var(--accent); color: var(--on-accent); }
.compare-card h3 { font-size: 25px; margin-top: 20px; letter-spacing: -.025em; }
.compare-card.warm h3 { color: #fff; }
.compare-card .lead { margin-top: 12px; font-size: var(--text-base); }
.compare-card.cold .lead { color: var(--muted); }
.compare-card.warm .lead { color: rgba(255,255,255,.72); }

.compare-metric { margin-top: 26px; padding-block: 24px; border-block: 1px solid; display: flex; align-items: baseline; gap: 14px; }
.compare-card.cold .compare-metric { border-color: var(--line); }
.compare-card.warm .compare-metric { border-color: rgba(255,255,255,.14); }
.compare-metric .big { font-family: var(--font-display); font-weight: 700; font-size: 46px; letter-spacing: -.04em; font-feature-settings: "tnum"; line-height: 1; }
.compare-card.cold .compare-metric .big { color: var(--ink-soft); }
.compare-card.warm .compare-metric .big { color: var(--accent); }
.compare-metric .cap { font-size: 14px; line-height: 1.4; }
.compare-card.cold .compare-metric .cap { color: var(--muted); }
.compare-card.warm .compare-metric .cap { color: rgba(255,255,255,.7); }

.compare-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.compare-list li { display: flex; align-items: flex-start; gap: 12px; font-size: var(--text-base); list-style: none; }
.compare-list li svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.compare-card.cold .compare-list li { color: var(--ink-soft); }
.compare-card.cold .compare-list li svg { color: var(--faint); }
.compare-card.warm .compare-list li { color: rgba(255,255,255,.9); }
.compare-card.warm .compare-list li svg { color: var(--accent); }

/* =========================================================================
   Zo werkt het
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .num { font-family: var(--font-display); font-weight: 600; font-size: var(--text-base); color: var(--accent-strong); display: flex; align-items: center; gap: 10px; }
.step .num::before { counter-increment: step; content: "0" counter(step); }
.step .num .ln { flex: 1; height: 1px; background: var(--line); }
.step .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--accent-tint); color: var(--accent-strong); display: grid; place-items: center; margin-top: 22px; }
.step .ic svg { width: 24px; height: 24px; }
.step h4 { font-size: var(--text-md); margin-top: 20px; letter-spacing: -.02em; }
.step p { margin-top: 9px; font-size: var(--text-base); color: var(--muted); line-height: 1.55; }

.embed-snippet { margin-top: 16px; background: var(--ink); border-radius: 10px; padding: 14px 16px; font-family: var(--font-mono); font-size: var(--text-sm); color: rgba(255,255,255,.55); overflow-x: auto; white-space: nowrap; }
.embed-snippet .tk { color: #8fd6b6; }
.embed-snippet .at { color: #e9c46a; }
.embed-snippet .st { color: #cbd5cf; }

/* =========================================================================
   Social Proof / Ervaringen
   ========================================================================= */
.experiences-section {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
  padding-block: 80px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 48px;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.proof-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.quote-stars {
  color: #fbbf24;
  font-size: 15px;
  margin-bottom: 12px;
}
.proof-card blockquote {
  font-size: var(--text-ui);
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 20px;
  flex-grow: 1;
}
.proof-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}
.proof-author b {
  font-family: var(--font-display);
  font-size: var(--text-ui);
  font-weight: 600;
  color: var(--ink);
}
.proof-author span {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 2px;
}
.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 24px;
  border-top: 1px solid var(--line-soft);
  padding-top: 32px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--muted);
  font-weight: 500;
}
.trust-badge svg {
  width: 16px;
  height: 16px;
  color: #16a34a;
}

@media (max-width: 820px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =========================================================================
   Databronnen
   ========================================================================= */
.data-section { background: var(--surface); border-block: 1px solid var(--line); }
.data-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 880px) { .data-grid { grid-template-columns: 1fr; gap: 44px; } }
.source-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.source-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--bg); }
.source-card .badge { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.02em; color: var(--accent-strong); }
.source-card b { display: block; font-size: 15px; font-weight: 600; margin-top: 10px; letter-spacing: -.01em; }
.source-card p { font-size: var(--text-ui); color: var(--muted); margin-top: 4px; line-height: 1.5; }

.disclaimer-card { background: var(--bg-tint); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 28px; margin-top: 28px; display: flex; gap: 16px; }
.disclaimer-card .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; flex: none; color: var(--accent-strong); }
.disclaimer-card .ic svg { width: 20px; height: 20px; }
.disclaimer-card b { font-size: var(--text-base); letter-spacing: -.01em; }
.disclaimer-card p { font-size: 14px; color: var(--ink-soft); margin-top: 6px; line-height: 1.55; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 24px 0; display: flex; align-items: center; gap: 20px; font-family: var(--font-display); font-weight: 600; font-size: var(--text-md); letter-spacing: -.02em; color: var(--ink); }
.faq-q .tog { margin-left: auto; width: 26px; height: 26px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .2s ease; position: relative; }
.faq-q .tog::before, .faq-q .tog::after { content: ""; position: absolute; background: var(--ink-soft); border-radius: 2px; transition: .2s ease; }
.faq-q .tog::before { width: 11px; height: 1.6px; }
.faq-q .tog::after { width: 1.6px; height: 11px; }
.faq-item.open .faq-q .tog { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-q .tog::before, .faq-item.open .faq-q .tog::after { background: #fff; }
.faq-item.open .faq-q .tog::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 46px 26px 0; font-size: var(--text-base); color: var(--ink-soft); line-height: 1.6; }

/* =========================================================================
   Slot-CTA
   ========================================================================= */
.final-cta { position: relative; overflow: hidden; }
.cta-card {
  background: var(--ink); color: #fff; border-radius: var(--radius-xl);
  padding: 76px 64px; text-align: center; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, color-mix(in oklab, var(--accent) 40%, transparent), transparent 70%);
  opacity: .55;
}
.cta-card > * { position: relative; }
.cta-card .eyebrow { color: color-mix(in oklab, var(--accent) 70%, white); justify-content: center; }
.cta-card .eyebrow::before { display: none; }
.cta-card h2 { color: #fff; font-size: clamp(32px, 4.4vw, 50px); letter-spacing: -.035em; margin-top: 18px; }
.cta-card p { color: rgba(255,255,255,.74); font-size: var(--text-lg); margin: 20px auto 0; max-width: 540px; }
.cta-actions { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-card .btn--primary { background: var(--accent); }
.cta-card .btn--primary:hover { background: color-mix(in oklab, var(--accent) 85%, white); }
.cta-card .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.cta-card .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.cta-foot { margin-top: 26px; font-size: 14px; color: rgba(255,255,255,.55); display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.cta-foot span { display: inline-flex; align-items: center; gap: 7px; }
.cta-foot svg { width: 15px; height: 15px; color: color-mix(in oklab, var(--accent) 70%, white); }
@media (max-width: 620px) { .cta-card { padding: 54px 28px; } }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); padding-block: 60px 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: var(--text-base); color: var(--muted); max-width: 280px; line-height: 1.6; }
.footer-parent { margin-top: 20px; display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-soft); background: var(--bg-tint); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; }
.footer-parent b { font-weight: 600; }
.footer-parent .pm { width: 18px; height: 18px; border-radius: 5px; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 10px; font-weight: 700; }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-col a { display: block; font-size: var(--text-base); color: var(--ink-soft); padding: 6px 0; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent-strong); }
.footer-bottom { margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: var(--text-ui); color: var(--faint); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: var(--text-ui); color: var(--muted); }
.footer-legal a:hover { color: var(--ink); }
.footer-link--muted { font-size: var(--text-ui); color: var(--faint); cursor: default; }
.footer-col a.footer-link--muted:hover { color: var(--faint); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* image-slot defaults */
image-slot { display: block; width: 100%; height: 100%; }
