/* =========================================================
   MKB Bouwversnellers - Design System
   Kleuren: donkerblauw · antraciet · wit · oranje accent · staal/beton
   ========================================================= */

:root {
  /* Brand */
  --navy-900: #0a1a2f;
  --navy-800: #0e2238;
  --navy-700: #12304b;
  --anthracite: #161b22;
  --anthracite-2: #1c2530;

  --accent: #ff6a1a;      /* bouw-oranje */
  --accent-600: #e85d10;
  --accent-soft: rgba(255, 106, 26, 0.12);

  /* Neutraal / staal-beton */
  --white: #ffffff;
  --paper: #f6f7f9;
  --steel-50: #eef1f5;
  --steel-100: #e3e8ef;
  --steel-200: #cfd6e0;
  --steel-400: #94a3b4;
  --steel-500: #6b7787;
  --ink: #16202c;
  --ink-soft: #45525f;

  /* Semantisch */
  --bg: var(--white);
  --bg-alt: var(--paper);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --border: var(--steel-100);
  --success: #1f9d57;
  --danger: #d4513b;

  /* Type */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radius & shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(16, 32, 51, 0.06), 0 2px 8px rgba(16, 32, 51, 0.05);
  --shadow-md: 0 8px 24px rgba(16, 32, 51, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 26, 47, 0.18);
  --shadow-accent: 0 14px 34px rgba(255, 106, 26, 0.28);

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --header-h: 72px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; margin: 0 0 .4em; letter-spacing: -0.02em; color: var(--navy-900); }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.7rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container-narrow { max-width: var(--container-narrow); }
.text-accent { color: var(--accent); }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy-900); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* Terug-naar-boven knop */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--accent); color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-accent);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--accent-600); transform: translateY(-3px); }
.to-top:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.to-top svg { width: 22px; height: 22px; }

/* Zwevende WhatsApp-knop (altijd zichtbaar, boven de terug-naar-boven-knop) */
.wa-float {
  position: fixed; right: 20px; bottom: 82px; z-index: 91;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.42);
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover { background: #1da851; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37,211,102,.52); }
.wa-float:focus-visible { outline: 3px solid #25d366; outline-offset: 3px; }
.wa-float svg { width: 28px; height: 28px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin: 0 0 .9rem;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(255,106,26,.34); }
.btn-ghost { background: transparent; color: var(--navy-900); border-color: var(--steel-200); }
.btn-ghost:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.btn-sm { padding: 10px 17px; font-size: .9rem; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.ico { width: 18px; height: 18px; flex: 0 0 auto; color: var(--success); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.92); border-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; }
.site-header .header-inner { width: min(1240px, 100% - 32px); max-width: none; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.16rem; color: var(--navy-900); }
.brand-mark { color: var(--navy-800); display: inline-flex; }
.brand-mark svg { width: 32px; height: 32px; flex: 0 0 auto; } /* voorkom inklappen als flex-item (Chrome/Edge) */
.brand-mark svg rect:nth-child(3) { fill: var(--accent); } /* accentbalk: var() werkt niet in SVG-attribuut, dus via CSS */
.brand-text strong { color: var(--navy-900); }
.main-nav { display: flex; gap: 14px; }
.main-nav a { font-weight: 500; font-size: .96rem; color: var(--text-soft); position: relative; padding: 4px 0; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .22s var(--ease); }
.main-nav a:hover { color: var(--navy-900); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--navy-900); font-weight: 600; }
.main-nav a.active::after { width: 100%; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
/* 'Besparing berekenen' opvallend maken: alleen oranje tekst */
.main-nav a[href="besparingscalculator.html"] { color: var(--accent); font-weight: 700; }
.main-nav a[href="besparingscalculator.html"]:hover { color: var(--accent-600); }
/* idem in het mobiele menu */
.mobile-nav a[href="besparingscalculator.html"] { color: var(--accent); font-weight: 700; }
.header-actions { display: flex; align-items: center; }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
  background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 4px; padding: 16px 22px 24px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 13px 6px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--steel-50); }
