/* =========================================================================
   LeadGrip marketing v2 — "Craft" design (concept-5)
   Beton · lood · oker · kalk — Bricolage Grotesque + Satoshi + IBM Plex Mono
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; }
html, body { overflow-x: clip; max-width: 100%; }

:root {
  --lood:      #2a2724;   /* donker warm antraciet — tekst */
  --kalk:      #56524c;   /* secundaire tekst */
  --kalk-lt:   #665f55;
  --beton:     #f4f1ec;   /* achtergrond */
  --beton-2:   #ece7df;
  --surface:   #fffdf9;
  --lijn:      #e2dcd1;   /* borders */
  --oker:      #b87333;   /* koper-accent */
  --oker-deep: #a3631f;
  --oker-lt:   #f2e3ce;
  --oker-tn:   #fbf4e9;
  --klei:      #9c5d3f;
  --groen:     #3d612c;
  --groen-bg:  #e3efdc;

  --font-display: 'Bricolage Grotesque', 'Satoshi', ui-sans-serif, system-ui, sans-serif;
  --font-sans:    'Satoshi', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* premium depth: barely-there ambient + one soft directional */
  --shadow-soft: 0 1px 2px #2a27240a, 0 4px 14px -8px #2a272421;
  --shadow-lift: 0 1px 3px #2a27240d, 0 18px 48px -28px #2a27243d;
  --shadow-hero: 0 2px 6px #2a27240f, 0 40px 80px -40px #2a272452;

  /* rhythm */
  --space-section: clamp(88px, 11vw, 148px);
}

body {
  font-family: var(--font-sans);
  font-weight: 500;
  background: var(--beton);
  color: var(--lood);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }

.container-craft {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.container-narrow { max-width: 760px; }

/* ─── korrel-textuur ─── */
.grain { position: relative; }
.grain::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grain > * { position: relative; }

/* ─── typografie ─── */
h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--lood);
}
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--lood);
}
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--lood);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kalk-lt);
  margin-bottom: 18px;
}
.eyebrow-light { color: rgba(251, 244, 233, 0.65); }

.ink-hi {
  color: var(--oker-deep);
}
.hi-light {
  color: var(--oker);
}

/* ─── knoppen ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  transition: transform 180ms, background 180ms, color 180ms, box-shadow 180ms;
}
.btn svg { width: 16px; height: 16px; }

.btn-dark {
  background: var(--lood);
  color: var(--oker-tn);
  box-shadow: var(--shadow-soft);
}
.btn-dark:hover { transform: scale(1.03); }

.btn-line {
  background: transparent;
  color: var(--lood);
  box-shadow: inset 0 0 0 1.5px var(--lijn);
}
.btn-line:hover { background: var(--surface); box-shadow: inset 0 0 0 1.5px var(--kalk-lt); }

.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-nav { padding: 10px 20px; font-size: 14px; }

/* ─── zwevende pill-nav ─── */
.topbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding-block: 16px;
  transition: padding 300ms;
}
.topbar.scrolled { padding-block: 8px; }

.navpill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  padding: 10px 16px;
  background: transparent;
  transition: background 300ms, box-shadow 300ms, backdrop-filter 300ms;
}
.topbar.scrolled .navpill {
  background: rgba(255, 253, 249, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--lijn);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--lood);
}
.brand-block {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--lood);
  flex-shrink: 0;
}
.brand-grip { color: var(--oker-deep); }

.navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.navlinks a {
  display: inline-block;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--kalk);
  transition: background 150ms, color 150ms;
}
.navlinks a:hover { background: var(--oker-tn); color: var(--lood); }

.navactions { display: flex; align-items: center; gap: 8px; }
.navlogin {
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--kalk);
  transition: color 150ms;
}
.navlogin:hover { color: var(--lood); }

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: var(--lood);
  box-shadow: inset 0 0 0 1px var(--lijn);
}
.nav-burger .burger-cross { display: none; }
.nav-burger[aria-expanded="true"] .burger-lines { display: none; }
.nav-burger[aria-expanded="true"] .burger-cross { display: block; }

.mobilemenu {
  display: none;
  margin-top: 8px;
  border-radius: 16px;
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow-lift), inset 0 0 0 1px var(--lijn);
  flex-direction: column;
  gap: 2px;
}
.mobilemenu.open { display: flex; }
.mobilemenu > a {
  padding: 12px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--kalk);
}
.mobilemenu > a:hover { background: var(--oker-tn); color: var(--lood); }
.mobilemenu > .btn { margin-top: 10px; color: var(--oker-tn); }

/* ─── variant-switcher (dev-only) ─── */
.var-switcher {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--lood);
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.vs-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-right: 4px;
}
.vs-btn {
  padding: 5px 14px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: all 180ms;
}
.vs-btn:hover { color: #fff; border-color: rgba(255,255,255,0.45); }
.vs-btn.active {
  background: var(--oker);
  border-color: var(--oker);
  color: #fff;
}

/* ─── hero — resultaat-first split ─── */
.hero {
  position: relative;
  background: var(--beton);
  padding: clamp(128px, 16vw, 184px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
}
/* zacht warm licht achter de hero — geen harde rand, premium diepte */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  width: 120%;
  height: 90%;
  transform: translateX(-50%);
  background: radial-gradient(60% 55% at 70% 30%, rgba(184,115,51,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero > .container-craft { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1120px;
  margin-inline: auto;
}
.hero-copy { max-width: 540px; }
.hero-copy h1 { font-size: clamp(2.6rem, 5.2vw, 4.2rem); line-height: 1.0; }
.hero-sub {
  margin: 24px 0 0;
  max-width: 460px;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.6;
  color: var(--kalk);
  text-wrap: pretty;
}
.hero .hero-ctas { justify-content: flex-start; margin-top: 32px; }
.trustline-left { text-align: left; }

/* ── de complete aanvraag: het resultaat dat de vakman krijgt ── */
.hero-visual { position: relative; }
.hero-glow {
  position: absolute;
  inset: -14% -10%;
  background: radial-gradient(50% 50% at 50% 40%, rgba(184,115,51,0.14) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.result-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-hero);
  max-width: 420px;
  margin-inline: auto;
}
.rc-toast {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  margin-bottom: 18px;
  background: var(--lood);
  border-radius: 12px;
}
.rc-toast-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.5);
  animation: rc-pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}
@keyframes rc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.45); }
  70%  { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.rc-toast-text {
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.03em;
  color: rgba(251,244,233,0.92);
}
.rc-toast-time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px; color: rgba(251,244,233,0.5);
}
.rc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.rc-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--oker-lt); color: var(--oker-deep);
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  display: grid; place-items: center; flex-shrink: 0;
}
.rc-head-info { min-width: 0; flex: 1; }
.rc-name {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em; color: var(--lood);
}
.rc-meta { font-size: 12.5px; color: var(--kalk); margin-top: 1px; }
.rc-pill { flex-shrink: 0; }
.rc-kv {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--lijn);
  border-radius: 14px;
  padding: 2px 16px;
  margin-bottom: 16px;
}
.rc-row {
  display: flex; align-items: baseline; gap: 14px;
  padding: 11px 0;
}
.rc-row + .rc-row { border-top: 1px solid var(--lijn); }
.rc-k {
  width: 76px; flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--kalk-lt);
}
.rc-v { flex: 1; font-size: 13.5px; font-weight: 700; color: var(--lood); }
.rc-photos { display: flex; gap: 8px; margin-bottom: 18px; }
.rc-photo, .rc-photo-more { width: 60px; height: 46px; border-radius: 9px; flex-shrink: 0; }
.rc-photo-1 { background: linear-gradient(135deg, #cabfae 0%, #a89a87 100%); }
.rc-photo-2 { background: linear-gradient(135deg, #c2c0ad 0%, #99a386 100%); }
.rc-photo-3 { background: linear-gradient(135deg, #d3c6bb 0%, #ab9889 100%); }
.rc-photo-more {
  background: var(--beton-2);
  border: 1px dashed var(--lijn);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  color: var(--kalk-lt);
}
.rc-foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--lijn);
}
.rc-foot .rc-k { width: auto; }
.rc-price {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  letter-spacing: -0.02em; color: var(--oker-deep);
  margin-top: 3px;
}
.rc-action {
  background: var(--lood); color: var(--oker-tn);
  border-radius: 10px; padding: 10px 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-copy { max-width: 600px; margin-inline: auto; }
  .hero-copy .hero-sub { margin-inline: auto; }
  .hero .hero-ctas { justify-content: center; }
  .trustline-left { text-align: center; }
}

/* titel: woorden komen één voor één binnen (JS zet .w spans) */
#heroTitle .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: word-in 600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes word-in {
  to { opacity: 1; transform: none; }
}

/* voor/na-blok */
.beforeafter {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 880px;
  margin: 56px auto 0;
}

.ba-card {
  border-radius: 18px;
  padding: 20px;
  text-align: left;
}
.ba-chaos {
  background: var(--beton-2);
  border: 1px solid var(--lijn);
  box-shadow: var(--shadow-soft);
  transform: rotate(-0.6deg);
}
.ba-done {
  background: var(--surface);
  border: 1px solid rgba(184, 115, 51, 0.3);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(184, 115, 51, 0.15);
  transform: rotate(0.6deg);
  position: relative;
}

.ba-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.ba-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ba-icon-chat { background: #dcf3c8; color: var(--groen); }
.ba-icon-check { background: var(--oker-lt); color: var(--oker-deep); }
.ba-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--kalk-lt);
}
.ba-time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--kalk-lt);
}

.ba-arrow {
  align-self: center;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lood);
  color: var(--oker-tn);
  box-shadow: var(--shadow-soft);
}
.ba-arrow svg { width: 20px; height: 20px; }

/* chat-mockup */
.chat { display: flex; flex-direction: column; gap: 8px; }
.bubble {
  max-width: 85%;
  border-radius: 14px;
  padding: 9px 13px;
  font-size: 13.5px;
  line-height: 1.45;
  position: relative;
}
.bubble .t {
  font-size: 10px;
  color: var(--kalk-lt);
  margin-left: 6px;
  vertical-align: bottom;
}
.bubble.them {
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-bottom-left-radius: 4px;
}
.bubble.me {
  align-self: flex-end;
  background: #dcf3c8;
  color: #2c3e22;
  border-bottom-right-radius: 4px;
}
.bubble.typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
}
.bubble.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kalk-lt);
  opacity: 0.5;
  animation: typing 1.2s infinite;
}
.bubble.typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: none; opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 0.9; }
}

/* compleet-kaart: k/v rijen */
.kv { display: flex; flex-direction: column; gap: 10px; }
.kv-row { display: flex; align-items: baseline; gap: 12px; }
.kv-k {
  width: 84px;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--kalk-lt);
}
.kv-v { flex: 1; font-size: 13.5px; font-weight: 700; color: var(--lood); }
.kv-price { color: var(--oker-deep); font-size: 16px; }

.stamp {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--oker);
  color: var(--oker-tn);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.statstrip {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 620px;
  margin: 44px auto 0;
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 18px 12px;
  text-align: center;
}
.stat + .stat { border-left: 1px solid var(--lijn); }
.stat-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--oker-deep);
}
.stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--kalk);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.trustline {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--kalk-lt);
}

/* ─────────────────────────────────────────────────────────────
   HERO VARIATIE A — split: copy links · product-visual rechts
   ──────────────────────────────────────────────────────────── */
.hero-va {
  padding: 120px 0 80px;
}
.hva-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin-inline: auto;
}

/* left: copy */
.hva-copy { display: flex; flex-direction: column; gap: 0; }
.hva-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5.5vw, 68px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--lood);
  margin: 14px 0 20px;
}
.hva-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: var(--kalk);
  max-width: 440px;
  text-wrap: pretty;
  margin-bottom: 28px;
}
.hva-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hva-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--kalk-lt);
}
.hva-stat strong { color: var(--lood); font-weight: 700; }
.hva-stat-sep { color: var(--lijn); }

/* right: visual */
.hva-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hva-glow {
  position: absolute;
  inset: -60px -40px;
  background: radial-gradient(ellipse at 60% 40%, rgba(184,115,51,0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hva-card {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(184,115,51,0.25);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(184,115,51,0.1);
}

/* toast */
.hva-toast {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--lood);
  border-radius: 100px;
  margin-bottom: 18px;
  width: fit-content;
}
.hva-toast-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hva-toast-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}
.hva-toast-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  margin-left: auto;
  padding-left: 10px;
}

/* lead-head */
.hva-lead-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hva-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--oker-lt);
  color: var(--oker-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hva-lead-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--lood);
}
.hva-lead-meta {
  font-size: 12.5px;
  color: var(--kalk);
  margin-top: 1px;
}
.hva-pill { margin-left: auto; }

.hva-kv { margin-bottom: 16px; }

/* foto-strip */
.hva-photos {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.hva-photo {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
}
.hva-photo-1 {
  background: linear-gradient(135deg, #c8bfaf 0%, #a89e90 100%);
}
.hva-photo-2 {
  background: linear-gradient(135deg, #b8c4a8 0%, #8fa882 100%);
}
.hva-photo-more {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  background: var(--beton-2);
  border: 1px dashed var(--lijn);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--kalk-lt);
}

/* actiebalk */
.hva-actions {
  display: flex;
  gap: 8px;
}
.hva-act-btn {
  padding: 8px 16px;
  border-radius: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.hva-act-primary {
  background: var(--lood);
  color: var(--oker-tn);
}
.hva-act-btn:not(.hva-act-primary) {
  background: var(--beton-2);
  color: var(--kalk);
  border: 1px solid var(--lijn);
}

/* embed-hint chip */
.hva-embed-hint {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  margin-left: 12px;
}
.hva-embed-hint svg { width: 14px; height: 14px; color: var(--oker-deep); flex-shrink: 0; }
.hva-embed-hint code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--kalk);
}

/* screenshot frames */
.hva-screen-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--lijn);
  box-shadow: var(--shadow-lift);
}
.hva-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

/* responsive A */
@media (max-width: 860px) {
  .hva-grid { grid-template-columns: 1fr; gap: 40px; }
  .hva-h1 { font-size: clamp(38px, 8vw, 52px); }
}

/* ─────────────────────────────────────────────────────────────
   HERO VARIATIE B — bold centered + breed app-screenshot
   ──────────────────────────────────────────────────────────── */
.hero-vb {
  padding: 130px 0 0;
}

/* centered copy */
.hvb-center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 56px;
}
.hvb-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.045em;
  line-height: 1.0;
  color: var(--lood);
  margin: 14px 0 22px;
}
.hvb-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: var(--kalk);
  max-width: 520px;
  margin: 0 auto 32px;
  text-wrap: pretty;
}

/* app screenshot */
.hvb-screen {
  max-width: 100%;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--lijn);
  border-bottom: none;
  box-shadow: 0 -8px 60px -20px rgba(42,39,36,0.22), 0 0 0 1px rgba(42,39,36,0.06);
  background: #f9f5ef;
}
.hvb-screenshot {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  object-position: top center;
}

/* mini sidebar */
.hvb-sidebar {
  background: #f9f5ef;
  border-right: 1px solid #e8e2d6;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hvb-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12.5px;
  color: var(--lood);
  padding: 0 6px 14px;
}
.hvb-nav-item {
  display: block;
  padding: 6px 8px;
  border-radius: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: #4f4c47;
  cursor: pointer;
}
.hvb-nav-active {
  background: #ebf0eb;
  color: #3d5949;
}

/* main leads list */
.hvb-main {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hvb-list-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hvb-list-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--lood);
}
.hvb-badge {
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--oker-lt);
  color: var(--oker-deep);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
}
.hvb-lead {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: background 150ms;
}
.hvb-lead-highlight {
  background: rgba(184,115,51,0.06);
  border: 1px solid rgba(184,115,51,0.18);
}
.hvb-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--oker-lt);
  color: var(--oker-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10.5px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hvb-avatar.sm { width: 32px; height: 32px; }
.hvb-lead-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.hvb-lead-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  color: var(--lood);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hvb-lead-detail {
  font-size: 12px;
  color: var(--kalk);
}
.hvb-price { color: var(--oker-deep); }
.hvb-lead-time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--kalk-lt);
  flex-shrink: 0;
}

/* mini stats balk */
.hvb-stats-row {
  display: flex;
  gap: 0;
  margin-top: 12px;
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 12px;
  overflow: hidden;
}
.hvb-mini-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 12px 8px;
  font-size: 11.5px;
  color: var(--kalk);
  text-align: center;
}
.hvb-mini-stat + .hvb-mini-stat { border-left: 1px solid var(--lijn); }
.hvb-mini-stat span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--oker-deep);
}

/* responsive B */
@media (max-width: 700px) {
  .hvb-app { grid-template-columns: 1fr; }
  .hvb-sidebar { display: none; }
  .hvb-h1 { font-size: clamp(40px, 10vw, 60px); }
}

/* ─── secties ─── */
.section { padding: var(--space-section) 0; }
.section-tint { background: var(--beton-2); }
.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 68px); }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
.section-head-center .section-sub { max-width: 580px; margin-inline: auto; }
.section-sub {
  margin-top: 18px;
  font-size: clamp(16.5px, 1.6vw, 18px);
  line-height: 1.62;
  color: var(--kalk);
  text-wrap: pretty;
}

/* ─── probleem ─── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
/* cascade-reveal: kaarten komen één voor één binnen i.p.v. tegelijk */
.problem-card:nth-child(2) { transition-delay: 70ms; }
.problem-card:nth-child(3) { transition-delay: 140ms; }
.problem-card:nth-child(4) { transition-delay: 210ms; }
.problem-num {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--oker-deep);
  margin-bottom: 14px;
}
/* editorale hairline ná het nummer — scheidt nummer van titel */
.problem-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--lijn);
}
.problem-card h3 { font-size: 17px; margin-bottom: 8px; }
.problem-card p { font-size: 14.5px; color: var(--kalk); }
.problem-card em { font-style: italic; color: var(--lood); }

/* ─── stappen ─── */
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 40px 0;
}
.step + .step { border-top: 1px dashed var(--lijn); }
.step-flip .step-copy { order: 2; }
.step-flip .step-visual { order: 1; }

.step-num {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--oker-deep);
  margin-bottom: 12px;
}
/* editorale hairline-tick ná het nummer — consistent met .problem-num */
.step-num::after {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--lijn);
}
.step-copy h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.step-copy p { font-size: 16.5px; color: var(--kalk); max-width: 460px; }
.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1) 160ms,
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1) 160ms;
}
/* choreografie: visual volgt de copy iets later in beeld */
.step.visible .step-visual { opacity: 1; transform: none; }

.mock-link {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow-lift);
}
.mock-link-url {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mock-link-url .dim { color: var(--kalk-lt); font-weight: 400; }
.mock-link-btn {
  background: var(--lood);
  color: var(--oker-tn);
  border-radius: 9px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.mock-link-share {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}
.share-chip {
  background: var(--oker-tn);
  border: 1px solid var(--oker-lt);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--klei);
}

.mock-form {
  width: 100%;
  max-width: 340px;
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-lift);
}
.mock-progress {
  height: 6px;
  background: var(--beton-2);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}
.mock-progress-fill {
  height: 100%;
  width: 57%;
  background: var(--oker);
  border-radius: 100px;
}
.mock-step-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kalk-lt);
  text-align: center;
  margin-bottom: 14px;
}
.mock-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.mock-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.mock-option {
  border: 1.5px solid var(--lijn);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 13.5px;
  color: var(--kalk);
}
.mock-option.selected {
  border-color: var(--oker);
  background: var(--oker-tn);
  color: var(--oker-deep);
  font-weight: 700;
}
.mock-btn {
  background: var(--lood);
  color: var(--oker-tn);
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  width: fit-content;
  margin-left: auto;
}

.mock-pipeline {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-lift);
}
.pipe-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
}
.pipe-row + .pipe-row { border-top: 1px solid var(--lijn); }
.pipe-name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; }
.pill {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
  white-space: nowrap;
}
.pill-new     { background: var(--oker);    color: var(--oker-tn); }
.pill-contact { background: var(--beton-2); color: var(--kalk); }
.pill-offerte { background: var(--oker-lt); color: var(--oker-deep); }
.pill-won     { background: var(--groen-bg); color: var(--groen); }

/* ─── browser-chrome (gedeeld door site-mock en app-mock) ─── */
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--beton-2);
  border-bottom: 1px solid var(--lijn);
}
.bdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lijn);
}
.bdot:nth-child(1) { background: #ff5f57; }
.bdot:nth-child(2) { background: #ffbd2e; }
.bdot:nth-child(3) { background: #28c840; }
.browser-url {
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--kalk-lt);
  background: var(--surface);
  border-radius: 6px;
  padding: 4px 12px;
  flex: 1;
  max-width: 320px;
}

/* ─── op jouw website: huisstijl-switch ─── */
.brand-switch {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.brand-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--lijn);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--kalk);
  transition: box-shadow 150ms, color 150ms, transform 150ms;
}
.brand-dot .dot { width: 10px; height: 10px; border-radius: 50%; }
.brand-dot:hover { transform: translateY(-1px); }
.brand-dot.active {
  color: var(--lood);
  box-shadow: inset 0 0 0 2px var(--lood), var(--shadow-soft);
}

/* ─── site-mockup van een vakman-website ─── */
.site-mock {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--lijn);
  background: #fff;
  box-shadow: var(--shadow-lift);
}
.site-page { padding: 0 0 26px; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 26px;
  border-bottom: 1px solid #eee9e0;
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.site-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--kalk);
}
.site-cta {
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  padding: 7px 14px;
}
.site-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 30px 26px;
}
.site-hero-copy h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.025em;
  color: #252924;
  margin-bottom: 8px;
}
.site-hero-copy p { font-size: 14.5px; color: var(--kalk); }
.site-hero-img {
  height: 130px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: color-mix(in srgb, var(--brand) 72%, #000);
}
.site-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 84% 8%,  rgba(255,255,255,0.44) 0%, transparent 42%),
    radial-gradient(ellipse at 10% 48%, rgba(255,255,255,0.20) 0%, transparent 36%),
    radial-gradient(ellipse at 52% 72%, rgba(0,0,0,0.30)       0%, transparent 48%);
}
.site-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(to top,   rgba(0,0,0,0.40) 0%, transparent 58%),
    linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, transparent 28%);
}
.site-form-zone {
  margin: 4px 26px 0;
  border-top: 1px dashed #e3ddd2;
  padding-top: 24px;
  text-align: center;
}
.site-form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #252924;
  margin-bottom: 16px;
}
.site-form {
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee9e0;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 30px -14px rgba(37, 41, 36, 0.18);
  text-align: left;
}
.sf-progress {
  height: 6px;
  background: #f0ece4;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.sf-progress-fill {
  height: 100%;
  width: 33%;
  background: var(--brand);
  border-radius: 100px;
  transition: background 300ms;
}
.sf-step {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kalk-lt);
  text-align: center;
  margin-bottom: 12px;
}
.sf-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  color: #252924;
  margin-bottom: 12px;
}
.sf-options { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.sf-option {
  border: 1.5px solid #eae5db;
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--kalk);
  transition: border-color 300ms, background 300ms, color 300ms;
}
.sf-option.selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
}
.sf-btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  background: var(--brand);
  color: #fff;
  border-radius: 9px;
  padding: 9px 17px;
  font-weight: 700;
  font-size: 13.5px;
  transition: background 300ms;
}
.site-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--oker-deep);
}
.note-arrow {
  width: 12px;
  height: 14px;
  flex-shrink: 0;
}

/* ─── formulierbouwer ─── */
.builder-mock {
  max-width: 920px;
  margin: 0 auto 40px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--lijn);
  box-shadow: var(--shadow-lift);
  background: #f9f5ef;
}

/* topbar */
.bm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: #f9f5ef;
  border-bottom: 1px solid #e8e2d6;
}
.bm-topbar-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bm-back {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9590;
}
.bm-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6860;
}
.bm-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bm-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: 8px;
  border: 1px solid #d8d1c5;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: #4f4c47;
}
.bm-btn-ghost svg { width: 13px; height: 13px; }
.bm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: 8px;
  background: #3d5949;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}
.bm-btn-primary svg { width: 13px; height: 13px; }

/* main body: 2-col split */
.bm-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 420px;
}

/* left: field list */
.bm-fields {
  padding: 18px 16px;
  border-right: 1px solid #e8e2d6;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bm-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 6px;
}
.bm-section-label > span:first-child {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9590;
}
.bm-count {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: #b0aa9f;
  background: #ede8df;
  padding: 2px 8px;
  border-radius: 999px;
}

