/* ============================================================
   SLEUTL — base.css · tokens, reset, typografie, nav, footer
   ============================================================ */
:root {
  --ink: #0A0E16;
  --ink-2: #0F1522;
  --ink-3: #151D2E;
  --line-dark: rgba(255, 255, 255, 0.09);
  --paper: #F6F4EE;
  --paper-2: #ECE9E0;
  --line-light: rgba(10, 14, 22, 0.10);
  --blue: #2D7DFF;
  --blue-deep: #1F6FEB;
  --blue-soft: rgba(45, 125, 255, 0.14);
  --yellow: #FFCE1F;
  --yellow-deep: #F5B800;
  --txt-d: #EAEEF6;
  --mut-d: #8E9AB2;
  --txt-l: #11161F;
  --mut-l: #555E6E;
  --ok: #34C77B;
  --font-sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, "SF Mono", monospace;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow-card: 0 1px 2px rgba(10, 14, 22, 0.06), 0 12px 32px -12px rgba(10, 14, 22, 0.18);
  --shadow-pop: 0 2px 6px rgba(10, 14, 22, 0.10), 0 24px 64px -16px rgba(10, 14, 22, 0.30);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--txt-l);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--yellow); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--yellow); color: var(--ink); padding: 10px 18px;
  font-weight: 700; border-radius: 0 0 var(--r-sm) 0; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- typografie ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mut-l);
  margin: 0 0 18px;
}
.kicker::before { content: "// "; color: var(--blue); }
.kicker-accent { color: var(--yellow-deep); }
.h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  font-weight: 800;
  font-stretch: 110%;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 22px;
  text-wrap: balance;
}
.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--mut-l);
  max-width: 56ch;
  margin: 0 0 40px;
  text-wrap: pretty;
}
.accent { color: var(--blue); }
.accent-text { color: var(--yellow-deep); font-weight: 700; }

/* ---------- knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-lg { padding: 16px 30px; font-size: 16.5px; }
.btn-block { width: 100%; }
.btn-accent {
  background: var(--yellow); color: var(--ink);
  box-shadow: 0 2px 0 rgba(10,14,22,0.15), 0 12px 28px -10px rgba(255, 206, 31, 0.45);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 3px 0 rgba(10,14,22,0.15), 0 18px 36px -10px rgba(255, 206, 31, 0.55); }
.btn-outline { border-color: rgba(255,255,255,0.25); color: var(--txt-d); background: rgba(255,255,255,0.03); }
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.btn-outline-dark { border-color: var(--line-light); color: var(--txt-l); background: transparent; }
.btn-outline-dark:hover { border-color: var(--txt-l); transform: translateY(-2px); }
.btn-ghost { color: var(--mut-d); padding: 12px 10px; }
.btn-ghost:hover { color: var(--txt-d); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 14, 22, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 14px 28px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { border-radius: 8px; }
.nav-wordmark {
  font-weight: 800; font-stretch: 115%; font-size: 21px; letter-spacing: -0.01em;
  color: var(--txt-d); text-transform: lowercase;
}
.nav-links { display: flex; gap: 4px; margin-inline-start: auto; }
.nav-links a {
  color: var(--mut-d); text-decoration: none; font-weight: 600; font-size: 14.5px;
  padding: 8px 12px; border-radius: 8px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--txt-d); background: rgba(255,255,255,0.06); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn-accent { padding: 10px 18px; font-size: 14.5px; }
.nav-burger { display: none; }

/* taal-switcher */
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.05); color: var(--mut-d);
  border: 1px solid var(--line-dark); border-radius: 999px;
  padding: 8px 14px; font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  transition: color 0.2s, border-color 0.2s;
}
.lang-btn:hover { color: var(--txt-d); border-color: rgba(255,255,255,0.3); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0;
  min-width: 210px; max-height: 60vh; overflow: auto;
  background: var(--ink-2); border: 1px solid var(--line-dark);
  border-radius: var(--r-md); padding: 6px; margin: 0; list-style: none;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.6);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  z-index: 110;
}
.lang.is-open .lang-menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-menu li button {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; background: none; border: 0; color: var(--txt-d);
  padding: 9px 12px; border-radius: 9px; font-size: 14px; font-weight: 600; text-align: start;
}
.lang-menu li button:hover { background: rgba(255,255,255,0.07); }
.lang-menu li button .lang-code { font-family: var(--font-mono); font-size: 11px; color: var(--mut-d); letter-spacing: 0.08em; }
.lang-menu li button.is-current { background: var(--blue-soft); color: #fff; }
.lang-menu li button.is-current .lang-code { color: var(--blue); }

/* ---------- secties basis ---------- */
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 96px 28px; }

