/* ============================================================
   Skill It — AI-Strateeg / AI-Rechterhand landing
   Clean rebuild 2026-07-06 — één designsysteem, zelfde merk-DNA
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* kleur */
  --ink: #101828;
  --ink-soft: #33415c;
  --muted: #5b6474;
  --paper: #fffaf2;
  --paper-cool: #f4faff;
  --card: #ffffff;
  --blue: #006cff;
  --blue-deep: #0a3ba8;
  --aqua: #21d6d1;
  --yellow: #ffe66d;
  --purple: #6b5cff;
  --pink: #ff6cae;

  --line: rgba(16, 24, 40, 0.08);
  --line-strong: rgba(16, 24, 40, 0.14);

  /* gradients — één logica, overal hergebruikt */
  --grad-cta: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  --grad-core: linear-gradient(140deg, var(--blue) 0%, var(--purple) 55%, var(--aqua) 120%);
  --grad-wash: linear-gradient(180deg, #fffaf2 0%, #f4faff 50%, #fffaf2 100%);

  /* schaduw — drie niveaus, niets anders */
  --shadow-sm: 0 2px 10px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 12px 32px rgba(16, 24, 40, 0.10);
  --shadow-lg: 0 28px 64px rgba(19, 44, 94, 0.16);

  /* vorm */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* type */
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;

  /* ritme */
  --section-pad: clamp(72px, 9vw, 128px);
  --nav-h: 64px;
}

/* ---------- 2. Reset & basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 32px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--grad-wash);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid rgba(0, 108, 255, 0.6); outline-offset: 3px; border-radius: 8px; }

.shell { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
h1 { font-size: clamp(42px, 6vw, 74px); }
h2 { font-size: clamp(32px, 4.2vw, 50px); }
h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 18px; font-weight: 800; font-size: 22px; }
h1 em, h2 em {
  display: inline-block;
  padding-inline-end: 0.08em;
  margin-inline-end: -0.08em;
  font-style: italic;
  background: var(--grad-core);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* markeerstift */
