:root {
  --brand: #d97706;
  --brand-active: #b45309;
  --brand-soft: #fffbeb;
  --success: #10b981;
  --info: #0ea5e9;
  --dark: #0D1117;
  --yellow: #f5c842;
  --coral: #f08249;
  --ink-900: #18160f;
  --ink-700: #2d2924;
  --ink-600: #4a4540;
  --ink-500: #756f66;
  --ink-400: #a09890;
  --bg: #f8f7f4;
  --card: #ffffff;
  --border: #e4dfd6;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Syne', 'Inter', sans-serif;
  --mono: 'DM Mono', ui-monospace, Consolas, monospace;
  --container: 1140px;
  --radius: 12px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink-700); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-active); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ─── Top brand-band (zelfde als rapport) ─── */
.brand-band {
  background: var(--dark);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 11px 0;
  text-align: center;
}

/* ─── Skip-link (accessibility) ─── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink-900);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ─── Top nav ─── */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.92);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink-900); }
.nav-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.nav-links a { color: var(--ink-600); font-weight: 500; }
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  background: var(--brand-active);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background 120ms;
}
.nav-cta:hover { background: #92400e; color: #fff; }

/* ─── Hero ─── */

/* ─── Hero ─── */
.hero {
  padding: 140px 0 160px; 
  position: relative;
  overflow: hidden;
  min-height: 550px; 
  display: flex;         /* Activeert de flexbox */
  align-items: center;    /* Trekt de tekst direct verticaal naar het midden */
  width: 100%;
}


.hero { position: relative; overflow: hidden; }
.hero-slider {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide:first-child { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.95) 0%, rgba(255, 252, 245, 0.75) 45%, rgba(255, 252, 245, 0.35) 100%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero-overlay { background: linear-gradient(180deg, rgba(255, 252, 245, 0.92) 0%, rgba(255, 252, 245, 0.88) 100%); }
}
.hero-inner { position: relative; z-index: 2; }
.hero-inner-OLD-removed { display:none; }
.hero-eyebrow {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-active);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h1 {
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink-900);
  letter-spacing: -0.8px;
  margin: 0 0 22px;
}
h1 .brand-accent { color: var(--brand); }
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0 0 36px;
  max-width: 600px;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-primary {
  background: var(--brand-active);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 150ms;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #92400e; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(217,119,6,0.25); }
.btn-secondary {
  background: transparent;
  color: var(--ink-700) !important;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border);
  transition: all 150ms;
}
.btn-secondary:hover { border-color: var(--ink-400); background: #fff; }

.hero-meta { display: flex; gap: 28px; margin-top: 40px; font-size: 13px; color: var(--ink-500); }
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }

/* ─── Sections ─── */
section { padding: 80px 0; }
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand-active);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink-900);
  letter-spacing: -0.8px;
  margin: 0 0 16px;
}
.section-sub {
  font-size: 15px;
  color: var(--ink-600);
  max-width: 640px;
  margin: 0 0 48px;
  line-height: 1.55;
}