/* ---------- reveal / motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* marquee */
.logos { padding: 0 0 56px; }
.logos-kicker {
  text-align: center; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--mut-d); margin: 0 0 22px;
}
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; padding-inline-start: 56px; }
.marquee-track span {
  font-weight: 800; font-stretch: 115%; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 17px; color: rgba(255,255,255,0.22); white-space: nowrap;
}
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee 36s linear infinite; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--mut-d); border-top: 1px solid var(--line-dark); }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1.2fr 1fr 1fr 1fr; gap: 36px;
  padding-top: 72px; padding-bottom: 48px;
}
.footer-brand p { max-width: 34ch; font-size: 15px; line-height: 1.65; margin: 16px 0 0; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  margin: 0 0 6px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--txt-d);
}
.footer-col a { color: var(--mut-d); text-decoration: none; font-size: 14.5px; transition: color 0.2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-base {
  max-width: var(--max-w); margin: 0 auto; padding: 22px 28px 34px;
  border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--mut-d); text-decoration: none; }
.footer-legal a:hover { color: var(--txt-d); }

/* ---------- responsief basis ---------- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-inner { gap: 14px; }
  .nav-actions { margin-inline-start: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section-inner { padding: 64px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
}


/* ============================================================
   SLEUTL — sections.css · hero, flow, secties, responsief
   ============================================================ */

/* ---------- HERO ---------- */
.hero { position: relative; background: var(--ink); color: var(--txt-d); overflow: hidden; }
.hero-glow {
  position: absolute; top: -30%; inset-inline-start: 50%; width: 1100px; height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(45, 125, 255, 0.22), transparent 60%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative; max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding: 158px 28px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line-dark); background: rgba(255,255,255,0.04);
  border-radius: 999px; padding: 7px 16px 7px 12px;
  font-size: 13.5px; font-weight: 600; color: var(--mut-d); margin: 0 0 26px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 0 rgba(255, 206, 31, 0.5); }
@media (prefers-reduced-motion: no-preference) {
  .badge-dot { animation: pulse 2.2s infinite; }
}
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(255, 206, 31, 0); } }
.hero-h1 {
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 0.98; font-weight: 850; font-stretch: 112%;
  letter-spacing: -0.028em; text-transform: uppercase;
  margin: 0 0 24px; text-wrap: balance;
}
.hero-h1 .accent { color: var(--yellow); }
.hero-sub { font-size: clamp(17px, 1.7vw, 20px); color: var(--mut-d); max-width: 50ch; margin: 0 0 34px; text-wrap: pretty; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 0 0 26px; }
.hero-chips { display: flex; gap: 22px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.hero-chips li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--mut-d); font-weight: 600; }
.chip-check { color: var(--ok); font-weight: 800; }

/* ---------- FLOW STAGE (sms/APK animatie) ---------- */
.flow-stage {
  position: relative;
  background: linear-gradient(180deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255,255,255,0.06);
}
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 18px; }
.flow-step {
  display: flex; flex-direction: column; gap: 3px; align-items: flex-start;
  background: transparent; border: 0; border-top: 2px solid rgba(255,255,255,0.12);
  padding: 10px 6px 4px; color: var(--mut-d);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.3s, border-color 0.3s; text-align: start;
}
.flow-step-num { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.3); }
.flow-step.is-active { color: var(--yellow); border-top-color: var(--yellow); }
.flow-step.is-active .flow-step-num { color: var(--yellow-deep); }