.bm-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e8e2d6;
  cursor: pointer;
  transition: border-color 180ms;
}
.bm-field-active {
  border-color: #3d5949;
  background: #f1f5f1;
  box-shadow: 0 0 0 1px #3d5949;
}
.bm-drag {
  font-size: 11px;
  color: #c4bdb2;
  cursor: grab;
  line-height: 1;
  flex-shrink: 0;
}
.bm-num {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: #b0aa9f;
  width: 12px;
  flex-shrink: 0;
}
.bm-type-dot {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.bm-type-dot svg { width: 15px; height: 15px; }
.bm-type-dot-lg {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.bm-type-dot-lg svg { width: 17px; height: 17px; }

.bm-tint-forest { background: #e8f0e8; color: #3d5949; }
.bm-tint-peach  { background: #fce9df; color: #b85c38; }
.bm-tint-amber  { background: #fdf2d8; color: #b07d2a; }
.bm-tint-blue   { background: #e3ecf5; color: #3a6ea5; }
.bm-tint-purple { background: #ede8f5; color: #7b5ea7; }

.bm-field-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.bm-field-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #1f1d1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bm-field-meta {
  font-size: 11.5px;
  color: #7d7870;
  display: flex;
  align-items: center;
  gap: 4px;
}
.bm-price-chip {
  background: #fdf2d8;
  color: #b07d2a;
  font-weight: 700;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
}
.bm-add-field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1.5px dashed #d8d1c5;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: #9a9590;
  margin-top: 2px;
}
.bm-add-field svg { width: 14px; height: 14px; }

/* right: edit panel */
.bm-panel {
  background: #fff;
  border-left: 1px solid #e8e2d6;
  display: flex;
  flex-direction: column;
}
.bm-panel-hd {
  padding: 16px 18px 12px;
  border-bottom: 1px solid #eee9e0;
}
.bm-panel-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9590;
  margin-bottom: 8px;
}
.bm-panel-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bm-panel-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.015em;
  color: #1f1d1a;
  line-height: 1.3;
}
.bm-panel-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bm-group { display: flex; flex-direction: column; gap: 7px; }
.bm-group-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9590;
}

/* type grid */
.bm-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.bm-type-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  background: #f5f1ea;
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 600;
  font-family: var(--font-display);
  color: #6b6860;
}
.bm-type-tile svg { width: 16px; height: 16px; }
.bm-type-tile-active {
  border-color: #b85c38;
  background: #fce9df;
  color: #b85c38;
}

/* accordion */
.bm-acc-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 8px;
  background: #f5f1ea;
  border: 1px solid #e8e2d6;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  color: #4f4c47;
  cursor: pointer;
}
.bm-acc-open {
  background: #fdf2d8;
  border-color: #e8c96a;
  color: #7c5a1a;
}
.bm-acc-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #f0e8c8;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #b07d2a;
  flex-shrink: 0;
}
.bm-acc-icon-alt {
  background: #ede8f5;
  color: #7b5ea7;
}
.bm-acc-opt {
  font-weight: 500;
  font-size: 11px;
  color: #9a9590;
}
.bm-acc-chev {
  width: 14px;
  height: 14px;
  margin-left: auto;
  flex-shrink: 0;
}
.bm-acc-body {
  padding: 10px 12px;
  background: #fffdf8;
  border: 1px solid #e8c96a;
  border-top: none;
  border-radius: 0 0 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bm-price-type-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9590;
}
.bm-option-prices { display: flex; flex-direction: column; gap: 5px; }
.bm-opt-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #4f4c47;
  font-family: var(--font-display);
  font-weight: 500;
  padding: 6px 8px;
  background: #fff;
  border: 1px solid #e8e2d6;
  border-radius: 7px;
}
.bm-euro-val {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #3d5949;
  flex-shrink: 0;
}

/* live preview strip */
.bm-preview-strip {
  padding: 12px 18px 16px;
  border-top: 1px solid #eee9e0;
  background: #f5f1ea;
}
.bm-preview-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a9590;
  margin-bottom: 10px;
}
.bm-preview-card {
  background: #fff;
  border: 1px solid #e8e2d6;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bm-pq {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.015em;
  color: #1f1d1a;
  line-height: 1.35;
}
.bm-pq-req { color: #e04a3a; }
.bm-popts { display: flex; flex-direction: column; gap: 6px; }
.bm-popt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border: 1.5px solid #e8e2d6;
  border-radius: 9px;
  font-size: 12.5px;
  font-weight: 500;
  color: #4f4c47;
  font-family: var(--font-display);
}
.bm-popt-sel {
  border-color: #3d5949;
  background: #f1f5f1;
  color: #3d5949;
  font-weight: 700;
}
.bm-popt-sel svg { width: 14px; height: 14px; color: #3d5949; flex-shrink: 0; }

/* feature callouts */
.builder-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.bf-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--lijn);
}
.bf-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--oker-lt);
  color: var(--oker-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.bf-icon svg { width: 18px; height: 18px; }
.bf-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--lood);
  margin-bottom: 4px;
}
.bf-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--kalk);
}

/* responsive: mobiel */
@media (max-width: 700px) {
  .bm-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .bm-panel { display: none; }
  .builder-features { grid-template-columns: 1fr; }
  .bm-topbar-right .bm-btn-ghost { display: none; }
}
@media (max-width: 520px) {
  .bm-type-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── het product: app-tour ─── */
.app-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.app-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--lijn);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--kalk);
  transition: background 150ms, color 150ms, box-shadow 150ms;
}
.app-tab svg { width: 15px; height: 15px; }
.app-tab:hover { color: var(--lood); }
.app-tab.active {
  background: var(--lood);
  color: var(--oker-tn);
  box-shadow: var(--shadow-soft);
}

.app-mock {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--lijn);
  box-shadow: var(--shadow-lift);
  background: #f9f5ef; /* de echte app-achtergrond (Field linen) */
}
.app-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 380px;
}

/* mini-sidebar in echte app-stijl */
.app-side {
  background: #f9f5ef;
  border-right: 1px solid #e8e2d6;
  padding: 16px 10px;
}
.app-side-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: #1f1d1a;
  padding: 0 6px 14px;
}
.app-side-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid #1f1d1a;
  border-radius: 50%;
  font-size: 10px;
  flex-shrink: 0;
}
.app-side-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9590;
  padding: 8px 8px 4px;
}
.app-side-item {
  display: block;
  padding: 7px 8px;
  border-radius: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: #4f4c47;
}
.app-side-item.side-active {
  background: #ebf0eb;
  color: #3d5949;
}

/* panes */
.app-pane { display: none; padding: 22px 24px; }
.app-pane.active { display: block; animation: pane-in 320ms cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes pane-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .app-pane.active { animation: none; }
}

.ap-greet {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #1f1d1a;
}
.ap-hi {
  background: linear-gradient(transparent 60%, rgba(232,149,112,.5) 60%, rgba(232,149,112,.5) 94%, transparent 94%);
}
.ap-sub { font-size: 12.5px; color: #4f4c47; margin: 4px 0 16px; }

.ap-cards {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.ap-hero {
  background: #fff;
  border: 1px solid #e8e2d6;
  border-left: 4px solid #e89570;
  border-radius: 12px;
  padding: 14px 16px;
}
.ap-hero-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d97f5a;
}
.ap-hero-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  color: #1f1d1a;
  margin: 6px 0;
}
.ap-hero-cta { font-size: 11px; font-weight: 700; color: #3d5949; }
.ap-kpis { display: flex; flex-direction: column; gap: 8px; }
.ap-kpi {
  background: #fff;
  border: 1px solid #e8e2d6;
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ap-kpi-label { font-size: 11px; color: #4f4c47; }
.ap-kpi-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: #1f1d1a;
}
.ap-pipebar {
  display: flex;
  gap: 3px;
  height: 10px;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}
.ap-pipebar span { border-radius: 100px; }
.ap-leads { display: flex; flex-direction: column; gap: 6px; }
.ap-lead {
  background: #fff;
  border: 1px solid #e8e2d6;
  border-radius: 10px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ap-lead-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: #1f1d1a;
}
.app-pane .pill { font-size: 10px; padding: 3px 9px; }
.app-pane .pill-new { background: #fbf2dd; color: #c47d2a; }
.app-pane .pill-contact { background: #ecf0f3; color: #506b85; }
.app-pane .pill-offerte { background: #f3edf3; color: #8a6b8e; }

.ap-lead-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.ap-lead-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #1f1d1a;
}
.ap-lead-meta { font-size: 11.5px; color: #4f4c47; margin-top: 2px; }
.ap-answers {
  background: #fff;
  border: 1px solid #e8e2d6;
  border-radius: 12px;
  padding: 6px 16px;
}
.ap-answer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
}
.ap-answer + .ap-answer { border-top: 1px solid #f1ebde; }
.ap-a-k {
  width: 92px;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9590;
}
.ap-a-v {
  font-size: 12.5px;
  font-weight: 600;
  color: #1f1d1a;
}
.ap-photos { display: flex; gap: 6px; }
.ap-photo {
  width: 36px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d9cdb8, #b8a888);
}
.ap-photo.p2 { background: linear-gradient(135deg, #cfd6c8, #9aa890); }
.ap-photo.p3 { background: linear-gradient(135deg, #d6cfc8, #a89a90); }
.ap-lead-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.ap-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #3d5949;
}
.ap-btn {
  background: #3d5949;
  color: #f9f5ef;
  border-radius: 9px;
  padding: 9px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
}
.ap-note { font-size: 11px; color: #9a9590; font-style: italic; }

.ap-quote {
  background: #fff;
  border: 1px solid #e8e2d6;
  border-radius: 12px;
  padding: 6px 16px;
}
.ap-q-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  font-size: 12.5px;
  color: #4f4c47;
}
.ap-q-row + .ap-q-row { border-top: 1px solid #f1ebde; }
.ap-q-row span:last-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: #1f1d1a;
}
.ap-q-total {
  font-weight: 700;
  color: #1f1d1a;
}
.ap-q-total span:last-child { font-size: 15px; color: #3d5949; }

.ap-brandgrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}
.ap-brand-controls {
  background: #fff;
  border: 1px solid #e8e2d6;
  border-radius: 12px;
  padding: 6px 16px;
}
.ap-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
}
.ap-control + .ap-control { border-top: 1px solid #f1ebde; }
.ap-swatches { display: flex; gap: 6px; }
.ap-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.ap-swatch.sel { box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #1f1d1a; }
.ap-upload {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #3d5949;
  background: #ebf0eb;
  border-radius: 6px;
  padding: 4px 10px;
}
.ap-toggle {
  width: 34px;
  height: 19px;
  border-radius: 100px;
  background: #d4cdba;
  position: relative;
  flex-shrink: 0;
}
.ap-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: left 150ms;
}
.ap-toggle.on { background: #3d5949; }
.ap-toggle.on::after { left: 17px; }
.ap-brand-preview {
  background: #fff;
  border: 1px solid #e8e2d6;
  border-radius: 12px;
  padding: 14px 16px;
}
.ap-mini-form {
  border: 1px solid #e8e2d6;
  border-radius: 10px;
  padding: 14px;
  background: #fdfaf3;
}
.ap-mini-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e7f0e8;
  border: 1.5px solid #3f7a48;
  margin: 0 auto 8px;
}
.ap-mini-bar {
  height: 5px;
  border-radius: 100px;
  background: #f1ebde;
  overflow: hidden;
  margin-bottom: 10px;
}
.ap-mini-bar span {
  display: block;
  height: 100%;
  width: 45%;
  background: #3f7a48;
  border-radius: 100px;
}
.ap-mini-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: #1f1d1a;
  margin-bottom: 10px;
}
.ap-mini-btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  background: #3f7a48;
  color: #fff;
  border-radius: 7px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 11px;
}

.product-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 28px auto 0;
}
.product-point {
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--kalk);
  box-shadow: var(--shadow-soft);
}
.product-point strong { color: var(--lood); display: block; margin-bottom: 4px; font-family: var(--font-display); letter-spacing: -0.01em; }

/* ─── demo ─── */
.demo-frame-wrap {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--lijn);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--beton-2);
}
.demo-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  transition: height 300ms ease;
}

/* ─── voor wie ─── */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trade-card {
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms, box-shadow 180ms;
}
.trade-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.trade-card h3 { font-size: 16px; margin-bottom: 6px; }
.trade-card p {
  font-size: 13.5px;
  color: var(--kalk-lt);
  font-style: italic;
}
.trades-note {
  margin-top: 28px;
  font-size: 15px;
  color: var(--kalk);
  text-align: center;
}

/* ─── features ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--oker-lt);
  color: var(--oker-deep);
  margin-bottom: 18px;
}
.feature-icon svg { width: 21px; height: 21px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--kalk); }

/* ─── vergelijking (donkere sectie) ─── */
.section-dark {
  background: var(--lood);
  color: var(--oker-tn);
}
.section-dark h2 { color: var(--oker-tn); }
.section-dark .section-sub { color: rgba(251, 244, 233, 0.7); }

.compare-table {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(255, 253, 249, 0.04);
  border: 1px solid rgba(251, 244, 233, 0.14);
  border-radius: 18px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 130px 1fr 1fr;
  gap: 16px;
  padding: 18px 26px;
  font-size: 14.5px;
  color: rgba(251, 244, 233, 0.65);
  align-items: center;
}
.compare-row + .compare-row { border-top: 1px solid rgba(251, 244, 233, 0.1); }
.compare-head {
  background: rgba(251, 244, 233, 0.06);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--oker-tn);
}
.compare-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251, 244, 233, 0.45);
}
.compare-us { color: var(--oker); font-weight: 700; }

/* ─── prijs ─── */
.price-card {
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 22px;
  padding: 44px 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--oker);
  color: var(--oker-tn);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}
.price-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--lood);
}
.price-later {
  margin-top: 8px;
  font-size: 16px;
  color: var(--kalk-lt);
}
.price-list {
  list-style: none;
  margin: 30px auto;
  max-width: 380px;
  text-align: left;
}
.price-list li {
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: var(--kalk);
  position: relative;
}
.price-list li + li { border-top: 1px solid var(--lijn); }
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--oker-deep);
  font-weight: 700;
}
.price-note {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--kalk-lt);
}

/* ─── faq ─── */
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 150ms;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--oker-deep);
  flex-shrink: 0;
  transition: transform 200ms;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { background: var(--oker-tn); }
.faq-list details p {
  padding: 0 22px 20px;
  font-size: 15px;
  color: var(--kalk);
}

/* ─── final cta ─── */
.section-final {
  text-align: center;
  padding: 110px 0;
  background: var(--beton);
}
.section-final h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.section-final .section-sub { margin-bottom: 32px; }
.section-final .trustline { margin-top: 20px; }

/* ─── footer ─── */
.footer {
  background: var(--lood);
  color: rgba(251, 244, 233, 0.7);
  padding: 44px 0;
}
.footer .brand { color: var(--oker-tn); }
.footer .brand-block { background: var(--oker-tn); }
.footer .brand-block svg path { stroke: var(--oker-deep); }
.footer .brand-grip { color: var(--oker); }
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(251, 244, 233, 0.5);
}
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a {
  font-weight: 600;
  font-size: 14px;
  color: rgba(251, 244, 233, 0.7);
  transition: color 150ms;
}
.footer-nav a:hover { color: var(--oker-tn); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(251, 244, 233, 0.4);
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 244, 233, 0.12);
}
.footer-legal {
  color: rgba(251, 244, 233, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal:hover { color: var(--oker-tn); }

/* ─── juridische pagina's ─── */
.legal {
  padding: 140px 0 80px;
}
.legal-head { margin-bottom: 40px; }
.legal-head h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.legal-updated {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--kalk-lt);
}
.legal-intro {
  margin-top: 16px;
  font-size: 16px;
  color: var(--kalk);
  max-width: 640px;
}
.legal-body {
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 22px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow-soft);
}
.legal-body h2 {
  font-size: 20px;
  margin: 36px 0 12px;
  scroll-margin-top: 100px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 16px;
  margin: 22px 0 8px;
}
.legal-body p {
  font-size: 15px;
  color: var(--kalk);
  margin-bottom: 12px;
  line-height: 1.7;
}
.legal-body ul, .legal-body ol {
  margin: 0 0 14px 22px;
  font-size: 15px;
  color: var(--kalk);
  line-height: 1.7;
}
.legal-body li { margin-bottom: 6px; }
.legal-body strong { color: var(--lood); }
.legal-body p a, .legal-body li a {
  color: var(--oker-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 14px 0 18px;
}
.legal-body th, .legal-body td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--lijn);
  color: var(--kalk);
  vertical-align: top;
}
.legal-body th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--lood);
  background: var(--beton);
}
.legal-note {
  margin-top: 24px;
  background: var(--oker-tn);
  border: 1px solid var(--oker-lt);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--klei);
}
.legal-toc {
  margin: 0 0 28px 0;
  padding: 18px 22px;
  background: var(--beton);
  border-radius: 14px;
  font-size: 14px;
  columns: 2;
  column-gap: 32px;
  list-style-position: inside;
}
.legal-toc a { color: var(--oker-deep); font-weight: 600; }
.legal-toc a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .legal-toc { columns: 1; }
}

/* ─── scroll-reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .step-visual { opacity: 1; transform: none; transition: none; }
  #heroTitle .w { opacity: 1; transform: none; animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── responsive ─── */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .navlinks { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 120px 0 64px; }

  .navactions { display: none; }
  .nav-burger { display: grid; }

  .beforeafter {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 40px;
  }
  .ba-arrow { transform: rotate(90deg); justify-self: center; }
  .ba-chaos, .ba-done { transform: none; }

  .hero-ctas .btn { width: 100%; }

  .step { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }
  .step-flip .step-copy { order: 1; }
  .step-flip .step-visual { order: 2; }

  .features-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }

  .compare-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 20px; }
  .compare-head { display: none; }
  .compare-row > div:nth-child(2)::before {
    content: "Leadplatforms: ";
    font-weight: 700;
    color: var(--oker-tn);
  }
  .compare-row > .compare-us::before { content: "LeadGrip: "; }

  .price-card { padding: 36px 22px 28px; }
  .demo-frame-wrap iframe { height: 560px; }
  .footer-inner { flex-direction: column; }

  /* site-mock op mobiel */
  .site-links span:not(.site-cta) { display: none; }
  .site-hero { grid-template-columns: 1fr; padding: 22px 18px; }
  .site-hero-img { height: 70px; }
  .site-form-zone { margin-inline: 18px; }

  /* app-mock op mobiel: sidebar verbergen (zoals de echte app) */
  .app-body { grid-template-columns: 1fr; min-height: 0; }
  .app-side { display: none; }
  .ap-cards { grid-template-columns: 1fr; }
  .ap-brandgrid { grid-template-columns: 1fr; }
  .product-points { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .trades-grid { grid-template-columns: 1fr; }
  .stat-big { font-size: 20px; }
  .stat-label { font-size: 11px; }
  .stat { padding: 14px 8px; }
}

/* ═════════════════════════════════════════════════════════════════
   v4 — premium refinements
   ═════════════════════════════════════════════════════════════════ */

/* nav: rustiger, strakker bij scroll */
.navlinks a { font-weight: 500; }
.topbar.scrolled .navpill {
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 1px 0 rgba(226,220,209,0.9), 0 8px 30px -18px #2a272438;
}

/* eyebrow: subtiele koper-tick ervoor — editorial, geen sticker */
.section-head-center .eyebrow { display: inline-block; }

/* ─── Probleem + Gevolg (split) ─── */
.prob-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.prob-narrative { max-width: 540px; }
.prob-narrative .section-sub { margin-bottom: 36px; }

.cost-list { display: flex; flex-direction: column; gap: 4px; }
.cost-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
}
.cost-item + .cost-item { border-top: 1px solid var(--lijn); }
.cost-num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  color: var(--oker-deep);
  padding-top: 2px;
}
.cost-item p { font-size: 15px; line-height: 1.55; color: var(--kalk); }
.cost-item strong { color: var(--lood); font-weight: 700; }

/* de chat-kaart als bewijs van de chaos — recht, geen rotatie */
.prob-chat {
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: var(--radius-xl, 22px);
  padding: 22px;
  box-shadow: var(--shadow-lift);
}

@media (max-width: 860px) {
  .prob-grid { grid-template-columns: 1fr; gap: 40px; }
  .prob-narrative { max-width: none; }
}

/* ─── Voor wie: slanke strip i.p.v. 8 kaarten ─── */
.trade-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.trade-tag {
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--lijn);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--lood);
  transition: transform 160ms cubic-bezier(0.16,1,0.3,1), box-shadow 160ms, color 160ms;
}
.trade-tag:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1.5px var(--oker), var(--shadow-soft);
  color: var(--oker-deep);
}
.trades-note { margin-top: 32px; }

/* ─── micro-interacties: knoppen rustiger + dieper ─── */
.btn { transition: transform 180ms cubic-bezier(0.16,1,0.3,1), box-shadow 200ms, background 180ms, color 180ms; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-dark:active { transform: translateY(0); }

/* product-tour tabs: koperlijn onder de actieve tab — Linear-achtig accent */
.app-tab { transition: background 160ms, color 160ms, box-shadow 160ms, transform 160ms; }
.app-tab:hover { transform: translateY(-1px); }

/* kaarten met hover-lift waar het telt */
.product-point,
.bf-item,
.feature-card {
  transition: transform 200ms cubic-bezier(0.16,1,0.3,1), box-shadow 200ms;
}
.product-point:hover,
.bf-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

/* mock-kaarten in de stappen: rustige hover */
.mock-link, .mock-form, .mock-pipeline { transition: box-shadow 220ms, transform 220ms; }

/* reveal: iets verfijnder (kleinere verschuiving = premium, minder "springerig") */
.reveal { transform: translateY(14px); }

/* ─── reveal-cascade voor nieuwe componenten ─── */
.cost-item { opacity: 0; transform: translateY(10px); transition: opacity 500ms cubic-bezier(0.16,1,0.3,1), transform 500ms cubic-bezier(0.16,1,0.3,1); }
.prob-narrative.visible .cost-item { opacity: 1; transform: none; }
.prob-narrative.visible .cost-item:nth-child(2) { transition-delay: 80ms; }
.prob-narrative.visible .cost-item:nth-child(3) { transition-delay: 160ms; }
.prob-narrative.visible .cost-item:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .cost-item { opacity: 1; transform: none; transition: none; }
  .rc-toast-dot { animation: none; }
}