.mobile-nav a.btn { margin-top: 10px; border-bottom: 0; color: #fff; }
.mobile-nav a.mobile-wa {
  margin-top: 8px; border-bottom: 0; color: #fff; background: #25d366;
  border-radius: var(--r-md); padding: 12px 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600;
}
.mobile-nav a.mobile-wa svg { width: 20px; height: 20px; flex: 0 0 auto; }
.mobile-nav a.mobile-wa:hover { background: #1da851; }

/* Inklapbare nav-groepen op mobiel/tablet (Diensten + Voor wie) */
.mobile-nav { max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
@media (min-width: 1261px) { .mobile-nav { display: none !important; } }
/* Drukke nav (incl. terugknop) eerder inklappen tot hamburger, zodat hij niet buiten beeld loopt */
@media (max-width: 1260px) { .main-nav, .header-actions { display: none; } .nav-toggle { display: flex; } }
.m-group { display: flex; flex-direction: column; border-bottom: 1px solid var(--steel-50); }
.m-acc-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 13px 6px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--navy-900);
}
.m-acc-trigger .m-chev { width: 13px; height: 13px; flex: 0 0 auto; color: var(--steel-500); transition: transform .25s var(--ease); }
.m-group.open .m-acc-trigger { color: var(--accent-600); }
.m-group.open .m-acc-trigger .m-chev { transform: rotate(180deg); color: var(--accent-600); }
.m-acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .26s var(--ease); }
.m-group.open .m-acc-panel { grid-template-rows: 1fr; }
.m-acc-inner { overflow: hidden; display: flex; flex-direction: column; }
.mobile-nav .m-acc-inner .m-sub { padding: 11px 6px 11px 20px; font-weight: 500; font-size: .92rem; color: var(--text-soft); border-bottom: 1px solid var(--steel-50); }
.mobile-nav .m-acc-inner .m-sub:last-child { border-bottom: 0; }
.mobile-nav .m-acc-inner .m-sub-all { color: var(--accent-600); font-weight: 600; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 64px) 0 56px; background: radial-gradient(125% 120% at 78% -10%, #16344f 0%, #0e2339 46%, #0a1a2f 100%); color: #eaf0f7; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg { overflow: hidden; }
.hero-grid {
  position: absolute; inset: -20% -10% 0; opacity: .10;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 10%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 10%, #000 30%, transparent 75%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .4; }
.hero-glow-1 { width: 640px; height: 640px; opacity: .26; background: radial-gradient(circle, rgba(255,106,26,.30), transparent 70%); top: -200px; right: -120px; }
.hero-glow-2 { width: 620px; height: 620px; opacity: .42; background: radial-gradient(circle, rgba(40,104,164,.5), transparent 70%); bottom: -240px; left: -160px; }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.hero-copy h1 { color: #fff; }
.hero .eyebrow { color: #ffb182; }
.hero-sub { font-size: 1.16rem; color: #bcc8d6; max-width: 38ch; margin-bottom: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8rem; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; color: #cfd9e4; font-size: .96rem; font-weight: 500; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }

/* Hero visual */
.hero-visual { position: relative; min-height: 380px; }
.mock-dash {
  background: linear-gradient(160deg, #11283f, #0c1d30);
  border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 16px; position: relative; z-index: 2;
}
.mock-dash-head { display: flex; align-items: center; gap: 7px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #44566b; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.mock-dash-title { margin-left: 8px; font-size: .82rem; color: #8fa3b8; font-family: var(--font-head); }
.mock-dash-body { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 14px; }
.kpi { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md); padding: 13px 14px; }
.kpi-label { display: block; font-size: .72rem; color: #8298ad; text-transform: uppercase; letter-spacing: .06em; }
.kpi-value { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: #fff; font-variant-numeric: tabular-nums; line-height: 1.1; }
.kpi-trend { font-size: .76rem; font-weight: 600; }
.kpi-trend.up { color: #4fd18b; }
.mock-chart { grid-column: 1 / -1; display: flex; align-items: flex-end; gap: 9px; height: 92px; padding: 10px 12px; background: rgba(255,255,255,.03); border-radius: var(--r-md); border: 1px solid rgba(255,255,255,.06); }
.mock-chart .bar { flex: 1; height: var(--h); background: linear-gradient(180deg, #3f7fb8, #2b5d8c); border-radius: 5px 5px 2px 2px; transform-origin: bottom; animation: growBar .9s var(--ease) both; }
.mock-chart .bar-accent { background: linear-gradient(180deg, #ff8a4d, var(--accent)); }
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.mock-row { grid-column: 1 / -1; display: flex; gap: 8px; flex-wrap: wrap; }
.mock-pill { font-size: .74rem; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,.06); color: #b9c7d6; border: 1px solid rgba(255,255,255,.08); }
.mock-pill.ok { background: rgba(79,209,139,.14); color: #7ee0a8; border-color: rgba(79,209,139,.3); }

.mock-chat {
  position: absolute; bottom: -26px; right: -14px; width: 250px; z-index: 3;
  background: #fff; color: var(--ink); border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  padding: 13px; animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.chat-head { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.chat-avatar { width: 28px; height: 28px; border-radius: 8px; background: #25d366; color: #fff; font-size: .7rem; font-weight: 700; display: grid; place-items: center; font-family: var(--font-head); }
.chat-name { font-size: .82rem; font-weight: 600; }
.chat-bubble { font-size: .82rem; line-height: 1.4; padding: 8px 11px; border-radius: 12px; margin-bottom: 6px; }
.chat-bubble.in { background: var(--steel-50); border-bottom-left-radius: 3px; }
.chat-bubble.out { background: var(--accent-soft); color: var(--accent-600); border-bottom-right-radius: 3px; font-weight: 500; }
.chat-meta { font-size: .68rem; color: var(--steel-500); text-align: right; }

/* Trustbar */
.trustbar { position: relative; margin-top: 64px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.10); }
.trustbar-label { font-size: .82rem; color: #8298ad; font-weight: 500; }
.trustbar ul { display: flex; gap: 12px 26px; flex-wrap: wrap; }
.trustbar li { font-family: var(--font-head); font-weight: 600; color: #c4d1de; font-size: .98rem; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy-900); color: #dde6f0; }
.section-dark h2 { color: #fff; }
.section-dark .eyebrow { color: #ffb182; }
.section-dark .section-lead { color: #aebccc; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-lead { font-size: 1.12rem; color: var(--text-soft); margin: 0; }

/* ---------- Problemen ---------- */
.prob-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 26px; align-items: center; }
.prob-col { display: flex; flex-direction: column; gap: 12px; }
.prob-col li {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border-radius: var(--r-md);
  font-weight: 500; line-height: 1.4; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.section-alt .prob-col li { background: #fff; }
.tag { flex: 0 0 auto; font-family: var(--font-head); font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 4px 8px; border-radius: 6px; margin-top: 1px; }
.tag-x { background: rgba(212,81,59,.12); color: var(--danger); }
.tag-v { background: rgba(31,157,87,.13); color: var(--success); }
.prob-gain li { border-color: rgba(31,157,87,.25); }
.prob-arrow { color: var(--accent); display: grid; place-items: center; }

/* ---------- 'Begin klein'-callout ---------- */
.start-small {
  max-width: 720px; margin: -8px auto 34px; text-align: center;
  font-size: 1.1rem; line-height: 1.5; color: var(--navy-900);
  background: var(--accent-soft); border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  border-radius: var(--r-md); padding: 16px 24px;
}
.start-small strong { color: var(--accent-600); }
.start-small .ss-ico { display: inline-block; vertical-align: -3px; width: 18px; height: 18px; margin-right: 7px; color: var(--accent-600); }

/* ---------- Belofte-sectie (geen contracten / vanaf €10 / begin klein) ---------- */
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 6px; }
.promise-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.promise-card-accent { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 32%, var(--border)); }
.promise-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent-600); margin-bottom: 18px; }
.promise-card-accent .promise-ico { background: #fff; }
.promise-ico svg { width: 24px; height: 24px; }
.promise-card h3 { font-size: 1.14rem; margin: 0 0 9px; }
.promise-card p { margin: 0; color: var(--text-soft); font-size: .96rem; }
.promise-price { font-family: var(--font-head); font-weight: 800; color: var(--accent-600); }
.promise-close { text-align: center; max-width: 640px; margin: 36px auto 0; font-size: 1.18rem; line-height: 1.55; color: var(--navy-900); }
.promise-close strong { color: var(--accent-600); }
/* Subtiele 'tijd voor'-strip */
.time-for { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px 20px; margin: 18px auto 0; color: var(--text-soft); font-size: .94rem; }
.time-for .tf-label { font-weight: 600; color: var(--navy-900); }
.time-for > span { display: inline-flex; align-items: center; gap: 7px; }
.time-for svg { width: 16px; height: 16px; color: var(--accent-600); flex: 0 0 auto; }
@media (max-width: 860px) { .promise-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- Cards (oplossingen) ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)); gap: 24px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--steel-200); }
.card-feature { border-color: rgba(255,106,26,.4); box-shadow: 0 12px 36px rgba(255,106,26,.14); }
.card-flag { position: absolute; top: -12px; left: 26px; background: var(--accent); color: #fff; font-family: var(--font-head); font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-accent); }
.card-icon { width: 54px; height: 54px; border-radius: var(--r-md); background: var(--navy-900); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.card-feature .card-icon { background: var(--accent); }
.card-icon svg { width: 28px; height: 28px; }
.card-desc { color: var(--text-soft); font-size: .98rem; }
.card-list { display: flex; flex-direction: column; gap: 11px; margin: 16px 0 22px; }
.card-list li { position: relative; padding-left: 34px; font-size: .96rem; color: var(--text); line-height: 1.5; }
.card-list li::before {
  content: ""; position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 50%;
  background-color: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.3L19 7' fill='none' stroke='%23ff6a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 14px;
}
.card-cta { margin-top: auto; font-family: var(--font-head); font-weight: 600; color: var(--accent-600); display: inline-flex; align-items: center; gap: 6px; }
.card-cta span { transition: transform .2s var(--ease); }
.card-cta:hover span { transform: translateX(4px); }

/* ---------- Resultaten ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 44px; }
.stat { text-align: center; padding: 30px 18px; background: var(--navy-900); color: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.stat::before { content: ""; position: absolute; inset: auto 0 0 0; height: 4px; background: var(--accent); }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; display: inline-flex; align-items: baseline; font-variant-numeric: tabular-nums; }
.stat-unit { font-size: .5em; color: var(--accent); margin-left: 3px; font-weight: 700; }
.stat-label { display: block; margin-top: 12px; font-size: .94rem; color: #b6c4d4; line-height: 1.4; }
.result-band { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; background: var(--accent-soft); border: 1px solid rgba(255,106,26,.25); border-radius: var(--r-lg); padding: 26px 32px; }
.result-band p { margin: 0; font-size: 1.1rem; font-weight: 500; color: var(--navy-900); max-width: 62ch; }

/* ---------- Werkwijze ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.steps::before { content: ""; position: absolute; top: 33px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, rgba(255,106,26,.55) 0 14px, transparent 14px 24px); transform: scaleX(0); transform-origin: left center; opacity: 0; transition: transform 1.1s var(--ease) .15s, opacity .5s var(--ease) .15s; }
.steps.line-in::before { transform: scaleX(1); opacity: 1; }
.step { position: relative; padding-top: 8px; text-align: center; transition: transform .25s var(--ease); }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; margin: 0 auto 16px; box-shadow: var(--shadow-accent); position: relative; z-index: 1; transition: transform .55s var(--ease), box-shadow .3s var(--ease); }
.step h3 { color: #fff; font-size: 1.08rem; }
.step p { font-size: .94rem; color: #aebccc; margin: 0; }

/* Animatie: nummers poppen op, lijn tekent in (zie ook .mini-steps) */
.step.reveal .step-num { transform: scale(0); }
.step.reveal.in .step-num { transform: scale(1); }
.step.reveal.in:nth-child(1) .step-num { transition-delay: .12s; }
.step.reveal.in:nth-child(2) .step-num { transition-delay: .24s; }
.step.reveal.in:nth-child(3) .step-num { transition-delay: .36s; }
.step.reveal.in:nth-child(4) .step-num { transition-delay: .48s; }
.step.reveal.in:nth-child(5) .step-num { transition-delay: .60s; }
.step:hover .step-num { box-shadow: 0 14px 32px rgba(255,106,26,.5); }
@media (prefers-reduced-motion: reduce) {
  .step.reveal .step-num, .step.reveal.in .step-num { transform: none; }
  .steps::before { transform: scaleX(1); opacity: 1; }
}

/* ---------- Waarom ---------- */
.why-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; align-items: start; }
.why-copy { position: sticky; top: calc(var(--header-h) + 24px); }
.why-list { display: grid; gap: 16px; }
.why-item { display: flex; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.why-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.why-ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; }
.why-ico svg { width: 24px; height: 24px; }
.why-item h3 { margin-bottom: .2em; }
.why-item p { margin: 0; color: var(--text-soft); font-size: .96rem; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.faq-item[open] { border-color: var(--steel-200); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 19px 54px 19px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; color: var(--navy-900); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px; border-right: 2.4px solid var(--accent); border-bottom: 2.4px solid var(--accent); transform: translateY(-65%) rotate(45deg); transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-item summary:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; border-radius: var(--r-md); }
.faq-a { padding: 0 22px 20px; }
.faq-a p { margin: 0; color: var(--text-soft); }

/* ---------- Contact ---------- */
.section-cta { position: relative; overflow: hidden; background: linear-gradient(165deg, var(--navy-900), var(--navy-700)); color: #e7eef6; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: start; }
.contact-layout, .contact-copy, .contact-form, .contact-cards { min-width: 0; }
.field, .field-row, .field input, .field textarea { min-width: 0; }
.section-cta .eyebrow { color: #ffb182; }
.section-cta h2 { color: #fff; }
.section-cta .section-lead { color: #bcc8d6; }
.contact-points { display: grid; gap: 12px; margin-top: 24px; }
.contact-points li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: #d6e0ec; }

.contact-form { background: #fff; border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy-900); margin-bottom: 7px; }
.req { color: var(--accent); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--steel-200); border-radius: var(--r-sm); background: var(--paper);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  min-height: 48px;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px var(--accent-soft); }
.field input.invalid, .field textarea.invalid { border-color: var(--danger); background: #fff7f5; }
.field-error { color: var(--danger); font-size: .82rem; font-weight: 500; margin-top: 6px; min-height: 0; }
.form-note { font-size: .82rem; color: var(--steel-500); margin: 14px 0 0; }
.form-success { margin: 16px 0 0; padding: 14px 16px; background: rgba(31,157,87,.12); color: #157a43; border: 1px solid rgba(31,157,87,.3); border-radius: var(--r-sm); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { background: var(--anthracite); color: #aeb9c5; padding: 58px 0 26px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand .brand-text strong, .footer-brand .brand-mark { color: #fff; }
.footer-brand p { font-size: .94rem; max-width: 38ch; color: #93a0ad; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav h4, .footer-contact h4 { color: #fff; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 6px; }
.footer-nav a { font-size: .94rem; color: #aeb9c5; transition: color .18s var(--ease); }
.footer-nav a:hover { color: var(--accent); }
.footer-contact p { font-size: .94rem; margin: 0 0 14px; }
.footer-landing { padding: 28px 0 6px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-landing-group { margin-bottom: 22px; }
.footer-landing-group:last-child { margin-bottom: 6px; }
.footer-landing h4 { color: #fff; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 12px; }
.footer-landing-links { display: flex; flex-wrap: wrap; gap: 9px 18px; }
.footer-landing-links a { color: #93a0ad; font-size: .88rem; transition: color .18s var(--ease); }
.footer-landing-links a:hover { color: var(--accent); }

/* Gerelateerde landingspagina's (chips) */
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a { padding: 9px 16px; background: #fff; border: 1px solid var(--border); border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy-900); box-shadow: var(--shadow-sm); transition: border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease); }
.related-links a:hover { border-color: var(--accent); color: var(--accent-600); transform: translateY(-2px); }

.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 22px; font-size: .86rem; color: #7f8c9a; }
.footer-bottom p { margin: 0; }
.footer-legal a { color: #7f8c9a; transition: color .18s var(--ease); }
.footer-legal a:hover { color: var(--accent); }

/* ---------- Reveal animatie ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .mock-chat, .mock-chart .bar { animation: none; }
}

/* =========================================================
   Multi-page componenten
   ========================================================= */

/* Dropdown in hoofdmenu */
.has-dropdown { position: relative; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.dropdown-trigger svg { width: 11px; height: 11px; max-width: none; flex: 0 0 auto; transition: transform .22s var(--ease); }
.has-dropdown:hover .dropdown-trigger svg,
.has-dropdown:focus-within .dropdown-trigger svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 320px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 8px; display: grid; gap: 2px; z-index: 60;
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.dropdown-menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(7px); }
.dropdown-menu a { display: block; padding: 11px 13px; border-radius: var(--r-sm); }
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--paper); }
.dropdown-menu a strong { display: block; font-family: var(--font-head); color: var(--navy-900); font-size: .95rem; font-weight: 600; }
.dropdown-menu a span { display: block; font-size: .82rem; color: var(--text-soft); margin-top: 2px; }
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--navy-900); }
.mobile-nav .mobile-sub { padding-left: 20px; color: var(--text-soft); font-size: .92rem; border-bottom: 1px solid var(--steel-50); }

/* Subpagina-hero */
.page-hero { position: relative; background: radial-gradient(125% 120% at 78% -10%, #16344f 0%, #0e2339 46%, #0a1a2f 100%); color: #dde6f0; padding: calc(var(--header-h) + 60px) 0 60px; overflow: hidden; }
.page-hero .hero-bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero .hero-inner-2 { position: relative; max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); }
.page-hero .lead { font-size: 1.16rem; color: #bcc8d6; max-width: 58ch; margin: 0; }
.page-hero .eyebrow { color: #ffb182; }
.page-hero .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.page-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.page-hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: #8298ad; margin-bottom: 18px; }
.breadcrumb a { color: #8298ad; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: #4d6175; }
.breadcrumb [aria-current] { color: #cdd9e5; }

/* Content secties / split layout */
.content { padding: 86px 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.align-start { align-items: start; }
.split-media {
  background: linear-gradient(160deg, #11283f, #0c1d30); border: 1px solid rgba(16,32,51,.08);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 22px; color: #dde6f0;
}
.prose > *:last-child { margin-bottom: 0; }
.prose p { color: var(--text-soft); }

/* Branchefoto-banner op de 'voor wie'-pagina's */
.branch-photo { margin: 0 0 38px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.branch-photo img { display: block; width: 100%; height: clamp(240px, 34vw, 420px); object-fit: cover; }

/* Juridische pagina's (privacy / cookies) */
.legal-note { background: var(--accent-soft); border: 1px solid rgba(255,106,26,.3); border-radius: var(--r-md); padding: 14px 18px; font-size: .92rem; color: var(--accent-600); margin: 0 0 28px; }
.prose.legal h2 { font-size: 1.22rem; margin: 1.8em 0 .5em; }
.prose.legal h2:first-child { margin-top: 0; }
.prose.legal ul { list-style: disc; padding-left: 1.3em; margin: 0 0 1.1rem; }
.prose.legal li { margin-bottom: .4rem; color: var(--text-soft); }
.prose.legal a { color: var(--accent-600); text-decoration: underline; }
.legal-date { font-size: .88rem; color: var(--steel-500); margin-top: 1.6rem; }

/* Feature grid (kanalen / wat we automatiseren) */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
/* Gecentreerde variant: onvolledige laatste rij netjes centreren (bv. 5 kaarten = 3 + 2) */
.feature-grid--center { display: flex; flex-wrap: wrap; justify-content: center; }
.feature-grid--center > .feature { flex: 0 1 calc(33.333% - 14px); }
@media (max-width: 860px) { .feature-grid--center > .feature { flex-basis: calc(50% - 10px); } }
@media (max-width: 540px) { .feature-grid--center > .feature { flex-basis: 100%; } }
.feature {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 24px;
  box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-ico { width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; margin-bottom: 14px; }
.feat-ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.08rem; margin-bottom: .3em; }
.feature p { margin: 0; color: var(--text-soft); font-size: .95rem; }

/* Checklist (voordelen) */
.checklist { display: grid; gap: 13px; }
.checklist.two-col { grid-template-columns: 1fr 1fr; }
.checklist li { position: relative; padding-left: 38px; font-size: 1.02rem; color: var(--text); line-height: 1.5; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 50%;
  background-color: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.3L19 7' fill='none' stroke='%23ff6a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 15px;
}

/* Mini-stappen (op servicepagina) */
.mini-steps { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; }
.mini-step { position: relative; padding-top: 6px; text-align: center; transition: transform .25s var(--ease); }
.mini-step .ms-num { position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 50%; background: var(--navy-900); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; display: grid; place-items: center; margin: 0 auto 14px; transition: transform .55s var(--ease), box-shadow .3s var(--ease); }
.mini-step h3 { font-size: 1.05rem; margin-bottom: .25em; }
.mini-step p { margin: 0; color: var(--text-soft); font-size: .94rem; }

/* Leesbaar op donkere secties */
.section-dark .mini-step h3 { color: #fff; }
.section-dark .mini-step p { color: #aebccc; }
.section-dark .mini-step .ms-num { background: var(--accent); box-shadow: var(--shadow-accent); }

/* Animatie: verbindingslijn tekent in + nummers poppen op */
@media (min-width: 721px) {
  .mini-steps::before {
    content: ""; position: absolute; top: 28px; left: 16.5%; right: 16.5%; height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255,106,26,.55) 0 14px, transparent 14px 26px);
    transform: scaleX(0); transform-origin: left center; opacity: 0;
    transition: transform 1s var(--ease) .15s, opacity .5s var(--ease) .15s;
  }
  .mini-steps.line-in::before { transform: scaleX(1); opacity: 1; }
}
.mini-step.reveal .ms-num { transform: scale(0); }
.mini-step.reveal.in .ms-num { transform: scale(1); }
.mini-step.reveal.in:nth-child(1) .ms-num { transition-delay: .15s; }
.mini-step.reveal.in:nth-child(2) .ms-num { transition-delay: .30s; }
.mini-step.reveal.in:nth-child(3) .ms-num { transition-delay: .45s; }
.mini-step.reveal.in:nth-child(4) .ms-num { transition-delay: .60s; }
.mini-step:hover { transform: translateY(-3px); }
.mini-step:hover .ms-num { box-shadow: 0 12px 28px rgba(255,106,26,.45); }
@media (prefers-reduced-motion: reduce) {
  .mini-step.reveal .ms-num, .mini-step.reveal.in .ms-num { transform: none; }
  .mini-steps::before { transform: scaleX(1); opacity: 1; }
}

/* Doelgroep-tags */
.audience { display: flex; flex-wrap: wrap; gap: 12px; }
.audience li { padding: 11px 18px; background: #fff; border: 1px solid var(--border); border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--navy-900); box-shadow: var(--shadow-sm); }

/* Waarden / kaarten-grid generiek */
/* 'Waar we voor staan' (over-ons): premium waarden-grid, 3+2 gecentreerd, warme accent-iconen */
.value-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.value-grid > .value-card { flex: 0 1 calc(33.333% - 15px); }
@media (max-width: 880px) { .value-grid > .value-card { flex-basis: calc(50% - 11px); } }
@media (max-width: 560px) { .value-grid > .value-card { flex-basis: 100%; } }
.value-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 30px; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.value-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 30%, transparent)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card:hover::before { transform: scaleX(1); }
.value-card .feat-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-600); display: grid; place-items: center; margin-bottom: 18px; }
.value-card .feat-ico svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.14rem; margin: 0 0 .4em; }
.value-card p { margin: 0; color: var(--text-soft); font-size: .96rem; line-height: 1.6; }
/* Compacte variant (o.a. 'Per stap' op de werkwijze-pagina): kleinere kaarten */
.value-grid-compact { gap: 14px; }
.value-grid-compact .value-card { padding: 16px 16px; border-radius: var(--r-md); }
.value-grid-compact .feat-ico { width: 34px; height: 34px; margin-bottom: 10px; }
.value-grid-compact .feat-ico svg { width: 18px; height: 18px; }
.value-grid-compact .value-card h3 { font-size: .98rem; margin: 0 0 6px; }
.value-grid-compact .value-card p { font-size: .86rem; line-height: 1.5; }

/* CTA-band (compact, herbruikbaar) */
.cta-band { background: linear-gradient(165deg, var(--navy-900), var(--navy-700)); color: #fff; border-radius: var(--r-xl); padding: 52px 48px; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,106,26,.4), transparent 65%); filter: blur(60px); top: -160px; right: -80px; pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #bcc8d6; max-width: 54ch; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }

/* Over-ons: profielblok */
.profile { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.profile-avatar { aspect-ratio: 1; border-radius: var(--r-lg); background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 3.4rem; }
.profile h3 { margin-bottom: .15em; }
.profile .role { color: var(--accent-600); font-weight: 600; font-family: var(--font-head); margin-bottom: .6em; }

/* Contactpagina extra blokken */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 8px; }
.contact-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 22px; }
.contact-card .feat-ico { background: rgba(255,106,26,.16); color: #ffb182; margin-bottom: 12px; }
.contact-card h3 { color: #fff; font-size: 1.02rem; margin-bottom: .25em; }
.contact-card p, .contact-card a { color: #bcc8d6; font-size: .95rem; margin: 0; }
.contact-card a:hover { color: #fff; }

/* =========================================================
   Probleem -> oplossing flow (servicepagina)
   ========================================================= */
.ps-flow { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch; }
.ps-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.ps-problem { border-color: rgba(212,81,59,.28); background: linear-gradient(180deg, #ffffff, #fff7f6); }
.ps-solution { border-color: rgba(255,106,26,.32); background: linear-gradient(180deg, #ffffff, #fff8f3); }
.ps-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.ps-ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; flex: 0 0 auto; }
.ps-ico svg { width: 30px; height: 30px; }
.ps-ico-excel { background: rgba(29,111,66,.12); }
.ps-ico-x { background: rgba(212,81,59,.12); color: var(--danger); }
.ps-ico-app { background: var(--navy-900); color: #fff; }
.ps-head h2 { font-size: 1.18rem; margin: 4px 0 0; }
.ps-label { display: block; font-family: var(--font-head); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.ps-label-x { color: var(--danger); }
.ps-label-v { color: var(--accent-600); }

.ps-list { display: grid; gap: 11px; }
.ps-list li { position: relative; padding-left: 32px; line-height: 1.5; color: var(--text); }
.ps-list li::before { content: ""; position: absolute; left: 0; top: 0; width: 23px; height: 23px; border-radius: 50%; background-repeat: no-repeat; background-position: center; background-size: 13px; }
.ps-list-x li::before { background-color: rgba(212,81,59,.13); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7l10 10M17 7L7 17' fill='none' stroke='%23d4513b' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E"); }
.ps-list-v li::before { background-color: var(--accent-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.3L19 7' fill='none' stroke='%23ff6a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

.ps-arrow { display: grid; place-items: center; color: var(--accent); }
.ps-arrow svg { width: 50px; height: 26px; }

@media (max-width: 860px) {
  .ps-flow { grid-template-columns: 1fr; gap: 14px; }
  .ps-arrow svg { transform: rotate(90deg); }
}

/* =========================================================
   Besparingscalculator
   ========================================================= */
.calc { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); gap: 30px; align-items: start; }
.calc, .calc-inputs, .calc-result, .calc-group, .calc-group-body, .calc-field, .cf-top { min-width: 0; }
.calc input[type="range"] { min-width: 0; }
.calc-inputs { display: grid; gap: 20px; }
.calc-group { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.calc-group h3 { display: flex; align-items: center; gap: 11px; font-size: 1.06rem; margin-bottom: 18px; }
.calc-group h3 .feat-ico { width: 38px; height: 38px; margin: 0; }
.calc-group h3 .feat-ico svg { width: 20px; height: 20px; }
.calc-group-name { margin-right: auto; }

/* Aan/uit-schakelaar per dienst */
.calc-toggle { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; user-select: none; }
.calc-toggle input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.calc-switch { position: relative; width: 42px; height: 24px; border-radius: 999px; background: var(--steel-200); transition: background .2s var(--ease); flex: 0 0 auto; }
.calc-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(16,32,51,.3); transition: transform .2s var(--ease); }
.calc-toggle input:checked + .calc-switch { background: var(--accent); }
.calc-toggle input:checked + .calc-switch::after { transform: translateX(18px); }
.calc-toggle input:focus-visible + .calc-switch { outline: 3px solid var(--accent); outline-offset: 2px; }
.calc-toggle-label { font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; color: var(--steel-500); min-width: 26px; }
.calc-toggle-label::before { content: "Uit"; }
.calc-toggle input:checked ~ .calc-toggle-label::before { content: "Aan"; color: var(--accent-600); }
.calc-group-body { overflow: hidden; max-height: 340px; opacity: 1; transition: max-height .35s var(--ease), opacity .25s var(--ease); }
.calc-group.is-off .calc-group-body { max-height: 0; opacity: 0; }
.calc.calc-init .calc-group-body { transition: none; }
.calc-group.is-off h3 { margin-bottom: 0; }
.calc-bar-row.is-off { opacity: .45; }
.calc-bar-row.is-off .calc-bar-val { font-style: italic; }

.calc-field { margin-bottom: 20px; }
.calc-field:last-child { margin-bottom: 0; }
.cf-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 9px; }
.cf-top label { font-family: var(--font-head); font-weight: 600; font-size: .93rem; color: var(--navy-900); }
.cf-val { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--accent-600); font-variant-numeric: tabular-nums; white-space: nowrap; }

.calc input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 7px; border-radius: 999px; background: var(--steel-100); outline: none; cursor: pointer; }
.calc input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 2px 7px rgba(255,106,26,.5); cursor: pointer; transition: transform .12s var(--ease); }
.calc input[type=range]::-webkit-slider-thumb:active { transform: scale(1.15); }
.calc input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 2px 7px rgba(255,106,26,.5); cursor: pointer; }
.calc input[type=range]:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

/* Resultaatpaneel */
.calc-result { position: sticky; top: calc(var(--header-h) + 18px); background: linear-gradient(165deg, #11283f, #0a1a2f); color: #fff; border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-lg); }
.calc-result-label { font-family: var(--font-head); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #8fa3b8; margin: 0 0 6px; }
.calc-hero-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1; color: var(--accent); font-variant-numeric: tabular-nums; }
.calc-hero-sub { color: #aebccc; font-size: .95rem; margin: 6px 0 0; }
.calc-subnums { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 14px; margin: 22px 0; }
.calc-subnum { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md); padding: 15px 16px; }
.calc-subnum .csn-val { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; font-variant-numeric: tabular-nums; line-height: 1.1; }
.calc-subnum .csn-label { font-size: .8rem; color: #8fa3b8; }

.calc-bars { display: grid; gap: 12px; padding-top: 20px; margin-top: 4px; border-top: 1px solid rgba(255,255,255,.1); }
.calc-bars-title { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: #c4d1de; margin: 0 0 4px; }
.calc-bar-row { display: grid; grid-template-columns: 96px 1fr 56px; align-items: center; gap: 12px; }
.calc-bar-name { font-size: .84rem; color: #aebccc; }
.calc-bar { height: 9px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; }
.calc-bar-fill { display: block; height: 100%; width: 0; background: linear-gradient(90deg, #ff8a4d, var(--accent)); border-radius: 999px; transition: width .5s var(--ease); }
.calc-bar-val { font-size: .82rem; font-weight: 600; color: #fff; text-align: right; font-variant-numeric: tabular-nums; }

.calc-impact { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.calc-impact-lead { font-size: .95rem; color: #cdd8e4; line-height: 1.5; margin: 0; }
.calc-impact-lead strong { color: var(--accent); font-weight: 800; }
.calc-impact-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 11px; }
.calc-impact-list li { position: relative; padding-left: 28px; font-size: .9rem; color: #cdd8e4; line-height: 1.45; }
.calc-impact-list li strong { color: #fff; font-weight: 700; }
.calc-impact-list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 18px; height: 18px;
  background-repeat: no-repeat; background-position: center; background-size: 13px;
  background-color: var(--accent-soft); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.3L19 7' fill='none' stroke='%23ff6a1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.calc-assump { font-size: .78rem; color: #7f8c9a; margin: 18px 0 0; line-height: 1.5; }
.calc-actions { margin-top: 20px; }
.calc-actions .btn-block { width: 100%; }

.calc-mail { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.calc-mail > label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: #fff; margin-bottom: 9px; }
.calc-mail-row { display: flex; gap: 8px; }
.calc-mail input { flex: 1; min-width: 0; font-family: var(--font-body); font-size: .95rem; color: var(--ink); padding: 11px 13px; border: 1.5px solid transparent; border-radius: var(--r-sm); background: #fff; }
.calc-mail input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255,106,26,.3); }
.calc-mail input.invalid { box-shadow: 0 0 0 3px rgba(212,81,59,.5); }
.calc-mail .btn { white-space: nowrap; padding-inline: 16px; }
.calc-mail .field-error { color: #ffb1a3; font-size: .82rem; margin: 8px 0 0; }
.calc-mail .form-success { margin-top: 12px; }

/* Calculator teaser op homepage */
.calc-teaser { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; background: linear-gradient(160deg, #11283f, #0a1a2f); border-radius: var(--r-xl); padding: 48px; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.calc-teaser::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,106,26,.4), transparent 65%); filter: blur(60px); bottom: -180px; left: -60px; pointer-events: none; }
.calc-teaser > * { position: relative; }
.calc-teaser h2 { color: #fff; }
.calc-teaser p { color: #bcc8d6; max-width: 46ch; }
.calc-teaser .eyebrow { color: #ffb182; }
.calc-teaser-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 26px; text-align: center; }
.calc-teaser-card .ctc-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 6vw, 3.4rem); color: var(--accent); line-height: 1; }
.calc-teaser-card .ctc-label { color: #aebccc; font-size: .95rem; margin: 8px 0 18px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 460px; }
  .why-layout { grid-template-columns: 1fr; gap: 32px; }
  .why-copy { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .section { padding: 70px 0; }
  .cards-3 { grid-template-columns: 1fr; gap: 30px; }
  .card-feature { order: -1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { display: none; }
  .step { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 16px 0; align-items: start; text-align: left; }
  .step-num { margin-bottom: 0; }
  .step h3, .step p { grid-column: 2; }
  .step h3 { margin-top: 8px; }
  .prob-grid { grid-template-columns: 1fr; gap: 16px; }
  .prob-arrow { margin: 4px 0; }
  .prob-arrow svg { transform: rotate(90deg); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .checklist.two-col { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .profile-avatar { width: 140px; margin: 0 auto; }
  .cta-band { padding: 38px 26px; }
  .calc { grid-template-columns: 1fr; gap: 24px; }
  .calc-result { position: static; }
  .calc-teaser { grid-template-columns: 1fr; gap: 28px; padding: 34px 26px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero-cta .btn { flex: 1; }
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .mock-chat { right: 0; width: 220px; }
  .result-band { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 22px; }
}

/* Terugknop naar de moedersite (naast het logo) - compact, icoon-only */
.brand-group { display: inline-flex; align-items: center; gap: 8px; }
.back-parent { position: relative; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 500; color: var(--text-soft); padding: 6px; border: 1px solid var(--border); border-radius: 999px; transition: color .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease); opacity: .85; }
.back-parent:hover { color: var(--accent-600); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); background: var(--accent-soft); opacity: 1; }
.back-parent svg { width: 14px; height: 14px; flex: 0 0 auto; }
/* Klein tooltip-popupje bij het pijltje */
.back-parent .bp-text {
  position: absolute; top: calc(100% + 9px); left: 50%; transform: translateX(-50%) translateY(-4px);
  background: var(--navy-900); color: #fff; font-family: var(--font-body); font-weight: 500; font-size: .74rem;
  padding: 6px 10px; border-radius: var(--r-sm); white-space: nowrap; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; pointer-events: none; z-index: 90;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
.back-parent .bp-text::before { content: ""; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-bottom-color: var(--navy-900); }
.back-parent:hover .bp-text, .back-parent:focus-visible .bp-text, .back-parent.show-hint .bp-text { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