.hl {
  background: linear-gradient(104deg, transparent 0.9%, rgba(255, 230, 109, 0.9) 2.4%, rgba(255, 230, 109, 0.65) 96%, transparent 98%);
  border-radius: 4px;
  padding: 0 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
p { margin: 0 0 16px; }
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: rgba(0, 108, 255, 0.08);
  border: 1px solid rgba(0, 108, 255, 0.16);
  color: var(--blue-deep);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow img { width: 16px; height: 16px; }
.eyebrow-aqua { background: rgba(33, 214, 209, 0.14); border-color: rgba(33, 214, 209, 0.35); color: #0d7f7b; }
.eyebrow-yellow { background: rgba(255, 230, 109, 0.4); border-color: rgba(212, 170, 20, 0.35); color: #7a5c00; }
.eyebrow-pink { background: rgba(255, 108, 174, 0.12); border-color: rgba(255, 108, 174, 0.3); color: #b3316f; }

.section { padding: var(--section-pad) 0; position: relative; }
.section-title { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-title p:last-child { margin-bottom: 0; color: var(--muted); }
.section-title.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-title.centered .eyebrow { margin-left: auto; margin-right: auto; }

/* ---------- 3. Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--grad-cta);
  box-shadow: 0 12px 26px rgba(0, 108, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-primary:hover::before { left: 125%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(0, 108, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.25); }
.btn-primary:active { transform: translateY(0); }
.btn-primary::after { content: "→"; font-weight: 600; transition: transform 0.16s ease; }
.btn-primary:hover::after { transform: translateX(3px); }
.btn-ghost {
  color: var(--blue-deep);
  background: #fff;
  border: 1.5px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(0, 108, 255, 0.4); }
.btn-lg { min-height: 56px; padding: 0 34px; font-size: 17px; }

.center-cta { display: flex; justify-content: center; margin-top: clamp(36px, 4vw, 56px); }

/* ---------- 4. Header ---------- */
/* full-width bar; inhoud loopt exact gelijk met de content (.shell = 1180px) */
.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px max(22px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-nav.scrolled,
.site-nav.open {
  background: rgba(255, 250, 242, 0.82);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(18, 42, 88, 0.06);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}
.site-nav.scrolled { padding-block: 8px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 34px; width: auto; transition: transform 0.3s ease; }
.brand:hover img { transform: rotate(-3deg) scale(1.05); }

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(33, 214, 209, 0.12);
  border: 1px solid rgba(33, 214, 209, 0.35);
  color: #0d7f7b;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-status:hover { background: rgba(33, 214, 209, 0.2); transform: translateY(-1px); }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10c9a0;
  animation: statusPulse 2.2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 201, 160, 0.5); }
  55% { box-shadow: 0 0 0 7px rgba(16, 201, 160, 0); }
}
@media (max-width: 1240px) { .nav-status { display: none; } }

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-links a {
  padding: 9px 15px;
  border-radius: var(--r-pill);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { background: rgba(0, 108, 255, 0.08); color: var(--blue-deep); }

.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  background: var(--grad-cta);
  box-shadow: 0 10px 22px rgba(0, 108, 255, 0.26);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.nav-cta::after { content: "→"; font-weight: 600; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0, 108, 255, 0.32); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.orb-a { width: 480px; height: 480px; top: -140px; right: -80px; background: radial-gradient(circle, rgba(33, 214, 209, 0.5), transparent 70%); }
.orb-b { width: 420px; height: 420px; bottom: -160px; left: -120px; background: radial-gradient(circle, rgba(255, 230, 109, 0.55), transparent 70%); }
.orb-c { width: 380px; height: 380px; top: 10%; left: 34%; background: radial-gradient(circle, rgba(0, 108, 255, 0.16), transparent 70%); }

/* Poster-hero: één groot statement, stickers errond */
.hero-poster { text-align: center; }
.hero-poster-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.poster-title {
  font-size: clamp(44px, 7.4vw, 96px);
  margin-bottom: 26px;
}
.ai-sticker {
  display: inline-grid;
  place-items: center;
  width: 1.12em;
  height: 1.12em;
  margin: 0 0.05em;
  border-radius: 26%;
  background: var(--grad-core);
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.68em;
  letter-spacing: -0.02em;
  vertical-align: -0.12em;
  rotate: -6deg;
  box-shadow: 0 14px 34px rgba(0, 108, 255, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.35);
  animation: stickerSway 5s ease-in-out infinite;
  transition: rotate 0.3s ease;
}
.poster-title:hover .ai-sticker { rotate: 4deg; }
@keyframes stickerSway {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}
.scribbled { position: relative; display: inline-block; }
.scribble {
  position: absolute;
  left: -2%;
  bottom: -0.16em;
  width: 104%;
  height: 0.2em;
  overflow: visible;
}
.scribble path {
  fill: none;
  stroke: var(--aqua);
  stroke-width: 7;
  stroke-linecap: round;
  opacity: 0.9;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawScribble 0.9s 0.5s ease forwards;
}
@keyframes drawScribble { to { stroke-dashoffset: 0; } }

.hero-lead { max-width: 56ch; margin-inline: auto; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 26px; }

/* stickers rond de tekst */
.hero-chips { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.task-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
  animation: chipDrift var(--float-duration, 10s) cubic-bezier(.45,.05,.35,1) infinite alternate;
  will-change: transform;
}
.task-chip img { width: 26px; height: 26px; }
.task-chip span { display: block; font-weight: 700; font-size: 14px; letter-spacing: -0.01em; text-align: left; }
.task-chip small { display: block; font-size: 11.5px; color: var(--muted); text-align: left; line-height: 1.3; }
@keyframes chipDrift {
  0% { transform: translate3d(0, 0, 0) rotate(0); }
  31% { transform: translate3d(calc(var(--float-x) * .42), calc(var(--float-y) * .68), 0) rotate(var(--float-r)); }
  66% { transform: translate3d(calc(var(--float-x) * -.32), calc(var(--float-y) * .38), 0) rotate(calc(var(--float-r) * -.65)); }
  100% { transform: translate3d(var(--float-x), var(--float-y), 0) rotate(var(--float-r)); }
}
.chip-a { --float-x: 7px; --float-y: -10px; --float-r: 1.4deg; --float-duration: 9.6s; top: 17%; left: 4%; rotate: -6deg; animation-delay: -1.1s; }
.chip-b { --float-x: -6px; --float-y: -12px; --float-r: -1.2deg; --float-duration: 11.3s; top: 14%; right: 5%; rotate: 5deg; animation-delay: -4.6s; background: rgba(255, 230, 109, 0.9); border-color: rgba(255, 230, 109, 0.95); }
.chip-c { --float-x: 9px; --float-y: -7px; --float-r: -1.6deg; --float-duration: 8.8s; top: 47%; left: 1.5%; rotate: 4deg; animation-delay: -2.8s; }
.chip-d { --float-x: -8px; --float-y: -10px; --float-r: 1.2deg; --float-duration: 10.6s; top: 44%; right: 1.5%; rotate: -4deg; animation-delay: -6.2s; background: rgba(214, 246, 245, 0.94); border-color: rgba(33, 214, 209, 0.4); }
.chip-e { --float-x: 6px; --float-y: -13px; --float-r: 1.3deg; --float-duration: 12.2s; bottom: 15%; left: 7%; rotate: -3deg; animation-delay: -7.4s; }
.chip-f { --float-x: -7px; --float-y: -8px; --float-r: -1.5deg; --float-duration: 9.9s; bottom: 12%; right: 7%; rotate: 6deg; animation-delay: -3.7s; }

/* onder 1100px: stickers worden een nette strip onder de hero */
@media (max-width: 1100px) {
  .hero-chips {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
    padding-inline: 20px;
  }
  .task-chip { position: static; animation: none; }
  .task-chip:nth-child(odd) { rotate: -2deg; }
  .task-chip:nth-child(even) { rotate: 2deg; }
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.hero-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  color: var(--muted);
}
.hero-proof strong { color: var(--blue-deep); font-size: 16px; letter-spacing: -0.02em; }
.hero-risk-note { font-size: 13.5px; color: var(--muted); margin: 0; }
.hero-risk-note::before { content: "✓ "; color: var(--aqua); font-weight: 800; }

/* ---------- 6. Probleem (before/after) ---------- */
.focus-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.focus-copy-card p { color: var(--muted); margin-bottom: 24px; }

/* de herhaal-stapel: drie keer dezelfde prompt, dan rust */
.repeat-stack { display: flex; flex-direction: column; align-items: stretch; }
.repeat-card {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.repeat-card + .repeat-card { margin-top: -14px; }
.repeat-card:nth-child(1) { rotate: -1.6deg; z-index: 1; }
.repeat-card:nth-child(2) { rotate: 1.2deg; z-index: 2; }
.repeat-card:nth-child(3) { rotate: -0.8deg; z-index: 3; }
.repeat-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.repeat-day {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 108, 174, 0.1);
  border: 1px solid rgba(255, 108, 174, 0.25);
  color: #b3316f;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.repeat-note {
  margin: 10px 4px 2px;
  align-self: flex-end;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: #b3316f;
}
.repeat-after {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: var(--r-lg);
  border: 2px solid transparent;
  background:
    linear-gradient(160deg, #fff 0%, #f2f9ff 100%) padding-box,
    var(--grad-core) border-box;
  box-shadow: var(--shadow-md);
}
.repeat-after .chip { align-self: flex-start; }
.repeat-after strong { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; }
.repeat-after p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ---------- 7. Stappenstrip (drie dingen die hij doet) ---------- */
.step-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px 13px 15px;
  border-radius: var(--r-pill);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step-pill i {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 108, 255, 0.08);
  color: var(--blue-deep);
}
.step-pill:nth-of-type(2) i { background: rgba(33, 214, 209, 0.16); color: #0d7f7b; }
.step-pill:nth-of-type(3) i { background: rgba(255, 230, 109, 0.45); color: #7a5c00; }
.step-sep { color: rgba(10, 59, 168, 0.35); font-weight: 700; }

/* ---------- 8. Showcase (2 grote kaarten) ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.showcase-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.showcase-head { padding: 30px 30px 6px; }
.chip {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.chip-strateeg { background: rgba(33, 214, 209, 0.16); color: #0d7f7b; }
.chip-rechterhand { background: rgba(0, 108, 255, 0.1); color: var(--blue-deep); }
.showcase-head h3 { margin-bottom: 8px; }
.showcase-head p { color: var(--muted); font-size: 15px; margin: 0; }

.showcase-demo {
  margin: 22px 30px 30px;
  padding: 20px;
  border-radius: var(--r-md);
  background: linear-gradient(170deg, #f6faff 0%, #eef6ff 100%);
  border: 1px solid rgba(0, 108, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.demo-msg {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}
.demo-msg.user {
  align-self: flex-end;
  background: var(--grad-cta);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.demo-msg.ai {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}
.demo-msg.ai strong { color: var(--blue-deep); }
.demo-tasklist { display: flex; flex-direction: column; gap: 8px; }
.demo-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.demo-task .tick {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(33, 214, 209, 0.2);
  color: #0d7f7b;
  font-size: 12px;
  font-weight: 800;
}
.demo-task small { margin-left: auto; font-weight: 500; color: var(--muted); font-size: 12px; }

/* ---------- 9. Vertrouwen + bewijs (bento) ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.bento-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.bento-photo {
  grid-column: span 4;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.bento-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.bento-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 44px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(16, 24, 40, 0.72));
  color: #fff;
}
.bento-photo-caption strong { display: block; font-size: 17px; letter-spacing: -0.01em; }
.bento-photo-caption span { font-size: 13px; opacity: 0.85; }

.bento-intro { grid-column: span 8; padding: clamp(26px, 3.5vw, 44px); }
.bento-intro h2 { font-size: clamp(28px, 3.2vw, 40px); }
.bento-intro p:not(.eyebrow) { color: var(--muted); margin-bottom: 18px; }

.bento-quote {
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 30px 26px;
  background: linear-gradient(160deg, #fff 0%, #f0f7ff 100%);
}
.bento-quote::before {
  content: "“";
  position: absolute;
  top: 2px;
  left: 20px;
  font-family: var(--serif);
  font-size: 74px;
  line-height: 1;
  color: rgba(0, 108, 255, 0.16);
}
.bento-quote blockquote {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 700;
  line-height: 1.35;
}
.bento-quote cite { font-style: normal; font-size: 13.5px; color: var(--muted); font-weight: 600; }

.bento-stat {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 22px 18px;
  text-align: center;
}
.bento-stat strong { font-size: clamp(26px, 2.4vw, 34px); letter-spacing: -0.04em; color: var(--blue-deep); }
.bento-stat span { font-size: 12.5px; color: var(--muted); line-height: 1.35; }

/* ---------- 10. Sectie-doorverwijzing (rode draad naar producten) ---------- */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--blue-deep);
  padding-bottom: 2px;
  border-bottom: 2px dashed rgba(0, 108, 255, 0.3);
  transition: border-color 0.2s ease, gap 0.2s ease;
}
.section-link::after { content: "→"; transition: transform 0.2s ease; }
.section-link:hover { border-bottom-color: var(--blue); }
.section-link:hover::after { transform: translateX(4px); }

/* ---------- 11. De spelregels (persoonlijk briefje) ---------- */
.note-card {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 60px);
  border-radius: var(--r-md);
  background: #fffdf6;
  border: 1px solid rgba(212, 170, 20, 0.25);
  box-shadow: var(--shadow-md);
  rotate: -0.6deg;
  text-align: center;
  transition: rotate 0.3s ease;
}
.note-card:hover { rotate: 0deg; }
.note-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 110px;
  height: 30px;
  background: rgba(255, 230, 109, 0.75);
  border: 1px solid rgba(212, 170, 20, 0.3);
  border-radius: 4px;
}
.note-card .eyebrow { margin-inline: auto; }
.note-text {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.note-text strong { color: var(--ink); }
.note-sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  margin: 0;
}

/* ---------- 13. Producten / deal ---------- */
.product-route-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.product-offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
@property --spin {
  syntax: "<angle>";
  inherits: false;
  initial-value: 135deg;
}
.product-offer-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from var(--spin), var(--blue), var(--purple), var(--aqua), var(--blue)) border-box;
  box-shadow: var(--shadow-lg);
  animation: spinBorder 7s linear infinite;
}
@keyframes spinBorder { to { --spin: 495deg; } }