/* ─── Switcher: story-knop accent ─── */
.vs-btn-exp { border-color: rgba(184,115,51,.5); color: var(--oker); }
.vs-btn-exp.active { background: var(--oker); border-color: var(--oker); color: #fff; }

/* =====================================================================
   INBOX COLLAPSE HERO (concept B)
   ===================================================================== */

/* ─── Section / spacer ─── */
.ih { position: relative; }
.ih-spacer { height: 480vh; }

/* ─── Sticky stage ─── */
.ih-stage {
  position: sticky; top: 0;
  height: 100vh; overflow: hidden;
  transition: background 0.8s ease;
}
.ih[data-phase="1"] .ih-stage { background: #0e0c09; }
.ih[data-phase="2"] .ih-stage { background: #170a08; }
.ih[data-phase="3"] .ih-stage { background: #0b0e12; }
.ih[data-phase="4"] .ih-stage { background: #0b0e12; }
.ih[data-phase="5"] .ih-stage { background: #0a120c; }

/* ─── Scene base ─── */
.ih-s {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1),
              transform .68s cubic-bezier(.22,1,.36,1),
              filter .6s ease;
}
/* active scene */
.ih[data-phase="1"] .ih-s1,
.ih[data-phase="2"] .ih-s2,
.ih[data-phase="3"] .ih-s3,
.ih[data-phase="4"] .ih-s4,
.ih[data-phase="5"] .ih-s5 { opacity: 1; transform: none; pointer-events: auto; }

/* passed scenes exit upward */
.ih[data-phase="2"] .ih-s1,
.ih[data-phase="3"] .ih-s1, .ih[data-phase="3"] .ih-s2,
.ih[data-phase="4"] .ih-s1, .ih[data-phase="4"] .ih-s2, .ih[data-phase="4"] .ih-s3,
.ih[data-phase="5"] .ih-s1, .ih[data-phase="5"] .ih-s2, .ih[data-phase="5"] .ih-s3, .ih[data-phase="5"] .ih-s4 {
  opacity: 0; transform: translateY(-22px);
}
/* phase 1 inbox "explodes" outward when passed */
.ih[data-phase="2"] .ih-s1,
.ih[data-phase="3"] .ih-s1,
.ih[data-phase="4"] .ih-s1,
.ih[data-phase="5"] .ih-s1 { opacity: 0; transform: scale(1.07); filter: blur(6px); }

/* ─── Layout ─── */
.ih-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  width: 100%; max-width: 1100px;
  padding: 96px clamp(24px, 5vw, 56px) 80px;
  height: 100%;
}

/* ─── Copy ─── */
.ih-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: 14px;
}
.ih-eyebrow-dark { color: var(--kalk-lt); }
.ih-h {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  letter-spacing: -.04em; line-height: 1.0; color: #fff; margin-bottom: 18px;
}
.ih-h-dark { color: var(--lood); }
.ih-p {
  font-size: clamp(.95rem, 1.7vw, 1.08rem);
  color: rgba(255,255,255,.5); line-height: 1.65; max-width: 360px;
}
.ih-p-dark { color: var(--kalk); }

/* ─── PHASE 1: Inbox ─── */
.ih-inbox {
  background: #1b1915; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 40px 100px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.04);
  width: 100%; max-width: 440px; margin-inline: auto; overflow: hidden;
}
.ih-inbox-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px 13px; border-bottom: 1px solid rgba(255,255,255,.055);
}
.ih-inbox-title {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: #f0ece5; display: flex; align-items: center; gap: 9px;
}
.ih-inbox-badge {
  background: #c0392b; color: #fff; font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: 100px;
  animation: ih-badge-pulse 2s infinite;
}
@keyframes ih-badge-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.55); }
  50% { box-shadow: 0 0 0 7px rgba(192,57,43,0); }
}
.ih-inbox-search { color: rgba(255,255,255,.25); font-size: 17px; line-height: 1; }
.ih-inbox-list { padding: 4px 0; }
.ih-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 18px; border-bottom: 1px solid rgba(255,255,255,.035);
  opacity: 0; transform: translateY(8px);
}
.ih-unread { background: rgba(255,255,255,.022); }
.ih[data-phase="1"] .ih-row { animation: ih-row-in .5s both cubic-bezier(.22,1,.36,1); }
.ih[data-phase="1"] .ih-r1 { animation-delay: .08s; }
.ih[data-phase="1"] .ih-r2 { animation-delay: .19s; }
.ih[data-phase="1"] .ih-r3 { animation-delay: .30s; }
.ih[data-phase="1"] .ih-r4 { animation-delay: .41s; }
.ih[data-phase="1"] .ih-r5 { animation-delay: .52s; }
@keyframes ih-row-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.ih-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: #fff;
}
.ih-av-sm { width: 26px; height: 26px; font-size: 8px; }
.ih-row-body { flex: 1; min-width: 0; }
.ih-row-name {
  font-size: 13.5px; font-weight: 700; color: #e8e4de;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ih-row-prev {
  font-size: 12px; color: rgba(255,255,255,.35); margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ih-row-right { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.ih-row-time { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.27); }
.ih-dot {
  background: #c0392b; color: #fff; font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 100px;
  display: grid; place-items: center; padding: 0 4px;
}
.ih-inbox-typing {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px 15px;
}

/* ─── PHASE 2: Islands ─── */
.ih-islands-wrap {
  position: relative; min-height: 340px;
  display: grid; place-items: center;
}
.ih-island {
  position: absolute;
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 16px; padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  opacity: 0;
}
.ih-isl-wa   { top: 0; left: 0; }
.ih-isl-mail { top: 24px; right: 0; }
.ih-isl-tel  { bottom: 0; left: 50%; }
.ih[data-phase="2"] .ih-isl-wa   { animation: isl-in-wa   .6s .05s both cubic-bezier(.22,1,.36,1); }
.ih[data-phase="2"] .ih-isl-mail { animation: isl-in-mail .6s .18s both cubic-bezier(.22,1,.36,1); }
.ih[data-phase="2"] .ih-isl-tel  { animation: isl-in-tel  .6s .32s both cubic-bezier(.22,1,.36,1); }
@keyframes isl-in-wa   { from { opacity:0; transform: translateX(-28px) scale(.85); } to { opacity:1; transform: translateX(0) scale(1) rotate(-2deg); } }
@keyframes isl-in-mail { from { opacity:0; transform: translateX(28px) scale(.85); }  to { opacity:1; transform: translateX(0) scale(1) rotate(1.5deg); } }
@keyframes isl-in-tel  { from { opacity:0; transform: translateX(-50%) translateY(24px) scale(.85); } to { opacity:1; transform: translateX(-50%) translateY(0) rotate(-1deg); } }
/* keep rotations in resting state */
.ih[data-phase="2"] .ih-isl-wa   { transform: rotate(-2deg); }
.ih[data-phase="2"] .ih-isl-mail { transform: rotate(1.5deg); }
.ih[data-phase="2"] .ih-isl-tel  { transform: translateX(-50%) rotate(-1deg); }
.ih-isl-icon { font-size: 22px; flex-shrink: 0; }
.ih-isl-name { font-size: 13px; font-weight: 700; color: #e8e4de; }
.ih-isl-sub  { font-size: 11px; color: rgba(255,255,255,.38); margin-top: 2px; }
.ih-isl-alert {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-left: 4px;
  background: #c0392b; color: #fff; font-size: 12px; font-weight: 900;
  display: grid; place-items: center; animation: ih-badge-pulse 1.6s infinite;
}
.ih-lost-label {
  position: absolute; bottom: 44px; left: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 100px;
  background: rgba(192,57,43,.18); border: 1px solid rgba(192,57,43,.3);
  font-size: 12px; font-weight: 700; color: #e8908a; opacity: 0;
}
.ih[data-phase="2"] .ih-lost-label { animation: ih-row-in .5s .54s both; }
.ih-pulse { width: 8px; height: 8px; border-radius: 50%; background: #c0392b; animation: ih-badge-pulse 1.4s infinite; }

/* ─── PHASES 3–5: het echte LeadGrip-platform ─── */
.ih-app {
  width: 100%; max-width: 600px; margin-inline: auto;
  border-radius: 16px; overflow: hidden;
  background: #f9f5ef; border: 1px solid rgba(0,0,0,.4);
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
  opacity: 0; transform: translateY(26px) scale(.97);
}
.ih[data-phase="3"] .ih-s3 .ih-app,
.ih[data-phase="4"] .ih-s4 .ih-app,
.ih[data-phase="5"] .ih-s5 .ih-app {
  animation: ih-app-in .7s .08s both cubic-bezier(.22,1,.36,1);
}
@keyframes ih-app-in {
  from { opacity: 0; transform: translateY(26px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.ih-app-body { grid-template-columns: 150px 1fr; min-height: 320px; }
.ih-pane { padding: 20px 22px; }

/* aanvraag/offerte rij-stagger */
.ih-pane .ap-answer,
.ih-pane .ap-q-row { opacity: 0; }
.ih[data-phase="3"] .ihr1, .ih[data-phase="4"] .ihq1 { animation: ih-row-in .5s .30s both cubic-bezier(.22,1,.36,1); }
.ih[data-phase="3"] .ihr2, .ih[data-phase="4"] .ihq2 { animation: ih-row-in .5s .42s both cubic-bezier(.22,1,.36,1); }
.ih[data-phase="3"] .ihr3, .ih[data-phase="4"] .ihq3 { animation: ih-row-in .5s .54s both cubic-bezier(.22,1,.36,1); }
.ih[data-phase="3"] .ihr4, .ih[data-phase="4"] .ihq4 { animation: ih-row-in .5s .66s both cubic-bezier(.22,1,.36,1); }
.ih[data-phase="3"] .ihr5 { animation: ih-row-in .5s .78s both cubic-bezier(.22,1,.36,1); }
/* phase 5 dashboard rijen altijd zichtbaar */
.ih-s5 .ap-answer, .ih-s5 .ap-q-row { opacity: 1; }

/* ─── Phase 5: gewonnen-blok ─── */
.ih-won-cards {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; margin-bottom: 14px;
}
.ih-won-hero {
  background: linear-gradient(160deg, #eef6e8, #e0eed8);
  border: 1px solid rgba(61,97,44,.18); border-radius: 12px; padding: 16px;
}
.ih-won-badge {
  display: inline-flex; background: var(--groen); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 100px;
  transform: scale(0);
}
.ih[data-phase="5"] .ih-won-badge { animation: ih-badge-pop .5s .5s both cubic-bezier(.22,1,.36,1); }
@keyframes ih-badge-pop { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.ih-won-label { font-size: 12px; color: #4f4c47; margin-top: 10px; }
.ih-won-amount {
  font-family: var(--font-display); font-weight: 800; font-size: 30px;
  letter-spacing: -.03em; color: var(--groen); line-height: 1.1; margin-top: 2px;
}
.ih-won-toast {
  display: flex; align-items: center; gap: 9px; margin-top: 14px;
  padding: 10px 13px; border-radius: 10px;
  background: #eef6e8; border: 1px solid rgba(61,97,44,.18);
  font-size: 12.5px; font-weight: 700; color: var(--groen); opacity: 0;
}
.ih[data-phase="5"] .ih-won-toast { animation: ih-row-in .55s 1s both cubic-bezier(.22,1,.36,1); }
.ih-toast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--groen); flex-shrink: 0; }

/* app-stijl muted pills binnen het venster */
.ih-pane .pill { font-size: 10px; padding: 3px 9px; }
.ih-pane .pill-new     { background: #fbf2dd; color: #c47d2a; }
.ih-pane .pill-offerte { background: #f3edf3; color: #8a6b8e; }
.ih-pane .pill-won     { background: #e6f1e0; color: #3d5949; }

/* ─── Phase 5: CTA's (op donkere stage) ─── */
.ih-ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.ih-btn-primary {
  background: var(--oker); color: #fff; border: 1px solid var(--oker);
}
.ih-btn-primary:hover { background: var(--oker-deep); border-color: var(--oker-deep); }
.ih-btn-ghost {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28);
}
.ih-btn-ghost:hover { border-color: rgba(255,255,255,.55); }
.ih-trust { margin-top: 14px; font-size: 12.5px; color: rgba(255,255,255,.4); }

/* ─── Progress rail ─── */
.ih-rail {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.ih-rail-dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,.2); transition: all 280ms cubic-bezier(.22,1,.36,1);
}
.ih[data-phase="1"] .ih-rail-dot:nth-child(1),
.ih[data-phase="2"] .ih-rail-dot:nth-child(2),
.ih[data-phase="3"] .ih-rail-dot:nth-child(3),
.ih[data-phase="4"] .ih-rail-dot:nth-child(4),
.ih[data-phase="5"] .ih-rail-dot:nth-child(5) { background: var(--oker); width: 24px; border-radius: 100px; }

/* ─── Scroll cue ─── */
.ih-scroll-cue {
  position: absolute; bottom: 32px; right: clamp(24px, 5vw, 56px);
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.28); font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  transition: opacity .4s ease;
}
.ih-scroll-cue.hide { opacity: 0; pointer-events: none; }

/* ─── Responsive ─── */
@media (max-width: 860px) {
  .ih-layout {
    grid-template-columns: 1fr; align-content: center;
    padding: 80px clamp(20px, 5vw, 32px) 64px; gap: 22px;
  }
  .ih-layout .ih-copy { text-align: center; }
  .ih-layout .ih-p { max-width: 100%; }
  .ih-layout .ih-ctas { justify-content: center; }
  .ih-h { font-size: clamp(2rem, 7vw, 2.8rem); }
  .ih-inbox { max-width: 100%; }
  .ih-islands-wrap { min-height: 240px; }
  .ih-island { padding: 10px 12px; }
  .ih-isl-icon { font-size: 18px; }
  .ih-app { max-width: 100%; }
  .ih-won-cards { grid-template-columns: 1fr; }
  .ih-scroll-cue { display: none; }
  .ih-rail { bottom: 14px; }
}
@media (max-width: 520px) {
  .ih-app-body { grid-template-columns: 1fr; }
  .ih-app-body .app-side { display: none; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .ih-stage { transition: none; }
  .ih-s { transition: none; }
  .ih-row, .ih-island, .ih-inbox-badge, .ih-isl-alert, .ih-lost-label, .ih-pulse,
  .ih-app, .ih-pane .ap-answer, .ih-pane .ap-q-row, .ih-won-badge, .ih-won-toast {
    animation: none !important; opacity: 1 !important;
    transform: none !important; filter: none !important;
  }
  .ih-isl-wa   { transform: rotate(-2deg); }
  .ih-isl-mail { transform: rotate(1.5deg); }
  .ih-isl-tel  { transform: translateX(-50%) rotate(-1deg); }
}

/* =====================================================================
   STORY v2 — sticky scroll-driven, gecentreerd & breed
   ===================================================================== */
.s2 { position: relative; }
.s2-spacer { height: 620vh; }            /* 7 stappen drijven de scroll */

/* gepind podium, achtergrond morpht mee per stap */
.s2-pin {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: background 0.8s ease;
  padding: 80px clamp(16px,4vw,40px) 64px;
}
.s2[data-step="1"] .s2-pin, .s2[data-step="2"] .s2-pin, .s2[data-step="3"] .s2-pin { background: #0e0c09; }
.s2[data-step="4"] .s2-pin { background: #14100a; }
.s2[data-step="5"] .s2-pin, .s2[data-step="6"] .s2-pin { background: #0b0e12; }
.s2[data-step="7"] .s2-pin { background: #0a120c; }

/* geen vaste sectie-kop — elke stap draagt z'n eigen kop (zoals Story) */
.s2-head { display: none; }

/* gecentreerde, brede kaart-stage — stappen gestapeld, crossfade */
.s2-steps {
  position: relative; width: 100%; max-width: 820px;
  flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center;
}
.s2-step {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(26px) scale(.98);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .68s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.s2[data-step="1"] .s2-step[data-step="1"],
.s2[data-step="2"] .s2-step[data-step="2"],
.s2[data-step="3"] .s2-step[data-step="3"],
.s2[data-step="4"] .s2-step[data-step="4"],
.s2[data-step="5"] .s2-step[data-step="5"],
.s2[data-step="6"] .s2-step[data-step="6"],
.s2[data-step="7"] .s2-step[data-step="7"] { opacity: 1; transform: none; pointer-events: auto; }
/* reeds gepasseerde stappen schuiven omhoog weg */
.s2[data-step="2"] .s2-step[data-step="1"],
.s2[data-step="3"] .s2-step[data-step="1"], .s2[data-step="3"] .s2-step[data-step="2"],
.s2[data-step="4"] .s2-step[data-step="1"], .s2[data-step="4"] .s2-step[data-step="2"], .s2[data-step="4"] .s2-step[data-step="3"],
.s2[data-step="5"] .s2-step[data-step="1"], .s2[data-step="5"] .s2-step[data-step="2"], .s2[data-step="5"] .s2-step[data-step="3"], .s2[data-step="5"] .s2-step[data-step="4"],
.s2[data-step="6"] .s2-step[data-step="1"], .s2[data-step="6"] .s2-step[data-step="2"], .s2[data-step="6"] .s2-step[data-step="3"], .s2[data-step="6"] .s2-step[data-step="4"], .s2[data-step="6"] .s2-step[data-step="5"],
.s2[data-step="7"] .s2-step[data-step="1"], .s2[data-step="7"] .s2-step[data-step="2"], .s2[data-step="7"] .s2-step[data-step="3"], .s2[data-step="7"] .s2-step[data-step="4"], .s2[data-step="7"] .s2-step[data-step="5"], .s2[data-step="7"] .s2-step[data-step="6"] {
  opacity: 0; transform: translateY(-26px) scale(.98);
}

/* de brede gecentreerde kaart */
/* géén kaart-chrome — grote kop + vrij-zwevende visual op donkere bg (zoals Story) */
.s2-card {
  width: 100%; max-width: 860px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: none; border: 0; box-shadow: none; padding: 0;
}
.s2-card-win { background: none; }

.s2-eyebrow {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: #e0846f;
}
.s2-eb-oker  { color: var(--oker); }
.s2-eb-groen { color: #7fc26a; }
.s2-h {
  font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem); letter-spacing: -.035em;
  line-height: 1.02; margin: 12px 0 0;
}
.s2-cap {
  order: 2; margin: 14px auto 0; max-width: 480px;
  font-size: clamp(1rem, 1.7vw, 1.12rem); line-height: 1.55;
  color: rgba(255,255,255,.52);
}

/* gedeelde stage — transparant, visual zweeft vrij */
.s2-stage {
  order: 3;
  width: 100%; margin-top: 34px; min-height: clamp(280px, 40vh, 400px);
  position: relative;
  display: grid; place-items: center;
}
.s2-stage-dark, .s2-stage-light, .s2-stage-win, .s2-stage-app { background: none; padding: 0; }

/* ── Slide 1: notif-stapel ── */
.s2-phone {
  width: 168px; background: #1b1915; border: 2px solid #2c2925;
  border-radius: 22px; padding: 10px; box-shadow: 0 24px 50px -16px rgba(0,0,0,.6);
}
.s2-phone-bar {
  display: flex; align-items: center; gap: 7px; padding: 4px 6px 10px;
  font-size: 12px; font-weight: 700; color: #efe9e0;
}
.s2-pb-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--groen); }
.s2-pb-badge { margin-left: auto; background: var(--rood); color: #fff; font-size: 10px; font-weight: 700; padding: 1px 7px; border-radius: 100px; }
.s2-nstack { display: flex; flex-direction: column; gap: 7px; }
.s2-notif {
  display: flex; align-items: center; gap: 8px; padding: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px; position: relative;
}
.s2-notif.n1 { transform: rotate(-2.5deg); } .s2-notif.n2 { transform: rotate(1.5deg); }
.s2-notif.n3 { transform: rotate(-1.5deg); } .s2-notif.n4 { transform: rotate(2deg); }
.s2-nav { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; }
.s2-nlines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.s2-nlines i { height: 5px; border-radius: 3px; background: rgba(255,255,255,.18); display: block; }
.s2-nbadge {
  position: absolute; top: -5px; right: -5px; width: 16px; height: 16px;
  background: var(--rood); color: #fff; font-size: 9px; font-weight: 700;
  border-radius: 50%; display: grid; place-items: center; border: 1.5px solid #1b1915;
}

/* ── Slide 2: verspreide kanalen ── */
.s2-scatter { position: relative; width: 100%; height: 100%; min-height: 220px; }
.s2-scatter-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.s2-chan {
  position: absolute; padding: 9px 13px; border-radius: 12px; font-size: 12.5px; font-weight: 700;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.85);
  box-shadow: 0 10px 26px -12px rgba(0,0,0,.5); white-space: nowrap;
}
.s2-chan.c1 { top: 14%; left: 6%;  transform: rotate(-4deg); }
.s2-chan.c2 { top: 30%; right: 6%; transform: rotate(4deg); }
.s2-chan.c3 { bottom: 18%; left: 12%; transform: rotate(3deg); }
.s2-chan.c4 { bottom: 12%; right: 14%; transform: rotate(-3deg); }

/* ── Slide 3: lead kwijt ── */
.s2-lostcard {
  width: 60%; max-width: 180px; padding: 16px; border-radius: 12px;
  border: 1.5px dashed rgba(255,255,255,.3); background: rgba(255,255,255,.03);
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
  opacity: .6; filter: blur(.3px); transform: rotate(-4deg);
}
.s2-lc-q { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: rgba(255,255,255,.4); }
.s2-lc-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,.16); }
.s2-lost-arrow { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); font-size: 26px; color: var(--rood); }
.s2-lost-tag {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 7px 13px; border-radius: 100px; font-size: 12px; font-weight: 700;
  background: rgba(192,57,43,.2); border: 1px solid rgba(192,57,43,.3); color: #e8908a;
}
.s2-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--rood); animation: s2pulse 1.4s infinite; }
@keyframes s2pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.5); } 70% { box-shadow: 0 0 0 7px rgba(192,57,43,0); } }

/* ── Slide 4: unified inbox ── */
.s2-funnel-hint { position: absolute; top: 16px; font-family: var(--font-mono); font-size: 11px; color: var(--oker); letter-spacing: .04em; }
.s2-inbox { width: 84%; max-width: 250px; margin-top: 26px; display: flex; flex-direction: column; gap: 8px; }
.s2-irow {
  display: flex; align-items: center; gap: 9px; padding: 10px 11px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
}
.s2-irow-hot { background: rgba(184,115,51,.16); border-color: rgba(184,115,51,.4); box-shadow: 0 0 26px rgba(184,115,51,.18); }
.s2-idot { width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0; }
.s2-ilines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.s2-ilines i { height: 5px; border-radius: 3px; background: rgba(255,255,255,.2); display: block; }
.s2-ipill { font-size: 9px; font-weight: 700; color: var(--oker-tn); background: var(--oker); padding: 2px 8px; border-radius: 100px; }

/* ── Slide 5: intakeformulier ── */
.s2-form {
  width: 88%; max-width: 270px; background: var(--surface);
  border: 1px solid var(--lijn); border-radius: 14px; padding: 16px; box-shadow: var(--shadow-soft);
}
.s2-form-bar { height: 5px; border-radius: 3px; background: var(--lijn); overflow: hidden; margin-bottom: 14px; }
.s2-form-bar span { display: block; width: 60%; height: 100%; background: var(--oker); border-radius: 3px; }
.s2-form-q { font-size: 13.5px; font-weight: 700; color: var(--lood); margin-bottom: 10px; }
.s2-form-opts { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.s2-opt { font-size: 11.5px; font-weight: 600; padding: 6px 11px; border-radius: 100px; border: 1px solid var(--lijn); color: var(--kalk); }
.s2-opt.on { background: var(--oker-tn); border-color: var(--oker); color: var(--oker-deep); }
.s2-form-up {
  font-size: 11.5px; font-weight: 600; color: var(--oker-deep);
  border: 1.5px dashed var(--oker-lt); border-radius: 9px; padding: 10px; text-align: center; margin-bottom: 12px;
}
.s2-form-price { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--oker-tn); border: 1px solid var(--oker-lt); border-radius: 10px; }
.s2-form-price span { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: var(--oker-deep); }
.s2-form-price b { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--oker-deep); }

/* ── Slide 6: kanban ── */
.s2-kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; width: 100%; max-width: 300px; }
.s2-kcol { background: var(--surface); border: 1px solid var(--lijn); border-radius: 10px; padding: 8px; min-height: 150px; display: flex; flex-direction: column; gap: 7px; }
.s2-kcol-won { background: var(--groen-bg); border-color: rgba(61,97,44,.25); }
.s2-khead { font-family: var(--font-mono); font-size: 8.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--kalk-lt); }
.s2-kcol-won .s2-khead { color: var(--groen); }
.s2-kcard { height: 26px; border-radius: 7px; background: var(--beton); border: 1px solid var(--lijn); box-shadow: var(--shadow-soft); }
.s2-kcard-move { border-color: var(--oker); box-shadow: 0 0 0 2px var(--oker-lt); }
.s2-kcard-won { background: #fff; border-color: var(--groen); box-shadow: 0 0 0 2px var(--groen-bg); }

/* ── Slide 7: gewonnen ── */
.s2-wincard {
  width: 86%; max-width: 250px; text-align: center; background: var(--surface);
  border: 1px solid rgba(61,97,44,.2); border-radius: 16px; padding: 22px 20px;
  box-shadow: var(--shadow-lift); display: grid; place-items: center; gap: 4px;
}
.s2-win-check { width: 40px; height: 40px; border-radius: 50%; background: var(--groen); color: #fff; display: grid; place-items: center; font-size: 20px; margin-bottom: 4px; }
.s2-win-badge { font-size: 11px; font-weight: 700; color: var(--groen); background: var(--groen-bg); padding: 3px 11px; border-radius: 100px; }
.s2-win-amount { font-family: var(--font-display); font-weight: 800; font-size: 34px; letter-spacing: -.03em; color: var(--groen); line-height: 1.1; margin-top: 4px; }
.s2-win-name { font-size: 12px; color: var(--kalk); }
.s2-win-toast { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; padding: 8px 13px; border-radius: 10px; background: var(--beton); border: 1px solid var(--lijn); font-size: 11.5px; font-weight: 700; color: var(--groen); }
.s2-wt-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--groen); }

/* ── Progress rail ── */
.s2-rail { display: flex; gap: 9px; justify-content: center; margin-top: 26px; flex-shrink: 0; }
.s2-dot { width: 8px; height: 8px; border-radius: 50%; padding: 0; background: rgba(255,255,255,.22); transition: all .28s cubic-bezier(.22,1,.36,1); }
.s2[data-step="1"] .s2-dot:nth-child(1),
.s2[data-step="2"] .s2-dot:nth-child(2),
.s2[data-step="3"] .s2-dot:nth-child(3),
.s2[data-step="4"] .s2-dot:nth-child(4),
.s2[data-step="5"] .s2-dot:nth-child(5),
.s2[data-step="6"] .s2-dot:nth-child(6),
.s2[data-step="7"] .s2-dot:nth-child(7) { width: 26px; border-radius: 100px; background: var(--oker); }

/* ── Scroll cue ── */
.s2-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: rgba(255,255,255,.3); font-family: var(--font-mono);
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: opacity .4s ease;
}
.s2-cue.hide { opacity: 0; pointer-events: none; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .s2-pin { padding: 72px 16px 56px; }
  .s2-head { margin-bottom: 20px; }
  .s2-card { max-width: 100%; padding: 24px 20px 22px; border-radius: 20px; }
  .s2-stage { min-height: 240px; padding: 18px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .s2-pin, .s2-step { transition: none; }
  .s2-pulse { animation: none; }
}

/* =====================================================================
   STORY v2 — échte LeadGrip-schermen (stone + orange palet)
   ===================================================================== */
.s2-stage-app { background: transparent; padding: 0; min-height: 0; }

.lg-frame {
  --lg-bg:#f5f3ee; --lg-surface:#faf9f6; --lg-ink:#1c1917; --lg-mut:#57534e;
  --lg-faint:#a8a29e; --lg-line:#e7e5e4; --lg-line2:#d6d3d1; --lg-org:#ea580c;
  --lg-org2:#c2410c; --lg-org-bg:#fff7ed; --lg-peach:#f0dcb0; --lg-grn:#15803d;
  --lg-grn2:#166534; --lg-grn-bg:#dcfce7;
  width: 100%; max-width: 540px; margin-inline: auto; text-align: left;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--lg-line2);
  box-shadow: 0 34px 80px -30px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.05);
  font-family: -apple-system, 'Segoe UI', Roboto, system-ui, sans-serif;
  background: var(--lg-surface);
}
.lg-screen { background: var(--lg-bg); color: var(--lg-ink); padding: 18px; font-size: 12.5px; line-height: 1.45; }
.lg-eyebrow { font-size: 10.5px; font-weight: 600; letter-spacing: .04em; color: var(--lg-mut); text-transform: uppercase; }
.lg-card { background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: 11px; padding: 13px 14px; }
.lg-card-h { font-size: 12px; font-weight: 700; color: var(--lg-ink); margin-bottom: 9px; }
.lg-row { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; border-top: 1px solid var(--lg-line); }
.lg-row:first-of-type { border-top: 0; }
.lg-k { color: var(--lg-mut); flex-shrink: 0; }
.lg-v { color: var(--lg-ink); font-weight: 600; text-align: right; }
.lg-thumbs { display: inline-flex; gap: 4px; }
.lg-thumbs i { width: 22px; height: 18px; border-radius: 4px; background: var(--lg-line2); display: block; }
.lg-sep { color: var(--lg-faint); margin: 0 5px; }