.flow-canvas { position: relative; height: 348px; border-radius: var(--r-md); overflow: hidden; }
.scene {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  padding: 8px;
  opacity: 0; transform: translateY(14px) scale(0.98); pointer-events: none;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.scene.is-on { opacity: 1; transform: none; pointer-events: auto; }

/* scene 1 — kenteken + RDW */
.plate {
  display: inline-flex; align-items: stretch; border-radius: 8px; overflow: hidden;
  font-family: var(--font-mono); font-weight: 700; box-shadow: 0 8px 24px -8px rgba(0,0,0,0.6);
  border: 2px solid #11161f;
}
.plate-eu { background: #1d4ed8; color: #fff; display: flex; align-items: center; padding: 0 8px; font-size: 12px; letter-spacing: 0.05em; }
.plate-num { background: var(--yellow); color: #11161f; padding: 9px 16px; font-size: 26px; letter-spacing: 0.02em; }
.plate.is-typing { animation: plate-pop 0.5s var(--ease-out); }
@keyframes plate-pop { 0% { transform: scale(0.9); opacity: 0.4; } 60% { transform: scale(1.04); } 100% { transform: scale(1); } }
.rdw-card {
  width: 100%; max-width: 340px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark); border-radius: var(--r-md); padding: 16px;
}
.rdw-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rdw-pill { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; background: var(--blue); color: #fff; padding: 3px 8px; border-radius: 6px; }
.type-line { font-size: 12.5px; color: var(--ok); font-weight: 600; }
.type-line::before { content: "● "; font-size: 9px; vertical-align: middle; }
.rdw-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-top: 1px solid rgba(255,255,255,0.06); font-size: 13.5px; }
.rdw-row span { color: var(--mut-d); }
.rdw-row strong { color: var(--txt-d); font-weight: 600; }
.rdw-apk strong { color: var(--yellow); }

/* scene 2 — bewaking */
.watch-ring { position: relative; width: 150px; height: 150px; }
.watch-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 8; }
.ring-fg { fill: none; stroke: var(--yellow); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset 1.4s var(--ease-out); }
.scene-2.is-on .ring-fg { stroke-dashoffset: 41; }
.watch-days { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.watch-days strong { font-size: 40px; font-weight: 800; line-height: 1; color: var(--txt-d); }
.watch-days span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mut-d); }
.watch-label { text-align: center; max-width: 38ch; font-size: 14.5px; color: var(--mut-d); margin: 0; }
.watch-label strong { color: var(--txt-d); }

/* scene 3 — sms */
.sms-card { width: 100%; max-width: 330px; background: #0c1119; border: 1px solid var(--line-dark); border-radius: 20px; padding: 16px; box-shadow: var(--shadow-pop); }
.sms-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 14px; }
.sms-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.sms-head strong { display: block; font-size: 14px; color: var(--txt-d); }
.sms-via { font-size: 11.5px; color: var(--mut-d); }
.sms-bubble {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff;
  border-radius: 16px 16px 16px 4px; padding: 12px 15px; font-size: 14.5px; line-height: 1.5;
  min-height: 84px; box-shadow: 0 8px 20px -8px rgba(45,125,255,0.5);
}
.caret { display: inline-block; width: 2px; height: 1em; background: #fff; vertical-align: text-bottom; margin-inline-start: 1px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.sms-status { margin-top: 10px; font-size: 12px; color: var(--ok); font-weight: 600; opacity: 0; transition: opacity 0.4s; }
.sms-status.is-on { opacity: 1; }

/* scene 4 — afspraak */
.booking-card { width: 100%; max-width: 340px; background: rgba(52, 199, 123, 0.06); border: 1px solid rgba(52, 199, 123, 0.3); border-radius: var(--r-md); padding: 16px; }
.booking-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.booking-check { width: 26px; height: 26px; border-radius: 50%; background: var(--ok); color: #04210f; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px; }
.booking-head strong { color: var(--txt-d); font-size: 15px; }
.booking-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-top: 1px solid rgba(255,255,255,0.06); font-size: 13.5px; }
.booking-row span { color: var(--mut-d); }
.booking-row strong { color: var(--txt-d); font-weight: 600; }
.booking-note { text-align: center; font-size: 14.5px; color: var(--mut-d); margin: 4px 0 0; max-width: 36ch; }

.flow-progress { position: absolute; inset-inline: 0; bottom: 0; height: 3px; background: rgba(255,255,255,0.07); }
.flow-progress-bar { height: 100%; width: 0; background: var(--yellow); transition: width 0.2s linear; }

/* ---------- SMS USP ---------- */
.sms { background: var(--ink); color: var(--txt-d); border-top: 1px solid var(--line-dark); }
.sms .lead { color: var(--mut-d); }
.sms-args { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 48px 0 40px; }
.sms-arg { background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark); border-radius: var(--r-md); padding: 26px 24px; }
.sms-arg-num { font-size: 26px; color: var(--yellow); display: block; margin-bottom: 12px; }
.sms-arg h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: var(--txt-d); }
.sms-arg p { margin: 0; font-size: 14.5px; color: var(--mut-d); line-height: 1.6; }
.stats-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 30px; background: linear-gradient(120deg, rgba(45,125,255,0.10), rgba(255,206,31,0.06)); border: 1px solid var(--line-dark); border-radius: var(--r-lg); }
.stat { text-align: center; }
.stat-v { display: block; font-size: clamp(32px, 4vw, 46px); font-weight: 800; color: var(--yellow); line-height: 1; letter-spacing: -0.02em; }
.stat span { font-size: 13.5px; color: var(--mut-d); }