/* draaiende kortingszegel */
.price-seal {
  position: absolute;
  top: -26px;
  right: -10px;
  width: 86px;
  height: 86px;
  z-index: 3;
  rotate: -8deg;
  filter: drop-shadow(0 10px 22px rgba(122, 92, 0, 0.28));
}
.price-seal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid rgba(212, 170, 20, 0.55);
}
.price-seal::after {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  border: 1.5px dashed rgba(122, 92, 0, 0.45);
}
.price-seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: none;
}
.price-seal text {
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  fill: #7a5c00;
}
.price-seal strong {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
@keyframes sealSpin { to { transform: rotate(360deg); } }
@media (max-width: 560px) {
  .price-seal { width: 84px; height: 84px; top: -26px; right: -8px; }
  .price-seal strong { font-size: 20px; }
  .price-seal::after { inset: 21px; }
}

/* Hormozi value stack */
.stack-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.stack-list li {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-left: 28px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.stack-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(33, 214, 209, 0.18);
  color: #0d7f7b;
  font-size: 11px;
  font-weight: 800;
}
.stack-value {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 230, 109, 0.28);
  border: 1px dashed rgba(212, 170, 20, 0.45);
  font-size: 14px;
  font-weight: 700;
}
.stack-total s { color: var(--muted); font-size: 16px; }
.no-brainer {
  margin: 14px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.no-brainer strong { color: var(--blue-deep); }
.product-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  background: var(--grad-cta);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 108, 255, 0.35);
}
.product-step {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: rgba(16, 24, 40, 0.05);
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-offer-card.featured .product-step { background: rgba(0, 108, 255, 0.1); color: var(--blue-deep); }
.product-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.product-icon { width: 46px; height: 46px; flex-shrink: 0; }
.product-name { margin: 0; font-size: 23px; }
.product-one-liner { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; min-height: 66px; }

.product-price-row { margin-bottom: 18px; }
.price-anchor {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 108, 174, 0.8);
  text-decoration-thickness: 2px;
  margin-right: 8px;
  font-weight: 600;
}
.price-now { font-size: 36px; font-weight: 800; letter-spacing: -0.04em; }
.price-now.free { color: #0d7f7b; }
.price-note { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.price-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 230, 109, 0.35);
  border: 1px solid rgba(212, 170, 20, 0.3);
  color: #7a5c00;
  font-size: 12.5px;
  font-weight: 700;
}

.product-card-button { width: 100%; margin-bottom: 18px; }
.product-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.product-checks li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.product-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(33, 214, 209, 0.18);
  color: #0d7f7b;
  font-size: 11px;
  font-weight: 800;
}
.product-feature-intro { font-size: 13px; font-weight: 700; color: var(--blue-deep); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.product-guarantee {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(33, 214, 209, 0.1);
  border: 1px solid rgba(33, 214, 209, 0.3);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.product-guarantee img { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.product-guarantee strong { color: #0d7f7b; }
.platform-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: var(--paper-cool);
  border: 1px solid var(--line);
}
.platform-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.platform-chip img { width: 18px; height: 18px; }
.cta-note {
  margin: -8px 0 18px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}
.product-reassure {
  margin-top: 14px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
}
.product-footnote { margin-top: auto; font-size: 13px; color: var(--muted); padding-top: 4px; }

.product-trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 36px;
  font-size: 13.5px;
  color: var(--muted);
}
.product-trust-line span::before { content: "✓ "; color: var(--aqua); font-weight: 800; }

/* ---------- 13b. Duidelijke productopbouw ---------- */
.problem-punchline {
  margin: 20px 0 24px;
  padding-left: 16px;
  border-left: 3px solid var(--pink);
  color: var(--ink);
  font-weight: 700;
}

.problem-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-height: 470px;
  padding: 64px 28px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 85% 15%, rgba(0,108,255,.16), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(255,58,141,.12), transparent 36%),
    #fff;
  box-shadow: var(--shadow-md);
}
.problem-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(17,24,39,.12);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
}
.problem-visual-label {
  position: absolute;
  top: 24px;
  left: 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.problem-fragment {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 24px rgba(17,24,39,.08);
}
.problem-fragment img { width: 36px; height: 36px; flex: 0 0 auto; }
.problem-fragment div { min-width: 0; }
.problem-fragment strong, .problem-fragment small { display: block; }
.problem-fragment strong { font-size: 14px; }
.problem-fragment small { margin-top: 3px; color: var(--muted); font-size: 11.5px; line-height: 1.35; }
.fragment-a { transform: rotate(-2deg) translateY(8px); }
.fragment-b { transform: rotate(1.5deg) translateY(-8px); }
.fragment-c { transform: rotate(1deg) translateX(7px); }
.fragment-d { transform: rotate(-1.5deg) translateX(-6px); }
.problem-visual-conclusion {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  align-self: end;
  margin: 8px 0 0;
  padding: 18px 20px;
  border-radius: 15px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.problem-visual-conclusion span, .problem-visual-conclusion strong { display: block; }
.problem-visual-conclusion span { color: rgba(255,255,255,.7); font-size: 12px; }
.problem-visual-conclusion strong { margin-top: 2px; font-family: var(--serif); font-size: 22px; }

.knowledge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0;
}
.knowledge-stack span {
  padding: 6px 9px;
  border: 1px solid rgba(255,58,141,.16);
  border-radius: 9px;
  background: rgba(255,58,141,.07);
  color: #9e1c57;
  font-size: 11.5px;
  font-weight: 800;
}

.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0;
}
.expert-tags span {
  padding: 5px 9px;
  border: 1px solid rgba(0,108,255,.14);
  border-radius: var(--r-pill);
  background: rgba(0,108,255,.07);
  color: var(--blue-deep);
  font-size: 11.5px;
  font-weight: 700;
}