/* badges */
.lg-badge { font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 100px; }
.lg-badge-new { background: var(--lg-org-bg); color: var(--lg-org2); }
.lg-badge-off { background: #f5f3ee; color: var(--lg-mut); border: 1px solid var(--lg-line2); }
.lg-badge-won { background: var(--lg-grn-bg); color: var(--lg-grn2); }

/* ── intake-formulier ── */
.lg-pub { display: flex; flex-direction: column; align-items: stretch; padding: 26px 22px; }
.lg-pub-prog { height: 5px; border-radius: 3px; background: var(--lg-line); overflow: hidden; margin-bottom: 12px; }
.lg-pub-prog span { display: block; height: 100%; background: var(--lg-org); border-radius: 3px; }
.lg-pub-step { font-size: 10.5px; font-weight: 600; color: var(--lg-faint); margin-bottom: 8px; }
.lg-pub-q { font-size: 16px; font-weight: 800; letter-spacing: -.01em; color: var(--lg-ink); margin-bottom: 14px; }
.lg-pub-opts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.lg-pub-opt { padding: 11px 13px; border-radius: 9px; border: 1px solid var(--lg-line2); background: var(--lg-surface); font-weight: 600; color: var(--lg-ink); }
.lg-pub-opt.sel { border-color: var(--lg-org); background: var(--lg-org-bg); color: var(--lg-org2); box-shadow: 0 0 0 1px var(--lg-org); }
.lg-pub-btn { align-self: flex-start; background: var(--lg-org); color: #fff; font-weight: 700; font-size: 13px; padding: 10px 18px; border-radius: 9px; }
.lg-pub-note { margin-top: 12px; font-size: 10.5px; color: var(--lg-faint); text-align: center; }

/* ── aanvraag-detail ── */
.lg-d-head { margin-bottom: 12px; }
.lg-d-name { font-size: 17px; font-weight: 800; letter-spacing: -.02em; margin: 3px 0; }
.lg-d-meta { display: flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--lg-mut); }
.lg-d-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 10px; }
.lg-card-tint { background: var(--lg-org-bg); border-color: #f0d9bf; }
.lg-bd { display: flex; justify-content: space-between; gap: 10px; padding: 4px 0; font-size: 11.5px; }
.lg-bd span { color: var(--lg-mut); } .lg-bd b { color: var(--lg-ink); }
.lg-bd-total { border-top: 1px solid #ecd9bd; margin-top: 4px; padding-top: 7px; }
.lg-bd-total span { color: var(--lg-ink); font-weight: 700; }
.lg-bd-total b { color: var(--lg-org2); font-size: 14px; }

/* ── offerte ── */
.lg-q-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.lg-status-sel { font-size: 11px; font-weight: 700; color: var(--lg-mut); background: var(--lg-surface); border: 1px solid var(--lg-line2); border-radius: 8px; padding: 5px 10px; }
.lg-line { display: grid; grid-template-columns: 28px 1fr 48px 56px; gap: 8px; padding: 7px 0; border-top: 1px solid var(--lg-line); align-items: center; }
.lg-line span:nth-child(3), .lg-line span:nth-child(4) { text-align: right; }
.lg-line-head { border-top: 0; font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--lg-faint); }
.lg-line span:nth-child(2) { color: var(--lg-ink); }
.lg-line span { color: var(--lg-mut); }
.lg-q-total { display: flex; justify-content: space-between; align-items: center; margin-top: 9px; padding-top: 10px; border-top: 1.5px solid var(--lg-line2); }
.lg-q-total span { font-weight: 700; } .lg-q-total b { color: var(--lg-org2); font-size: 16px; }
.lg-q-btn { margin-top: 12px; }

/* ── pijplijn (leads-lijst) ── */
.lg-leads .lg-eyebrow { margin-bottom: 10px; display: block; }
.lg-tabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.lg-tab { font-size: 11px; font-weight: 600; color: var(--lg-mut); background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: 100px; padding: 5px 10px; display: inline-flex; align-items: center; gap: 5px; }
.lg-tab i { font-style: normal; font-size: 10px; font-weight: 700; background: var(--lg-line); color: var(--lg-mut); border-radius: 100px; padding: 0 5px; }
.lg-tab.active { background: var(--lg-ink); color: #fff; border-color: var(--lg-ink); }
.lg-tab.active i { background: rgba(255,255,255,.2); color: #fff; }
.lg-lead { display: grid; grid-template-columns: 1fr auto; gap: 4px 10px; align-items: center; background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: 10px; padding: 11px 13px; margin-bottom: 7px; }
.lg-lead-name { font-weight: 700; color: var(--lg-ink); font-size: 13px; }
.lg-lead-meta { grid-column: 1; font-size: 11px; color: var(--lg-mut); }
.lg-lead .lg-badge { justify-self: end; }
.lg-lead-price { grid-column: 2; justify-self: end; font-weight: 700; color: var(--lg-ink); font-size: 12.5px; }

/* ── dashboard ── */
.lg-dash-head { margin-bottom: 12px; }
.lg-dash-title { font-size: 19px; font-weight: 800; letter-spacing: -.02em; margin: 3px 0; }
.lg-dash-title em { font-style: normal; background: linear-gradient(transparent 62%, var(--lg-peach) 62%); padding: 0 2px; }
.lg-dash-sub { font-size: 11.5px; color: var(--lg-mut); }
.lg-dash-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 10px; }
.lg-hero { background: linear-gradient(160deg, #fff3e2, var(--lg-org-bg)); border: 1px solid #f0d9bf; border-radius: 12px; padding: 14px; }
.lg-hero-eb { font-size: 10.5px; font-weight: 600; color: var(--lg-org2); }
.lg-hero-val { font-size: 34px; font-weight: 800; letter-spacing: -.03em; color: var(--lg-ink); line-height: 1.05; margin: 2px 0 6px; }
.lg-hero-cta { font-size: 11px; font-weight: 700; color: var(--lg-org2); }
.lg-kpis { display: flex; flex-direction: column; gap: 8px; }
.lg-kpi { background: var(--lg-surface); border: 1px solid var(--lg-line); border-radius: 10px; padding: 11px 13px; }
.lg-kpi-l { display: block; font-size: 10.5px; color: var(--lg-mut); margin-bottom: 3px; }
.lg-kpi-v { font-size: 16px; font-weight: 800; letter-spacing: -.02em; color: var(--lg-ink); }
.lg-kpi-v i { font-style: normal; font-size: 10.5px; font-weight: 600; color: var(--lg-faint); }
.lg-kpi-win .lg-kpi-v { color: var(--lg-grn2); }

/* ── responsive (lg-schermen) ── */
@media (max-width: 640px) {
  .lg-frame { max-width: 100%; }
  .lg-d-grid, .lg-dash-grid { grid-template-columns: 1fr; }
  .lg-screen { padding: 14px; }
}

/* ════════════════════════════════════════════════════════════════
   Hero — Variatie FLOW · 3D-coverflow (probleem → oplossing)
   Donkere stage à la Squarespace-coverflow. Midden plat, buren gekanteld.
   ════════════════════════════════════════════════════════════════ */
.hero-flow {
  position: relative;
  /* cinematic, gelaagde lichtopbouw — geen hoek-glows, nergens leeg zwart */
  background:
    /* L3 · warme lichtwolk achter de headline (brede ellips, geen cirkel) */
    radial-gradient(72% 40% at 50% 22%, rgba(216,142,82,.14), rgba(216,142,82,0) 72%),
    /* L4 · mistlaag — grote zachte radials, wisselende straal, vult de ruimte */
    radial-gradient(85% 70% at 28% 58%, rgba(72,86,108,.12), rgba(72,86,108,0) 70%),
    radial-gradient(80% 62% at 74% 40%, rgba(150,108,66,.10), rgba(150,108,66,0) 72%),
    radial-gradient(120% 90% at 50% 78%, rgba(120,82,48,.10), rgba(120,82,48,0) 68%),
    /* L6 · sterke vignette langs de randen */
    radial-gradient(125% 105% at 50% 44%, rgba(6,9,14,0) 46%, rgba(2,3,6,.66) 100%),
    /* L1 · diepe blauw-zwarte basis */
    linear-gradient(176deg, #0B1019 0%, #080B13 46%, #05070C 100%);
  color: var(--beton);
  padding-top: clamp(116px, 15vh, 176px);
  padding-bottom: clamp(64px, 8vw, 104px);
  overflow: hidden;
}
/* L5 · zeer subtiele grain/noise over de hele hero (geen patroon) */
.hero-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
  opacity: .35;
}
/* warme amber-VERLICHTING achter de actieve slide — voelbaar als licht, geen zichtbare disc */
.hero-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 66%;
  width: min(1500px, 120%);
  height: 920px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side,
    rgba(224, 146, 80, .30),
    rgba(206, 124, 58, .15) 36%,
    rgba(184, 115, 51, .05) 62%,
    rgba(184, 115, 51, 0) 82%);
  pointer-events: none;
  z-index: 0;
  filter: blur(72px);
  animation: cfGlowPulse 11s ease-in-out infinite;
}
@keyframes cfGlowPulse {
  0%,100% { transform: translate(-50%, -50%) scale(1);    opacity: 1; }
  50%     { transform: translate(-50%, -50%) scale(1.07); opacity: .82; }
}
@media (prefers-reduced-motion: reduce) { .hero-flow::before { animation: none; } }
.hero-flow > * { position: relative; z-index: 1; }
.hero-flow .hflow-fx { z-index: 0; }

/* ════ Hero-sfeerlaag · glow-blobs + flow-nodes + lichtdeeltjes ════ */
.hflow-fx { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .fx-blob { animation: none !important; }
}
/* L4 · mistlaag — grote zachte blur-clouds, wisselende straal, NIET in de hoeken */
.fx-blob { position: absolute; border-radius: 50%; will-change: transform; }
.fx-blob-a { width: 760px; height: 620px; left: 18%; top: 8%; opacity: .42;
  background: radial-gradient(closest-side, rgba(214,138,78,.22), rgba(214,138,78,0) 72%);
  filter: blur(90px); animation: fxDriftA 28s ease-in-out infinite; }
.fx-blob-b { width: 820px; height: 700px; right: 14%; bottom: 6%; opacity: .4;
  background: radial-gradient(closest-side, rgba(150,104,64,.20), rgba(150,104,64,0) 72%);
  filter: blur(120px); animation: fxDriftB 34s ease-in-out infinite; }
.fx-blob-c { width: 640px; height: 560px; left: 40%; top: 34%; opacity: .5;
  background: radial-gradient(closest-side, rgba(86,100,124,.16), rgba(86,100,124,0) 72%);
  filter: blur(140px); animation: fxDriftC 40s ease-in-out infinite; }
@keyframes fxDriftA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(34px,26px); } }
@keyframes fxDriftB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px,-22px); } }
@keyframes fxDriftC { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(18px,-20px) scale(1.05); } }

/* decoratie wijkt op smalle schermen (niet dominant) */
@media (max-width: 720px) { .fx-blob { opacity: .4; } }

.hero-flow .grain::after { opacity: .4; }
/* geen glow op de oranje titel */
.hero-flow .ink-hi { text-shadow: none; }

.hflow-head { max-width: 760px; margin: 0 auto; text-align: center; }
.hflow-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 3.9rem);
  line-height: 1.06;
  letter-spacing: -.01em;
  margin: 12px 0 0;
  color: var(--beton);
}
.hero-flow .ink-hi { color: var(--oker); -webkit-text-fill-color: var(--oker); }
.hflow-sub {
  margin: 16px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 241, 236, .72);
}

/* ── Coverflow ── */
.cf { margin: clamp(30px, 4.5vw, 56px) auto 0; max-width: 1000px; }
.cf-stage {
  position: relative;
  height: clamp(256px, 42vw, 408px);
  perspective: 2400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* warme ambient-glow + zachte reflectie-pool onder de actieve slide */
.cf-stage::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6%;
  width: min(62%, 620px); height: 120px;
  transform: translateX(-50%);
  background: radial-gradient(60% 100% at 50% 0%, rgba(214,132,64,.28), rgba(214,132,64,.05) 55%, rgba(214,132,64,0) 78%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}
.cf-track { position: absolute; inset: 0; list-style: none; margin: 0; padding: 0; transform-style: preserve-3d; z-index: 1; }

.cf-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(264px, 50vw, 540px);
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(244, 241, 236, .1);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .85);
  transform-style: preserve-3d;
  /* trage vloeiende spring · Apple/Linear-gevoel */
  transition: transform .92s cubic-bezier(0.22, 1, 0.36, 1),
              opacity   .7s  cubic-bezier(0.22, 1, 0.36, 1),
              filter    .7s  cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow .7s ease;
  cursor: pointer;
  will-change: transform, opacity, filter;
  transform: translate(-50%, -50%) scale(.55);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.cf-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* echte 3D-podium · translateZ-diepte · actieve kaart zweeft vóór de hero */
.cf-card[data-pos="0"]  { transform: translate(-50%, -50%) translateZ(60px) scale(1.05);                                  opacity: 1;   z-index: 30; filter: contrast(1.04) saturate(1.04); cursor: default; pointer-events: auto;
  box-shadow: 0 90px 170px -38px rgba(0,0,0,.98), 0 50px 110px -34px rgba(214,132,64,.5), 0 0 0 1px rgba(244,241,236,.16), inset 0 1px 0 rgba(255,255,255,.1);
  animation: cfFloat 6.5s ease-in-out .9s infinite; }
.cf-card[data-pos="-1"] { transform: translate(-50%, -50%) translateX(-56%) translateZ(-300px) rotateY(25deg) scale(.76);   opacity: .44; z-index: 20; filter: brightness(.46) blur(2.5px);  pointer-events: auto; }
.cf-card[data-pos="1"]  { transform: translate(-50%, -50%) translateX(56%)  translateZ(-300px) rotateY(-25deg) scale(.76);  opacity: .44; z-index: 20; filter: brightness(.46) blur(2.5px);  pointer-events: auto; }
.cf-card[data-pos="-2"] { transform: translate(-50%, -50%) translateX(-96%) translateZ(-560px) rotateY(32deg) scale(.6);    opacity: .13; z-index: 10; filter: brightness(.36) blur(5px); }
.cf-card[data-pos="2"]  { transform: translate(-50%, -50%) translateX(96%)  translateZ(-560px) rotateY(-32deg) scale(.6);   opacity: .13; z-index: 10; filter: brightness(.36) blur(5px); }
/* zachte float op de actieve kaart (start ná de slide-in spring, geen snap) */
@keyframes cfFloat {
  0%,100% { transform: translate(-50%, -50%) translateZ(60px) scale(1.05); }
  50%     { transform: translate(-50%, -50%) translateZ(60px) scale(1.05) translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) { .cf-card[data-pos="0"] { animation: none; } }
/* extra glow op de actieve kaart bij hover */
.cf-card[data-pos="0"]:hover { box-shadow: 0 70px 140px -36px rgba(0,0,0,.96), 0 46px 100px -30px rgba(214,132,64,.6), 0 0 0 1px rgba(214,132,64,.32), inset 0 1px 0 rgba(255,255,255,.11); }

/* screenshot-kaart met browserbalk (compleet binnen) */
.cf-shot { width: 100%; height: 100%; display: flex; flex-direction: column; background: var(--surface); }
.cf-shot .browser-bar { flex: 0 0 auto; }
.cf-shot img { flex: 1 1 auto; height: auto; min-height: 0; }
/* portret-screenshot (mobiel formulier) — niet bijsnijden */
.cf-contain { background: var(--beton-2); }
.cf-contain img { object-fit: contain; }

/* CSS-mock kaarten (chat / link) */
.cf-mock { width: 100%; height: 100%; display: flex; flex-direction: column; background: var(--beton); }
.cf-mbar {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 7px;
  padding: 9px 14px;
  background: var(--surface);
  border-bottom: 1px solid var(--lijn);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--kalk);
}
.cf-mdot { width: 8px; height: 8px; border-radius: 50%; background: var(--groen); }
.cf-mbody { flex: 1 1 auto; padding: 14px 16px; overflow: hidden; }
.cf-mbody-center { justify-content: center; }

.cf-linkbubble { max-width: 92%; }
.cf-linkprev {
  display: block;
  margin: 8px 0 4px;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .08);
}
.cf-linkk { display: block; font-weight: 700; font-size: 12.5px; color: #2c3e22; }
.cf-linku { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--oker-deep); margin-top: 2px; }

/* ── Nav + dots + caption ── */
.cf-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(30, 26, 22, .55);
  border: 1px solid rgba(244, 241, 236, .18);
  color: rgba(244, 241, 236, .9);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 220ms ease, transform 220ms cubic-bezier(0.25, 1, 0.5, 1), border-color 220ms;
}
.cf-nav svg { width: 19px; height: 19px; }
.cf-nav:hover { background: rgba(30, 26, 22, .8); border-color: rgba(244,241,236,.35); transform: translateY(-50%) scale(1.08); }
.cf-nav:active { transform: translateY(-50%) scale(0.95); }
.cf-prev { left: clamp(-4px, 1vw, 20px); }
.cf-next { right: clamp(-4px, 1vw, 20px); }

.cf-meta { margin-top: clamp(22px, 3.2vw, 36px); text-align: center; }
.cf-dots { display: inline-flex; gap: 7px; align-items: center; }
.cf-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: rgba(244, 241, 236, .22);
  border: 0; padding: 0; cursor: pointer;
  transition: background 260ms ease, width 280ms cubic-bezier(0.25, 1, 0.5, 1), transform 200ms ease;
}
.cf-dot:hover { background: rgba(244, 241, 236, .45); transform: scale(1.3); }
.cf-dot.active { background: var(--oker); width: 22px; transform: none; }
/* Numbered step indicator (replaces dots in flow2) */
.cf-steps { display: inline-flex; align-items: center; }
.cf-steps .cf-step {
  width: 28px; height: 28px; min-width: 28px; flex: 0 0 28px;
  border-radius: 50%;
  display: grid; place-items: center; gap: 0;
  border: 1.5px solid rgba(244,241,236,.18);
  background: rgba(244,241,236,.05);
  color: rgba(244,241,236,.28);
  cursor: pointer; padding: 0; margin: 0;
  font-family: inherit; letter-spacing: 0;
  transition: all .32s cubic-bezier(.25,1,.5,1);
}
.cf-steps .cf-step::before { display: none; }
.cf-steps .cf-step-n { font-size: 11px; font-weight: 700; line-height: 1; }
.cf-steps .cf-step:hover { background: rgba(244,241,236,.1); color: rgba(244,241,236,.55); border-color: rgba(244,241,236,.3); }
.cf-steps .cf-step.active {
  background: var(--oker);
  border-color: var(--oker);
  color: var(--lood);
  box-shadow: 0 0 0 4px rgba(184,115,51,.18), 0 4px 14px -4px rgba(184,115,51,.45);
  transform: scale(1.12);
}
.cf-step-seg {
  display: block; width: 24px; height: 1.5px;
  background: rgba(244,241,236,.1);
  pointer-events: none;
}
.cf-caption {
  margin: 14px auto 0;
  max-width: 480px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(244, 241, 236, .78);
  /* vaste hoogte (2 regels) zodat layout niet verspringt bij slide-wissel */
  min-height: 3.3em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  transition: opacity .3s ease;
}
@media (max-width: 560px) {
  .cf-caption { min-height: 4.85em; } /* op smal scherm wrappen captions tot 3 regels */
}

