/* StreamConnect Flows — ontwerpsysteem
   Licht, minimaal, premium. Plus Jakarta Sans + merkverlopen uit het logo. */

/* Lettertypen: Manrope voor de bodytekst, Poppins (licht) voor de koppen.
   Geladen via Google Fonts in de <head> van elke pagina. */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-softer: #fafbff;
  --ink: #0c0c16;
  --ink-soft: #2a2b3a;
  --muted: #5c5d72;
  --line: rgba(12, 12, 22, 0.08);
  --line-strong: rgba(12, 12, 22, 0.14);

  --cyan: #1ed2ff;
  --sky: #7fb0ff;
  --blue: #0a2bff;
  --indigo: #5634ff;
  --violet: #9b5be5;
  --lavender: #a48bff;
  --peach: #ffb084;

  --grad: linear-gradient(100deg, #1ed2ff 0%, #5634ff 42%, #9b5be5 74%, #ffb084 100%);
  --grad-soft: linear-gradient(120deg, rgba(30, 210, 255, 0.16), rgba(86, 52, 255, 0.16) 45%, rgba(155, 91, 229, 0.16) 75%, rgba(255, 176, 132, 0.16));

  --shadow-sm: 0 1px 2px rgba(12, 12, 22, 0.04), 0 6px 18px rgba(12, 12, 22, 0.05);
  --shadow-md: 0 10px 34px rgba(86, 52, 255, 0.10), 0 4px 12px rgba(12, 12, 22, 0.06);
  --shadow-lg: 0 24px 60px rgba(86, 52, 255, 0.16), 0 8px 24px rgba(12, 12, 22, 0.08);

  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --nav-h: 56px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Poppins", "Manrope", system-ui, sans-serif;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  overflow-wrap: break-word;
  word-break: break-word;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: rgba(86, 52, 255, 0.16); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(72px, 9vw, 132px) 0; }
.section-tight { padding: clamp(56px, 6vw, 88px) 0; }

/* Type scale */
.display {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.h2 { font-size: clamp(2rem, 4vw, 3.05rem); }
.h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); letter-spacing: -0.025em; }
.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--muted);
  line-height: 1.6;
  font-weight: 400;
}

/* Accent text (één spaarzaam accent in plaats van een verloop) */
.grad-text {
  color: var(--indigo);
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 3px rgba(86,52,255,0.12);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 22px rgba(12, 12, 22, 0.16);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #1b1b2c;
  box-shadow: 0 12px 30px rgba(12, 12, 22, 0.22);
}

.btn-ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--indigo);
  box-shadow: var(--shadow-sm);
}