/* ---------- PROBLEEM ---------- */
.problem { background: var(--paper); color: var(--txt-l); }
.problem-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; margin: 12px 0 40px; }
.compare-col { border-radius: var(--r-lg); padding: 30px 28px; }
.compare-old { background: var(--paper-2); border: 1px solid var(--line-light); }
.compare-new { background: var(--ink); color: var(--txt-d); box-shadow: var(--shadow-pop); }
.compare-col h3 { margin: 0 0 18px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-mono); }
.compare-old h3 { color: var(--mut-l); }
.compare-new h3 { color: var(--yellow); }
.compare-col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-col li { font-size: 15px; line-height: 1.5; padding-inline-start: 28px; position: relative; }
.compare-old li { color: var(--mut-l); }
.compare-old li::before { content: "✕"; position: absolute; inset-inline-start: 0; color: #c0392b; font-weight: 800; }
.compare-new li { color: var(--txt-d); }
.compare-new li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--ok); font-weight: 800; }
.compare-new li strong { color: #fff; }
.compare-arrow { align-self: center; font-size: 32px; color: var(--blue); font-weight: 700; }
.problem-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pstat { background: #fff; border: 1px solid var(--line-light); border-radius: var(--r-md); padding: 22px; text-align: center; box-shadow: var(--shadow-card); }
.pstat strong { display: block; font-size: clamp(26px, 3vw, 34px); font-weight: 800; color: var(--blue-deep); letter-spacing: -0.02em; line-height: 1.05; }
.pstat span { font-size: 13.5px; color: var(--mut-l); display: block; margin-top: 6px; }

/* ---------- FEATURES ---------- */
.features { background: var(--paper); color: var(--txt-l); border-top: 1px solid var(--line-light); }
.features .lead { color: var(--mut-l); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.fcard { position: relative; background: #fff; border: 1px solid var(--line-light); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-card); transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); overflow: hidden; }
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.fcard-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-soft); color: var(--blue-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.fcard-icon svg { width: 24px; height: 24px; }
.fcard h3 { margin: 0 0 8px; font-size: 18.5px; font-weight: 700; letter-spacing: -0.01em; }
.fcard p { margin: 0; font-size: 14.5px; color: var(--mut-l); line-height: 1.6; }
.fcard-hero { background: var(--ink); color: var(--txt-d); border-color: transparent; }
.fcard-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0%, rgba(255,206,31,0.16), transparent 55%); pointer-events: none; }
.fcard-hero h3 { color: #fff; }
.fcard-hero p { color: var(--mut-d); }
.fcard-hero .fcard-icon { background: rgba(255,206,31,0.16); color: var(--yellow); }
.fcard-badge { position: absolute; top: 18px; inset-inline-end: 18px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--yellow); color: var(--ink); padding: 4px 9px; border-radius: 6px; }

/* ---------- TOUR ---------- */
.tour { background: var(--ink); color: var(--txt-d); }
.tour-row { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; margin-top: 60px; }
.tour-row-flip .tour-copy { order: 2; }
.tour-tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin: 0 0 10px; }
.tour-copy h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 14px; text-transform: uppercase; font-stretch: 108%; }
.tour-copy > p { color: var(--mut-d); font-size: 16px; margin: 0 0 20px; max-width: 44ch; }
.tour-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.tour-list li { position: relative; padding-inline-start: 26px; font-size: 14.5px; color: var(--txt-d); }
.tour-list li::before { content: "→"; position: absolute; inset-inline-start: 0; color: var(--yellow); font-weight: 700; }