/* ── Knoppen op donker ── */
.hero-flow .hero-ctas { margin-top: clamp(28px, 4vw, 44px); }
.btn-accent {
  background: var(--oker);
  color: var(--lood);
  box-shadow: 0 10px 30px -12px rgba(184, 115, 51, .7);
}
.btn-accent:hover { transform: scale(1.03); background: #c9853f; }
.btn-ghost-light {
  background: transparent;
  color: var(--beton);
  box-shadow: inset 0 0 0 1.5px rgba(244, 241, 236, .28);
}
.btn-ghost-light:hover { background: rgba(244, 241, 236, .08); box-shadow: inset 0 0 0 1.5px rgba(244, 241, 236, .5); }
.trustline-light { color: rgba(244, 241, 236, .55); }

@media (prefers-reduced-motion: reduce) {
  .cf-card { transition: none; }
}
@media (max-width: 640px) {
  .cf-nav { width: 38px; height: 38px; }
  .cf-card[data-pos="-1"] { transform: translate(-50%, -50%) translateX(-56%) rotateY(24deg) scale(.79); }
  .cf-card[data-pos="1"]  { transform: translate(-50%, -50%) translateX(56%)  rotateY(-24deg) scale(.79); }
}

/* Flow-hero · CTA centreren + reveals direct tonen (above the fold) */
.hero-flow .hero-ctas { justify-content: center; margin-top: clamp(22px, 3vw, 32px); }
.hero-flow .hflow-head .trustline { margin-top: 14px; }
.hero-flow .reveal { opacity: 1; transform: none; }

/* ── Real form recreation · slide 2 ── */
.cf-realform {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: #f6f3ee;
  font-family: -apple-system, 'Segoe UI', system-ui, sans-serif;
}
.rf-topbar {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 13px;
  background: #faf9f6;
  border-bottom: 1px solid #e8e4df;
}
.rf-logo { display: flex; align-items: center; gap: 7px; }
.rf-sq {
  width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0;
  background: #ea580c; color: #fff;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800;
}
.rf-brand { font-size: 11px; font-weight: 700; color: #1c1917; }
.rf-counter { font-size: 10.5px; font-weight: 700; color: #1c1917; font-feature-settings: "tnum"; }
.rf-stage { position: relative; flex: 1; overflow: hidden; }
.rf-step {
  position: absolute; inset: 0;
  padding: 11px 13px 10px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0;
  transition: opacity .42s ease;
  pointer-events: none;
}
.rf-step-active { opacity: 1; pointer-events: auto; }
.rf-eyebrow {
  font-size: 8px; letter-spacing: .16em; text-transform: uppercase;
  color: #ea580c; font-weight: 700;
}
.rf-q {
  font-size: clamp(12.5px, 1.45vw, 16.5px);
  font-weight: 700; line-height: 1.2; color: #1c1917; margin: 0;
}
.rf-opts { display: flex; flex-direction: column; gap: 4px; }
.rf-opts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.rf-opts-grid .rf-opt { justify-content: space-between; font-size: 10px; padding: 7px 8px; gap: 5px; }
.rf-opts-grid .rf-opt .rf-chk { flex-shrink: 0; }
.rf-opts-grid .rf-opt .rf-num { margin-left: auto; flex-shrink: 0; }
.rf-opt {
  display: flex; align-items: center; gap: 7px;
  padding: 6px 9px; border-radius: 8px;
  border: 1.5px solid #e8e4df; background: #faf9f6;
  font-size: 11px; font-weight: 600; color: #57534e;
}
.rf-opt.rf-opt-sel { border-color: #ea580c; background: #fff7ed; color: #1c1917; }
.rf-chk {
  width: 14px; height: 14px; border-radius: 3px; flex-shrink: 0;
  border: 1.5px solid #d6d3d0; background: #faf9f6;
  display: grid; place-items: center;
}
.rf-chk.rf-chk-on { background: #ea580c; border-color: #ea580c; }
.rf-chk svg { width: 9px; height: 9px; }
.rf-opts-r .rf-opt { justify-content: space-between; }
.rf-opt-r { cursor: default; }
.rf-num {
  width: 17px; height: 17px; border-radius: 4px; flex-shrink: 0;
  background: #e8e4df; color: #a8a29e;
  display: grid; place-items: center;
  font-size: 9px; font-weight: 700;
}
.rf-num.rf-num-on { background: #ea580c; color: #fff; }
.rf-numbox {
  display: flex; align-items: baseline; gap: 3px;
  padding: 6px 10px; border-radius: 8px;
  border: 1.5px solid #ea580c; background: #faf9f6;
}
.rf-numval { font-size: 17px; font-weight: 700; color: #1c1917; }
.rf-numunit { font-size: 12px; color: #a8a29e; }
.rf-calc {
  background: #faf9f6; border: 1px solid #e8e4df;
  border-radius: 8px; padding: 7px 9px;
  display: flex; flex-direction: column; gap: 4px; flex-shrink: 0;
}
.rf-calc-lbl { font-size: 7.5px; letter-spacing: .11em; text-transform: uppercase; color: #a8a29e; }
.rf-calc-row { display: flex; align-items: center; gap: 5px; }
.rf-inp {
  padding: 3px 7px; border-radius: 5px;
  border: 1px solid #e8e4df; font-size: 10.5px; font-weight: 600; color: #57534e;
}
.rf-op { color: #a8a29e; font-size: 10px; }
.rf-res { font-size: 11.5px; font-weight: 800; color: #ea580c; }
.rf-foot {
  display: flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 3px;
}
.rf-prog { flex: 1; height: 3px; border-radius: 999px; background: #e8e4df; overflow: hidden; }
.rf-prog i { display: block; height: 100%; background: #ea580c; border-radius: 999px; }
.rf-btn-do {
  font-size: 10.5px; font-weight: 700; padding: 5px 11px;
  border-radius: 7px; background: #e8e4df; color: #a8a29e; flex-shrink: 0;
}
.rf-btn-do.rf-btn-active { background: #ea580c; color: #fff; }
/* Foto upload stap (slide 3) */
.rf-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
  min-height: 0;
}
.rf-photo {
  border-radius: 8px;
  background: #e8e4df center/cover no-repeat;
  min-height: 54px;
}
.rf-photo-add {
  display: grid; place-items: center;
  border: 1.5px dashed #d6d3d0;
  background: #faf9f6;
}
.rf-photo-add svg { width: 20px; height: 20px; }

/* ── Complete aanvraag · slide 4 (echt voorbeeld: Jan de Vries) ── */
.cra-body {
  flex: 1; display: flex; flex-direction: column;
  padding: 10px 13px 11px; gap: 7px;
  background: #faf9f6; overflow: hidden;
  font-family: -apple-system, 'Segoe UI', system-ui, sans-serif;
}
.cra-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 8px;
  padding-bottom: 8px; border-bottom: 1px solid #e8e4df;
}
.cra-name { font-size: 13.5px; font-weight: 700; color: #1c1917; margin: 0 0 2px; }
.cra-meta { font-size: 10px; color: #a8a29e; margin: 0; }
.cra-rows { display: flex; flex-direction: column; gap: 0; }
.cra-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  font-size: 10.5px; padding: 5px 0; border-bottom: 1px solid #f0ede8;
}
.cra-row:last-child { border-bottom: 0; }
.cra-k { color: #a8a29e; font-weight: 500; flex-shrink: 0; }
.cra-v { color: #1c1917; font-weight: 600; text-align: right; }
.cra-photos { display: flex; gap: 4px; align-items: center; }
.cra-photo {
  width: 24px; height: 24px; border-radius: 5px; flex-shrink: 0;
  background: #e8e4df;
}
.cra-p1 { background: url(img/room-2.jpg) center / cover no-repeat; }
.cra-p2 { background: url(img/room-1.jpg) center / cover no-repeat; }
.cra-p3 { background: url(img/room-3.jpg) center / cover no-repeat; }
.cra-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 8px; border-top: 1.5px solid #e8e4df;
}
.cra-richtlbl { font-size: 9.5px; color: #a8a29e; display: block; margin-bottom: 1px; font-weight: 500; }
.cra-prijs { font-size: 18px; font-weight: 800; color: #ea580c; margin: 0; }
.cra-action {
  font-size: 11px; font-weight: 700; color: #ea580c;
  padding: 6px 11px; border-radius: 7px;
  background: #fff7ed; border: 1px solid rgba(234,88,12,.2);
}

/* ── App-shell sidebar (slide 4) ── */
.cf-appbody { display: flex; flex: 1; overflow: hidden; min-height: 0; }
.cf-sb {
  width: 78px; flex-shrink: 0;
  background: #eae6df;
  border-right: 1px solid rgba(0,0,0,.07);
  display: flex; flex-direction: column;
}
.cf-sb-hd {
  padding: 8px 7px 7px;
  display: flex; align-items: center; gap: 4px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  flex-shrink: 0;
}
.cf-sb-sq {
  width: 15px; height: 15px; border-radius: 3px;
  background: #ea580c; color: #fff;
  font-size: 8px; font-weight: 800;
  display: grid; place-items: center; flex-shrink: 0;
}
.cf-sb-nm {
  font-size: 7.5px; font-weight: 700; color: #1c1917;
  line-height: 1.2;
  font-family: -apple-system,'Segoe UI',system-ui,sans-serif;
}
.cf-sb-nav { display: flex; flex-direction: column; padding: 4px 0; }
.cf-sb-item {
  font-size: 8px; font-weight: 500; color: #78716c;
  padding: 4px 7px;
  font-family: -apple-system,'Segoe UI',system-ui,sans-serif;
  white-space: nowrap; overflow: hidden;
}
.cf-sb-on {
  background: rgba(234,88,12,.1);
  color: #ea580c; font-weight: 700;
  border-left: 2px solid #ea580c;
  padding-left: 5px;
}

/* ── Aanvraag detail · slide 4 (echte backend layout) ── */
.crd-main {
  flex: 1; min-width: 0;
  padding: 8px 10px 8px;
  display: flex; flex-direction: column; gap: 4px;
  overflow: hidden;
  background: #f6f3ee;
  font-family: -apple-system,'Segoe UI',system-ui,sans-serif;
}
.crd-back { font-size: 7px; color: #78716c; cursor: pointer; }
.crd-stamp { font-size: 6.5px; letter-spacing: .08em; color: #a8a29e; text-transform: uppercase; font-weight: 600; margin: 0; }
.crd-name { font-size: 14px; font-weight: 800; color: #1c1917; margin: 0; line-height: 1.1; }
.crd-tags { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.crd-tag { font-size: 7px; font-weight: 700; padding: 2px 6px; border-radius: 99px; }
.crd-tag-new { background: #fbf2dd; color: #b45309; }
.crd-tag-txt { font-size: 7.5px; color: #57534e; font-weight: 500; }
.crd-card {
  background: #fff; border-radius: 6px;
  padding: 6px 8px; border: 1px solid #ebe8e3;
  display: flex; flex-direction: column; gap: 0;
}
.crd-card-hd {
  font-size: 8.5px; font-weight: 700; color: #1c1917;
  margin: 0 0 4px; border-bottom: 1.5px solid #ea580c;
  padding-bottom: 2px; width: fit-content;
}
.crd-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 7.5px; padding: 2.5px 0;
  border-bottom: 1px solid #f5f2ef; gap: 4px;
}
.crd-row:last-child { border-bottom: 0; }
.crd-row span { color: #78716c; flex-shrink: 0; }
.crd-row b { color: #1c1917; font-weight: 600; text-align: right; }
.crd-ok { color: #16a34a !important; }
/* Right panel */
.crd-right {
  width: 96px; flex-shrink: 0;
  padding: 8px 7px;
  background: #eae6df;
  border-left: 1px solid rgba(0,0,0,.07);
  display: flex; flex-direction: column; gap: 3px;
  font-family: -apple-system,'Segoe UI',system-ui,sans-serif;
}
.crd-right-hd {
  font-size: 8.5px; font-weight: 700; color: #1c1917;
  margin: 0 0 3px; border-bottom: 1.5px solid #ea580c;
  padding-bottom: 2px; width: fit-content;
}
.crd-status-list { display: flex; flex-direction: column; gap: 2px; }
.crd-status-item {
  display: flex; align-items: center; gap: 4px;
  font-size: 7px; color: #57534e;
  padding: 3px 5px; border-radius: 5px;
  background: #fff; border: 1px solid #e8e4df;
}
.crd-status-on { border-color: #ea580c; background: #fff7ed; color: #c2410c; font-weight: 700; }
.crd-radio {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1.5px solid #d6d3d0; flex-shrink: 0;
}
.crd-radio-on { border-color: #ea580c; background: #ea580c; box-shadow: inset 0 0 0 1.5px #fff; }
.crd-prijs2 { font-size: 14px; font-weight: 800; color: #ea580c; margin: 0; }
.crd-actions { display: flex; flex-direction: column; gap: 4px; margin-top: auto; padding-top: 6px; }
.crd-cta {
  background: #1c4532; color: #fff; border: 0;
  border-radius: 5px; padding: 5px 7px;
  font-size: 7.5px; font-weight: 700; cursor: pointer;
  text-align: center; font-family: inherit;
}
.crd-act-link { font-size: 7px; color: #78716c; text-align: center; cursor: pointer; }

/* Nav leesbaar op donkere flow-hero (alleen vóór scroll) */
body[data-hero^="flow"] .topbar:not(.scrolled) .brand { color: var(--beton); }
body[data-hero^="flow"] .topbar:not(.scrolled) .brand-grip { color: var(--oker); }
body[data-hero^="flow"] .topbar:not(.scrolled) .navlinks a,
body[data-hero^="flow"] .topbar:not(.scrolled) .navlogin { color: rgba(244, 241, 236, .8); }
body[data-hero^="flow"] .topbar:not(.scrolled) .navlinks a:hover { background: rgba(244, 241, 236, .12); color: var(--beton); }
body[data-hero^="flow"] .topbar:not(.scrolled) .btn-nav { background: var(--oker); color: var(--lood); }

/* ════ Flow coverflow · on-brand mock-kaarten (form / richtprijs / dashboard) ════ */
/* Formulier-mock — recreatie van het echte intake-formulier, in brandbook */
.cf-form-body { display: flex; flex-direction: column; gap: 10px; padding: 18px 18px; }
.cf-form-eb {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--oker-deep);
}
.cf-form-q {
  font-family: var(--font-display); font-weight: 800; line-height: 1.1;
  font-size: clamp(17px, 2.2vw, 23px); color: var(--lood); margin-bottom: 2px;
}
.cf-form-opts { display: flex; flex-direction: column; gap: 7px; }
.cf-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 9px 13px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--lijn);
  font-size: 13.5px; font-weight: 600; color: var(--kalk);
}
.cf-opt-on {
  background: var(--oker-tn); border-color: var(--oker);
  color: var(--lood); box-shadow: 0 0 0 1px var(--oker) inset;
}
.cf-opt svg { width: 15px; height: 15px; color: var(--oker-deep); flex-shrink: 0; }
.cf-form-prog { margin-top: auto; height: 5px; border-radius: 999px; background: var(--beton-2); overflow: hidden; }
.cf-form-prog i { display: block; height: 100%; background: var(--oker); border-radius: 999px; }

/* Richtprijs-mock — de wow: € telt op */
.cf-prijs-body { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; justify-content: center; }
.cf-prijs-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--kalk-lt);
}
.cf-prijs-val {
  font-family: var(--font-display); font-weight: 800; line-height: 1;
  font-size: clamp(34px, 6vw, 54px); color: var(--oker-deep);
  font-variant-numeric: tabular-nums; margin: 2px 0 12px;
}
.cf-prijs-rows { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.cf-prijs-rows li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 12.5px; color: var(--kalk);
  padding-bottom: 6px; border-bottom: 1px solid var(--lijn);
}
.cf-prijs-rows li:last-child { border-bottom: 0; }
.cf-prijs-rows li span:last-child { color: var(--lood); font-weight: 600; white-space: nowrap; }
.cf-prijs-note { font-size: 11px; color: var(--kalk-lt); margin-top: 8px; }

/* Dashboard-mock — aanvraag compleet binnen */
.cf-dash-body { display: flex; flex-direction: column; gap: 10px; padding: 16px 18px; }
.cf-dash-top { display: flex; align-items: center; justify-content: space-between; }
.cf-dash-title { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--lood); }
.cf-badge {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px;
  background: var(--groen-bg); color: var(--groen);
}
.cf-dash-rows { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.cf-dash-rows li { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.cf-dk { color: var(--kalk-lt); }
.cf-dv { color: var(--lood); font-weight: 600; text-align: right; }
.cf-dv-price { color: var(--oker-deep); }
.cf-dash-cta {
  align-self: flex-start; margin-top: 2px;
  font-size: 12.5px; font-weight: 700; color: var(--oker-deep);
}

/* ════ Flow v2 — grotere kaarten + verrijkte content (overrides) ════ */
.cf { max-width: 1120px; }
.cf-stage { height: clamp(320px, 50vw, 548px); }
.cf-card {
  width: clamp(300px, 64vw, 760px);
  border-radius: 18px;
}
.cf-card[data-pos="-1"] { transform: translate(-50%, -50%) translateX(-58%) translateZ(-320px) rotateY(26deg) scale(.74); }
.cf-card[data-pos="1"]  { transform: translate(-50%, -50%) translateX(58%)  translateZ(-320px) rotateY(-26deg) scale(.74); }
.cf-card[data-pos="-2"] { transform: translate(-50%, -50%) translateX(-100%) translateZ(-600px) rotateY(34deg) scale(.58); }
.cf-card[data-pos="2"]  { transform: translate(-50%, -50%) translateX(100%)  translateZ(-600px) rotateY(-34deg) scale(.58); }
/* ── Tablet (768–1023px): zelfde carousel, minder extreme diepte ── */
@media (min-width: 768px) and (max-width: 1023px) {
  .cf-card[data-pos="-1"] { transform: translate(-50%, -50%) translateX(-52%) translateZ(-180px) rotateY(18deg) scale(.8); }
  .cf-card[data-pos="1"]  { transform: translate(-50%, -50%) translateX(52%)  translateZ(-180px) rotateY(-18deg) scale(.8); }
  .cf-card[data-pos="-2"] { transform: translate(-50%, -50%) translateX(-92%) translateZ(-340px) rotateY(24deg) scale(.64); }
  .cf-card[data-pos="2"]  { transform: translate(-50%, -50%) translateX(92%)  translateZ(-340px) rotateY(-24deg) scale(.64); }
}

/* ════ Mobiel (<768px): story-modus · één grote slide, geen 3D ════ */
@media (max-width: 767px) {
  .cf { max-width: 100%; margin-top: clamp(26px, 7vw, 40px); }
  /* podium → platte showcase */
  .cf-stage {
    perspective: none;
    height: calc(min(94vw, 440px) * 0.625);
    min-height: 0;
  }
  .cf-track { transform-style: flat; }
  /* één kaart tegelijk · fade + slide + subtiele schaal, geen 3D/blur */
  .cf-card {
    width: 94vw; max-width: 440px;
    border-radius: 20px;
    filter: none !important;
    animation: none !important;
    box-shadow: 0 26px 60px -26px rgba(0,0,0,.85), 0 0 0 1px rgba(244,241,236,.12), inset 0 1px 0 rgba(255,255,255,.06);
    transition: opacity .5s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
  }
  .cf-card[data-pos="-2"], .cf-card[data-pos="-1"],
  .cf-card[data-pos="1"],  .cf-card[data-pos="2"] {
    opacity: 0; z-index: 1; pointer-events: none;
    filter: none !important;
  }
  .cf-card[data-pos="-1"] { transform: translate(-50%, -50%) translateX(-26%) scale(.95); }
  .cf-card[data-pos="1"]  { transform: translate(-50%, -50%) translateX(26%)  scale(.95); }
  .cf-card[data-pos="-2"] { transform: translate(-50%, -50%) scale(.92); }
  .cf-card[data-pos="2"]  { transform: translate(-50%, -50%) scale(.92); }
  .cf-card[data-pos="0"] {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1; z-index: 5; pointer-events: auto;
    box-shadow: 0 30px 70px -24px rgba(0,0,0,.9), 0 14px 50px -20px rgba(214,132,64,.4), 0 0 0 1px rgba(244,241,236,.14), inset 0 1px 0 rgba(255,255,255,.08);
  }
  /* geen pijlen — swipe + indicators sturen het verhaal */
  .cf-nav { display: none; }
  /* amber-verlichting compacter achter de mobiele slide */
  .hero-flow::before { width: 150%; height: 560px; filter: blur(60px); }
}
/* grotere mbar + body op de ruimere kaart */
.cf-mbar { padding: 11px 18px; font-size: 12.5px; }
.cf-mbody { padding: 18px 22px; }
.bubble { font-size: 14.5px; max-width: 80%; }

/* Link-preview — met icoon */
.cf-linkprev { display: flex; align-items: center; gap: 10px; }
.cf-linkico {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--lood); color: var(--oker);
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
}
.cf-linktxt { display: flex; flex-direction: column; }

/* Formulier-mock — rijker, 2 kolommen */
.cf-form-body { gap: 14px; }
.cf-form-top { display: flex; align-items: baseline; justify-content: space-between; }
.cf-form-step { font-family: var(--font-mono); font-size: 11px; color: var(--kalk-lt); }
.cf-form-q { font-size: clamp(20px, 2.6vw, 28px); }
.cf-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.cf-opt { padding: 13px 15px; font-size: 14px; border-radius: 12px; }
.cf-form-foot { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.cf-form-prog { flex: 1; }
.cf-form-btn {
  flex: 0 0 auto; padding: 9px 18px; border-radius: 10px;
  background: var(--oker); color: var(--lood);
  font-weight: 700; font-size: 13.5px;
}

/* Richtprijs-mock — groter */
.cf-prijs-body { padding: 22px 26px; gap: 5px; }
.cf-prijs-rows li { font-size: 13.5px; padding-bottom: 8px; }
.cf-prijs-note { font-size: 12px; margin-top: 10px; }

/* Dashboard-mock — sidebar + lijst */
.cf-dash .cf-mbar { border-bottom: 1px solid var(--lijn); }
.cf-dash-wrap { display: flex; height: calc(100% - 40px); background: var(--surface); }
.cf-dash-side {
  flex: 0 0 34%; max-width: 210px; padding: 16px 14px;
  background: var(--beton); border-right: 1px solid var(--lijn);
  display: flex; flex-direction: column; gap: 6px;
}
.cf-dash-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px; color: var(--lood); margin-bottom: 8px; }
.cf-dash-brand i { width: 24px; height: 24px; border-radius: 7px; background: var(--lood); color: var(--oker); display: grid; place-items: center; font-style: normal; font-size: 11px; font-weight: 800; }
.cf-dash-nav { font-size: 13px; color: var(--kalk); padding: 7px 10px; border-radius: 8px; }
.cf-dash-nav.cf-on { background: var(--oker-tn); color: var(--lood); font-weight: 600; }
.cf-dash-main { flex: 1; padding: 16px 18px; min-width: 0; }
.cf-dash-h { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--lood); margin-bottom: 12px; }
.cf-dash-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cf-row {
  display: grid; grid-template-columns: 1fr auto; row-gap: 2px;
  padding: 11px 14px; border-radius: 11px;
  background: var(--surface); border: 1px solid var(--lijn);
}
.cf-row-new { border-color: var(--oker); background: var(--oker-tn); box-shadow: 0 0 0 1px var(--oker) inset; }
.cf-row-name { font-weight: 700; font-size: 13.5px; color: var(--lood); }
.cf-row-price { font-weight: 700; font-size: 13.5px; color: var(--oker-deep); align-self: center; }
.cf-row-meta { grid-column: 1 / 2; font-size: 11.5px; color: var(--kalk-lt); }

/* Telefoon-frame (v2 · klant vult in) */
.cf-phonecard, .cf-phone-scene { background: linear-gradient(160deg, #34302a, #211e1b); }
.cf-phone-scene { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.cf-phone {
  height: 94%; width: auto; flex: 0 0 auto; aspect-ratio: 1170 / 2532;
  border-radius: 30px; padding: 6px;
  background: #0e0d0c;
  box-shadow: 0 22px 50px -18px rgba(0,0,0,.7), inset 0 0 0 1px rgba(255,255,255,.06);
}
.cf-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 25px; display: block; }

/* ════ Flow v1 — mock-polish (leesbaarheid + chat-realisme) ════ */
/* Fix: mock-inhoud erfde lichte hero-tekstkleur → forceer donker */
.cf-mock { color: var(--lood); }
.cf-mock .bubble.them { color: var(--lood); }

/* Chat-kaart: echte messaging-look */
.cf-chathead {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 16px;
  background: var(--surface); border-bottom: 1px solid var(--lijn);
}
.cf-ava {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: #fff; background: var(--klei);
}
.cf-chatmeta { display: flex; flex-direction: column; line-height: 1.25; }
.cf-chatmeta b { font-size: 14.5px; color: var(--lood); font-weight: 700; }
.cf-chatmeta i { font-size: 11.5px; color: var(--groen); font-style: normal; }
.cf-chatapp { margin-left: auto; font-family: var(--font-mono); font-size: 10.5px; color: var(--kalk-lt); letter-spacing: .08em; }

/* Chat-body: berichten onderaan (zoals echt gesprek) + grotere bubbels */
.cf-mock .chat { justify-content: flex-end; gap: 10px; padding: 18px 20px; }
.cf-mock .bubble { font-size: 15px; padding: 11px 15px; max-width: 76%; line-height: 1.4; }
.cf-mock .bubble .t { font-size: 10.5px; }
.cf-linkbubble { max-width: 84%; }

/* Flow v2 · "Complete aanvraag"-kaart (de payoff: alles bij elkaar) */
.cf-compleet-body { display: flex; flex-direction: column; gap: 13px; padding: 20px 24px; justify-content: center; }
.cf-compleet-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cf-compleet-h { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--lood); }
.cf-kv { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cf-kv li { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--lijn); }
.cf-kv li:last-child { border-bottom: 0; padding-bottom: 0; }
.cf-kv li span:first-child { color: var(--kalk-lt); }
.cf-kv li span:last-child { color: var(--lood); font-weight: 600; text-align: right; }
.cf-kv-price { color: var(--oker-deep) !important; font-weight: 800 !important; font-size: 17px; }

/* Flow v2 · slide 3 — "klant stuurt foto's, maten, adres" (landscape mock) */
.cf-upload-body { display: flex; flex-direction: column; gap: 13px; padding: 18px 22px; }
.cf-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.cf-thumb {
  aspect-ratio: 1; border-radius: 11px;
  border: 1px solid var(--lijn);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a89e8f' stroke-width='1.5'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='10' r='1.6'/%3E%3Cpath d='M21 16l-5-5L5 19'/%3E%3C/svg%3E") center / 34px no-repeat,
    linear-gradient(150deg, var(--beton-2), #e7e0d3);
}
.cf-thumb-add {
  background-image: none; background: var(--oker-tn);
  display: grid; place-items: center; color: var(--oker-deep);
  border: 1px dashed var(--oker);
}
.cf-thumb-add svg { width: 22px; height: 22px; }
.cf-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cf-field { display: flex; flex-direction: column; gap: 3px; padding: 11px 14px; border-radius: 11px; background: var(--surface); border: 1px solid var(--lijn); }
.cf-field i { font-style: normal; font-family: var(--font-mono); font-size: 10.5px; color: var(--kalk-lt); text-transform: uppercase; letter-spacing: .08em; }
.cf-field b { font-size: 14.5px; color: var(--lood); font-weight: 700; }

/* Flow v4 · auto-play film — dots = voortgang, niet klikbaar */
.cf-auto .cf-dot { pointer-events: none; }

/* Flow v5 · videobestand */
.cf-video-wrap {
  margin: clamp(30px, 4.5vw, 56px) auto 0;
  max-width: 1000px;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(244, 241, 236, .14);
  box-shadow: 0 36px 80px -34px rgba(0, 0, 0, .72);
}
.cf-video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ════ Flow v6 · Verloren → Gewonnen ════ */
/* Lead-verloren marker (chat) */
.cf-lost {
  align-self: flex-start; margin-top: 6px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  color: var(--klei); background: #f7e9e2;
  border: 1px solid #e7cdbf; border-radius: 8px; padding: 6px 11px;
}
/* Offerte-cta op complete-aanvraag-kaart */
.cf-compleet-cta { align-self: flex-start; margin-top: 4px; font-size: 13px; font-weight: 700; color: var(--oker-deep); }

/* Gewonnen-kaart (de payoff) */
.cf-won-body { display: flex; flex-direction: column; gap: 6px; padding: 22px 26px; justify-content: center; }
.cf-won-badge {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--groen);
  background: var(--groen-bg); border-radius: 999px; padding: 5px 12px;
}
.cf-won-amount {
  font-family: var(--font-display); font-weight: 800; line-height: 1;
  font-size: clamp(40px, 7vw, 64px); color: var(--lood);
  font-variant-numeric: tabular-nums; margin: 6px 0 2px;
}
.cf-won-sub { font-size: 14px; color: var(--kalk); margin-bottom: 10px; }
.cf-won-meta { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cf-won-meta li { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--kalk); padding-bottom: 8px; border-bottom: 1px solid var(--lijn); }
.cf-won-meta li:last-child { border-bottom: 0; }
.cf-won-meta b { color: var(--groen); font-weight: 700; }

/* Trust-strip onder CTA */
.cf-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-top: 18px; }
.cf-trust span { font-size: 13px; color: rgba(244, 241, 236, .72); }

/* v6 iter2 · voorbeeld-tag op gewonnen-kaart */
.cf-won-body { position: relative; }
.cf-won-eg { position: absolute; top: 14px; right: 16px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--kalk-lt); background: var(--beton-2); border-radius: 6px; padding: 3px 8px; }

/* ════ Flow v7 · Chaos → Controle · chaos-kaart ════ */
.cf-mdot-red { background: var(--klei) !important; }
.cf-chaos-stage { position: relative; flex: 1; overflow: hidden; }
.cf-note {
  position: absolute;
  font-size: 13px; font-weight: 600; color: var(--lood);
  background: var(--surface); border: 1px solid var(--lijn);
  border-radius: 10px; padding: 9px 13px; white-space: nowrap;
  box-shadow: 0 10px 24px -12px rgba(42, 39, 36, .4);
}
.cf-n1 { top: 9%;  left: 5%;   transform: rotate(-5deg); }
.cf-n2 { top: 31%; left: 40%;  transform: rotate(3deg);  background: #f7e9e2; border-color: #e7cdbf; }
.cf-n3 { top: 13%; right: 5%;  transform: rotate(6deg); }
.cf-n4 { top: 56%; left: 8%;   transform: rotate(2deg); }
.cf-n5 { top: 64%; right: 7%;  transform: rotate(-4deg); background: #e7f0e0; border-color: #cfe0c2; }
.cf-n6 { top: 41%; left: 20%;  transform: rotate(-2deg); background: #f7e9e2; border-color: #e7cdbf; }

/* ════ Flow v6 · gelabelde step-rail (verhaal in één oogopslag) ════ */
.cf-rail { display: flex; justify-content: center; flex-wrap: wrap; margin-top: clamp(20px, 3vw, 32px); }
.cf-step {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  background: none; border: 0; cursor: pointer; position: relative; z-index: 0;
  padding: 0 clamp(10px, 2.4vw, 30px);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .02em;
  color: rgba(244, 241, 236, .5); transition: color .25s;
}
.cf-step-i { width: 13px; height: 13px; border-radius: 50%; background: rgba(244, 241, 236, .25); border: 2px solid transparent; transition: background .25s, box-shadow .25s; }
.cf-step-l { white-space: nowrap; }
.cf-step::before { content: ""; position: absolute; top: 5px; left: -50%; width: 100%; height: 2px; background: rgba(244, 241, 236, .15); z-index: -1; }
.cf-step:first-child::before { display: none; }
.cf-step:hover { color: rgba(244, 241, 236, .8); }
.cf-step.active { color: var(--beton); }
.cf-step.active .cf-step-i { background: var(--oker); box-shadow: 0 0 0 4px rgba(184, 115, 51, .16); }
.cf-step-win .cf-step-l { color: rgba(125, 168, 96, .8); }
.cf-step-win.active .cf-step-i { background: var(--groen); box-shadow: 0 0 0 4px rgba(61, 97, 44, .22); }
.cf-step-win.active .cf-step-l { color: #9bc47e; }
@media (max-width: 560px) { .cf-step-l { font-size: 10px; } .cf-step { padding: 0 7px; } }

/* ════ Slide-upgrades · micro-animatie + modetag (Zonder/Met LeadGrip) ════ */
@keyframes cfRise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes cfPop { 0% { opacity: 0; transform: scale(.92); } 60% { transform: scale(1.03); } 100% { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: no-preference) {
  .cf-card.is-active :is(.chat .bubble, .cf-lost, .cf-form-grid > *, .cf-thumbs > *, .cf-fields > *, .cf-kv > li, .cf-dash-list > .cf-row, .cf-won-meta > li, .cf-note) {
    animation: cfRise .5s cubic-bezier(.4, 0, .2, 1) both;
  }
  .cf-card.is-active :is(.chat .bubble, .cf-form-grid > *, .cf-thumbs > *, .cf-kv > li, .cf-dash-list > .cf-row, .cf-won-meta > li, .cf-note):nth-child(1) { animation-delay: .03s; }
  .cf-card.is-active :is(.chat .bubble, .cf-form-grid > *, .cf-thumbs > *, .cf-kv > li, .cf-dash-list > .cf-row, .cf-won-meta > li, .cf-note):nth-child(2) { animation-delay: .09s; }
  .cf-card.is-active :is(.chat .bubble, .cf-form-grid > *, .cf-thumbs > *, .cf-kv > li, .cf-dash-list > .cf-row, .cf-won-meta > li, .cf-note):nth-child(3) { animation-delay: .15s; }
  .cf-card.is-active :is(.chat .bubble, .cf-form-grid > *, .cf-thumbs > *, .cf-kv > li, .cf-dash-list > .cf-row, .cf-won-meta > li, .cf-note):nth-child(4) { animation-delay: .21s; }
  .cf-card.is-active :is(.chat .bubble, .cf-form-grid > *, .cf-thumbs > *, .cf-kv > li, .cf-dash-list > .cf-row, .cf-won-meta > li, .cf-note):nth-child(5) { animation-delay: .27s; }
  .cf-card.is-active :is(.chat .bubble, .cf-thumbs > *, .cf-note):nth-child(6) { animation-delay: .33s; }
  .cf-card.is-active .cf-won-amount { animation: cfPop .55s .14s both; }
  .cf-card.is-active .cf-won-badge { animation: cfRise .45s .04s both; }
}

/* Modetag — zweeft boven de actieve kaart: Zonder → Met LeadGrip */
.cf-modetag {
  position: absolute; top: -8px; left: 50%; transform: translate(-50%, -100%);
  z-index: 40; white-space: nowrap;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 999px;
  background: #3a322c; color: rgba(244, 241, 236, .82);
  border: 1px solid rgba(244, 241, 236, .18);
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, .6);
  transition: color .35s, background .35s, border-color .35s;
}
.cf-modetag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--klei); }
.cf-modetag.is-met { background: rgba(61, 97, 44, .2); color: #c3dab0; border-color: rgba(125, 168, 96, .45); }
.cf-modetag.is-met::before { background: var(--groen); }

/* Echte stucwerk-foto's in de upload-tegels (vervangt placeholder-icoon) */
.cf-thumb:nth-child(1) { background: url("img/room-2.jpg") center / cover no-repeat; }
.cf-thumb:nth-child(2) { background: url("img/room-1.jpg") center / cover no-repeat; }
.cf-thumb:nth-child(3) { background: url("img/room-3.jpg") center / cover no-repeat; }

/* ════ Flow v8 · Cinematic hero · Higgsfield video-achtergrond ════ */
.hero-cine {
  position: relative;
  min-height: clamp(560px, 88vh, 880px);
  display: grid; place-items: center; overflow: hidden;
  background: var(--lood);
  padding: clamp(120px, 16vh, 180px) 0 clamp(72px, 9vw, 120px);
}
.hero-cine .cine-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-cine .cine-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(28,26,23,.58) 0%, rgba(28,26,23,.38) 38%, rgba(28,26,23,.86) 100%); }
.hero-cine .cine-inner { position: relative; z-index: 2; text-align: center; max-width: 840px; color: var(--beton); }
.hero-cine .hflow-h1 { color: var(--beton); margin-top: 14px; }
.hero-cine .hflow-sub { color: rgba(244, 241, 236, .86); margin: 18px auto 0; max-width: 620px; }
.hero-cine .hero-ctas { justify-content: center; margin-top: clamp(26px, 4vw, 40px); }
.hero-cine .cf-trust { margin-top: 20px; }
.hero-cine .reveal { opacity: 1; transform: none; }

/* ════ Flow v6 · complete-aanvraag = getrouwe detail-recreatie ════ */
.cf-detail-body { display: flex; flex-direction: column; gap: 13px; padding: 16px 20px; height: calc(100% - 44px); }
.cf-detail-head { display: flex; flex-direction: column; gap: 4px; }
.cf-detail-name { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--lood); line-height: 1; }
.cf-detail-meta { font-size: 11.5px; color: var(--kalk-lt); display: flex; align-items: center; gap: 8px; }
.cf-detail-pill { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--oker-deep); background: var(--oker-tn); border-radius: 999px; padding: 3px 9px; }
.cf-detail-cols { display: grid; grid-template-columns: 1.45fr 1fr; gap: 18px; flex: 1; min-height: 0; }
.cf-detail-sec { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--kalk-lt); margin-bottom: 9px; }
.cf-qa { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.cf-qa li { display: flex; justify-content: space-between; gap: 12px; font-size: 12.5px; border-bottom: 1px solid var(--lijn); padding-bottom: 6px; }
.cf-qa li:last-child { border-bottom: 0; }
.cf-qa li span { color: var(--kalk-lt); }
.cf-qa li b { color: var(--lood); font-weight: 600; text-align: right; }
.cf-detail-side { border-left: 1px solid var(--lijn); padding-left: 18px; display: flex; flex-direction: column; }
.cf-steps2 { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.cf-steps2 li { position: relative; padding-left: 23px; font-size: 12.5px; color: var(--kalk-lt); }
.cf-steps2 li::before { content: ""; position: absolute; left: 0; top: 1px; width: 13px; height: 13px; border-radius: 50%; border: 2px solid var(--lijn); background: var(--surface); }
.cf-steps2 li.now { color: var(--lood); font-weight: 700; }
.cf-steps2 li.now::before { background: var(--oker); border-color: var(--oker); box-shadow: 0 0 0 3px var(--oker-tn); }
.cf-detail-cta { margin-top: auto; align-self: flex-start; background: var(--oker); color: var(--lood); font-weight: 700; font-size: 12.5px; padding: 9px 15px; border-radius: 9px; }

/* Flow v6 · gewonnen-view (consistent met detail) */
.cf-won2 .cf-detail-body { position: relative; }
.cf-won2 .cf-won-amount { color: var(--groen); font-size: clamp(34px, 5vw, 48px); margin: 4px 0 2px; }
.cf-steps2 li.done { color: var(--lood); }
.cf-steps2 li.done::before { background: var(--groen); border-color: var(--groen); }
.cf-steps2 li.won { color: var(--groen); font-weight: 700; }
.cf-steps2 li.won::before { background: var(--groen); border-color: var(--groen); box-shadow: 0 0 0 3px var(--groen-bg); }
.cf-pill-won { color: var(--groen) !important; background: var(--groen-bg) !important; }
.cf-pipe-strip { margin-top: 16px; }
.cf-pipe-month { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--lood); }
.cf-pipe-month i { font-style: normal; font-size: 13px; font-weight: 600; color: var(--kalk); }

/* Flow v6 · beat2 rekenhulp-chip (toont slimme m²-berekening) */
.cf-field-calc b { font-weight: 600; }
.cf-field-calc b em { font-style: normal; font-weight: 800; color: var(--oker-deep); }

/* ════ Flow v9/v10 · split-hero (copy links + visual rechts) ════ */
.hero-split { position: relative; background: var(--lood); overflow: hidden; color: var(--beton); padding: clamp(120px, 15vh, 172px) 0 clamp(64px, 8vw, 104px); }
.hsplit { display: grid; grid-template-columns: 0.82fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.hsplit-copy .hflow-h1 { color: var(--beton); }
.hsplit-copy .hflow-sub { color: rgba(244, 241, 236, .8); margin-top: 16px; max-width: 440px; }
.hsplit-copy .hero-ctas { justify-content: flex-start; margin-top: 28px; }
.hsplit .reveal { opacity: 1; transform: none; }
@media (max-width: 900px) { .hsplit { grid-template-columns: 1fr; gap: 44px; } .hsplit-copy .hflow-sub { max-width: none; } }

/* Hub-diagram (v9) */
.hub { position: relative; width: 100%; max-width: 580px; aspect-ratio: 560 / 460; margin: 0 auto; }
.hub-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hub-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; width: 100px; height: 100px; border-radius: 24px; background: #241f1b; border: 1px solid rgba(184, 115, 51, .4); box-shadow: 0 0 0 8px rgba(184, 115, 51, .08), 0 20px 50px -20px rgba(0, 0, 0, .7); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hub-core span { font-family: var(--font-display); font-weight: 800; font-size: 12px; color: var(--beton); }
.hub-ch { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; width: 46%; max-width: 200px; padding: 10px 13px; border-radius: 12px; background: var(--surface); box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .55); }
.hub-ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--beton-2); font-size: 15px; }
.hub-tx { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.hub-tx b { font-size: 13px; color: var(--lood); font-weight: 700; }
.hub-tx i { font-style: normal; font-size: 10.5px; color: var(--kalk-lt); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hub-ch1 { left: 0; top: 4%; }
.hub-ch2 { left: 0; top: 42%; }
.hub-ch3 { left: 0; top: 80%; }
.hub-ch4 { right: 0; top: 4%; }
.hub-ch5 { right: 0; top: 42%; }
.hub-ch6 { right: 0; top: 80%; }

/* Product-demo venster (v10) */
.demo-win { width: 100%; max-width: 620px; margin: 0 auto; border-radius: 16px; overflow: hidden; background: var(--surface); box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .7); border: 1px solid rgba(244, 241, 236, .12); }
.demo-top { display: flex; align-items: center; justify-content: space-between; padding: 13px 18px; background: var(--beton); border-bottom: 1px solid var(--lijn); }
.demo-id { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--lood); }
.demo-acts { display: flex; gap: 8px; }
.demo-abtn { font-size: 12px; font-weight: 600; color: var(--kalk); padding: 6px 12px; border-radius: 8px; border: 1px solid var(--lijn); background: var(--surface); }
.demo-abtn-pri { background: var(--lood); color: var(--beton); border-color: var(--lood); }
.demo-body { display: flex; }
.demo-rail { flex: 0 0 auto; width: 50px; background: var(--beton); border-right: 1px solid var(--lijn); display: flex; flex-direction: column; align-items: center; gap: 15px; padding: 18px 0; }
.demo-rail span { width: 18px; height: 18px; border-radius: 5px; background: var(--lijn); }
.demo-rail span.on { background: var(--oker); }
.demo-main { flex: 1; padding: 18px 22px; min-width: 0; }
.demo-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.demo-ava { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; background: var(--klei); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; }
.demo-who { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.demo-who b { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--lood); }
.demo-who i { font-style: normal; font-size: 12.5px; color: var(--kalk-lt); }
.demo-badge { flex: 0 0 auto; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; color: var(--oker-deep); background: var(--oker-tn); border-radius: 999px; padding: 4px 11px; }
.demo-sec { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--kalk-lt); margin-bottom: 9px; }
.demo-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 18px; }
.demo-ph { aspect-ratio: 1; border-radius: 10px; background-size: cover; background-position: center; border: 1px solid var(--lijn); }
.demo-ph-more { display: grid; place-items: center; background: var(--beton-2); color: var(--kalk); font-weight: 700; font-size: 14px; }
.demo-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding-top: 14px; border-top: 1px solid var(--lijn); }
.demo-st { display: flex; flex-direction: column; gap: 3px; }
.demo-st i { font-style: normal; font-family: var(--font-mono); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; color: var(--kalk-lt); }
.demo-st b { font-size: 12.5px; color: var(--lood); font-weight: 700; }

/* Fix: display-regels op secties overschreven [hidden] → forceer verbergen */
[data-hero][hidden] { display: none !important; }

/* v9 hub · merk-iconen */
.hub-ic { color: #fff; overflow: hidden; }
.hub-ic svg { width: 17px; height: 17px; }
.hub-ic-wa { background: #25d366; }
.hub-ic-ig { background: linear-gradient(45deg, #f09433, #dc2743 55%, #bc1888); }
.hub-ic-msg { background: #0084ff; }
.hub-ic-mail { background: var(--klei); }
.hub-ic-tel { background: var(--lood); }
.hub-ic-web { background: var(--kalk); }

/* ─────────────────────────────────────────────────────────────
   v9 herbouw · levend aanvraag-ecosysteem (eco)
   Zwevende native-UI berichten → opgezogen naar de kern →
   mini-aanvraagkaart vult zich. Donkere + lichte variant.
   ───────────────────────────────────────────────────────────── */
.eco-hero { position: relative; overflow: hidden; color: var(--eco-text);
  padding: clamp(110px, 14vh, 168px) 0 clamp(72px, 9vw, 112px); }

.eco-hero--dark {
  background: radial-gradient(125% 95% at 76% 32%, #3a322b 0%, #2a2724 40%, #181513 100%);
  --eco-text: var(--beton); --eco-text-dim: rgba(244,241,236,.74);
  --eco-ghost-brd: rgba(244,241,236,.24); --eco-ghost-tx: var(--beton);
  --eco-glow: rgba(184,115,51,.42);
  --eco-msg-bg: rgba(40,35,31,.66); --eco-msg-brd: rgba(255,255,255,.1);
  --eco-msg-tx: var(--beton); --eco-msg-dim: rgba(244,241,236,.58);
  --eco-msg-sh: 0 26px 54px -24px rgba(0,0,0,.72);
  --eco-cardbg: rgba(34,30,26,.82); --eco-cardbrd: rgba(184,115,51,.34);
  --eco-cardtx: var(--beton); --eco-carddim: rgba(244,241,236,.56);
  --eco-line: rgba(255,255,255,.08); --eco-sk: rgba(255,255,255,.1); }

.eco-hero--light {
  background: radial-gradient(125% 95% at 76% 30%, #fefdfa 0%, var(--beton) 44%, #e9e2d6 100%);
  --eco-text: var(--lood); --eco-text-dim: var(--kalk);
  --eco-ghost-brd: rgba(42,39,36,.2); --eco-ghost-tx: var(--lood);
  --eco-glow: rgba(184,115,51,.26);
  --eco-msg-bg: rgba(255,255,255,.82); --eco-msg-brd: rgba(42,39,36,.07);
  --eco-msg-tx: var(--lood); --eco-msg-dim: var(--kalk-lt);
  --eco-msg-sh: 0 24px 48px -22px rgba(42,39,36,.34);
  --eco-cardbg: rgba(255,255,255,.9); --eco-cardbrd: rgba(184,115,51,.3);
  --eco-cardtx: var(--lood); --eco-carddim: var(--kalk-lt);
  --eco-line: rgba(42,39,36,.08); --eco-sk: rgba(42,39,36,.09); }

.eco-grid { display: grid; grid-template-columns: .72fr 1.06fr;
  gap: clamp(28px, 4.5vw, 64px); align-items: center; position: relative; z-index: 1; }

/* — linker kolom — */
.eco-copy .eyebrow { color: var(--oker); }
.eco-copy .hflow-h1 { color: var(--eco-text); }
.eco-ink { color: var(--oker); }
.eco-sub { color: var(--eco-text-dim); margin-top: 16px; max-width: 432px;
  font-size: clamp(15px, 1.15vw, 17px); line-height: 1.62; }
.eco-copy .hero-ctas { justify-content: flex-start; margin-top: 30px; }
.eco-ghost { background: transparent !important; color: var(--eco-ghost-tx) !important;
  border: 1px solid var(--eco-ghost-brd) !important; }
.eco-ghost:hover { background: rgba(184,115,51,.1) !important; border-color: var(--oker) !important; }
.eco-proof { display: flex; align-items: center; gap: 9px; margin-top: 28px;
  font-size: 13.5px; color: var(--eco-text-dim); }
.eco-stars { color: var(--oker); letter-spacing: 2px; font-size: 13px; }

/* — podium — */
.eco-stage { position: relative; width: 100%; max-width: 760px; margin: 0 auto;
  aspect-ratio: 1 / 1; perspective: 1700px; perspective-origin: 60% 42%; }
.eco-glow { position: absolute; left: 50%; top: 50%; width: 60%; height: 60%;
  transform: translate(-50%,-50%); border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, var(--eco-glow) 0%, transparent 68%);
  filter: blur(10px); transition: transform .8s ease, opacity .8s ease; }
.eco-stage[data-phase="done"] .eco-glow { transform: translate(-50%,-50%) scale(1.22); }

/* — zwevende berichten — */
.eco-msg { position: absolute; width: clamp(186px, 42%, 248px);
  display: flex; gap: 11px; align-items: flex-start; padding: 13px 15px;
  border-radius: 15px; background: var(--eco-msg-bg); color: var(--eco-msg-tx);
  border: 1px solid var(--eco-msg-brd); box-shadow: var(--eco-msg-sh);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  will-change: transform, opacity; z-index: 3; opacity: 0; }
.eco-stage.eco-static .eco-msg { opacity: 1; }
.eco-msg--wa   { left: 1%;  top: 5%; }
.eco-msg--mail { left: 54%; top: 1%; }
.eco-msg--tel  { left: 0%;  top: 63%; }
.eco-msg--ig   { left: 53%; top: 67%; }
.eco-mic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center; overflow: hidden; }
.eco-mic svg { width: 17px; height: 17px; }
.eco-mic-wa   { background: #25d366; }
.eco-mic-ig   { background: linear-gradient(45deg, #f09433, #dc2743 55%, #bc1888); }
.eco-mic-mail { background: var(--klei); }
.eco-mic-tel  { background: #e0524d; }
.eco-mbd { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.eco-mbd b { font-size: 12.5px; font-weight: 700; }
.eco-mbd em { font-style: normal; font-size: 13.5px; line-height: 1.32; color: var(--eco-msg-tx); }
.eco-mbd time { font-family: var(--font-mono); font-size: 10px; color: var(--eco-msg-dim); margin-top: 1px; }

/* — kern: mini-aanvraagkaart — */
.eco-card { position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%); z-index: 5; width: clamp(266px, 56%, 388px);
  border-radius: 16px; background: var(--eco-cardbg); color: var(--eco-cardtx);
  border: 1px solid var(--eco-cardbrd);
  box-shadow: 0 0 0 7px rgba(184,115,51,.07), 0 36px 80px -34px rgba(0,0,0,.6);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  overflow: hidden; transition: box-shadow .6s ease, opacity .55s ease; }
.eco-stage[data-phase="done"] .eco-card {
  box-shadow: 0 0 0 8px rgba(61,97,44,.14), 0 36px 80px -30px rgba(0,0,0,.6); }
.eco-card-top { display: flex; align-items: center; gap: 9px;
  padding: 12px 14px; border-bottom: 1px solid var(--eco-line); }
.eco-card-mark { flex: 0 0 auto; width: 22px; height: 22px; }
.eco-card-mark svg { width: 22px; height: 22px; display: block; }
.eco-card-top b { font-size: 13px; font-weight: 700; flex: 1; }
.eco-card-status { font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px;
  color: var(--eco-carddim); background: var(--eco-sk); transition: color .4s, background .4s; }
.eco-stage[data-phase="done"] .eco-card-status {
  color: #6f9b54; background: rgba(61,97,44,.16); }
.eco-stage[data-phase="done"] .eco-card-status::after { content: " ✓"; }
.eco-card-body { padding: 6px 14px 10px; }
.eco-row { position: relative; display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--eco-line); min-height: 38px; }
.eco-row:last-child { border-bottom: 0; }
.eco-k { flex: 0 0 78px; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .05em; text-transform: uppercase; color: var(--eco-carddim); }
.eco-sk { position: absolute; left: 88px; top: 50%; transform: translateY(-50%);
  width: 46%; height: 9px; border-radius: 5px; background: var(--eco-sk);
  opacity: 1; transition: opacity .35s ease; }
.eco-v { font-size: 13px; font-weight: 600; opacity: 0; transform: translateY(5px);
  transition: opacity .4s ease, transform .4s ease; }
.eco-price { color: var(--oker); font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.eco-thumbs { display: flex; align-items: center; gap: 5px; }
.eco-thumbs i { width: 22px; height: 22px; border-radius: 5px;
  background: linear-gradient(135deg, var(--klei), var(--oker)); }
.eco-thumbs i:nth-child(2) { background: linear-gradient(135deg, var(--kalk), var(--klei)); }
.eco-thumbs i:nth-child(3) { background: linear-gradient(135deg, var(--oker), #d99b5e); }
.eco-thumbs b { font-size: 11px; font-weight: 700; color: var(--eco-carddim); }
/* fasen: intake / fill / done / pipeline → skelet weg, waarde in (gestaggerd per --i) */
.eco-stage[data-phase="intake"] .eco-sk,
.eco-stage[data-phase="fill"] .eco-sk,
.eco-stage[data-phase="done"] .eco-sk,
.eco-stage[data-phase="pipeline"] .eco-sk { opacity: 0; transition-delay: calc(var(--i) * .12s); }
.eco-stage[data-phase="intake"] .eco-v,
.eco-stage[data-phase="fill"] .eco-v,
.eco-stage[data-phase="done"] .eco-v,
.eco-stage[data-phase="pipeline"] .eco-v { opacity: 1; transform: none; transition-delay: calc(var(--i) * .12s + .05s); }

/* ── HOW-beat · klant vult de intake-link in (zelfde kaart) ── */
.eco-intake { display: flex; align-items: center; gap: 9px; max-height: 0; opacity: 0;
  overflow: hidden; margin: 0; padding: 0 2px;
  transition: max-height .5s ease, opacity .4s ease, margin .5s ease; }
.eco-stage[data-phase="intake"] .eco-intake { max-height: 36px; opacity: 1; margin: 2px 0 12px; }
.eco-intake-ic { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 7px;
  background: var(--oker-tn); color: var(--oker); display: grid; place-items: center; }
.eco-intake-ic svg { width: 13px; height: 13px; }
.eco-intake-tx { font-size: 11.5px; font-weight: 700; color: var(--eco-cardtx); white-space: nowrap; }
.eco-intake-bar { flex: 1; height: 6px; border-radius: 4px; background: var(--eco-sk); overflow: hidden; }
.eco-intake-bar i { display: block; height: 100%; width: 0; background: var(--oker);
  border-radius: 4px; transition: width .25s linear; }
.eco-card-cta { display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px; font-size: 12.5px; font-weight: 700; color: var(--oker);
  border-top: 1px solid var(--eco-line); }
.eco-card-cta svg { width: 15px; height: 15px; }

/* ── tweede akte · dezelfde kaart morpht naar pipeline-kaart ── */
/* stepper schuift in onder de body (geen nieuw scherm) */
.eco-track { display: flex; gap: 6px; padding: 0 14px; max-height: 0; opacity: 0;
  overflow: hidden; border-top: 1px solid transparent;
  transition: max-height .55s ease, opacity .4s ease, padding .55s ease, border-color .55s ease; }
.eco-stage[data-phase="pipeline"] .eco-track,
.eco-stage[data-phase="reset"] .eco-track { max-height: 48px; opacity: 1; padding: 11px 14px;
  border-top-color: var(--eco-line); }
.eco-step { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 8.5px;
  letter-spacing: .02em; text-transform: uppercase; color: var(--eco-carddim);
  padding: 5px 4px; border-radius: 7px; background: var(--eco-sk); white-space: nowrap;
  transition: color .35s ease, background .35s ease; }
/* huidige stap */
.eco-stage[data-stage="0"] .eco-step[data-s="0"],
.eco-stage[data-stage="1"] .eco-step[data-s="1"],
.eco-stage[data-stage="2"] .eco-step[data-s="2"] { color: #fff; background: var(--oker); }
.eco-stage[data-stage="3"] .eco-step[data-s="3"] { color: #fff; background: #5f8f43; }
/* reeds doorlopen stappen */
.eco-stage[data-stage="1"] .eco-step[data-s="0"],
.eco-stage[data-stage="2"] .eco-step[data-s="0"],
.eco-stage[data-stage="2"] .eco-step[data-s="1"],
.eco-stage[data-stage="3"] .eco-step[data-s="0"],
.eco-stage[data-stage="3"] .eco-step[data-s="1"],
.eco-stage[data-stage="3"] .eco-step[data-s="2"] { color: var(--oker); background: var(--oker-tn); }

/* status-pill door de pipeline */
.eco-stage[data-phase="pipeline"] .eco-card-status { color: var(--oker); background: var(--oker-tn); }
.eco-stage[data-stage="3"] .eco-card-status { color: #6f9b54; background: rgba(61,97,44,.16); }
/* gewonnen · kaart-glow + prijs-pulse */
.eco-stage[data-stage="3"] .eco-card {
  box-shadow: 0 0 0 8px rgba(61,97,44,.16), 0 36px 80px -30px rgba(0,0,0,.6); }
.eco-stage[data-stage="3"] .eco-price { animation: ecoWin .7s cubic-bezier(.34,1.56,.64,1); }
@keyframes ecoWin { 0% { transform: scale(1); } 45% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* reset · kaart faden voor naadloze loop */
.eco-stage[data-phase="reset"] .eco-card { opacity: 0; }

/* statisch eindbeeld als JS uit staat / reduced-motion */
.eco-stage.eco-static .eco-sk { opacity: 0; }
.eco-stage.eco-static .eco-v { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .eco-grid { grid-template-columns: 1fr; gap: 40px; }
  .eco-sub { max-width: none; }
  .eco-stage { max-width: 420px; }
}

/* ═════════════════════════════════════════════════════════════
   FLOW v10 · volledige product-journey — één centraal frame dat
   door alle states morpht (chat → formulier → aanvraag → pipeline).
   Erft het donkere thema van .eco-hero--dark. Floating jo-msg
   cards rondom (scene 1-2). Geen losse schermen.
   ═════════════════════════════════════════════════════════════ */
.jo { position: relative; width: 100%; max-width: 600px; margin: 0 auto;
  aspect-ratio: 1 / 1; perspective: 1600px; }

/* — floating berichten (scene 1-2) — */
.jo-msg { position: absolute; width: clamp(178px, 40%, 232px); display: flex; gap: 10px;
  align-items: flex-start; padding: 12px 14px; border-radius: 15px;
  background: var(--eco-msg-bg); color: var(--eco-msg-tx); border: 1px solid var(--eco-msg-brd);
  box-shadow: var(--eco-msg-sh); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  z-index: 3; opacity: 0; will-change: transform, opacity; }
.jo-msg--wa   { left: 0%;  top: 6%; }
.jo-msg--tel  { left: 2%;  top: 40%; }
.jo-msg--mail { left: 0%;  top: 74%; }
.jo-msg--ig   { left: 56%; top: 80%; }
.jo-mbd { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.jo-mbd b { font-size: 12px; font-weight: 700; }
.jo-mbd em { font-style: normal; font-size: 13px; line-height: 1.3; }
.jo-mbd time { font-family: var(--font-mono); font-size: 9.5px; color: var(--eco-msg-dim); }

/* — centraal frame (constant; inhoud morpht) — */
.jo-frame { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  z-index: 5; width: clamp(282px, 60%, 348px); height: clamp(384px, 82%, 468px);
  border-radius: 22px; background: var(--eco-cardbg); border: 1px solid var(--eco-cardbrd);
  box-shadow: 0 0 0 7px rgba(184,115,51,.06), 0 44px 96px -34px rgba(0,0,0,.66);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); overflow: hidden;
  transition: box-shadow .6s ease, opacity .55s ease; }
.jo-glow { position: absolute; left: 50%; top: 46%; width: 78%; height: 60%;
  transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(184,115,51,.4) 0%, transparent 68%);
  filter: blur(14px); opacity: 0; transition: opacity .7s ease; }
.jo[data-cards="pull"] .jo-glow { opacity: 1; }
.jo[data-stage="4"] .jo-frame { box-shadow: 0 0 0 8px rgba(61,97,44,.16), 0 44px 96px -30px rgba(0,0,0,.66); }
.jo[data-panel="reset"] .jo-frame { opacity: 0; }

/* merk-glow (scene 2) */
.jo-brand { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 9px; opacity: 0;
  transition: opacity .5s ease; pointer-events: none; }
.jo[data-panel="none"] .jo-brand { opacity: 1; }
.jo-brand svg { width: 46px; height: 46px; filter: drop-shadow(0 0 18px rgba(184,115,51,.5)); }
.jo-brand span { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--eco-cardtx); }

/* — panels — */
.jo-panel { position: absolute; inset: 0; z-index: 4; padding: 16px; display: flex;
  flex-direction: column; opacity: 0; transform: scale(.975) translateY(10px);
  pointer-events: none; transition: opacity .5s ease, transform .55s cubic-bezier(.65,0,.35,1); }
.jo[data-panel="chat"]     .jo-chat,
.jo[data-panel="form"]     .jo-form,
.jo[data-panel="aanvraag"] .jo-aanvraag { opacity: 1; transform: none; }

/* panel · chat */
.jo-chat { padding: 0; }
.jo-chat-top { display: flex; align-items: center; gap: 10px; padding: 13px 15px;
  border-bottom: 1px solid var(--eco-line); }
.jo-ava { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--klei);
  color: #fff; display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 800; font-size: 12px; }
.jo-chat-who { display: flex; flex-direction: column; flex: 1; min-width: 0; line-height: 1.2; }
.jo-chat-who b { font-size: 13.5px; color: var(--eco-cardtx); font-weight: 700; }
.jo-chat-who i { font-style: normal; font-size: 10.5px; color: #6f9b54; }
.jo-chat-call { width: 17px; height: 17px; color: var(--eco-carddim); }
.jo-chat-body { display: flex; flex-direction: column; gap: 9px; padding: 15px; }
.jo-bub { max-width: 84%; padding: 9px 12px; font-size: 13px; line-height: 1.36; border-radius: 14px;
  position: relative; }
.jo-bub time { display: block; font-family: var(--font-mono); font-size: 8.5px; opacity: .6; margin-top: 3px; }
.jo-bub--in  { align-self: flex-start; background: var(--eco-msg-bg); color: var(--eco-msg-tx);
  border: 1px solid var(--eco-msg-brd); border-radius: 4px 14px 14px 14px; }
.jo-bub--out { align-self: flex-end; background: rgba(37,211,102,.16); color: var(--eco-cardtx);
  border: 1px solid rgba(37,211,102,.28); border-radius: 14px 4px 14px 14px; }
.jo-bub--link { display: flex; align-items: center; gap: 9px; background: var(--eco-cardbg);
  border: 1px solid var(--oker); }
.jo-link-ic { flex: 0 0 auto; width: 26px; height: 26px; }
.jo-link-ic svg { width: 26px; height: 26px; display: block; }
.jo-link-tx { display: flex; flex-direction: column; min-width: 0; }
.jo-link-tx b { font-size: 12px; color: var(--eco-cardtx); }
.jo-link-tx i { font-style: normal; font-family: var(--font-mono); font-size: 9.5px; color: var(--oker); }

/* panel · formulier */
.jo-form { gap: 10px; }
.jo-form-top { display: flex; align-items: center; justify-content: space-between; }
.jo-form-top b { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--eco-cardtx); }
.jo-step { font-family: var(--font-mono); font-size: 10px; color: var(--eco-carddim); }
.jo-form-bar { height: 6px; border-radius: 4px; background: var(--eco-sk); overflow: hidden; }
.jo-form-bar i { display: block; height: 100%; width: 20%; background: var(--oker); border-radius: 4px;
  transition: width .4s ease; }
.jo-form-q { font-size: 12.5px; font-weight: 600; color: var(--eco-cardtx); margin-top: 2px; }
.jo-form-field { display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border-radius: 11px; border: 1px solid var(--oker); background: var(--eco-msg-bg); }
.jo-field-val { font-size: 16px; font-weight: 700; color: var(--eco-cardtx); }
.jo-field-unit { font-size: 12px; color: var(--eco-carddim); }
.jo-form-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.jo-photo { aspect-ratio: 1; border-radius: 9px; background-size: cover; background-position: center;
  border: 1px solid var(--eco-line); }
.jo-photo--add { display: grid; place-items: center; background: var(--eco-sk); color: var(--eco-carddim); }
.jo-photo--add svg { width: 16px; height: 16px; }
.jo-form-cta { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px; border-radius: 11px; background: var(--oker); color: #fff; font-weight: 700; font-size: 13px; }
.jo-form-cta svg { width: 15px; height: 15px; }
/* scene 5 · ontvangen (overlay over form) */
.jo-received { position: absolute; inset: 0; z-index: 6; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 24px;
  background: var(--eco-cardbg); opacity: 0; pointer-events: none; transition: opacity .5s ease; }
.jo[data-fstep="done"] .jo-received { opacity: 1; }
.jo-recv-ring { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--oker);
  color: var(--oker); display: grid; place-items: center; transform: scale(.7); opacity: 0;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1) .1s, opacity .4s ease .1s; }
.jo-recv-ring svg { width: 28px; height: 28px; }
.jo[data-fstep="done"] .jo-recv-ring { transform: scale(1); opacity: 1; }
.jo-received b { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--eco-cardtx); }
.jo-received p { font-size: 12px; color: var(--eco-carddim); line-height: 1.5; }

/* panel · complete aanvraag → pipeline */
.jo-aanvraag { gap: 0; padding: 0; }
.jo-a-top { display: flex; align-items: center; gap: 9px; padding: 14px 15px;
  border-bottom: 1px solid var(--eco-line); }
.jo-a-mark { flex: 0 0 auto; width: 22px; height: 22px; }
.jo-a-mark svg { width: 22px; height: 22px; display: block; }
.jo-a-title { flex: 1; font-size: 13px; font-weight: 700; color: var(--eco-cardtx); }
.jo-a-status { font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px; color: #6f9b54;
  background: rgba(61,97,44,.16); transition: color .4s ease, background .4s ease; }
.jo[data-stage] .jo-a-status { color: var(--oker); background: var(--oker-tn); }
.jo[data-stage="4"] .jo-a-status { color: #6f9b54; background: rgba(61,97,44,.16); }
.jo-a-body { padding: 6px 15px 8px; }
.jo-a-row { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid var(--eco-line); font-size: 13px; min-height: 38px; }
.jo-a-row:last-child { border-bottom: 0; }
.jo-a-k { font-family: var(--font-mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--eco-carddim); }
.jo-a-v { font-weight: 600; color: var(--eco-cardtx); }
.jo-a-thumbs { display: flex; gap: 5px; }
.jo-a-thumbs i { width: 22px; height: 22px; border-radius: 5px; background-size: cover; background-position: center; }
.jo-a-price { color: var(--oker); font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.jo[data-stage="4"] .jo-a-price { animation: ecoWin .7s cubic-bezier(.34,1.56,.64,1); color: #6f9b54; }
/* stepper (verschijnt in pipeline-modus) */
.jo-track { display: flex; gap: 5px; padding: 0 15px; max-height: 0; opacity: 0; overflow: hidden;
  border-top: 1px solid transparent; margin-top: auto;
  transition: max-height .55s ease, opacity .4s ease, padding .55s ease, border-color .55s ease; }
.jo[data-stage] .jo-track { max-height: 48px; opacity: 1; padding: 11px 15px; border-top-color: var(--eco-line); }
.jo-step-i { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 7.5px;
  letter-spacing: .02em; text-transform: uppercase; color: var(--eco-carddim); padding: 5px 3px;
  border-radius: 7px; background: var(--eco-sk); white-space: nowrap;
  transition: color .35s ease, background .35s ease; }
.jo[data-stage="0"] .jo-step-i[data-s="0"],
.jo[data-stage="1"] .jo-step-i[data-s="1"],
.jo[data-stage="2"] .jo-step-i[data-s="2"],
.jo[data-stage="3"] .jo-step-i[data-s="3"] { color: #fff; background: var(--oker); }
.jo[data-stage="4"] .jo-step-i[data-s="4"] { color: #fff; background: #5f8f43; }
.jo[data-stage="1"] .jo-step-i[data-s="0"],
.jo[data-stage="2"] .jo-step-i[data-s="0"], .jo[data-stage="2"] .jo-step-i[data-s="1"],
.jo[data-stage="3"] .jo-step-i[data-s="0"], .jo[data-stage="3"] .jo-step-i[data-s="1"], .jo[data-stage="3"] .jo-step-i[data-s="2"],
.jo[data-stage="4"] .jo-step-i[data-s="0"], .jo[data-stage="4"] .jo-step-i[data-s="1"], .jo[data-stage="4"] .jo-step-i[data-s="2"], .jo[data-stage="4"] .jo-step-i[data-s="3"] {
  color: var(--oker); background: var(--oker-tn); }

@media (max-width: 900px) {
  .jo { max-width: 460px; }
  .jo-frame { width: 300px; }
}

/* ═════════════════════════════════════════════════════════════
   FLOW v11 · EXPERIMENTEEL (Hero V2) — één centraal frame dat
   door alle states morpht (chat → formulier → aanvraag → pipeline).
   Erft het donkere thema van .eco-hero--dark. Floating jo-msg
   cards rondom (scene 1-2). Geen losse schermen.
   ═════════════════════════════════════════════════════════════ */
.j2 { position: relative; width: 100%; max-width: 600px; margin: 0 auto;
  aspect-ratio: 1 / 1; perspective: 1600px; }

/* — floating berichten (scene 1-2) — */
.j2-msg { position: absolute; width: clamp(178px, 40%, 232px); display: flex; gap: 10px;
  align-items: flex-start; padding: 12px 14px; border-radius: 15px;
  background: var(--eco-msg-bg); color: var(--eco-msg-tx); border: 1px solid var(--eco-msg-brd);
  box-shadow: var(--eco-msg-sh); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  z-index: 3; opacity: 0; will-change: transform, opacity; }
.j2-msg--wa   { left: 0%;  top: 6%; }
.j2-msg--tel  { left: 2%;  top: 40%; }
.j2-msg--mail { left: 0%;  top: 74%; }
.j2-msg--ig   { left: 56%; top: 80%; }
.j2-mbd { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.j2-mbd b { font-size: 12px; font-weight: 700; }
.j2-mbd em { font-style: normal; font-size: 13px; line-height: 1.3; }
.j2-mbd time { font-family: var(--font-mono); font-size: 9.5px; color: var(--eco-msg-dim); }

/* — centraal frame (constant; inhoud morpht) — */
.j2-frame { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  z-index: 5; width: clamp(282px, 60%, 348px); height: clamp(384px, 82%, 468px);
  border-radius: 22px; background: var(--eco-cardbg); border: 1px solid var(--eco-cardbrd);
  box-shadow: 0 0 0 7px rgba(184,115,51,.06), 0 44px 96px -34px rgba(0,0,0,.66);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); overflow: hidden;
  transition: box-shadow .6s ease, opacity .55s ease; }
.j2-glow { position: absolute; left: 50%; top: 46%; width: 78%; height: 60%;
  transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(184,115,51,.4) 0%, transparent 68%);
  filter: blur(14px); opacity: 0; transition: opacity .7s ease; }
.j2[data-cards="pull"] .j2-glow { opacity: 1; }
.j2[data-stage="4"] .j2-frame { box-shadow: 0 0 0 8px rgba(61,97,44,.16), 0 44px 96px -30px rgba(0,0,0,.66); }
.j2[data-panel="reset"] .j2-frame { opacity: 0; }

/* merk-glow (scene 2) */
.j2-brand { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 9px; opacity: 0;
  transition: opacity .5s ease; pointer-events: none; }
.j2[data-panel="none"] .j2-brand { opacity: 1; }
.j2-brand svg { width: 46px; height: 46px; filter: drop-shadow(0 0 18px rgba(184,115,51,.5)); }
.j2-brand span { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--eco-cardtx); }

/* — panels — */
.j2-panel { position: absolute; inset: 0; z-index: 4; padding: 16px; display: flex;
  flex-direction: column; opacity: 0; transform: scale(.975) translateY(10px);
  pointer-events: none; transition: opacity .5s ease, transform .55s cubic-bezier(.65,0,.35,1); }
.j2[data-panel="chat"]     .j2-chat,
.j2[data-panel="form"]     .j2-form,
.j2[data-panel="aanvraag"] .j2-aanvraag { opacity: 1; transform: none; }

/* panel · chat */
.j2-chat { padding: 0; }
.j2-chat-top { display: flex; align-items: center; gap: 10px; padding: 13px 15px;
  border-bottom: 1px solid var(--eco-line); }
.j2-ava { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--klei);
  color: #fff; display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 800; font-size: 12px; }
.j2-chat-who { display: flex; flex-direction: column; flex: 1; min-width: 0; line-height: 1.2; }
.j2-chat-who b { font-size: 13.5px; color: var(--eco-cardtx); font-weight: 700; }
.j2-chat-who i { font-style: normal; font-size: 10.5px; color: #6f9b54; }
.j2-chat-call { width: 17px; height: 17px; color: var(--eco-carddim); }
.j2-chat-body { display: flex; flex-direction: column; gap: 9px; padding: 15px; }
.j2-bub { max-width: 84%; padding: 9px 12px; font-size: 13px; line-height: 1.36; border-radius: 14px;
  position: relative; }
.j2-bub time { display: block; font-family: var(--font-mono); font-size: 8.5px; opacity: .6; margin-top: 3px; }
.j2-bub--in  { align-self: flex-start; background: var(--eco-msg-bg); color: var(--eco-msg-tx);
  border: 1px solid var(--eco-msg-brd); border-radius: 4px 14px 14px 14px; }
.j2-bub--out { align-self: flex-end; background: rgba(37,211,102,.16); color: var(--eco-cardtx);
  border: 1px solid rgba(37,211,102,.28); border-radius: 14px 4px 14px 14px; }
.j2-bub--link { display: flex; align-items: center; gap: 9px; background: var(--eco-cardbg);
  border: 1px solid var(--oker); }
.j2-link-ic { flex: 0 0 auto; width: 26px; height: 26px; }
.j2-link-ic svg { width: 26px; height: 26px; display: block; }
.j2-link-tx { display: flex; flex-direction: column; min-width: 0; }
.j2-link-tx b { font-size: 12px; color: var(--eco-cardtx); }
.j2-link-tx i { font-style: normal; font-family: var(--font-mono); font-size: 9.5px; color: var(--oker); }

/* panel · formulier */
.j2-form { gap: 10px; }
.j2-form-top { display: flex; align-items: center; justify-content: space-between; }
.j2-form-top b { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--eco-cardtx); }
.j2-step { font-family: var(--font-mono); font-size: 10px; color: var(--eco-carddim); }
.j2-form-bar { height: 6px; border-radius: 4px; background: var(--eco-sk); overflow: hidden; }
.j2-form-bar i { display: block; height: 100%; width: 20%; background: var(--oker); border-radius: 4px;
  transition: width .4s ease; }
.j2-form-q { font-size: 12.5px; font-weight: 600; color: var(--eco-cardtx); margin-top: 2px; }
.j2-form-field { display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border-radius: 11px; border: 1px solid var(--oker); background: var(--eco-msg-bg); }
.j2-field-val { font-size: 16px; font-weight: 700; color: var(--eco-cardtx); }
.j2-field-unit { font-size: 12px; color: var(--eco-carddim); }
.j2-form-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.j2-photo { aspect-ratio: 1; border-radius: 9px; background-size: cover; background-position: center;
  border: 1px solid var(--eco-line); }
.j2-photo--add { display: grid; place-items: center; background: var(--eco-sk); color: var(--eco-carddim); }
.j2-photo--add svg { width: 16px; height: 16px; }
.j2-form-cta { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px; border-radius: 11px; background: var(--oker); color: #fff; font-weight: 700; font-size: 13px; }
.j2-form-cta svg { width: 15px; height: 15px; }
/* scene 5 · ontvangen (overlay over form) */
.j2-received { position: absolute; inset: 0; z-index: 6; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 24px;
  background: var(--eco-cardbg); opacity: 0; pointer-events: none; transition: opacity .5s ease; }
.j2[data-fstep="done"] .j2-received { opacity: 1; }
.j2-recv-ring { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--oker);
  color: var(--oker); display: grid; place-items: center; transform: scale(.7); opacity: 0;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1) .1s, opacity .4s ease .1s; }
.j2-recv-ring svg { width: 28px; height: 28px; }
.j2[data-fstep="done"] .j2-recv-ring { transform: scale(1); opacity: 1; }
.j2-received b { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--eco-cardtx); }
.j2-received p { font-size: 12px; color: var(--eco-carddim); line-height: 1.5; }

/* panel · complete aanvraag → pipeline */
.j2-aanvraag { gap: 0; padding: 0; }
.j2-a-top { display: flex; align-items: center; gap: 9px; padding: 14px 15px;
  border-bottom: 1px solid var(--eco-line); }
.j2-a-mark { flex: 0 0 auto; width: 22px; height: 22px; }
.j2-a-mark svg { width: 22px; height: 22px; display: block; }
.j2-a-title { flex: 1; font-size: 13px; font-weight: 700; color: var(--eco-cardtx); }
.j2-a-status { font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px; color: #6f9b54;
  background: rgba(61,97,44,.16); transition: color .4s ease, background .4s ease; }
.j2[data-stage] .j2-a-status { color: var(--oker); background: var(--oker-tn); }
.j2[data-stage="4"] .j2-a-status { color: #6f9b54; background: rgba(61,97,44,.16); }
.j2-a-body { padding: 6px 15px 8px; }
.j2-a-row { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid var(--eco-line); font-size: 13px; min-height: 38px; }
.j2-a-row:last-child { border-bottom: 0; }
.j2-a-k { font-family: var(--font-mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--eco-carddim); }
.j2-a-v { font-weight: 600; color: var(--eco-cardtx); }
.j2-a-thumbs { display: flex; gap: 5px; }
.j2-a-thumbs i { width: 22px; height: 22px; border-radius: 5px; background-size: cover; background-position: center; }
.j2-a-price { color: var(--oker); font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.j2[data-stage="4"] .j2-a-price { animation: ecoWin .7s cubic-bezier(.34,1.56,.64,1); color: #6f9b54; }
/* stepper (verschijnt in pipeline-modus) */
.j2-track { display: flex; gap: 5px; padding: 0 15px; max-height: 0; opacity: 0; overflow: hidden;
  border-top: 1px solid transparent; margin-top: auto;
  transition: max-height .55s ease, opacity .4s ease, padding .55s ease, border-color .55s ease; }
.j2[data-stage] .j2-track { max-height: 48px; opacity: 1; padding: 11px 15px; border-top-color: var(--eco-line); }
.j2-step-i { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 7.5px;
  letter-spacing: .02em; text-transform: uppercase; color: var(--eco-carddim); padding: 5px 3px;
  border-radius: 7px; background: var(--eco-sk); white-space: nowrap;
  transition: color .35s ease, background .35s ease; }
.j2[data-stage="0"] .j2-step-i[data-s="0"],
.j2[data-stage="1"] .j2-step-i[data-s="1"],
.j2[data-stage="2"] .j2-step-i[data-s="2"],
.j2[data-stage="3"] .j2-step-i[data-s="3"] { color: #fff; background: var(--oker); }
.j2[data-stage="4"] .j2-step-i[data-s="4"] { color: #fff; background: #5f8f43; }
.j2[data-stage="1"] .j2-step-i[data-s="0"],
.j2[data-stage="2"] .j2-step-i[data-s="0"], .j2[data-stage="2"] .j2-step-i[data-s="1"],
.j2[data-stage="3"] .j2-step-i[data-s="0"], .j2[data-stage="3"] .j2-step-i[data-s="1"], .j2[data-stage="3"] .j2-step-i[data-s="2"],
.j2[data-stage="4"] .j2-step-i[data-s="0"], .j2[data-stage="4"] .j2-step-i[data-s="1"], .j2[data-stage="4"] .j2-step-i[data-s="2"], .j2[data-stage="4"] .j2-step-i[data-s="3"] {
  color: var(--oker); background: var(--oker-tn); }

@media (max-width: 900px) {
  .j2 { max-width: 460px; }
  .j2-frame { width: 300px; }
}

/* ── Hero V2 (j2) · iteratie 2 — chat opent direct, sequentiële bubbles ── */
.j2-bub { opacity: 0; transform: translateY(9px);
  transition: opacity .45s ease, transform .5s cubic-bezier(.65,0,.35,1); }
.j2[data-chat="1"] .j2-chat-body .j2-bub:nth-child(1),
.j2[data-chat="2"] .j2-chat-body .j2-bub:nth-child(-n+2),
.j2[data-chat="3"] .j2-chat-body .j2-bub:nth-child(-n+3) { opacity: 1; transform: none; }
/* link verzonden · subtiele puls + ✓✓ */
.j2-bub--link { position: relative; }
.j2-bub--link::after { content: "✓✓"; position: absolute; right: 11px; bottom: 6px;
  font-family: var(--font-mono); font-size: 8.5px; color: #6f9b54; opacity: 0; transition: opacity .4s ease; }
.j2[data-linksent] .j2-bub--link::after { opacity: 1; }
.j2[data-linksent] .j2-bub--link { animation: j2sent .65s cubic-bezier(.34,1.56,.64,1); }
@keyframes j2sent { 0% { transform: scale(1); } 45% { transform: scale(1.035); } 100% { transform: scale(1); } }

/* ── Hero V2 (j2) · iteratie 3 — formuliervelden vullen sequentieel ── */
.j2-form-fields { display: flex; flex-direction: column; gap: 10px; }
.j2-frow { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 13px; border-radius: 11px; background: var(--eco-msg-bg);
  border: 1px solid var(--eco-msg-brd); opacity: 0; transform: translateY(10px);
  transition: opacity .45s ease, transform .5s cubic-bezier(.65,0,.35,1); }
.j2[data-fp="1"] .j2-frow:nth-child(1),
.j2[data-fp="2"] .j2-frow:nth-child(-n+2),
.j2[data-fp="3"] .j2-frow:nth-child(-n+3) { opacity: 1; transform: none; }
.j2-fk { font-family: var(--font-mono); font-size: 10px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--eco-carddim); }
.j2-fv { font-size: 13px; font-weight: 600; color: var(--eco-cardtx); }
.j2-m2 { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--oker); }
.j2-fphotos { display: flex; gap: 6px; }
.j2-fphotos i { width: 28px; height: 28px; border-radius: 6px; background-size: cover;
  background-position: center; border: 1px solid var(--eco-line); opacity: 0; transform: scale(.55);
  transition: opacity .35s ease, transform .42s cubic-bezier(.34,1.56,.64,1); }
.j2[data-fp="3"] .j2-fphotos i { opacity: 1; transform: none; }
.j2[data-fp="3"] .j2-fphotos i:nth-child(2) { transition-delay: .13s; }
.j2[data-fp="3"] .j2-fphotos i:nth-child(3) { transition-delay: .26s; }

/* ── Hero V2 (j2) · iteratie 4 — link→formulier shared-element morph ── */
/* het formulier-panel groeit vanuit de positie van de verzonden link-bubble */
.j2-form.j2-panel { transform-origin: 50% 80%; transform: scale(.9);
  transition: opacity .5s ease, transform .62s cubic-bezier(.22,1,.36,1) .06s; }
.j2[data-panel="form"] .j2-form.j2-panel { transform: none; }
/* de link-bubble "opent" (schaalt op + vervaagt) terwijl de chat terugwijkt */
.j2-bub--link { transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .45s ease; }
.j2[data-panel="form"] .j2-chat .j2-bub--link { transform: scale(1.16) translateY(-8px); opacity: 0; }

/* ── Hero V2 (j2) · iteratie 5 — mobile-frame (≤560px) ── */
@media (max-width: 560px) {
  .j2 { max-width: 100%; aspect-ratio: 3 / 4; }
  .j2-frame { width: min(88%, 300px); height: 86%; }
  .j2-msg { width: clamp(144px, 50%, 184px); padding: 10px 12px; gap: 9px; }
  .j2-msg--wa { left: -2%; top: 4%; }
  .j2-msg--tel { left: 0%; top: 36%; }
  .j2-msg--mail { left: -2%; top: 70%; }
  .j2-msg--ig { left: 52%; top: 78%; }
  .j2-mbd b { font-size: 11px; }
  .j2-mbd em { font-size: 12px; }
  .j2-chat-body { padding: 13px; gap: 8px; }
  .j2-bub { font-size: 12.5px; }
  .j2-frow { padding: 10px 11px; }
  .j2-step-i { font-size: 7px; padding: 5px 2px; }
  .j2-a-row { padding: 8px 0; font-size: 12.5px; }
}
@media (max-width: 380px) {
  .j2-frame { width: 92%; }
  .j2-step-i { font-size: 6.5px; letter-spacing: 0; }
}

/* ── Hero V2 (j2) · iteratie 6 — CTA-geruststelling onder de knoppen ── */
.eco-cta-note { margin-top: 12px; font-size: 12.5px; color: var(--eco-text-dim);
  display: flex; align-items: center; gap: 6px; }

/* ── Hero V2 (j2) · iteratie 7 — diepte/parallax-finesse + glow-laag ── */
.j2-glow { opacity: .38; animation: j2breathe 7s ease-in-out infinite; }
.j2[data-cards="pull"] .j2-glow { opacity: 1; }
@keyframes j2breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.09); }
}
.j2-msg--mail { filter: blur(.6px); }   /* verste laag · zachte diepte */

/* ── Hero V2 (j2) · iteratie 8 — social-proof avatar-cluster ── */
.eco-proof2 { display: flex; align-items: center; gap: 11px; margin-top: 22px; flex-wrap: wrap; }
.eco-ava-row { display: flex; }
.eco-ava-row i { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 10px; color: #fff; font-style: normal;
  border: 2px solid var(--lood); margin-left: -8px; }
.eco-ava-row i:first-child { margin-left: 0; }
.eco-ava-row i:nth-child(1) { background: var(--klei); }
.eco-ava-row i:nth-child(2) { background: var(--oker); }
.eco-ava-row i:nth-child(3) { background: var(--groen); }
.eco-ava-row i:nth-child(4) { background: var(--kalk); font-size: 13px; }
.eco-proof2-tx { font-size: 12.5px; color: var(--eco-text-dim); }
.eco-proof2-tx .eco-stars { font-size: 12px; letter-spacing: 1px; }

/* ── Hero V2 (j2) · iteratie 9 — groter frame, gevulde aanvraag, voortgangs-tijdlijn + offerte/gewonnen-morph ── */
/* groter frame */
.j2-frame { width: clamp(300px, 64%, 384px); height: clamp(404px, 86%, 500px); }
/* body vult de hoogte → geen dood vlak meer */
.j2-a-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.j2-a-row { min-height: 0; }

/* Offerte-morph (stage ≥ 2): richtprijs → mini-offerte */
.j2-offerte { max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
  transition: max-height .55s cubic-bezier(.65,0,.35,1), opacity .4s ease, margin-top .55s ease; }
.j2[data-stage="2"] .j2-offerte,
.j2[data-stage="3"] .j2-offerte,
.j2[data-stage="4"] .j2-offerte { max-height: 170px; opacity: 1; margin-top: 8px; }
.j2-off-row, .j2-off-tot { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; padding: 5px 0; }
.j2-off-row span { color: var(--eco-carddim); }
.j2-off-row b { color: var(--eco-cardtx); font-weight: 600; }
.j2-off-tot { border-top: 1px solid var(--eco-line); margin-top: 2px; padding-top: 8px; }
.j2-off-tot span { color: var(--eco-cardtx); font-weight: 700; font-size: 13px; }
.j2-off-val { color: var(--oker); font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.j2[data-stage="4"] .j2-off-val { color: #5f8f43; }

/* Voortgangs-tijdlijn (vervangt knoppenbalk) */
.j2-flow { padding: 14px 16px 16px; border-top: 1px solid var(--eco-line); }
.j2-flow-track { height: 5px; border-radius: 3px; background: var(--eco-sk); overflow: hidden; margin-bottom: 10px; }
.j2-flow-fill { display: block; height: 100%; width: 0; border-radius: 3px; background: var(--oker);
  transition: width .6s cubic-bezier(.65,0,.35,1), background .4s ease; }
.j2[data-stage="0"] .j2-flow-fill { width: 4%; }
.j2[data-stage="1"] .j2-flow-fill { width: 28%; }
.j2[data-stage="2"] .j2-flow-fill { width: 52%; }
.j2[data-stage="3"] .j2-flow-fill { width: 76%; }
.j2[data-stage="4"] .j2-flow-fill { width: 100%; background: #5f8f43; }
.j2-flow-steps { display: flex; justify-content: space-between; }
.j2-fs { font-family: var(--font-mono); font-size: 8px; letter-spacing: .02em; text-transform: uppercase;
  color: var(--eco-carddim); transition: color .35s ease, font-weight .35s ease; }
/* reeds bereikte stappen oker, eindstap groen */
.j2[data-stage="0"] .j2-fs[data-s="0"],
.j2[data-stage="1"] .j2-fs[data-s="0"], .j2[data-stage="1"] .j2-fs[data-s="1"],
.j2[data-stage="2"] .j2-fs[data-s="0"], .j2[data-stage="2"] .j2-fs[data-s="1"], .j2[data-stage="2"] .j2-fs[data-s="2"],
.j2[data-stage="3"] .j2-fs[data-s="0"], .j2[data-stage="3"] .j2-fs[data-s="1"], .j2[data-stage="3"] .j2-fs[data-s="2"], .j2[data-stage="3"] .j2-fs[data-s="3"],
.j2[data-stage="4"] .j2-fs[data-s="0"], .j2[data-stage="4"] .j2-fs[data-s="1"], .j2[data-stage="4"] .j2-fs[data-s="2"], .j2[data-stage="4"] .j2-fs[data-s="3"] { color: var(--oker); }
.j2[data-stage="4"] .j2-fs[data-s="4"] { color: #6f9b54; font-weight: 700; }

/* ─── Hoe het werkt — gedeelde visuele componenten ─── */

/* browser-frame voor desktop screenshots in stap-context */
.htw-screen {
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--lijn);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--beton-2);
}
.htw-screen img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  object-position: top center;
}

/* telefoon-frame voor mobiele screenshot */
.htw-phone {
  max-width: 200px;
  margin-inline: auto;
  border-radius: 30px;
  overflow: hidden;
  border: 5px solid var(--lood);
  box-shadow: var(--shadow-hero);
  background: var(--lood);
}
.htw-phone img { display: block; width: 100%; height: auto; }

/* stap 01 setup-kaart (licht, geen app-chrome) */
.htw-setup-card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.htw-sc-url {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 14px;
  background: var(--beton-2);
  border-radius: 10px;
  border: 1px solid var(--lijn);
  color: var(--lood);
}
.htw-sc-url .dim { color: var(--kalk-lt); font-weight: 400; }
.htw-sc-rows { display: flex; flex-direction: column; gap: 10px; }
.htw-sc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lood);
}
.htw-sc-chk {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--groen-bg);
  color: var(--groen);
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.htw-sc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--lijn);
  flex-wrap: wrap;
}
.htw-sc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--kalk-lt);
  letter-spacing: 0.04em;
}
.htw-sc-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--oker-deep);
  cursor: pointer;
}
/* compacte versie voor grid layout C */
.htw-setup-card-sm { max-width: 100%; }
.htw-setup-card-sm .htw-sc-foot { display: none; }

/* ─── LAYOUT B — verticale tijdlijn ─── */
.htw-vtl { display: flex; flex-direction: column; }
.htw-vtl-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 0;
}
.htw-vtl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
}
.htw-vtl-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--lood);
  border: 1.5px solid var(--oker);
  box-shadow: 0 0 0 5px rgba(184,115,51,0.07);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.htw-vtl-num span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--oker);
  letter-spacing: 0.08em;
}
.htw-vtl-line {
  flex: 1;
  width: 1px;
  min-height: 40px;
  margin: 6px 0 0;
  background: linear-gradient(to bottom, rgba(184,115,51,0.45) 0%, var(--lijn) 50%);
}
.htw-vtl-item:last-child .htw-vtl-line { display: none; }
.htw-vtl-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 0 0 60px 16px;
}
.htw-vtl-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.htw-vtl-copy p { font-size: 16.5px; color: var(--kalk); line-height: 1.65; }
.htw-vtl-vis { display: flex; align-items: center; justify-content: flex-start; }

@media (max-width: 768px) {
  .htw-vtl-item { grid-template-columns: 44px 1fr; }
  .htw-vtl-num { width: 36px; height: 36px; }
  .htw-vtl-right { grid-template-columns: 1fr; gap: 22px; padding: 0 0 44px 12px; }
}

/* ─── LAYOUT C — donkere kaarten met iconen ─── */
.htw-dk-wrap {
  background: var(--lood);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 44px);
  box-shadow: var(--shadow-hero);
}
.htw-dk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.htw-dk-card {
  background: rgba(255,253,249,0.035);
  border: 1px solid rgba(184,115,51,0.15);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
  cursor: default;
}
.htw-dk-card:hover {
  border-color: rgba(184,115,51,0.42);
  background: rgba(255,253,249,0.06);
  box-shadow: 0 0 28px rgba(184,115,51,0.07);
}
.htw-dk-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.htw-dk-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(184,115,51,0.12);
  border: 1px solid rgba(184,115,51,0.22);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--oker);
}
.htw-dk-icon svg { width: 15px; height: 15px; }
.htw-dk-n {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(184,115,51,0.6);
  margin-left: auto;
}
.htw-dk-body h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(251,244,233,0.92);
  margin-bottom: 7px;
}
.htw-dk-body p {
  font-size: 13.5px;
  color: rgba(251,244,233,0.44);
  line-height: 1.62;
}
.htw-dk-vis {
  flex: 1;
  display: flex;
  align-items: flex-end;
  margin-top: 4px;
}
.htw-dk-vis-center { justify-content: center; }
/* dark-adapted visuals */
.htw-setup-card-dk {
  background: rgba(255,253,249,0.05) !important;
  border-color: rgba(255,253,249,0.09) !important;
  max-width: 100% !important;
}
.htw-setup-card-dk .htw-sc-url {
  background: rgba(255,253,249,0.05);
  border-color: rgba(255,253,249,0.09);
  color: rgba(251,244,233,0.72);
}
.htw-setup-card-dk .htw-sc-url .dim { color: rgba(251,244,233,0.3); }
.htw-setup-card-dk .htw-sc-row { color: rgba(251,244,233,0.7); }
.htw-setup-card-dk .htw-sc-chk {
  background: rgba(61,97,44,0.35);
  color: #7db96a;
}
.htw-dk-link {
  max-width: 100% !important;
  width: 100%;
  background: rgba(255,253,249,0.05) !important;
  border-color: rgba(255,253,249,0.09) !important;
}
.htw-dk-link .mock-link-url { color: rgba(251,244,233,0.72) !important; }
.htw-dk-link .mock-link-url .dim { color: rgba(251,244,233,0.3) !important; }
.htw-dk-link .mock-link-btn {
  background: rgba(184,115,51,0.2);
  color: var(--oker);
}

@media (max-width: 680px) {
  .htw-dk-grid { grid-template-columns: 1fr; }
  .htw-dk-wrap { border-radius: 18px; }
}

/* ─── Hoe het werkt — flow track 01→02→03→04 ─── */
.flow-track {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: clamp(40px, 5vw, 60px);
  flex-wrap: wrap;
}
.ft-step {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--lijn);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.ft-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--oker-deep);
}
.ft-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--kalk);
}
.ft-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 10px;
  color: var(--lijn);
}
.ft-connector svg { width: 100%; height: 100%; }

/* ─── Stap 01 — mini form-builder mock ─── */
.mock-builder {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lift);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mb-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mb-sq {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--lood);
  color: var(--oker-tn);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mb-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--lood);
}
.mb-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--oker-tn);
  border: 1px solid var(--oker-lt);
  color: var(--klei);
  white-space: nowrap;
}
.mb-section { display: flex; flex-direction: column; gap: 8px; }
.mb-section-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kalk-lt);
}
.mb-swatches {
  display: flex;
  gap: 8px;
  align-items: center;
}
.mb-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mb-swatch-sel {
  outline: 2.5px solid var(--oker);
  outline-offset: 2px;
}
.mb-swatch-add {
  background: var(--beton-2);
  border: 1.5px dashed var(--lijn);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--kalk-lt);
  font-weight: 700;
}
.mb-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid var(--lijn);
  background: var(--beton);
  font-size: 13px;
  font-weight: 600;
  color: var(--lood);
  margin-bottom: 5px;
}
.mb-field.mb-field-active {
  border-color: rgba(184,115,51,0.3);
  background: var(--oker-tn);
}
.mb-fnum {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--kalk-lt);
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.mb-flbl { flex: 1; }
.mb-ftag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--oker-deep);
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--oker-tn);
  border: 1px solid var(--oker-lt);
  white-space: nowrap;
  flex-shrink: 0;
}
.mb-add {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--kalk-lt);
  text-align: center;
  padding: 9px;
  border: 1.5px dashed var(--lijn);
  border-radius: 10px;
}