.btn-soft {
  color: var(--ink);
  background: var(--bg-soft);
  border-color: var(--line);
}
.btn-soft:hover { background: #ececf3; transform: translateY(-2px); }

/* Geruststelling/risk reversal onder een CTA */
.reassure { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.reassure svg { width: 16px; height: 16px; color: #22c55e; flex: none; }
.footer-cta .reassure { color: rgba(255,255,255,0.62); }
.footer-cta .reassure svg { color: #38d27f; }
.check-mini { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 6px; background: var(--grad); color: #fff; flex: none; margin-top: 2px; }
.check-mini svg { width: 12px; height: 12px; }

/* Cards */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.card-hover { overflow: hidden; }
.card-hover > * { position: relative; z-index: 1; }
.card-hover::after {
  content: ""; position: absolute; top: -45%; right: -32%;
  width: 72%; height: 86%; border-radius: 50%;
  background: radial-gradient(circle, rgba(86,52,255,0.16), rgba(30,210,255,0.08) 45%, transparent 72%);
  opacity: 0; transform: scale(.7); transform-origin: top right;
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.3,1);
  pointer-events: none; z-index: 0;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(86, 52, 255, 0.22);
}
.card-hover:hover::after { opacity: 1; transform: scale(1); }
.card-hover .icon-badge { transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease; }
.card-hover:hover .icon-badge { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 26px rgba(86,52,255,0.34); }

.icon-badge {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 18px rgba(86, 52, 255, 0.26);
  overflow: hidden;
}
.icon-badge::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0) 55%);
}
.icon-badge::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.icon-badge svg { position: relative; z-index: 1; width: 26px; height: 26px; stroke-width: 1.8; color: #fff; }

/* Pill / chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--indigo); }

/* Soft surface section */
.surface { background: var(--bg-soft); }

/* Decorative glow blobs — subtiele ambient gloed voor diepte */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  animation: glowDrift 20s ease-in-out infinite alternate;
}
.glow:nth-of-type(2) { animation-duration: 26s; animation-delay: -6s; }
.z1 { position: relative; z-index: 1; }

@keyframes glowDrift {
  0%   { translate: 0 0; scale: 1; }
  100% { translate: 24px -22px; scale: 1.12; }
}

/* ---------- Navigation ---------- */
/* Slanke, Apple stijl headerbalk met blur over de achtergrond */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.8);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(12, 12, 22, 0.02);
}
.nav-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav .btn { padding: 8px 17px; font-size: 0.9rem; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -0.02em; font-size: 1.12rem; }
.brand img { width: 30px; height: 30px; }
.nav .brand img { width: 30px; height: 30px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { background: rgba(12,12,22,0.05); color: var(--ink); }
.nav-links a.active { color: var(--indigo); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 32px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 22px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 72px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}
.footer h4 { font-size: 0.83rem; letter-spacing: 0.04em; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.footer-links a { display: block; padding: 6px 0; color: var(--ink-soft); font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: var(--indigo); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.9rem;
}

/* ---------- Footer (donker premium) ---------- */
.footer-dark { position: relative; background: #0b0b16; color: #fff; padding: 60px 0 30px; }
.footer-dark::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-cta h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); color: #fff; letter-spacing: -0.025em; }
.footer-cta p { color: rgba(255, 255, 255, 0.6); margin-top: 8px; max-width: 460px; }
.footer-divider-d { height: 1px; background: rgba(255, 255, 255, 0.1); border: 0; margin: 0 0 44px; }
.footer-main { display: grid; grid-template-columns: 1.3fr 2fr; gap: 56px; }
.footer-dark .brand span { color: #fff; }
.footer-tag-d { color: rgba(255, 255, 255, 0.55); margin-top: 16px; max-width: 280px; font-size: 0.95rem; line-height: 1.6; }
.footer-mail-d { display: inline-block; margin-top: 16px; color: #fff; font-weight: 600; transition: color .2s; }
.footer-mail-d:hover { color: var(--lavender); }
.footer-cols-d { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-dark h4 { font-size: 0.8rem; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.45); font-weight: 600; margin-bottom: 14px; }
.footer-dark .footer-links a { display: block; padding: 6px 0; color: rgba(255, 255, 255, 0.72); font-weight: 500; transition: color .2s; }
.footer-dark .footer-links a:hover { color: #fff; }
.footer-bottom-d {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5); font-size: 0.88rem;
}
.footer-legal-d { display: flex; gap: 22px; }
.footer-legal-d a { color: rgba(255, 255, 255, 0.5); transition: color .2s; }
.footer-legal-d a:hover { color: #fff; }

/* Bedrijfsgegevens in de footer (legitimiteit) */
.footer-credentials-d {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 22px;
  color: rgba(255, 255, 255, 0.55); font-size: 0.86rem;
}
.footer-credentials-d .fc-name { color: #fff; font-weight: 600; }
.footer-credentials-d a { color: rgba(255, 255, 255, 0.7); transition: color .2s; }
.footer-credentials-d a:hover { color: #fff; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--d, 0ms);
  will-change: transform, opacity;
}
.reveal.in { opacity: 1; transform: none; }

/* hero floating shapes (logo motif) */
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(0,-18px,0) rotate(4deg); }
}
@keyframes driftSlow {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(0,14px,0) rotate(-3deg); }
}
.float-a { animation: drift 9s ease-in-out infinite; }
.float-b { animation: driftSlow 11s ease-in-out infinite; }

/* hero gradient sweep on the headline underline */
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* ---------- Stats ---------- */
.stat-num {
  font-family: "Poppins", "Manrope", sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Process line ---------- */
.steps { counter-reset: step; }
.step-num {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-weight: 600;
  font-family: "Poppins", "Manrope", sans-serif;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 18px rgba(86, 52, 255, 0.28);
  overflow: hidden;
  flex: none;
}
.step-num::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0) 55%);
}
.step-num::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.step-num > * { position: relative; z-index: 1; }
.step-num { isolation: isolate; }

/* logo mark frame inside hero */
.hero-visual {
  position: relative;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* generic grids */
.grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* form */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.92rem; font-weight: 600; margin-bottom: 8px; color: var(--ink-soft); }
.input, .textarea, select.input {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input:focus, .textarea:focus, select.input:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(86, 52, 255, 0.12);
}
.textarea { min-height: 140px; resize: vertical; }

/* Formulier: validatie en status */
.input.invalid, .textarea.invalid, select.input.invalid {
  border-color: #e0405a;
  box-shadow: 0 0 0 4px rgba(224, 64, 90, 0.12);
}
.field-error {
  display: block;
  min-height: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #d12f49;
  margin-top: 6px;
}
.field-error:empty { margin-top: 0; }

.form-status {
  border-radius: 13px;
  padding: 13px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-status.pending { background: rgba(86,52,255,0.08); color: var(--indigo); border: 1px solid rgba(86,52,255,0.2); }
.form-status.success { background: #eafaf0; color: #15803d; border: 1px solid rgba(34,197,94,0.3); }
.form-status.error   { background: #fdecef; color: #b21f3a; border: 1px solid rgba(224,64,90,0.28); }

/* Honeypotvelden: onzichtbaar voor mensen, bereikbaar voor bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Knop laadtoestand */
.btn .btn-spinner {
  display: none;
  width: 17px; height: 17px;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnspin 0.7s linear infinite;
}
.btn.is-loading { cursor: progress; opacity: 0.85; }
.btn.is-loading .btn-icon { display: none; }
.btn.is-loading .btn-spinner { display: inline-block; }
@keyframes btnspin { to { transform: rotate(360deg); } }

/* divider faint */
.divider { height: 1px; background: var(--line); border: 0; }

/* accessible focus rings */
a:focus-visible, button:focus-visible, .btn:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-cols-d { grid-template-columns: 1fr 1fr; gap: 22px; }
  .card { padding: 24px; }
  .section { padding: 64px 0; }
  .nav-cta .btn-primary { display: none; }
  .nav-inner { padding-left: 18px; }
}

/* ---------- Hulpklassen ---------- */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 22px; }
.gap-6 { gap: 28px; }
.relative { position: relative; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.ink-soft { color: var(--ink-soft); }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 36px; }
.mt-6 { margin-top: 52px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 18px; }
.mb-4 { margin-bottom: 26px; }
.mb-5 { margin-bottom: 40px; }
.maxw-sm { max-width: 540px; }
.maxw-md { max-width: 680px; }
.maxw-lg { max-width: 820px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.full { width: 100%; }
.z1 { position: relative; z-index: 1; }
.stack-mobile { }

@media (max-width: 860px) {
  .hide-mobile { display: none !important; }
  .split { grid-template-columns: 1fr !important; }
  .showcase { grid-template-columns: 1fr; gap: 30px; }
  .showcase-right { min-height: 360px; }
}

/* split layout */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

/* anker offset onder de vaste header */
section[id], [data-anchor] { scroll-margin-top: 84px; }

/* ---------- Premium FAQ accordion ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item.open { border-color: rgba(86, 52, 255, 0.28); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer;
  padding: 20px 24px;
  font-family: inherit; font-size: 1.05rem; font-weight: 500; color: var(--ink);
  text-align: left;
}
.faq-ico { flex: none; width: 24px; height: 24px; display: grid; place-items: center; color: var(--indigo); transition: transform .35s cubic-bezier(.2,.7,.3,1); }
.faq-item.open .faq-ico { transform: rotate(135deg); }
.faq-a { display: none; overflow: hidden; }
.faq-item.open .faq-a { display: block; animation: faqReveal .35s cubic-bezier(.2,.7,.3,1); }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq-a-inner p { padding: 0 24px 22px; color: var(--muted); margin: 0; }

/* ---------- Toggle / switch ---------- */
.switch {
  position: relative; width: 50px; height: 30px; flex: none;
  border-radius: 999px; background: var(--line-strong); border: 0; padding: 0; cursor: pointer;
  transition: background .3s ease;
}
.switch::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 24px; height: 24px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.22);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.switch.on { background: #22c55e; }
.switch.on::after { transform: translateX(20px); }

/* ---------- Privacy widget ---------- */
.priv-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.priv-head { padding: 16px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 8px; }
.priv-dots { display: flex; gap: 7px; }
.priv-dots span { width: 11px; height: 11px; border-radius: 50%; display: block; }
.priv-body { padding: 24px 22px; }
.priv-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; }
.priv-row + .priv-row { border-top: 1px solid var(--line); }
.priv-status {
  display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px; background: var(--bg-soft); color: var(--muted);
  transition: background .3s ease, color .3s ease;
}
.priv-status.safe { background: rgba(34,197,94,.12); color: #15803d; }
.priv-status .pulse { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.priv-range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 12px; margin: 6px 0 2px;
  border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line); outline: none;
  cursor: pointer;
}
.priv-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); cursor: grab;
}
.priv-range::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%; background: #fff;
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); cursor: grab;
}
.priv-staticbar {
  position: relative; height: 12px; margin: 6px 0 2px;
  border-radius: 999px; background: #22c55e;
}
.priv-staticbar::after {
  content: ""; position: absolute; right: -1px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: #fff;
  border: 1px solid var(--line-strong); box-shadow: var(--shadow-sm);
}