/* ─── USPs (3-column) ─── */
.usps { background: #fff; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usp-card {
  padding: 32px 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: all 200ms;
}
.usp-card:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(24,22,15,0.06); }
.usp-icon svg { display: block; }
.usp-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.usp-card:nth-child(2) .usp-icon { background: #defded; color: var(--success); }
.usp-card:nth-child(3) .usp-icon { background: #e0f2fe; color: var(--info); }
.usp-card h3 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}
.usp-card p { font-size: 14px; color: var(--ink-600); margin: 0; line-height: 1.55; }
.usp-card ul {
  margin: 14px 0 0; padding-left: 18px;
  font-size: 13px; color: var(--ink-600);
  list-style: none;
}
.usp-card li { padding-left: 22px; position: relative; margin-bottom: 6px; }
.usp-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ─── Case study ─── */
.case {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1814 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.case::before {
  content: "";
  position: absolute;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 60%);
  opacity: 0.08;
}
.case-inner { position: relative; z-index: 1; }
.case .section-eyebrow { color: var(--yellow); }
.case h2 { color: #fff; }
.case .section-sub { color: rgba(255,255,255,0.7); }
.case-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.case-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.case-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
}
.case-stat:nth-child(2)::before { background: var(--success); }
.case-stat:nth-child(3)::before { background: var(--info); }
.case-stat:nth-child(4)::before { background: var(--yellow); }
.case-stat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.case-stat-val {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.6px;
}
.case-stat-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.case-quote {
  margin-top: 48px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  max-width: 720px;
}
.case-quote-attrib {
  margin-top: 14px;
  font-size: 13px;
  font-style: normal;
  color: rgba(255,255,255,0.55);
}

/* ─── How it works ─── */
.howit { background: #fff; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.how-step {
  position: relative;
}
.how-step-num {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.how-step h3 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}
.how-step p { font-size: 14px; color: var(--ink-600); line-height: 1.55; margin: 0; }

/* ─── Pricing teaser ─── */
.pricing { background: var(--bg); }
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--coral) 100%);
}
.pricing-lead {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -1.2px;
  line-height: 1;
}
.pricing-price small {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-500);
  margin-left: 4px;
}
.pricing-desc {
  font-size: 15px;
  color: var(--ink-600);
  margin: 20px auto 28px;
  max-width: 480px;
}
.pricing-incl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
  margin: 28px 0;
  font-size: 13px;
  color: var(--ink-700);
}
.pricing-incl li { padding-left: 22px; position: relative; list-style: none; }
.pricing-incl li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* ─── CTA / contact ─── */
.cta-final {
  background: linear-gradient(135deg, var(--brand-soft) 0%, #fff 100%);
  text-align: center;
}
.cta-final h2 { max-width: 700px; margin: 0 auto 16px; }
.cta-final .section-sub { margin-left: auto; margin-right: auto; }
.cta-form {
  max-width: 480px;
  margin: 32px auto 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cta-form input {
  flex: 1 1 240px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 120ms, box-shadow 120ms;
}
.cta-form input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.15);
}
.cta-form .btn-primary { padding: 14px 28px; }
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
  font-size: 12px;
  color: var(--ink-500);
  flex-wrap: wrap;
}
.cta-trust span { display: flex; align-items: center; gap: 6px; }
.cta-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 48px 0 24px;
  font-size: 13px;
  font-family: var(--mono);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 17px; color: #fff; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.2px; }