/* ─── Stap 04 — complete aanvraag checklist ─── */
.mock-complete {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-lift);
}
.mc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--lijn);
}
.mc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--oker-lt);
  color: var(--oker-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mc-info { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.mc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--lood);
}
.mc-meta { font-size: 11.5px; color: var(--kalk); }
.mc-checks {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.mc-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--lijn);
}
.mc-check:last-child { border-bottom: none; }
.mc-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--groen-bg);
  color: var(--groen);
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mc-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--kalk);
  flex: 1;
}
.mc-val {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--lood);
}
.mc-check-price .mc-lbl { color: var(--lood); font-weight: 700; }
.mc-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--oker-deep);
}
.mc-cta {
  display: block;
  text-align: center;
  background: var(--lood);
  color: var(--oker-tn);
  border-radius: 10px;
  padding: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* flow-track mobiel: opsplitsen in 2×2 raster */
@media (max-width: 640px) {
  .flow-track {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    row-gap: 8px;
    column-gap: 4px;
    align-items: center;
  }
  .ft-step { justify-content: center; text-align: center; padding: 8px 12px; }
  .ft-connector { width: 24px; justify-content: center; }
}
@media (max-width: 400px) {
  .flow-track {
    grid-template-columns: 1fr;
  }
  .ft-connector { display: none; }
  .ft-step { width: 100%; }
}

/* mock-builder en mock-complete hover */
.mock-builder, .mock-complete { transition: box-shadow 220ms, transform 220ms; }
.mock-builder:hover, .mock-complete:hover {
  box-shadow: var(--shadow-hero);
  transform: translateY(-2px);
}

/* ── Hero V2 (j2) · iteratie 10 — product-first layout 35/65 ── */
@media (min-width: 900px) {
  /* Grid: 32% tekst / 68% visueel (was .72fr 1.06fr ≈ 40/60) */
  #hero-flow11 .eco-grid { grid-template-columns: 0.46fr 1fr; gap: clamp(20px, 3vw, 48px); }
  /* eco-sub max-width inperken voor smalle tekstkolom */
  #hero-flow11 .eco-sub { max-width: 340px; }
  /* j2 container breder: meer pixels beschikbaar voor frame */
  #hero-flow11 .j2 { max-width: 720px; }
  /* j2-frame: ~45% groter dan v19 baseline */
  #hero-flow11 .j2-frame { width: clamp(340px, 70%, 480px); height: clamp(460px, 90%, 580px); }
  /* floating berichten mee omhoog */
  #hero-flow11 .j2-msg { width: clamp(190px, 42%, 258px); }
  /* interne teksten: beter leesbaar in groter frame */
  #hero-flow11 .j2-mbd b { font-size: 13px; }
  #hero-flow11 .j2-mbd em { font-size: 14px; }
  #hero-flow11 .j2-bub { font-size: 14px; padding: 10px 13px; }
  #hero-flow11 .j2-a-k { font-size: 11px; }
  #hero-flow11 .j2-a-v { font-size: 13px; }
  #hero-flow11 .j2-a-title { font-size: 14px; }
  #hero-flow11 .j2-a-price { font-size: 17px; }
  #hero-flow11 .j2-off-row, #hero-flow11 .j2-off-tot { font-size: 13px; }
  #hero-flow11 .j2-off-val { font-size: 16px; }
  #hero-flow11 .j2-fs { font-size: 9.5px; }
}

/* ═══════════════════════════════════════════════════════════════
   V5 · beta-werving — nieuwe secties (makers / beta / founding)
   ═══════════════════════════════════════════════════════════════ */

/* placeholder-markering (duidelijk dat Chris dit nog invult) */
.ph {
  background: var(--oker-tn);
  border: 1px dashed var(--oker);
  border-radius: 6px;
  padding: 1px 7px;
  color: var(--oker-deep);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.86em;
  line-height: 1.5;
}

/* ─── probleem-slotzin (brug naar de makers) ─── */
.problem-note {
  margin-top: 30px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 22px);
  letter-spacing: -0.01em;
  color: var(--lood);
}