/* ---------- Hoe het werkt (interactief) ---------- */
.steps-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.step-pill {
  padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  cursor: pointer; font-family: inherit; font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.step-pill:hover { border-color: var(--line-strong); }
.step-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.hiw-panel { display: none; }
.hiw-panel.active { display: block; animation: hiwIn .5s cubic-bezier(.2,.7,.3,1); }
@keyframes hiwIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Voortgangsvulling in de actieve stap-pill (autoplay) */
.step-pill { position: relative; overflow: hidden; }
.pill-label { position: relative; z-index: 1; }
.pill-prog { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: rgba(255,255,255,.18); z-index: 0; pointer-events: none; }

/* ---------- Zo werkt het: live mini-mockups ---------- */
.hiw-viz {
  position: relative; min-height: 236px; border-radius: 18px; overflow: hidden;
  background: radial-gradient(130% 120% at 30% 16%, #181830, #0b0b16 72%);
  box-shadow: 0 22px 48px -20px rgba(12,12,22,.55), inset 0 0 0 1px rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center; padding: 28px;
}
.hiw-viz::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 42%); pointer-events: none; }
.hiw-viz > * { position: relative; z-index: 1; width: 100%; }

/* gedeelde entree-animatie (per element vertraagd via --vd) */
.hiw-panel.active .viz-up { animation: vizUp .55s cubic-bezier(.2,.7,.3,1) both; animation-delay: var(--vd, 0s); }
@keyframes vizUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* stap 1: aanvraag */
.viz-stamp { position: absolute; top: 16px; right: 18px; font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.5); }
.viz-rows { display: flex; flex-direction: column; gap: 12px; }
.viz-card { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 13px 14px; }
.viz-ic { width: 38px; height: 38px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; color: #fff; flex: none; }
.viz-ic svg { width: 19px; height: 19px; }
.viz-tt { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.viz-t { color: #fff; font-weight: 600; font-size: .95rem; }
.viz-s { color: rgba(255,255,255,.6); font-size: .8rem; }
.viz-new { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); flex: none; }
.viz-meta { color: rgba(255,255,255,.5); font-size: .82rem; }

/* stap 2: chat */
.viz-chat { display: flex; flex-direction: column; gap: 10px; }
.bubble { max-width: 86%; padding: 10px 13px; border-radius: 15px; font-size: .88rem; line-height: 1.4; }
.bubble.in { align-self: flex-start; background: rgba(255,255,255,.1); color: #fff; border-bottom-left-radius: 5px; }
.bubble.ai { align-self: flex-end; background: var(--grad); color: #fff; border-bottom-right-radius: 5px; }
.viz-chat .viz-meta { align-self: flex-end; }

/* stap 3: kwalificeren */
.viz-checks { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.viz-checks li { display: flex; align-items: center; gap: 11px; color: #fff; font-size: .92rem; }
.viz-checks .ck { width: 24px; height: 24px; border-radius: 8px; background: var(--grad); display: grid; place-items: center; color: #fff; flex: none; }
.viz-checks .ck svg { width: 14px; height: 14px; }
.viz-ok { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: #fff; background: rgba(34,197,94,.16); border: 1px solid rgba(34,197,94,.35); padding: 7px 13px; border-radius: 999px; }
.viz-ok .d { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }

/* stap 4: agenda */
.viz-cal { width: 100%; }
.cal-head { color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 600; margin-bottom: 12px; }
.cal-slots { display: flex; flex-direction: column; gap: 9px; }
.cal-slots span { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.55); font-size: .9rem; font-weight: 500; }
.cal-slots .slot-booked { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 8px 18px rgba(86,52,255,.34); }
.cal-slots .slot-booked svg { width: 16px; height: 16px; }
.viz-cal .viz-meta { margin-top: 12px; text-align: center; }

/* Kwalificatie-blok: checklist + badge netjes onder elkaar (geen overlap) */
.viz-qual { width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.viz-qual .viz-checks { margin: 0 0 18px; }
.viz-qual .viz-ok { align-self: flex-start; }
.bubble { font-size: .92rem; padding: 11px 14px; }
.viz-checks li { font-size: .96rem; gap: 12px; }
.viz-checks .ck { width: 26px; height: 26px; }
.viz-card { padding: 14px 16px; }
.viz-ic { width: 40px; height: 40px; }

/* ---------- Compacte knop ---------- */
.btn-sm { padding: 9px 16px; font-size: 0.875rem; gap: 7px; }
.btn-sm svg { width: 15px; height: 15px; }

/* ---------- "Vraag het AI" tegel ---------- */
.ask-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: clamp(48px, 7vw, 88px) 24px;
  text-align: center;
}
.ask-tile .ask-bg { position: absolute; inset: 0; opacity: 0.6; pointer-events: none; color: var(--line-strong); }
.ask-tile .ask-inner { position: relative; z-index: 1; }
.ask-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.ask-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 20px; font-family: inherit; font-weight: 600; font-size: 0.96rem; color: var(--ink);
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ask-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.ask-btn .ai-ico { width: 22px; height: 22px; flex: none; display: grid; place-items: center; }
.ask-btn .ai-ico svg { width: 22px; height: 22px; }

/* ---------- Zelfcheck ---------- */
.check-q { display: none; }
.check-q.active { display: block; animation: hiwIn .4s cubic-bezier(.2,.7,.3,1); }
.check-qtext { font-weight: 500; font-size: 1.18rem; color: var(--ink); margin: 0 0 18px; }
.check-opts { display: flex; flex-direction: column; gap: 10px; max-width: 440px; margin: 0 auto; }
.check-opt {
  width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 18px; font-family: inherit; font-weight: 500; font-size: 1rem; color: var(--ink);
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.check-opt:hover { transform: translateY(-2px); border-color: var(--indigo); box-shadow: var(--shadow-md); }
.check-result { display: none; }
.check-result.active { display: block; animation: hiwIn .45s cubic-bezier(.2,.7,.3,1); }
.check-badge { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto; display: grid; place-items: center; background: rgba(34,197,94,.14); color: #15803d; }
.check-badge svg { width: 28px; height: 28px; }
.check-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.check-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); transition: background .2s ease; }
.check-dot.on { background: var(--indigo); }

/* ---------- Uitleg illustraties (privacy) ---------- */
.explain { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 96px); }
.illu {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(155deg, #f7f8fc, #edeefa);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease;
}
.illu:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.illu svg { display: block; width: 100%; height: auto; }
@keyframes illuFlow { to { stroke-dashoffset: 24; } }
.illu-flow { animation: illuFlow 1.5s linear infinite; }
@keyframes illuPulse { 0% { transform: scale(.95); opacity: .45; } 70%, 100% { transform: scale(1.28); opacity: 0; } }
.illu-pulse { transform-box: fill-box; transform-origin: center; animation: illuPulse 2.8s ease-out infinite; }

/* Privacy illustratie animaties (los van transform-attribuut via translate/scale) */
@keyframes pvFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
.pv-float { animation: pvFloat 3.6s ease-in-out infinite; }
@keyframes pvBreathe { 0%, 100% { scale: 1; } 50% { scale: 1.04; } }
.pv-breathe { transform-box: fill-box; transform-origin: center; animation: pvBreathe 3.6s ease-in-out infinite; }
@keyframes pvDot { 0%, 100% { scale: 1; opacity: 1; } 50% { scale: 1.45; opacity: .5; } }
.pv-dot { transform-box: fill-box; transform-origin: center; animation: pvDot 2s ease-in-out infinite; }
@keyframes pvDraw { 0% { stroke-dashoffset: 62; } 28% { stroke-dashoffset: 0; } 88% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 62; } }
.pv-draw { stroke-dasharray: 62; animation: pvDraw 3.8s ease-in-out infinite; }
.illu-num {
  position: absolute; top: 16px; left: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 15px; z-index: 2;
}
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px; border-radius: 999px; font-size: 0.86rem; font-weight: 600;
}
.pill svg { width: 15px; height: 15px; }
.pill-green { background: rgba(34, 197, 94, 0.12); color: #15803d; }
.pill-red { background: #fcebeb; color: #cf4339; }
.pill-amber { background: #fbeedd; color: #9a6b16; }

/* ---------- Document tegel (privacy / voorwaarden) ---------- */
.doc-tile {
  background: #faf9f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 60px);
}
.doc-breadcrumb { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.doc-breadcrumb a { color: var(--muted); }
.doc-breadcrumb a:hover { color: var(--indigo); }
.doc-tile h1 { font-size: clamp(2rem, 4vw, 3rem); }

/* ---------- Toestel mockups (geen merklogo) ---------- */
.device-stage { position: relative; display: flex; align-items: center; justify-content: center; }

/* Laptop */
.laptop { width: 100%; max-width: 540px; margin: 0 auto; }
.laptop-lid {
  background: #1b1b27;
  border-radius: 18px;
  padding: 12px 12px 12px;
  box-shadow: var(--shadow-lg);
}
.laptop-screen {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.laptop-cam { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: #3a3a48; z-index: 4; }
.laptop-base {
  position: relative;
  width: 124%;
  margin-left: -12%;
  height: 16px;
  background: linear-gradient(180deg, #d4d5dd, #b4b5c2);
  border-radius: 0 0 14px 14px;
}
.laptop-base::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 110px; height: 7px; background: #a3a4b1; border-radius: 0 0 8px 8px;
}

/* Telefoon */
.phone {
  position: relative;
  width: 232px;
  background: #15151f;
  border-radius: 36px;
  padding: 9px;
  box-shadow: var(--shadow-lg);
}
.phone-screen {
  position: relative;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.3;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 42%; height: 22px; background: #15151f;
  border-radius: 0 0 14px 14px; z-index: 5;
}

/* Mini app UI binnen schermen */
.scr-ui { position: absolute; inset: 0; display: flex; flex-direction: column; background: #fff; }
.scr-bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.scr-dot { width: 9px; height: 9px; border-radius: 50%; }
.scr-body { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.scr-card { border: 1px solid var(--line); border-radius: 12px; padding: 11px 12px; display: flex; align-items: center; gap: 10px; background: #fff; }
.scr-ico { width: 30px; height: 30px; border-radius: 9px; background: var(--bg-soft); display: grid; place-items: center; flex: none; color: var(--ink); }
.scr-ico.dark { background: var(--ink); color: #fff; }
.scr-ico svg { width: 16px; height: 16px; }
.scr-line { height: 8px; border-radius: 5px; background: var(--bg-soft); }

/* ---------- Video placeholder ---------- */
.video-ph {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  border-radius: var(--radius); background: var(--bg-soft); border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden; cursor: pointer;
}
.video-ph .play {
  width: 76px; height: 76px; border-radius: 50%; background: var(--ink); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  transition: transform .25s ease;
}
.video-ph:hover .play { transform: scale(1.06); }
.video-ph .play svg { width: 28px; height: 28px; margin-left: 3px; }

/* ---------- Waarom StreamConnect showcase (donker, glossy) ---------- */
.showcase {
  position: relative; overflow: hidden;
  border-radius: 28px; background: #0b0b16; color: #fff;
  padding: clamp(34px, 5vw, 60px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.showcase::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.showcase-glow { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(86,52,255,.5), transparent 66%); filter: blur(60px); pointer-events: none; z-index: 0; }
.showcase > .showcase-left, .showcase > .showcase-right { position: relative; z-index: 1; }
.showcase h2 { color: #fff; }
.showcase .eyebrow { color: #b9b9d4; }
.showcase-lead { color: rgba(255,255,255,.66); }
.showcase-stat { display: flex; align-items: baseline; gap: 14px; margin: 22px 0 26px; }
.showcase-stat .num { font-family: "Poppins", sans-serif; font-weight: 600; font-size: clamp(3rem, 6vw, 4.2rem); line-height: 1; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.showcase-stat .lbl { color: rgba(255,255,255,.6); font-size: .96rem; max-width: 170px; line-height: 1.4; }
.showcase-right { display: flex; align-items: center; justify-content: center; min-height: 400px; }
.glass-layer { position: absolute; width: 196px; height: 300px; border-radius: 30px; background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.14); }
.phone3d { position: relative; z-index: 3; width: 228px; background: #0e0e18; border: 1px solid rgba(255,255,255,.12); border-radius: 38px; padding: 9px; box-shadow: 0 30px 70px rgba(86,52,255,.45); }
.phone3d .scr { position: relative; border-radius: 30px; overflow: hidden; aspect-ratio: 9 / 19.3; background: linear-gradient(165deg, #1ED2FF, #5634FF 55%, #9B5BE5); padding: 30px 14px 16px; }
.phone3d .notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 38%; height: 20px; background: #0e0e18; border-radius: 0 0 13px 13px; z-index: 4; }
.scr-pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.28); color: #fff; font-size: 11px; font-weight: 600; padding: 5px 11px; border-radius: 999px; }
.scr-pill .d { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }
.app-card { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); border-radius: 15px; padding: 10px 11px; display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.app-card.hl { background: rgba(255,255,255,.26); }
.app-card .ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.22); display: grid; place-items: center; color: #fff; flex: none; }
.app-card .ic svg { width: 16px; height: 16px; }
.app-card .t { font-size: 12px; font-weight: 600; color: #fff; line-height: 1.3; }
.app-card .s { font-size: 10px; color: rgba(255,255,255,.78); }
.app-arrow { display: flex; justify-content: center; color: rgba(255,255,255,.6); padding: 5px 0; }
.app-arrow svg { width: 18px; height: 18px; }

/* ---------- Glas stat tegel (3D glas familie) ---------- */
.stat-glass { position: relative; min-height: 180px; border-radius: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: radial-gradient(130% 120% at 28% 18%, #181830, #0b0b16 72%); box-shadow: 0 22px 48px -20px rgba(12,12,22,.55), inset 0 0 0 1px rgba(255,255,255,.07); }
.stat-glass::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 42%); pointer-events: none; }
.stat-glass::after { content: ""; position: absolute; width: 230px; height: 230px; left: 50%; top: 58%; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(86,52,255,.42), transparent 68%); filter: blur(14px); pointer-events: none; }
.stat-glass .num { position: relative; z-index: 1; font-family: "Poppins", sans-serif; font-weight: 500; font-size: clamp(2.6rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-glass .gi { position: relative; z-index: 1; color: #fff; }
.stat-glass .gi svg { width: 56px; height: 56px; }
.num-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Premium laag: micro-interacties en levende accenten ---------- */
/* Animerende gloed achter de showcase telefoon */
.showcase-glow { animation: glowPulse 9s ease-in-out infinite; }
@keyframes glowPulse {
  0%, 100% { opacity: .8; transform: translateY(-50%) scale(1); }
  50%      { opacity: 1; transform: translateY(-50%) scale(1.12); }
}

/* Chips reageren op hover */
.chip { transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, border-color .25s ease; }
.chip:hover { transform: translateY(-2px); border-color: rgba(86,52,255,0.25); box-shadow: var(--shadow-md); }

/* Pijl in knoppen en links schuift mee */
.btn svg, .btn-soft svg { transition: transform .3s cubic-bezier(.2,.7,.3,1); }
.btn:hover svg { transform: translateX(3px); }

/* Zachte schaal op de telefoon mockup bij hover over de showcase */
.phone3d { transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.showcase:hover .phone3d { transform: translateY(-6px); }
.glass-layer { transition: transform .6s cubic-bezier(.2,.7,.3,1); }

/* Subtiele drijvende beweging voor de telefoon en glaslagen */
@media (prefers-reduced-motion: no-preference) {
  .phone3d { animation: floaty 7s ease-in-out infinite; }
  @keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
}

/* Parallax helper: JS zet --pscroll, elementen verschuiven zacht mee */
[data-parallax] { will-change: transform; }

/* ---------- Oprichter en team ---------- */
.founder-aside { text-align: center; }
.founder-mark {
  position: relative;
  width: 96px; height: 96px;
  margin: 0 auto 18px;
  border-radius: 26px;
  display: grid; place-items: center;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 2.6rem;
  color: #fff; background: var(--grad);
  box-shadow: 0 14px 30px rgba(86,52,255,0.30);
  overflow: hidden;
}
.founder-mark::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0) 55%);
}
.founder-sign-block { margin-top: 6px; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.founder-sign-off { font-size: 1rem; color: var(--ink-soft); }
.founder-signature { max-width: 190px; height: auto; }
.founder-sign-name {
  font-family: "Caveat", "Segoe Script", cursive; font-size: 2.6rem; font-weight: 600;
  line-height: 1; letter-spacing: 0; color: var(--ink);
}
/* Praktijkvoorbeeld in gewone taal */
.practice-intro { font-size: 1.12rem; color: var(--ink-soft); margin: 0 0 26px; }
.practice-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.practice-steps li { display: flex; align-items: flex-start; gap: 16px; font-size: 1.05rem; color: var(--ink-soft); line-height: 1.55; }
.practice-steps strong { color: var(--ink); font-weight: 600; }
.practice-steps .ps-num {
  position: relative; flex: none;
  width: 34px; height: 34px; border-radius: 11px;
  display: grid; place-items: center;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 0.95rem;
  color: #fff; background: var(--grad); overflow: hidden;
  box-shadow: 0 6px 14px rgba(86,52,255,0.26);
}
.practice-steps .ps-num::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0) 55%);
}
.practice-close { font-size: 1.12rem; color: var(--ink); font-weight: 600; margin: 28px 0 0; }

/* ---------- Oprichter-widget (homepage) ---------- */
.founder-widget {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: #0b0b16;
  border-radius: 28px;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-widget::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.fw-glow { position: absolute; right: -60px; top: -40px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(86,52,255,.5), transparent 66%); filter: blur(60px); pointer-events: none; }
.founder-widget > .fw-left, .founder-widget > .fw-right { position: relative; z-index: 1; }

/* Schone persoon-avatar (cirkel + schouderboog) in merkverloop */
.fw-right { display: flex; justify-content: center; }
.fw-avatar { width: 100%; max-width: 230px; filter: drop-shadow(0 14px 34px rgba(86,52,255,.45)); }

/* registratiehoeken (design-studio gevoel) */
.fw-tick { position: absolute; width: 13px; height: 13px; pointer-events: none; opacity: .5; z-index: 2; }
.fw-tick::before, .fw-tick::after { content: ""; position: absolute; background: rgba(255,255,255,.45); }
.fw-tick::before { width: 13px; height: 1.5px; top: 0; }
.fw-tick::after { width: 1.5px; height: 13px; left: 0; }
.fw-tl { top: 18px; left: 18px; }
.fw-tr { top: 18px; right: 18px; transform: scaleX(-1); }
.fw-bl { bottom: 18px; left: 18px; transform: scaleY(-1); }
.fw-br { bottom: 18px; right: 18px; transform: scale(-1); }

.fw-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #b9b9d4; }
.fw-eyebrow .d { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }

.fw-stage { position: relative; margin: 26px 0 30px; min-height: 4.6em; }
.fw-note {
  margin: 0; position: absolute; inset: 0;
  font-family: "Poppins", sans-serif; font-weight: 500;
  font-size: clamp(1.6rem, 3.1vw, 2.6rem); line-height: 1.14; letter-spacing: -.02em;
  color: #fff; opacity: 0; transform: translateY(10px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); pointer-events: none;
}
.fw-note.is-active { opacity: 1; transform: none; position: relative; }
.fw-arrow { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.fw-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.fw-sign { display: flex; flex-direction: column; }
.fw-sign .founder-sign-name { color: #fff; font-size: 2.1rem; line-height: 1; }
.fw-role { color: rgba(255,255,255,.55); font-size: .9rem; margin-top: 4px; }
.fw-dots { display: flex; gap: 9px; }
.fw-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,.22); transition: background .25s, width .25s; }
.fw-dot.is-active { width: 26px; border-radius: 999px; background: var(--grad); }

.fw-readmore { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: #fff; font-weight: 600; font-size: .95rem; }
.fw-readmore svg { width: 18px; height: 18px; transition: transform .3s; }
.fw-readmore:hover svg { transform: translateX(3px); }

@media (max-width: 860px) {
  .founder-widget { grid-template-columns: 1fr; }
  .fw-right { order: -1; }
  .fw-avatar { max-width: 170px; }
  .fw-stage { min-height: 5.4em; }
}

/* ---------- Verhaal-widget (oprichter, over-ons) ---------- */
.story-widget {
  position: relative; display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 4vw, 60px); align-items: center;
  background: #0b0b16; border-radius: 28px; padding: clamp(34px, 5vw, 64px);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.story-widget::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.story-widget > .story-visual, .story-widget > .story-body { position: relative; z-index: 1; }
.story-visual { text-align: center; }
.story-visual .fw-avatar { width: 100%; max-width: 200px; margin: 0 auto 22px; filter: drop-shadow(0 14px 34px rgba(86,52,255,.45)); }
.story-visual .founder-sign-block { align-items: center; }
.story-visual .founder-sign-off { color: rgba(255,255,255,.6); }
.story-visual .founder-sign-name { color: #fff; }
.story-body .fw-eyebrow { color: #b9b9d4; }
.story-title { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.1; letter-spacing: -.02em; margin: 16px 0 20px; }
.story-body p { color: rgba(255,255,255,.66); font-size: 1.05rem; line-height: 1.7; margin: 0 0 16px; }
.story-body p:last-child { margin-bottom: 0; }
.story-lead { color: rgba(255,255,255,.9) !important; font-size: 1.18rem !important; }
.story-role { color: rgba(255,255,255,.55); font-size: .92rem; margin-top: 8px; }

@media (max-width: 860px) {
  .story-widget { grid-template-columns: 1fr; }
  .story-visual { order: -1; }
  .story-visual .fw-avatar { max-width: 150px; }
}

/* ---------- Social proof / vertrouwen ---------- */
.trust-card { padding: 28px 22px; }
.trust-card .icon-badge { width: 46px; height: 46px; }

/* Klantervaringen (template) */
.testimonial { display: flex; flex-direction: column; gap: 14px; }
.testimonial .stars { color: #ffb084; letter-spacing: 2px; font-size: 1.05rem; }
.testimonial blockquote { margin: 0; font-size: 1.08rem; line-height: 1.6; color: var(--ink-soft); }
.testimonial figcaption { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.testimonial .t-name { font-weight: 700; }

/* Klantlogos (template) */
.logo-wall {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 40px;
}
.logo-wall img { height: 34px; width: auto; opacity: 0.6; filter: grayscale(1); transition: opacity .25s, filter .25s; }
.logo-wall img:hover { opacity: 1; filter: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .float-a, .float-b { animation: none !important; }
}