/* browser mockups */
.mock { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7); }
.mock-top { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--line-dark); }
.mock-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.mock-dot:nth-child(1) { background: #ff5f57; } .mock-dot:nth-child(2) { background: #febc2e; } .mock-dot:nth-child(3) { background: #28c840; }
.mock-url { margin-inline-start: 10px; font-family: var(--font-mono); font-size: 11.5px; color: var(--mut-d); }
.mock-body { display: grid; grid-template-columns: 56px 1fr; min-height: 300px; }
.mock-side { background: rgba(0,0,0,0.25); padding: 16px 0; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.mock-side-item { width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,0.08); }
.mock-side-item.is-on { background: var(--blue); }
.mock-main { padding: 20px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.mock-kpi { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: 12px; padding: 12px 14px; }
.mock-kpi span { font-size: 11px; color: var(--mut-d); text-transform: uppercase; letter-spacing: 0.06em; }
.mock-kpi strong { display: block; font-size: 19px; margin-top: 4px; color: var(--txt-d); }
.mock-kpi-acc { background: rgba(255,206,31,0.10); border-color: rgba(255,206,31,0.3); }
.mock-kpi-acc strong { color: var(--yellow); }
.mock-rows { display: flex; flex-direction: column; gap: 9px; }
.mock-row { display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 12px; background: rgba(255,255,255,0.03); border-radius: 10px; padding: 11px 14px; }
.mock-plate { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--ink); background: var(--yellow); padding: 3px 7px; border-radius: 5px; text-align: center; }
.mock-bar { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.12); position: relative; }
.mock-bar::after { content: ""; position: absolute; inset: 0; border-radius: 4px; background: var(--blue); }
.mock-bar.w35::after { width: 35%; } .mock-bar.w45::after { width: 45%; } .mock-bar.w60::after { width: 60%; } .mock-bar.w70::after { width: 70%; }
.mock-pill { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.mock-pill.ok { background: rgba(52,199,123,0.18); color: #5fe39d; }
.mock-pill.wait { background: rgba(255,206,31,0.16); color: var(--yellow); }
.mock-pill.done { background: rgba(255,255,255,0.1); color: var(--mut-d); }

/* planning mock */
.mock-cal { padding: 18px; }
.mock-cal-head { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.mock-cal-head span { font-size: 12px; font-weight: 700; color: var(--mut-d); text-transform: uppercase; letter-spacing: 0.06em; text-align: center; }
.mock-cal-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 58px; gap: 8px; }
.mock-ev { border-radius: 10px; padding: 9px 11px; display: flex; flex-direction: column; justify-content: center; }
.mock-ev strong { font-size: 13px; color: #fff; } .mock-ev span { font-family: var(--font-mono); font-size: 10.5px; opacity: 0.85; }
.ev-a { background: linear-gradient(135deg, #2d7dff, #1f6feb); }
.ev-b { background: linear-gradient(135deg, #7a5cff, #5b3fe0); }
.ev-c { background: linear-gradient(135deg, #ff8a3d, #f5660a); }
.ev-ghost { border: 1.5px dashed rgba(255,206,31,0.5); background: rgba(255,206,31,0.06); }
.ev-ghost strong { color: var(--yellow); } .ev-ghost span { color: var(--yellow-deep); }

/* werkbon mock */
.mock-bon-body { padding: 20px; }
.mock-bon-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-check { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-dark); font-size: 14px; color: var(--txt-d); }
.mc-box { width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.mc-box.is-done { background: var(--ok); border-color: var(--ok); color: #04210f; font-weight: 900; }
.mock-check em { font-style: normal; font-family: var(--font-mono); font-size: 13px; color: var(--mut-d); }
.mock-bon-total { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0 4px; }
.mock-bon-total span { color: var(--mut-d); font-size: 13px; }
.mock-bon-total strong { font-size: 24px; color: var(--yellow); }
.mock-bon-btn { margin-top: 14px; text-align: center; background: var(--blue); color: #fff; font-weight: 700; font-size: 14px; padding: 12px; border-radius: 10px; }

/* ---------- STEPS ---------- */
.steps { background: var(--paper); color: var(--txt-l); }
.steps-row { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: s; }
.step { position: relative; background: #fff; border: 1px solid var(--line-light); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow-card); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--ink); color: var(--yellow); font-weight: 800; font-size: 20px; margin-bottom: 18px; }
.step h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.step p { margin: 0; color: var(--mut-l); font-size: 14.5px; line-height: 1.6; }

/* ---------- PRICING ---------- */
.pricing { background: var(--ink); color: var(--txt-d); }
.pricing .lead { color: var(--mut-d); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; align-items: start; }
.plan { position: relative; background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 32px 28px; }
.plan-pop { background: #fff; color: var(--txt-l); box-shadow: var(--shadow-pop); transform: translateY(-10px); border-color: transparent; }
.plan-badge { position: absolute; top: -13px; inset-inline-start: 28px; background: var(--yellow); color: var(--ink); font-size: 12px; font-weight: 800; padding: 5px 13px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; }
.plan h3 { margin: 0 0 6px; font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
.plan-desc { font-size: 14px; color: var(--mut-d); margin: 0 0 18px; min-height: 42px; }
.plan-pop .plan-desc { color: var(--mut-l); }
.plan-price { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; margin: 0 0 20px; }
.plan-per { font-size: 16px; font-weight: 600; color: var(--mut-d); }
.plan-pop .plan-per { color: var(--mut-l); }
.plan-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.plan-list li { position: relative; padding-inline-start: 26px; font-size: 14.5px; }
.plan-list li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--ok); font-weight: 800; }
.plan-list li.plan-acc { color: var(--yellow-deep); font-weight: 700; }
.plan-pop .plan-list li.plan-acc { color: var(--blue-deep); }
.plan-acc::before { color: var(--yellow-deep) !important; }
.plan-pop .plan-acc::before { color: var(--blue-deep) !important; }
.pricing-note { text-align: center; margin: 36px 0 0; color: var(--mut-d); font-size: 15px; }
.pricing-note strong { color: var(--yellow); }

/* ---------- MOVE ---------- */
.move { background: var(--paper); color: var(--txt-l); border-top: 1px solid var(--line-light); }
.move-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.move .lead { color: var(--mut-l); }
.move-chips { list-style: none; margin: 0 0 30px; padding: 0; display: flex; gap: 12px; flex-wrap: wrap; }
.move-chips li { background: #fff; border: 1px solid var(--line-light); border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; box-shadow: var(--shadow-card); }
.move-chips li::before { content: "✓ "; color: var(--ok); font-weight: 800; }
.move-visual { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.move-box { border-radius: var(--r-lg); padding: 28px 24px; min-width: 150px; text-align: center; display: flex; flex-direction: column; gap: 4px; }
.move-box-old { background: var(--paper-2); border: 1px dashed var(--line-light); color: var(--mut-l); }
.move-box-old span { font-size: 13.5px; }
.move-box-new { background: var(--ink); color: var(--txt-d); box-shadow: var(--shadow-pop); align-items: center; }
.move-box-new img { border-radius: 8px; margin-bottom: 4px; }
.move-box-new strong { font-size: 22px; }
.move-box-new span { font-size: 13px; color: var(--yellow); }
.move-arrow { font-size: 30px; color: var(--blue); font-weight: 700; }

/* ---------- LAUNCHING PARTNERS (early adopters) ---------- */
.early { background: var(--ink); color: var(--txt-d); text-align: center; }
.early .lead { margin-left: auto; margin-right: auto; }
.early-cta { margin-top: 30px; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); color: var(--txt-l); }
.faq-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.faq-head { position: sticky; top: 100px; }
.faq-head .lead { color: var(--mut-l); margin: 0; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 4px; font-size: 18px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { font-size: 24px; color: var(--blue); font-weight: 400; transition: transform 0.3s var(--ease-out); flex-shrink: 0; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { margin: 0 4px 22px; color: var(--mut-l); font-size: 15.5px; line-height: 1.65; max-width: 60ch; }

/* ---------- CTA ---------- */
.cta { position: relative; background: var(--ink); color: var(--txt-d); overflow: hidden; border-top: 1px solid var(--line-dark); }
.cta-glow { position: absolute; bottom: -40%; inset-inline-start: 50%; width: 1000px; height: 700px; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(255,206,31,0.16), transparent 60%); pointer-events: none; }
.cta-inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta-plate { margin-bottom: 26px; }
.cta-plate .plate-num { font-size: 22px; }
.cta-h2 { max-width: 18ch; }
.cta .lead { color: var(--mut-d); margin-inline: auto; }
.cta-ctas { justify-content: center; }
.cta-chips { justify-content: center; }

/* ---------- responsief ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 130px; }
  .tour-row, .tour-row-flip { grid-template-columns: 1fr; gap: 28px; }
  .tour-row-flip .tour-copy { order: 0; }
  .move-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-inner { grid-template-columns: 1fr; gap: 28px; }
  .faq-head { position: static; }
  .sms-args, .features-grid, .plans, .reviews-grid, .steps-row { grid-template-columns: 1fr 1fr; }
  .problem-stats { grid-template-columns: 1fr 1fr; }
  .plan-pop { transform: none; }
}
@media (max-width: 680px) {
  .problem-compare { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); justify-self: center; }
  .stats-band, .sms-args, .features-grid, .plans, .reviews-grid, .steps-row, .problem-stats { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-step { font-size: 10.5px; }
}


/* ============================================================
   SLEUTL SITE — extra's voor SEO-subpagina's
   ============================================================ */
.page-hero { position: relative; background: var(--ink); color: var(--txt-d); overflow: hidden; }
.ph-glow { position: absolute; inset: -20% -10% auto; height: 480px; background: radial-gradient(640px 360px at 30% 20%, rgba(45,125,255,0.22), transparent 62%); pointer-events: none; }
.page-hero-inner { position: relative; max-width: var(--max-w); margin: 0 auto; padding: 10px 28px 72px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.breadcrumb { max-width: var(--max-w); margin: 0 auto; padding: 24px 28px 18px; position: relative; display: flex; gap: 9px; align-items: center; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mut-d); }
.breadcrumb a { color: var(--mut-d); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { opacity: 0.5; }
.page-h1 { font-size: clamp(38px, 5vw, 58px); font-weight: 800; font-stretch: 112%; line-height: 1.02; text-transform: uppercase; letter-spacing: -0.02em; margin: 14px 0 18px; }
.page-h1 .accent { color: var(--yellow); }
.page-hero .lead { color: var(--mut-d); max-width: 56ch; }
.page-hero .hero-ctas { margin-top: 28px; }
.page-hero .hero-chips { margin-top: 22px; }

.sec-paper { background: var(--paper); color: var(--txt-l); }
.sec-paper2 { background: var(--paper-2); color: var(--txt-l); }
.sec-ink { background: var(--ink); color: var(--txt-d); }
.sec-ink .lead { color: var(--mut-d); }
.sec-head { max-width: 68ch; margin-bottom: 36px; }
.prose { max-width: 70ch; font-size: 17px; line-height: 1.72; }
.prose p { margin: 0 0 16px; text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }

.flow3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flow3-card { background: #fff; border: 1px solid var(--line-light); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: 0 1px 2px rgba(10,14,22,0.04); }
.sec-ink .flow3-card { background: rgba(255,255,255,0.04); border-color: var(--line-dark); box-shadow: none; }
.flow3-num { display: inline-flex; font-family: var(--font-mono); font-size: 12px; font-weight: 700; background: var(--yellow); color: var(--ink); border-radius: 7px; padding: 3px 9px; margin-bottom: 14px; }
.flow3-card h3 { margin: 0 0 8px; font-size: 18.5px; font-weight: 800; letter-spacing: -0.01em; }
.flow3-card p { margin: 0; font-size: 15px; line-height: 1.6; color: inherit; opacity: 0.82; }

.note-strip { display: flex; gap: 14px; align-items: flex-start; margin-top: 22px; background: rgba(255,206,31,0.09); border: 1px solid rgba(255,206,31,0.35); border-radius: var(--r-lg); padding: 18px 20px; font-size: 15px; line-height: 1.6; }
.note-strip .ic { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--yellow); color: var(--ink); display: grid; place-items: center; font-weight: 800; }
.sec-paper .note-strip { background: #FFF7DC; border-color: rgba(184,137,11,0.35); }

.cmp-scroll { overflow-x: auto; }
.cmp { width: 100%; border-collapse: collapse; min-width: 640px; }
.cmp th, .cmp td { padding: 15px 18px; border-bottom: 1px solid var(--line-dark); text-align: left; font-size: 15px; vertical-align: top; }
.cmp thead th { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mut-d); border-bottom: 2px solid var(--line-dark); }
.cmp .rowlabel { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mut-d); white-space: nowrap; }
.cmp .win { color: var(--yellow); font-weight: 700; }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp-foot { margin-top: 14px; font-size: 13px; color: var(--mut-d); }

.funnel-demo { display: grid; gap: 10px; max-width: 460px; }
.fd-row { display: grid; grid-template-columns: 92px 1fr 44px; gap: 12px; align-items: center; font-family: var(--font-mono); font-size: 12.5px; }
.fd-bar { height: 20px; border-radius: 6px; background: rgba(255,255,255,0.07); overflow: hidden; }
.fd-bar i { display: block; height: 100%; border-radius: 6px; }
.fd-row b { text-align: right; font-size: 14px; }

.calc-card { background: var(--ink); color: var(--txt-d); border-radius: var(--r-lg); padding: 30px 32px; border: 1px solid var(--line-dark); }
.sec-ink .calc-card { background: rgba(255,255,255,0.04); }
.calc-tag { display: inline-flex; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--yellow); color: var(--ink); border-radius: 999px; padding: 4px 12px; margin-bottom: 18px; }
.calc-rows { display: grid; gap: 0; }
.calc-row { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line-dark); font-size: 15.5px; }
.calc-row:last-of-type { border-bottom: 0; }
.calc-row .v { font-family: var(--font-mono); font-weight: 600; white-space: nowrap; }
.calc-total { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; margin-top: 16px; padding-top: 18px; border-top: 2px solid var(--yellow); }
.calc-total b { font-size: clamp(26px, 3vw, 34px); font-weight: 800; font-stretch: 110%; color: var(--yellow); letter-spacing: -0.01em; }
.calc-total span { color: var(--mut-d); font-size: 14px; }

.related { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.related a { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line-light); border-radius: var(--r-lg); padding: 22px 24px; text-decoration: none; color: var(--txt-l); transition: transform 0.15s, box-shadow 0.15s; }
.related a:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -18px rgba(10,14,22,0.25); }
.related .rel-kick { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-deep); display: block; margin-bottom: 4px; }
.related b { font-size: 17px; }
.related .arrow { margin-left: auto; font-size: 20px; color: var(--blue-deep); }

.ring-static .ring-fg { stroke-dashoffset: 41; }
.hero-visual-card { background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 30px 28px; display: grid; justify-items: center; gap: 18px; text-align: center; }
.hero-visual-card .watch-label { margin: 0; font-size: 15px; line-height: 1.55; color: var(--mut-d); }
.hero-visual-card .watch-label strong { color: var(--txt-d); }

.sms-mock { background: #0F1522; border: 1px solid var(--line-dark); border-radius: 16px; padding: 16px 18px; max-width: 340px; text-align: left; }
.sms-mock .from { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.sms-mock .from .av { width: 30px; height: 30px; border-radius: 999px; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.sms-mock .from b { font-size: 13.5px; }
.sms-mock .from span { display: block; font-family: var(--font-mono); font-size: 10.5px; color: var(--mut-d); }
.sms-mock .bubble { background: var(--blue); color: #fff; border-radius: 14px; padding: 12px 14px; font-size: 13.5px; line-height: 1.5; }
.sms-mock .bubble .link { text-decoration: underline; font-weight: 600; }

@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 34px; padding-bottom: 56px; }
  .flow3 { grid-template-columns: 1fr; }
  .related { grid-template-columns: 1fr; }
}