/* ─── Wie hierachter zit (makers) ─── */
.makers-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.maker-card {
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 20px;
  padding: 24px;
  width: 240px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.maker-photo {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--beton-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.maker-photo img { width: 100%; height: 100%; object-fit: cover; }
.maker-mono {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  color: var(--oker-tn);
  background: linear-gradient(150deg, var(--oker) 0%, var(--oker-deep) 100%);
}
.maker-mono-b { background: linear-gradient(150deg, #6b7a8f 0%, #3f4a5a 100%); }
.footer-legalinfo {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(251, 244, 233, 0.55);
}
.footer-legalinfo a { color: inherit; text-decoration: underline; }
.footer-legalinfo a:hover { color: var(--oker); }

/* ═══════════════════════════════════════════════════════════════
   V5 · "Hoe het werkt" — flow-strip onder de builder-window
   ═══════════════════════════════════════════════════════════════ */
.hw-flow-cap {
  text-align: center; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--kalk-lt);
  margin: 56px 0 28px;
}
.hw-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; max-width: 1000px; margin: 0 auto; list-style: none;
}
.hw-flow::before {
  content: ''; position: absolute; top: 30px; left: 11%; right: 11%;
  height: 2px; background: linear-gradient(90deg, var(--oker-lt), var(--oker), var(--oker-lt));
  z-index: 0;
}
.hw-step {
  position: relative; z-index: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hw-ico {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 2px solid var(--oker); color: var(--oker-deep);
  box-shadow: 0 6px 18px rgba(184,115,51,.18); margin-bottom: 16px; flex-shrink: 0;
}
.hw-ico svg { width: 23px; height: 23px; }
.hw-n {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; color: var(--oker-deep); display: block; margin-bottom: 5px;
}
.hw-step h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 16.5px;
  letter-spacing: -.01em; margin-bottom: 6px; color: var(--lood);
}
.hw-step p { font-size: 13.5px; line-height: 1.5; color: var(--kalk); max-width: 200px; }

@media (max-width: 720px) {
  .hw-flow { grid-template-columns: 1fr; gap: 0; max-width: 380px; }
  .hw-flow::before {
    top: 0; bottom: 0; left: 30px; right: auto; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--oker-lt), var(--oker), var(--oker-lt));
  }
  .hw-step { flex-direction: row; text-align: left; gap: 20px; align-items: flex-start; padding-bottom: 28px; }
  .hw-step:last-child { padding-bottom: 0; }
  .hw-ico { margin-bottom: 0; }
  .hw-body { padding-top: 5px; }
  .hw-step p { max-width: none; }
}