.platform-switch {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
  padding: 11px;
  border: 1px solid rgba(0,108,255,.13);
  border-radius: 14px;
  background: rgba(0,108,255,.05);
}
.platform-switch span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
}
.platform-switch img { width: 22px; height: 22px; }
.platform-switch b { color: var(--blue); font-size: 19px; }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.capability-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.capability-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.capability-card.featured-capability {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, var(--grad-core) border-box;
  box-shadow: var(--shadow-md);
}
.capability-card > img { width: 50px; height: 50px; margin: 12px 0 24px; }
.capability-card h3 { font-size: 24px; margin-bottom: 12px; }
.capability-card p { color: var(--muted); font-size: 15px; }
.capability-number {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
  color: rgba(10, 59, 168, .16);
}
.capability-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
}
.capability-proof::before { content: "✓"; color: #0d7f7b; }

.work-preview {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, #fff 0%, #eef6ff 100%);
  box-shadow: var(--shadow-md);
}
.work-preview-copy h3 { margin-bottom: 12px; font-size: clamp(26px, 3vw, 36px); }
.work-preview-copy p { color: var(--muted); }
.work-preview .showcase-demo { margin: 0; }

.output-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(33,214,209,.1), transparent 26%),
    linear-gradient(180deg, #fffaf2 0%, #fff 100%);
}
.output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.output-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(210px, 1fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.output-dashboard, .output-focus, .output-presentation, .output-knowledge { grid-column: auto; }
.output-card-copy { position: relative; z-index: 2; max-width: none; padding: 28px 28px 14px; }
.output-card-copy > span { color: var(--blue-deep); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.output-card-copy h3 { min-height: 2.1em; margin: 8px 0; font-size: clamp(23px, 2.4vw, 32px); }
.output-card-copy p { max-width: 48ch; min-height: 3.2em; margin-bottom: 0; color: var(--muted); font-size: 14px; }
.output-dashboard { background: linear-gradient(145deg, #fff 40%, #edf7ff 100%); }
.output-presentation { background: linear-gradient(145deg, #fff 35%, #fff0f7 100%); }
.output-knowledge { background: linear-gradient(145deg, #fff 35%, #eefbf9 100%); }
.output-focus { background: linear-gradient(145deg, #fff 40%, #fff8dc 100%); }
.mini-dashboard {
  position: relative;
  right: auto;
  bottom: auto;
  align-self: end;
  width: calc(100% - 56px);
  min-height: 210px;
  margin: 0 28px 28px;
  padding: 18px;
  border: 1px solid rgba(0,108,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 40px rgba(9,58,159,.14);
  transform: none;
}
.mini-kpi { display: grid; grid-template-columns: 1fr auto; align-items: end; }
.mini-kpi b { color: var(--muted); font-size: 11px; }
.mini-kpi strong { grid-row: 2; font-size: 24px; }
.mini-kpi span { grid-column: 2; grid-row: 2; color: #0d7f54; font-size: 12px; font-weight: 900; }
.mini-bars { display: flex; align-items: end; gap: 9px; height: 100px; margin: 16px 0 12px; padding: 0 4px; border-bottom: 1px solid var(--line); }
.mini-bars i { flex: 1; height: var(--h); border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--aqua), var(--blue)); }
.mini-dashboard small { color: var(--muted); font-size: 10px; }
.mini-slide {
  position: relative;
  right: auto;
  bottom: auto;
  align-self: end;
  width: calc(100% - 56px);
  min-height: 210px;
  margin: 0 28px 28px;
  padding: 24px;
  border: 1px solid rgba(255,58,141,.2);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(158,28,87,.14);
  transform: none;
}
.mini-slide em { display: block; color: var(--pink); font-size: 11px; font-weight: 900; }
.mini-slide strong { display: block; max-width: 180px; margin: 12px 0 24px; font-family: var(--serif); font-size: 23px; line-height: 1.05; }
.mini-slide i { display: block; width: 76%; height: 7px; margin-top: 8px; border-radius: 9px; background: #e5e7eb; }
.mini-slide i.short { width: 48%; background: rgba(255,58,141,.3); }
.mini-answer {
  position: relative;
  right: auto;
  bottom: auto;
  align-self: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 56px);
  min-height: 210px;
  margin: 0 28px 28px;
  padding: 24px;
  border: 1px solid rgba(33,214,209,.25);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 35px rgba(13,127,123,.12);
}
.mini-answer div { margin-bottom: 9px; color: var(--muted); font-size: 11px; font-weight: 800; }
.mini-answer p { margin: 0 0 10px; font-size: 13px; font-weight: 700; }
.mini-answer span { display: inline-flex; padding: 4px 7px; border-radius: 7px; background: #e9fbf8; color: #0d7f7b; font-size: 9px; font-weight: 900; }
.mini-priorities {
  position: relative;
  right: auto;
  bottom: auto;
  align-self: end;
  display: grid;
  align-content: center;
  width: calc(100% - 56px);
  min-height: 210px;
  margin: 0 28px 28px;
  padding: 14px;
  gap: 8px;
  border: 1px solid rgba(188, 145, 0, .16);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
}
.mini-priorities span { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid rgba(17,24,39,.1); border-radius: 12px; background: rgba(255,255,255,.94); box-shadow: 0 10px 24px rgba(17,24,39,.07); font-size: 12px; font-weight: 800; }
.mini-priorities b { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--yellow); color: var(--ink); }

.compare-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(107, 92, 255, .30), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(33, 214, 209, .16), transparent 30%),
    #101828;
}
.compare-head { max-width: 760px; text-align: center; margin-bottom: clamp(36px, 5vw, 58px); }
.compare-head .eyebrow { margin-inline: auto; }
.compare-head h2 { color: #fff; }
.compare-head h2 em { background: none; color: var(--yellow); -webkit-text-fill-color: var(--yellow); }
.compare-head > p:last-child { color: rgba(255,255,255,.72); }
.compare-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 66px minmax(0, 1fr);
  align-items: stretch;
}
.compare-column {
  overflow: hidden;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 26px 60px rgba(0,0,0,.25);
}
.compare-standard { opacity: .88; }
.compare-rechterhand {
  border: 2px solid rgba(33,214,209,.8);
  box-shadow: 0 28px 70px rgba(0,108,255,.30);
}
.compare-column-head {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 26px;
  text-align: center;
  background: #f6f8fb;
  border-bottom: 1px solid var(--line);
}
.compare-rechterhand .compare-column-head { background: linear-gradient(145deg, #edf6ff 0%, #e9fbfa 100%); }
.compare-column-head span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.compare-column-head strong { max-width: 26ch; font-family: var(--serif); font-size: 23px; line-height: 1.2; }
.compare-platforms { display: flex; gap: 8px; }
.compare-platforms img, .compare-rh-icon { width: 40px; height: 40px; }
.compare-platforms img + img { margin-left: -3px; }
.compare-vs {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 5px solid #101828;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 800;
  font-style: italic;
  rotate: -7deg;
}
.compare-item { min-height: 112px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.compare-item:last-child { border-bottom: 0; }
.compare-item span { display: block; margin-bottom: 6px; color: var(--blue-deep); font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.compare-item p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.compare-rechterhand .compare-item p::before { content: "✓ "; color: #0d7f7b; font-weight: 900; }
.honest-note {
  max-width: 900px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.07);
}
.honest-note strong { color: var(--yellow); }
.honest-note p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }

.proof-bento .bento-photo { grid-row: span 1; }
.proof-bento .bento-quote { grid-column: span 4; min-height: 220px; }
.proof-bento .bento-quote-primary {
  grid-column: span 8;
  min-height: 260px;
  padding: clamp(30px,4vw,52px);
  background:
    radial-gradient(circle at 100% 0%, rgba(33,214,209,.2), transparent 34%),
    linear-gradient(150deg, #eef8ff, #fff);
}
.bento-quote-primary blockquote { max-width: 24ch; font-size: clamp(25px,2.7vw,38px); }
.bento-quote-stack {
  grid-column: span 4;
  display: grid;
  gap: 18px;
}
.proof-bento .bento-quote-stack .bento-quote {
  grid-column: auto;
  min-height: 121px;
  padding: 22px;
}
.bento-quote.compact::before { font-size: 52px; }
.bento-quote.compact blockquote { margin-top: 10px; font-size: 18px; }
.review-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.review-stats span {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font-size: 12.5px;
}
.review-stats strong { color: var(--blue-deep); font-size: 26px; letter-spacing: -.04em; }

.product-route-grid.product-route-two {
  max-width: 1040px;
  grid-template-columns: .95fr 1.05fr;
  align-items: stretch;
}
.product-route-two .product-offer-card.featured { padding-block: 32px; }
.product-checks-strong li { font-size: 14.5px; }
.product-route-strong { gap: 18px; }
.product-route-strong .product-offer-card { padding: 32px; }
.product-activation-card {
  background:
    radial-gradient(circle at 10% 0%, rgba(33,214,209,.11), transparent 34%),
    #fff;
}
.strategy-preview {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid rgba(13,127,123,.16);
  border-radius: 16px;
  background: rgba(233,251,248,.58);
}
.strategy-preview > div {
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  align-items: start;
  gap: 10px;
  padding: 9px;
}
.strategy-preview b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #0d7f7b;
  box-shadow: 0 6px 16px rgba(13,127,123,.1);
  font-size: 12px;
}
.strategy-preview span,
.offer-deliverables span { display: grid; gap: 3px; }
.strategy-preview strong,
.offer-deliverables strong { color: var(--ink); font-size: 13.5px; }
.strategy-preview small,
.offer-deliverables small { color: var(--muted); font-size: 11.5px; line-height: 1.4; }
.offer-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.offer-deliverables > div {
  display: grid;
  grid-template-columns: 36px minmax(0,1fr);
  align-items: start;
  gap: 10px;
  min-height: 104px;
  padding: 15px;
  border: 1px solid rgba(0,108,255,.13);
  border-radius: 15px;
  background: linear-gradient(145deg, #fff, rgba(235,245,255,.72));
}
.offer-deliverables img {
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 10px;
  background: rgba(0,108,255,.08);
}
.product-delivery {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding: 12px;
  border: 1px solid rgba(0,108,255,.14);
  border-radius: 14px;
  background: rgba(0,108,255,.045);
}
.product-delivery > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 10px;
  padding: 8px;
}
.product-delivery b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
}
.product-delivery span { display: grid; gap: 2px; }
.product-delivery strong { color: var(--ink); font-size: 13px; }
.product-delivery small { color: var(--muted); font-size: 11.5px; line-height: 1.4; }

/* ---------- Productkaart: zo hangt de volledige Rechterhand samen ---------- */
.product-map {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(0,108,255,.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(33,214,209,.15), transparent 31%),
    linear-gradient(160deg, rgba(255,255,255,.98), rgba(244,250,255,.96));
  box-shadow: var(--shadow-lg);
}
.map-request {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 17px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.map-request span { display: block; margin-bottom: 3px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.map-request strong { font-family: var(--serif); font-size: clamp(17px, 2vw, 21px); }
.map-arrow { margin: 6px auto; color: rgba(0,108,255,.48); font-size: 24px; line-height: 1; text-align: center; }
.map-lead {
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: 64px minmax(0,1fr);
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 23px 26px;
  border: 2px solid transparent;
  border-radius: 22px;
  background: linear-gradient(#fff,#fff) padding-box, var(--grad-core) border-box;
  box-shadow: 0 18px 42px rgba(0,108,255,.13);
}
.map-lead > img { width: 58px; height: 58px; }
.map-lead span { display: block; margin-bottom: 5px; color: var(--blue-deep); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.map-lead h3 { max-width: 35ch; margin: 0; font-size: clamp(18px, 2vw, 23px); }
.map-team { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 10px; }
.map-team > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 17px 8px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.map-team img { width: 34px; height: 34px; margin-bottom: 8px; }
.map-team strong { font-size: 14px; }
.map-team span { color: var(--muted); font-size: 11px; line-height: 1.25; }
.map-support-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.map-support-grid article {
  display: grid;
  grid-template-columns: 40px minmax(0,1fr);
  align-items: start;
  gap: 13px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}
.map-support-grid img { width: 36px; height: 36px; }
.map-support-grid h3 { margin-bottom: 7px; font-size: 16px; }
.map-support-grid p { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.map-result {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 9px;
  margin-top: 20px;
  padding: 17px 20px;
  border-radius: 16px;
  background: var(--grad-core);
  color: #fff;
  text-align: center;
}
.map-result strong { font-size: 15px; }
.map-result span { color: rgba(255,255,255,.8); font-size: 12.5px; }
.map-ownership { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 14px; }
.map-ownership span { padding: 6px 10px; border: 1px solid rgba(0,108,255,.13); border-radius: 999px; background: rgba(255,255,255,.74); color: var(--blue-deep); font-size: 10.5px; font-weight: 800; }
.map-flow { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr); align-items: stretch; gap: 10px; }
.map-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  align-content: start;
  gap: 11px;
  padding: 21px 18px 19px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
}
.map-step > b {
  position: absolute;
  top: -9px;
  left: -7px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
}
.map-step > img { width: 35px; height: 35px; }
.map-step span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10.5px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.map-step h3 { margin: 0; font-size: 15px; line-height: 1.35; }
.map-step-core { border-color: rgba(0,108,255,.28); background: linear-gradient(145deg,#fff,rgba(223,247,255,.86)); }
.map-step-core > b { background: var(--blue); }
.map-flow-arrow { align-self: center; color: rgba(0,108,255,.46); font-size: 23px; }
.product-map .map-team { margin-top: 22px; }
.map-simple-note { max-width: 720px; margin: 17px auto 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; text-align: center; }
@media (max-width: 900px) {
  .map-flow { grid-template-columns: 1fr; }
  .map-flow-arrow { justify-self: center; transform: rotate(90deg); }
  .map-team { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .map-support-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .product-map { padding: 18px 14px; border-radius: 22px; }
  .map-request { padding: 15px 13px; }
  .map-lead { grid-template-columns: 46px minmax(0,1fr); gap: 12px; padding: 18px 15px; }
  .map-lead > img { width: 44px; height: 44px; }
  .map-team { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .map-support-grid article { grid-template-columns: 34px minmax(0,1fr); padding: 16px 14px; }
  .map-support-grid img { width: 31px; height: 31px; }
}

/* ---------- 14. FAQ ---------- */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(0, 108, 255, 0.25); }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border: 0;
  background: none;
  text-align: left;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  cursor: pointer;
  color: var(--ink);
}
.faq-item button::after {
  content: "+";
  flex-shrink: 0;
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 108, 255, 0.08);
  color: var(--blue-deep);
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.25s ease;
}
.faq-item.open button::after { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-answer > div { overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { margin: 0; padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ---------- 15. Start / finale CTA ---------- */
.start-section { padding-bottom: var(--section-pad); }
.start-inner {
  position: relative;
  overflow: clip;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0, 108, 255, 0.16);
  background: linear-gradient(160deg, #ffffff 0%, #eef6ff 55%, #e9fbfa 100%);
  box-shadow: var(--shadow-lg);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
}
.start-inner::before, .start-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.start-inner::before { width: 340px; height: 340px; top: -160px; right: -100px; background: rgba(33, 214, 209, 0.25); }
.start-inner::after { width: 300px; height: 300px; bottom: -140px; left: -90px; background: rgba(255, 230, 109, 0.35); }
.start-inner > * { position: relative; z-index: 1; }
.start-inner .eyebrow { margin-inline: auto; }
.start-inner > p { max-width: 56ch; margin-inline: auto; color: var(--muted); }
.start-reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 30px;
}
.start-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.start-reassurance img { width: 18px; height: 18px; }
.fillout-wrap {
  position: relative;
  min-height: 522px;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 10px;
}
.fillout-loading {
  position: absolute;
  inset: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-soft);
  text-align: center;
  transition: opacity 0.2s ease;
}
.fillout-loading-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(0, 108, 255, 0.35);
  animation: filloutPulse 1.6s ease-out infinite;
}
@keyframes filloutPulse {
  70%, 100% { box-shadow: 0 0 0 10px rgba(0, 108, 255, 0); }
}
.js .fillout-target { position: relative; z-index: 1; opacity: 0; transition: opacity 0.2s ease; }
.fillout-wrap.is-loaded .fillout-loading { opacity: 0; pointer-events: none; }
.fillout-wrap.is-loaded .fillout-target { opacity: 1; }
.fillout-fallback { margin: 0; padding: 24px; text-align: center; }
.fillout-fallback a { color: var(--blue-deep); font-weight: 700; text-decoration: underline; }

/* ---------- 16. Footer (stil en minimaal) ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(36px, 5vw, 56px) 0 24px;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  flex-wrap: wrap;
  padding-bottom: 26px;
}
.footer-brand-line { display: flex; align-items: center; gap: 16px; }
.footer-brand-line img { height: 28px; width: auto; }
.footer-brand-line span { font-size: 14px; color: var(--muted); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.footer-links a { transition: color 0.15s ease; }
.footer-links a:hover { color: var(--blue-deep); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- 17. Contactpagina ---------- */
.contact-hero { padding: calc(var(--nav-h) + 80px) 0 40px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding-bottom: var(--section-pad);
}
.contact-card {
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-md);
}
.contact-card h2 { font-size: 26px; }
.contact-card p { color: var(--muted); font-size: 15px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--paper-cool);
  border: 1px solid var(--line);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.contact-method:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-method img { width: 26px; height: 26px; }
.contact-method strong { display: block; font-size: 15px; }
.contact-method span { font-size: 13px; color: var(--muted); }

/* ---------- 17b. Karakter & beweging ---------- */
::selection { background: var(--yellow); color: var(--ink); }

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* korrel — subtiele textuur over de hele pagina */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* scroll-voortgang */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 250;
  width: 100%;
  height: 3px;
  background: var(--grad-core);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

/* stippenraster als accent */
.section-dots {
  background-image: radial-gradient(rgba(10, 59, 168, 0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* ticker */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  padding: 16px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.ticker-track span img { width: 22px; height: 22px; }
.ticker-track span::after { content: "✳"; font-style: normal; font-size: 14px; color: var(--blue); margin-left: 32px; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* chatdemo verschijnt bericht per bericht */
.js .demo-msg, .js .demo-task {
  opacity: 0;
  translate: 0 14px;
  transition: opacity 0.5s ease, translate 0.5s ease;
}
.js .is-visible .demo-msg, .js .is-visible .demo-task { opacity: 1; translate: 0 0; }
.is-visible .demo-msg:nth-child(1), .is-visible .demo-task:nth-child(1) { transition-delay: 0.35s; }
.is-visible .demo-msg:nth-child(2), .is-visible .demo-task:nth-child(2) { transition-delay: 0.65s; }
.is-visible .demo-msg:nth-child(3), .is-visible .demo-task:nth-child(3) { transition-delay: 0.95s; }
.is-visible .demo-task:nth-child(4) { transition-delay: 1.25s; }

/* FAQ-nummering */
.faq-wrap { counter-reset: faq; }
.faq-item button::before {
  counter-increment: faq;
  content: counter(faq, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(10, 59, 168, 0.4);
  margin-right: 2px;
}

/* ---------- 18. Reveal animaties ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* kinderen van grids verschijnen één voor één */
.js .reveal-stagger > * {
  opacity: 0;
  translate: 0 16px;
  transition: opacity 0.38s ease, translate 0.38s ease;
}
.js .reveal-stagger.is-visible > * { opacity: 1; translate: 0 0; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.29s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.34s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.39s; }

/* icoontjes leven bij hover */
.experience-tile img, .privacy-point img, .contact-method img { transition: rotate 0.25s ease, scale 0.25s ease; }
.experience-tile:hover img, .privacy-point:hover img, .contact-method:hover img { rotate: -6deg; scale: 1.12; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .task-chip, .ai-sticker, .ticker-track, .status-dot { animation: none; }
  .site-nav { transition: none; }
  .ticker-track { flex-wrap: wrap; width: 100%; }
  .js .demo-msg, .js .demo-task { opacity: 1; translate: none; transition: none; }
  .js .reveal-stagger > * { opacity: 1; translate: none; transition: none; }
  .btn-primary::before { display: none; }
  .scroll-progress { display: none; }
  .scribble path { animation: none; stroke-dashoffset: 0; }
  .product-offer-card.featured { animation: none; }
  .price-seal svg { animation: none; }
  .fillout-loading-dot { animation: none; }
}

/* ---------- 19. Responsive ---------- */
@media (max-width: 1080px) {
  .product-route-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .product-route-grid.product-route-two { grid-template-columns: 1fr; max-width: 620px; }
  .product-offer-card.featured { order: initial; }
  .product-one-liner { min-height: 0; }
}

@media (max-width: 900px) {
  body.menu-open { overflow: hidden; }
  .focus-split, .contact-grid { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: 1fr; max-width: 620px; }
  .capability-card { min-height: 0; }
  .output-grid { grid-template-columns: 1fr; max-width: 680px; }
  .output-dashboard, .output-focus, .output-presentation, .output-knowledge { grid-column: 1; }
  .output-card { min-height: 0; }
  .work-preview { grid-template-columns: 1fr; }
  .compare-board { grid-template-columns: 1fr; gap: 0; }
  .compare-vs { margin-block: -8px; }
  .compare-standard { opacity: 1; }
  .honest-note { grid-template-columns: 1fr; }
  .review-stats { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; }
  .step-strip { flex-direction: column; align-items: stretch; }
  .step-pill { justify-content: flex-start; }
  .step-sep { display: none; }
  .bento-photo { grid-column: span 12; grid-row: auto; min-height: 300px; }
  .bento-intro { grid-column: span 12; }
  .bento-quote { grid-column: span 12; }
  .proof-bento .bento-quote-primary,
  .bento-quote-stack { grid-column: span 12; }
  .bento-stat { grid-column: span 6; }

  /* mobiel menu */
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-links {
    position: absolute;
    top: calc(100% + 6px);
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links a { padding: 13px 16px; font-size: 16px; }
  .site-nav.open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* compacte CTA blijft zichtbaar op mobiel */
  .nav-cta { min-height: 40px; padding: 0 16px; font-size: 14px; margin-left: auto; }
  .nav-toggle { margin-left: 0; }
}
@media (max-width: 360px) {
  .nav-cta { display: none; }
  .nav-toggle { margin-left: auto; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .product-badge {
    left: 18px;
    right: 86px;
    max-width: none;
    padding-inline: 10px;
    transform: none;
    white-space: normal;
    text-align: center;
  }
  .product-route-strong .product-offer-card { padding: 26px 20px; }
  .offer-deliverables { grid-template-columns: 1fr; }
  .offer-deliverables > div { min-height: 0; }
  .shell { width: calc(100% - 32px); }
  .hero { padding-top: calc(var(--nav-h) + 44px); }
  .poster-title { font-size: clamp(38px, 11.5vw, 48px); }
  .hero-lead { font-size: 16.5px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { justify-content: center; gap: 8px; }
  .hero-proof span { padding: 7px 12px; font-size: 12.5px; }
  .hero-proof strong { font-size: 14.5px; }
  .hero-chips { margin-top: 26px; gap: 8px; padding-inline: 12px; }
  .task-chip { padding: 9px 13px; gap: 8px; border-radius: 13px; }
  .task-chip img { width: 20px; height: 20px; }
  .task-chip span { font-size: 12.5px; }
  .task-chip small { display: none; }
  .ticker { padding: 12px 0; }
  .ticker-track span { font-size: 16px; gap: 28px; }
  .ticker-track { gap: 28px; }
  .section-title { margin-bottom: 32px; }
  .repeat-card { padding: 13px 15px; gap: 10px; }
  .repeat-card p { font-size: 13px; }
  .problem-visual { grid-template-columns: 1fr; min-height: 0; padding: 58px 18px 18px; }
  .problem-fragment { transform: none; }
  .problem-visual-conclusion { grid-column: 1; }
  .capability-card { padding: 26px 20px; }
  .output-section .output-grid {
    display: flex;
    width: 100%;
    max-width: none;
    gap: 12px;
    padding: 0 16px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    scrollbar-width: none;
  }
  .output-section .output-grid::-webkit-scrollbar { display: none; }
  .output-section .output-card {
    flex: 0 0 min(84vw, 340px);
    grid-template-rows: auto auto;
    min-height: 0;
    scroll-snap-align: start;
  }
  .output-card-copy { padding: 22px 20px 14px; }
  .output-card-copy h3, .output-card-copy p { min-height: 0; }
  .mini-dashboard, .mini-slide, .mini-priorities, .mini-answer {
    right: auto;
    width: calc(100% - 36px);
    min-height: 190px;
    margin: 0 18px 18px;
    transform: none;
  }
  .work-preview { padding: 24px 18px; }
  .compare-column-head { min-height: 160px; padding: 22px 18px; }
  .compare-item { min-height: 0; padding: 18px; }
  .review-stats { grid-template-columns: 1fr 1fr; }
  .review-stats strong { font-size: 22px; }
  .bento-grid { gap: 12px; }
  .bento-intro { padding: 24px 20px; }
  .bento-quote { padding: 26px 20px; }
  .note-card { padding: 30px 20px; }
  .product-offer-card { padding: 26px 20px; }
  .price-now { font-size: 32px; }
  .showcase-head { padding: 24px 20px 4px; }
  .showcase-demo { margin: 18px 16px 22px; padding: 14px; }
  .faq-item button { padding: 17px 18px; font-size: 15.5px; }
  .faq-answer p { padding: 0 18px 18px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .start-inner { padding: 30px 16px; }
  .start-reassurance span { font-size: 12.5px; padding: 8px 12px; }
  .fillout-wrap { padding: 6px; }
  .center-cta .btn { width: 100%; }
}

/* ---------- 20. Astro-blog en Landingfolio-verfijningen ---------- */
.product-route-two .product-offer-card.featured {
  animation: none;
  transform: none;
}
.product-route-two .product-offer-card:not(.featured) {
  box-shadow: var(--shadow-sm);
}

.blog-home-section { overflow: hidden; }
.blog-home-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.blog-home-head > div { max-width: 720px; }
.blog-home-head h2 { margin-bottom: 12px; }
.blog-home-head p:not(.eyebrow) { margin: 0; color: var(--muted); }
.blog-home-head .section-link { flex: 0 0 auto; }
.blog-home-layout,
.blog-index-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 20px;
  align-items: stretch;
}
.blog-home-side,
.blog-index-side {
  display: grid;
  gap: 20px;
}
.blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 108, 255, .24);
}
.blog-card-link {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  height: 100%;
  color: inherit;
}
.blog-card-featured .blog-card-link {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(260px, .9fr) auto;
}
.blog-card-art {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 188px;
  place-items: center;
  overflow: hidden;
  background: #dff5ff;
  border-right: 1px solid rgba(0, 108, 255, .12);
}
.blog-card-featured .blog-card-art { border-right: 0; border-bottom: 1px solid rgba(0, 108, 255, .12); }
.blog-tone-2 .blog-card-art { background: #fff0e8; }
.blog-tone-3 .blog-card-art { background: #edf6d9; }
.blog-card-art::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: -1;
  border: 1px dashed rgba(10, 59, 168, .28);
  transform: rotate(-3deg);
}
.blog-art-orb {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 230, 109, .82);
  filter: blur(1px);
  transform: translate(26%, -16%);
}
.blog-tone-2 .blog-art-orb { background: rgba(255, 143, 177, .38); transform: translate(-28%, 24%); }
.blog-tone-3 .blog-art-orb { background: rgba(33, 214, 209, .32); transform: translate(28%, 28%); }
.blog-card-art img {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 12px 18px rgba(10, 59, 168, .14));
  transform: rotate(-5deg);
}
.blog-card-featured .blog-card-art img { width: 104px; height: 104px; }
.blog-art-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(10, 59, 168, .14);
  background: rgba(255, 255, 255, .82);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
  transform: rotate(-2deg);
}
.blog-card-copy { display: flex; flex-direction: column; padding: 24px; }
.blog-card-featured .blog-card-copy { padding: 30px; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 0 0 13px; color: var(--blue-deep); font-size: 12px; font-weight: 800; }
.blog-meta span + span::before { content: "·"; margin-right: 14px; color: var(--muted); }
.blog-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(21px, 2vw, 29px); letter-spacing: -.025em; }
.blog-card-featured h3 { font-size: clamp(28px, 3vw, 42px); }
.blog-card-copy > p:not(.blog-meta) { margin: 0 0 22px; color: var(--muted); font-size: 14.5px; }
.blog-read { margin-top: auto; color: var(--blue-deep); font-weight: 800; }
.blog-read span { display: inline-block; transition: transform .2s ease; }
.blog-card:hover .blog-read span { transform: translateX(4px); }
.blog-card time { margin-top: 14px; color: var(--muted); font-size: 12px; }

.blog-hero { padding: calc(var(--nav-h) + 92px) 0 72px; border-bottom: 1px solid var(--line); }
.blog-hero-inner { max-width: 900px; }
.blog-hero h1 { max-width: 820px; margin-bottom: 18px; font-size: clamp(46px, 6vw, 78px); }
.blog-hero h1 em { color: var(--blue-deep); }
.blog-index-section { padding-top: 54px; }
.blog-cta-section { padding-top: 20px; }
.blog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(30px, 5vw, 58px);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.blog-cta > div { max-width: 720px; }
.blog-cta h2 { color: #fff; }
.blog-cta p:not(.eyebrow) { margin-bottom: 0; color: rgba(255,255,255,.72); }

.blog-index-page .blog-hero {
  padding-bottom: 58px;
  background:
    radial-gradient(circle at 88% 18%, rgba(33,214,209,.16), transparent 24%),
    radial-gradient(circle at 12% 28%, rgba(255,230,109,.2), transparent 22%),
    linear-gradient(180deg, #fffaf2 0%, #f7fbff 100%);
}
.blog-index-page .blog-hero-inner { max-width: 980px; text-align: center; }
.blog-index-page .blog-hero-inner .eyebrow { justify-content: center; }
.blog-index-page .blog-hero h1 { max-width: 930px; margin-inline: auto; }
.blog-index-page .blog-hero .lead { max-width: 760px; margin-inline: auto; }
.blog-question-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 48px;
  padding: 0;
  border: 1px solid rgba(0,108,255,.15);
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-md);
}
.blog-question-nav a {
  display: grid;
  grid-template-columns: auto 42px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 24px 21px;
  color: inherit;
  transition: background .2s ease;
}
.blog-question-nav a + a { border-left: 1px solid var(--line); }
.blog-question-nav a:hover { background: #f2f8ff; }
.blog-question-nav a>span { align-self: start; color: #8d9bad; font-size: 10px; font-weight: 900; }
.blog-question-nav img { width: 40px; height: 40px; padding: 8px; border-radius: 11px; background: #edf5ff; }
.blog-question-nav p { display: grid; gap: 4px; margin: 0; min-width: 0; }
.blog-question-nav small { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .045em; }
.blog-question-nav strong { font-family: var(--serif); font-size: 17px; line-height: 1.15; }
.blog-question-nav b { color: var(--blue-deep); font-size: 20px; transition: transform .2s ease; }
.blog-question-nav a:hover b { transform: translateX(3px); }
.blog-index-head { max-width: 780px; margin-bottom: 38px; }
.blog-index-head h2 { max-width: 15ch; margin-bottom: 13px; font-size: clamp(38px,5vw,62px); }
.blog-index-head>p:last-child { max-width: 600px; margin-bottom: 0; color: var(--muted); font-size: 18px; }
.blog-index-page .blog-index-section { padding-top: 76px; }
.blog-index-page .blog-cta { border-radius: 28px; }
.start-microcopy { margin: -10px 0 28px!important; color: var(--muted)!important; font-size: 13px!important; font-weight: 750; }
.redirect-main { min-height: 70vh; display: grid; place-items: center; padding-top: var(--nav-h); }
.redirect-card { max-width: 720px; text-align: center; }
.redirect-card>img { width: 64px; height: 64px; margin-bottom: 20px; }
.redirect-card h1 { margin-bottom: 14px; }
.redirect-card p { color: var(--muted); }

.blog-index-page .blog-hero-inner { max-width: 900px; text-align: left; }
.blog-index-page .blog-hero-inner .eyebrow { justify-content: flex-start; }
.blog-index-page .blog-hero h1 { max-width: 760px; margin-inline: 0; }
.blog-index-page .blog-hero .lead { max-width: 700px; margin-inline: 0; }
.blog-simple-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.blog-simple-grid .blog-card-link { grid-template-columns: 1fr; grid-template-rows: 190px auto; height: 100%; }
.blog-simple-grid .blog-card-art { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(0,108,255,.12); }
.blog-simple-grid .blog-card-copy { min-height: 310px; }
.blog-cta-light { border: 1px solid rgba(0,108,255,.14); background: linear-gradient(135deg, #eef7ff, #ecfaf5); color: var(--ink); box-shadow: var(--shadow-md); }
.blog-cta-light h2 { color: var(--ink); }
.blog-cta-light p:not(.eyebrow) { color: var(--muted); }
.blog-index-page .blog-index-section { padding-top: 72px; padding-bottom: 72px; }
.blog-index-page .blog-cta-section { padding-top: 0; }
.blog-cta-light .btn { flex: 0 0 auto; white-space: nowrap; }

.article-header { padding: calc(var(--nav-h) + 80px) 0 64px; border-bottom: 1px solid var(--line); }
.article-header-inner { max-width: 940px; }
.article-back { display: inline-flex; gap: 8px; margin-bottom: 38px; color: var(--blue-deep); font-weight: 800; }
.article-header h1 { max-width: 900px; margin-bottom: 18px; font-size: clamp(42px, 6vw, 72px); }
.article-header .lead { max-width: 820px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 24px; color: var(--muted); font-size: 13px; font-weight: 700; }
.article-meta span::before { content: "·"; margin-right: 22px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 720px) minmax(260px, 340px); justify-content: space-between; gap: 60px; padding-block: 64px var(--section-pad); }
.article-content { color: var(--ink-soft); font-size: 18px; line-height: 1.78; }
.article-content > :first-child { margin-top: 0; }
.article-content h2 { margin: 52px 0 16px; color: var(--ink); font-size: clamp(30px, 4vw, 44px); }
.article-content h3 { margin: 34px 0 10px; color: var(--ink); font-size: 24px; }
.article-content ul, .article-content ol { padding-left: 24px; }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--ink); }
.article-aside { position: relative; }
.article-aside-card { position: sticky; top: calc(var(--nav-h) + 28px); padding: 28px; border: 1px solid var(--line); background: var(--paper-cool); box-shadow: var(--shadow-sm); }
.article-aside-card img { width: 46px; height: 46px; margin-bottom: 18px; }
.article-aside-card strong { display: block; margin-bottom: 9px; font-family: var(--serif); font-size: 24px; }
.article-aside-card p { color: var(--muted); font-size: 14px; }
.article-aside-card .btn { width: 100%; }

@media (max-width: 900px) {
  .blog-home-layout, .blog-index-layout, .article-layout { grid-template-columns: 1fr; }
  .blog-simple-grid { grid-template-columns: 1fr; }
  .blog-simple-grid .blog-card-link { grid-template-columns: minmax(210px,.75fr) 1.25fr; grid-template-rows: 1fr; }
  .blog-simple-grid .blog-card-art { border-right: 1px solid rgba(0,108,255,.12); border-bottom: 0; }
  .blog-simple-grid .blog-card-copy { min-height: 0; }
  .blog-question-nav { grid-template-columns: 1fr; }
  .blog-question-nav a + a { border-top: 1px solid var(--line); border-left: 0; }
  .blog-home-head { align-items: flex-start; flex-direction: column; }
  .blog-card-featured .blog-card-link { grid-template-columns: minmax(220px, .8fr) 1.2fr; grid-template-rows: 1fr; }
  .blog-card-featured .blog-card-art { border-right: 1px solid rgba(0, 108, 255, .12); border-bottom: 0; }
  .article-layout { gap: 34px; }
  .article-aside { order: -1; }
  .article-aside-card { position: static; }
  .blog-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .product-route-two .product-offer-card.featured { transform: none; }
  .blog-card-link,
  .blog-card-featured .blog-card-link { grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .blog-card-art,
  .blog-card-featured .blog-card-art { min-height: 210px; border-right: 0; border-bottom: 1px solid rgba(0, 108, 255, .12); }
  .blog-card-copy, .blog-card-featured .blog-card-copy { padding: 22px 20px; }
  .blog-simple-grid .blog-card-link { grid-template-columns: 1fr; grid-template-rows: 180px auto; }
  .blog-simple-grid .blog-card-art { min-height: 180px; border-right: 0; border-bottom: 1px solid rgba(0,108,255,.12); }
  .blog-cta-light .btn { width: 100%; max-width: 100%; justify-content: center; white-space: normal; }
  .blog-card-featured h3 { font-size: 30px; }
  .blog-hero { padding-top: calc(var(--nav-h) + 58px); }
  .blog-hero h1 { font-size: 42px; }
  .blog-question-nav { margin-top: 34px; border-radius: 20px; }
  .blog-question-nav a { grid-template-columns: auto 38px minmax(0,1fr) auto; padding: 18px 16px; }
  .blog-question-nav img { width: 36px; height: 36px; }
  .blog-index-head h2 { font-size: 40px; }
  .blog-index-head>p:last-child { font-size: 16px; }
  .article-header { padding-top: calc(var(--nav-h) + 54px); }
  .article-header h1 { font-size: 40px; }
  .article-layout { padding-top: 38px; }
  .article-content { font-size: 17px; }
  .article-meta span::before { display: none; }
}