.footer-brand svg { width: 32px; height: 32px; }
.footer-desc { font-family: var(--sans); font-size: 13px; line-height: 1.6; max-width: 320px; }
.footer-col h3,
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); font-family: var(--sans); font-size: 13px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 11px;
  letter-spacing: 0.4px;
}

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink-900);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 200ms, transform 200ms;
  z-index: 1000;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .usp-grid { grid-template-columns: 1fr; gap: 18px; }
  .case-stats { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  section { padding: 56px 0; }
  .hero { padding: 50px 0 70px; }
  .nav-links { display: none; }
  .pricing-incl { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .case-stats { grid-template-columns: 1fr; }
  .hero-slide { background-image: url('hero-mobile.webp') !important; }
}


.lang-switch { display: inline-flex; gap: 4px; margin-left: 16px; padding: 4px; background: rgba(0,0,0,0.04); border-radius: 6px; }
.lang-switch button { border: none; background: transparent; padding: 4px 8px; font-size: 12px; font-weight: 600; color: var(--ink-700, #44403c); cursor: pointer; border-radius: 4px; transition: all .15s; }
.lang-switch button:hover { background: rgba(0,0,0,0.05); }
.lang-switch button.on { background: var(--ink-900, #0c0a09); color: #fff; }
@media (max-width: 720px) { .lang-switch { margin-left: 0; margin-top: 8px; } }

.faq { background: linear-gradient(180deg, #fffaf3 0%, #faf9f5 100%); padding: 90px 0; border-top: 1px solid var(--line, #e5e5e0); border-bottom: 1px solid var(--line, #e5e5e0); position: relative; }
.faq::before { content: ''; position: absolute; top: 0; right: 5%; width: 280px; height: 280px; background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%); pointer-events: none; border-radius: 50%; }
.faq-list { max-width: 860px; margin: 50px auto 0; position: relative; }
.faq-item { background: #fff; border: 1px solid #ece9e3; border-radius: 14px; margin-bottom: 12px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.04); transition: all .25s; }
.faq-item:hover { border-color: rgba(249, 115, 22, 0.35); box-shadow: 0 8px 24px rgba(124, 45, 18, 0.07); transform: translateY(-1px); }
.faq-item[open] { border-color: rgba(249, 115, 22, 0.45); box-shadow: 0 12px 32px rgba(124, 45, 18, 0.10); }
.faq-item summary { padding: 22px 24px; cursor: pointer; font-weight: 700; font-size: 16px; color: var(--ink-900, #1a1410); list-style: none; display: flex; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { width: 40px; height: 40px; flex-shrink: 0; background: #fff5e6; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; color: #c2410c; transition: all .25s; }
.faq-item:hover .faq-icon, .faq-item[open] .faq-icon { background: #c2410c; color: #fff; }
.faq-icon svg { width: 20px; height: 20px; display: block; }
.faq-q-text { flex: 1; line-height: 1.3; }
.faq-chevron { width: 28px; height: 28px; flex-shrink: 0; color: #c2410c; transition: transform .25s ease; display: flex; align-items: center; justify-content: center; }
.faq-chevron svg { width: 18px; height: 18px; display: block; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-body { padding: 4px 24px 26px 80px; color: var(--ink-600, #44403c); font-size: 14.5px; line-height: 1.7; animation: faqSlide .3s ease-out; }
@keyframes faqSlide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.faq-body p { margin: 0 0 12px; }
.faq-body p:last-child { margin: 0; }
.faq-body ul { margin: 8px 0 14px; padding-left: 22px; list-style: none; }
.faq-body li { padding: 5px 0 5px 18px; position: relative; }
.faq-body li::before { content: ''; position: absolute; left: 0; top: 13px; width: 5px; height: 5px; background: #c2410c; border-radius: 50%; }
.faq-body strong { color: var(--ink-900, #1a1410); font-weight: 700; }
.faq-cta { max-width: 860px; margin: 36px auto 0; padding: 26px 28px; background: linear-gradient(135deg, #1a1410 0%, #2d1f12 100%); border-radius: 14px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; color: #fff; }
.faq-cta-text strong { font-size: 17px; display: block; margin-bottom: 4px; color: #fff; }
.faq-cta-text span { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.faq-cta a { background: #c2410c; color: #fff !important; padding: 12px 22px; border-radius: 8px; font-weight: 600; font-size: 14px; flex-shrink: 0; }
.faq-cta a:hover { background: #9a3412; color: #fff !important; }
@media (max-width: 720px) {
  .faq-body { padding-left: 24px; }
  .faq-item summary { padding: 18px 18px; font-size: 15px; gap: 12px; }
  .faq-cta { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ─── Breadcrumb (hub-pagina's) ─── */
.breadcrumb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.4px; color: var(--ink-500); padding: 18px 0 0; }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span.sep { margin: 0 6px; color: var(--ink-400); }
.breadcrumb span.current { color: var(--ink-700); }

/* ─── Page hero (hub-pagina's) ─── */
.page-hero { padding: 48px 0 60px; }
.page-hero-eyebrow { display: inline-block; background: var(--brand-soft); color: var(--brand-active); padding: 6px 14px; border-radius: 999px; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 20px; }
.page-hero h1 { font-family: var(--display); font-size: clamp(26px, 3.4vw, 42px); font-weight: 700; line-height: 1.12; color: var(--ink-900); letter-spacing: -0.9px; margin: 0 0 20px; max-width: 780px; }
.page-hero h1 .brand-accent { color: var(--brand); }
.page-hero-sub { font-size: clamp(16px, 1.8vw, 18px); color: var(--ink-600); line-height: 1.6; margin: 0 0 32px; max-width: 660px; }
.page-hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ─── Long-form content prose ─── */
.prose { background: #fff; }
.prose-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.prose-body h2 { margin-top: 8px; }
.prose-body h2:not(:first-child) { margin-top: 48px; }
.prose-body p { font-size: 15.5px; color: var(--ink-700); line-height: 1.75; margin: 0 0 18px; }
.prose-body ul { margin: 0 0 20px; padding-left: 0; list-style: none; }
.prose-body li { padding-left: 26px; position: relative; margin-bottom: 10px; font-size: 15px; color: var(--ink-700); line-height: 1.6; }
.prose-body li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.prose-body strong { color: var(--ink-900); }
.prose-toc { position: sticky; top: 96px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.prose-toc h4 { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 1.2px; color: var(--ink-500); text-transform: uppercase; margin: 0 0 14px; }
.prose-toc ul { list-style: none; margin: 0; padding: 0; }
.prose-toc li { margin-bottom: 10px; font-size: 13.5px; }
.prose-toc a { color: var(--ink-600); }
.prose-toc a:hover { color: var(--brand); }
@media (max-width: 900px) { .prose-grid { grid-template-columns: 1fr; } .prose-toc { position: static; margin-bottom: 8px; } }

/* ─── Flow / voorbeeld-keten ─── */
.flow { background: linear-gradient(135deg, var(--dark) 0%, #1a1814 100%); color: #fff; position: relative; overflow: hidden; }
.flow::before { content: ""; position: absolute; right: -100px; bottom: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, var(--yellow) 0%, transparent 60%); opacity: 0.08; }
.flow-inner { position: relative; z-index: 1; }
.flow .section-eyebrow { color: var(--yellow); }
.flow h2 { color: #fff; }
.flow .section-sub { color: rgba(255,255,255,0.7); }
.flow-chain { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0; margin-top: 40px; }
.flow-step { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 22px 20px; flex: 1 1 180px; min-width: 160px; }
.flow-step-lbl { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 1.2px; color: rgba(255,255,255,0.55); text-transform: uppercase; margin-bottom: 10px; }
.flow-step-val { font-family: var(--display); font-size: 16px; font-weight: 700; color: #fff; line-height: 1.3; }
.flow-arrow { display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 22px; padding: 0 10px; flex: 0 0 auto; }
@media (max-width: 720px) { .flow-chain { flex-direction: column; } .flow-arrow { transform: rotate(90deg); padding: 6px 0; } }

/* ─── How-grid zes-stappen variant ─── */
.how-grid.six { grid-template-columns: repeat(3, 1fr); }

/* ─── Vergelijkingstabel ─── */
.compare { background: var(--bg); }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 32px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.compare-table th { font-family: var(--mono); font-size: 11px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--ink-500); background: var(--bg); }
.compare-table td:first-child { color: var(--ink-700); font-weight: 500; }
.compare-table .yes { color: var(--success); font-weight: 700; }
.compare-table .no { color: #dc2626; font-weight: 700; }
.compare-table tr:last-child td { border-bottom: none; }
@media (max-width: 720px) { .compare-table { display: block; overflow-x: auto; white-space: nowrap; } }

/* ─── WhatsApp-knop ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  z-index: 999;
  transition: transform 150ms, box-shadow 150ms;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 10px 24px rgba(0,0,0,0.28); }
.whatsapp-float svg { width: 30px; height: 30px; display: block; }
@media (max-width: 600px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
}