/* ═══════════════════════════════════════════════════════════════
   V5 · "Hoe het werkt" — verbonden flow (rijke alternerende stappen
   op één centrale tijdlijn met scroll-gevulde koperlijn)
   ═══════════════════════════════════════════════════════════════ */
.htwflow { position: relative; max-width: 1040px; margin: 0 auto; padding: 12px 0; }

/* centrale spine + scroll-fill */
.htwflow-spine {
  position: absolute; top: 24px; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 2px; background: var(--lijn); border-radius: 2px; z-index: 0;
}
.htwflow-fill {
  position: absolute; top: 0; left: 0; width: 100%; height: 0;
  background: linear-gradient(180deg, var(--oker), var(--oker-deep));
  border-radius: 2px; transition: height 140ms linear;
}

/* stap-rij: copy | node | visual */
.htwf-step {
  display: grid; grid-template-columns: 1fr 88px 1fr; align-items: center;
  margin-bottom: 76px;
}
.htwf-step:last-child { margin-bottom: 0; }
.htwf-copy { grid-column: 1; text-align: right; max-width: 380px; margin-left: auto; }
.htwf-node { grid-column: 2; justify-self: center; }
.htwf-visual { grid-column: 3; display: flex; justify-content: center; }
.htwf-flip .htwf-copy { grid-column: 3; text-align: left; margin-left: 0; margin-right: auto; }
.htwf-flip .htwf-visual { grid-column: 1; }

/* genummerde node op de spine */
.htwf-node {
  position: relative; z-index: 1; width: 66px; height: 66px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--oker);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(184,115,51,.22);
}
.htwf-node span { font-family: var(--font-mono); font-weight: 700; font-size: 19px; color: var(--oker-deep); }

.htwf-copy h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 25px); letter-spacing: -.02em;
  color: var(--lood); margin-bottom: 10px; line-height: 1.15;
}
.htwf-copy p { font-size: 15.5px; line-height: 1.6; color: var(--kalk); }
.htwf-linkwrap { width: 100%; max-width: 340px; }
.htwf-linkwrap .mock-link-share { margin-top: 12px; }

/* tablet */
@media (max-width: 980px) {
  .htwf-step { grid-template-columns: 1fr 76px 1fr; margin-bottom: 60px; }
}

/* mobiel: spine links, node + copy + visual gestapeld rechts */
@media (max-width: 760px) {
  .htwflow { max-width: 460px; }
  .htwflow-spine { left: 32px; transform: none; top: 12px; bottom: 12px; }
  .htwf-step {
    grid-template-columns: 66px 1fr; column-gap: 20px; row-gap: 16px;
    align-items: start; margin-bottom: 40px;
  }
  .htwf-node { grid-column: 1; grid-row: 1; justify-self: start; }
  .htwf-copy,
  .htwf-flip .htwf-copy { grid-column: 2; grid-row: 1; text-align: left; max-width: none; margin: 0; }
  .htwf-visual,
  .htwf-flip .htwf-visual { grid-column: 2; grid-row: 2; justify-content: flex-start; }
}
.maker-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--lood);
}
.maker-role {
  margin-top: 4px;
  font-size: 14px;
  color: var(--kalk-lt);
}
.makers-note {
  margin-top: 28px;
  text-align: center;
  font-size: 16px;
  color: var(--kalk);
}

/* ─── We zijn in beta (eerlijk) ─── */
.beta-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.beta-col {
  background: var(--surface);
  border: 1px solid var(--lijn);
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}
.beta-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--lood);
}
.beta-col p { font-size: 15px; color: var(--kalk); }
.beta-list { list-style: none; }
.beta-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  color: var(--kalk);
}
.beta-list-yes li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--oker-deep);
  font-weight: 700;
}
.beta-list-soon li::before {
  content: "→";
  position: absolute;
  left: 2px;
  color: var(--kalk-lt);
  font-weight: 700;
}

/* ─── Founding-card (eerste 25) — bouwt voort op .price-card ─── */
.founding-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 26px 0 10px;
  text-align: left;
}
.founding-block { min-width: 0; }
.founding-h {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oker-deep);
  margin-bottom: 6px;
}
.founding-card .founding-split .price-list {
  margin: 0;
  max-width: none;
}
.price-list-ask li::before { content: "•"; }

@media (max-width: 760px) {
  .beta-cols { grid-template-columns: 1fr; }
  .founding-split { grid-template-columns: 1fr; gap: 18px; }
  .makers-grid { gap: 16px; }
  .maker-card { width: 100%; max-width: 280px; }
}
