/* SpeakFlow.nl — design tokens uit "SpeakFlow Website.dc.html" */

:root {
  --ink: #0B1023;
  --muted: #5B6178;
  --surface: #F6F7FB;
  --line: rgba(11, 16, 35, .08);
  --line-soft: rgba(11, 16, 35, .05);
  --blue: #4F7CFF;
  --violet: #8B5CF6;
  --pink: #EC4899;
  --grad: linear-gradient(110deg, #4F7CFF, #8B5CF6, #EC4899);
  --grad-120: linear-gradient(120deg, #4F7CFF, #8B5CF6, #EC4899);
  --shell: 1240px;
  --gutter: 32px;
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Poppins', var(--sans);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ============================== base ============================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; margin: 0; }
p { margin: 0; }
::selection { background: rgba(139, 92, 246, .22); }

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 6px;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  box-shadow: 0 8px 24px rgba(11, 16, 35, .16);
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ============================== helpers ============================== */

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text--120 { background-image: var(--grad-120); }

.eyebrow {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: var(--violet);
}

.section { padding: 96px 0; }
.section--tight { padding: 40px 0 96px; }
.section--surface { background: var(--surface); }

.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head--center { max-width: 720px; margin-inline: auto; text-align: center; margin-bottom: 64px; }
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -1.4px;
  line-height: 1.1;
  margin-top: 14px;
  text-wrap: balance;
}

/* ============================== buttons ============================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-position .5s ease, box-shadow .3s ease, transform .2s ease,
              border-color .25s ease, background-color .25s ease;
}

.btn--grad {
  color: #fff;
  background-image: var(--grad);
  background-size: 200% auto;
  background-position: 0% center;
  box-shadow: 0 12px 30px rgba(139, 92, 246, .32);
}
.btn--grad:hover {
  background-position: 100% center;
  box-shadow: 0 16px 40px rgba(139, 92, 246, .45);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--ink);
  background: #fff;
  border-color: rgba(11, 16, 35, .14);
}
.btn--ghost:hover {
  border-color: rgba(139, 92, 246, .5);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(11, 16, 35, .08);
}

.btn--lg { font-size: 16px; padding: 16px 30px; }
.btn--sm { font-size: 14px; padding: 11px 22px; box-shadow: 0 8px 22px rgba(139, 92, 246, .32); }
.btn--sm:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(139, 92, 246, .45); }

/* ============================== logo ============================== */

.logo { display: inline-flex; align-items: center; gap: 11px; }

.logo__bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 26px;
}
.logo__bars i {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(118deg, #4F7CFF, #8B5CF6, #EC4899);
  animation: sf-bar 1.1s ease-in-out infinite;
}
.logo__bars i:nth-child(1) { height: 9px;  animation-delay: 0s; }
.logo__bars i:nth-child(2) { height: 18px; animation-delay: .15s; }
.logo__bars i:nth-child(3) { height: 26px; animation-delay: .3s; }
.logo__bars i:nth-child(4) { height: 16px; animation-delay: .45s; }
.logo__bars i:nth-child(5) { height: 9px;  animation-delay: .6s; }

.logo__word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.5px;
  color: var(--ink);
}
.logo__word span { color: var(--violet); }

/* ============================== nav ============================== */

#nav-sentinel {
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 24px;
  pointer-events: none;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(11, 16, 35, 0);
  transition: background-color .35s ease, box-shadow .35s ease,
              border-color .35s ease, backdrop-filter .35s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, .85);
  border-bottom-color: rgba(11, 16, 35, .07);
  box-shadow: 0 6px 24px rgba(11, 16, 35, .05);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
}

.nav__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }
/* De CTA in de linklijst is er voor de mobiele drawer; op desktop staat hij in .nav__end. */
.nav__links-cta { display: none; }

.nav__end { display: flex; align-items: center; gap: 16px; }

.lang {
  display: flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.lang > * {
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: color .2s ease;
}
.lang > a:hover { color: var(--ink); }
.lang [aria-current] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(11, 16, 35, .1);
}

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  position: relative;
  display: block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: background-color .2s ease;
}
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .28s var(--ease), top .2s ease;
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ============================== hero ============================== */

.hero {
  position: relative;
  padding: 160px 0 96px;
  overflow: hidden;
  background: radial-gradient(900px 560px at 50% -6%, rgba(139, 92, 246, .10), transparent 62%), #fff;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

/* parallax wrapper takes the scroll offset, inner element keeps the float loop */
.blob { position: absolute; pointer-events: none; will-change: transform; }
.blob i {
  display: block;
  width: 100%; height: 100%;
  border-radius: 50%;
  will-change: transform;
}
.blob--a { top: -120px; right: -140px; width: 520px; height: 520px; }
.blob--a i {
  background: radial-gradient(circle at 30% 30%, rgba(79, 124, 255, .30), transparent 62%);
  filter: blur(60px);
  animation: sf-float 13s ease-in-out infinite;
}
.blob--b { bottom: -160px; left: -120px; width: 480px; height: 480px; }
.blob--b i {
  background: radial-gradient(circle at 50% 50%, rgba(236, 72, 153, .20), transparent 62%);
  filter: blur(64px);
  animation: sf-float2 16s ease-in-out infinite;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, .22);
  margin-bottom: 26px;
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(120deg, #4F7CFF, #EC4899);
}
.pill__text {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero__lead {
  font-size: 19px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}
.hero__proof li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.hero__proof b { color: var(--violet); font-size: 16px; }

.hero__proof, .plan__list, .nav__links, .footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ============================== voice orb ============================== */

.orb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

.orb__glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .34), transparent 66%);
  filter: blur(46px);
}

.orb__ring {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1.5px solid rgba(139, 92, 246, .28);
  animation: sf-ripple 4.6s ease-out infinite;
}
.orb__ring:nth-of-type(2) { border-color: rgba(79, 124, 255, .26); animation-delay: 1.5s; }
.orb__ring:nth-of-type(3) { border-color: rgba(236, 72, 153, .24); animation-delay: 3s; }

.orb__core {
  position: relative;
  width: 280px; height: 280px;
  animation: sf-breathe 6s ease-in-out infinite;
}
.orb__core > i {
  position: absolute;
  display: block;
  border-radius: 50%;
}
.orb__shell {
  inset: 0;
  background: conic-gradient(from 0deg, #4F7CFF, #8B5CF6, #EC4899, #8B5CF6, #4F7CFF);
  animation: sf-rotate 14s linear infinite;
  box-shadow: 0 24px 70px rgba(139, 92, 246, .5);
}
.orb__inner {
  inset: 10px;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, .92), rgba(255, 255, 255, 0) 42%),
    conic-gradient(from 140deg, #4F7CFF, #8B5CF6, #EC4899, #8B5CF6, #4F7CFF);
  animation: sf-rotate-rev 18s linear infinite;
}
.orb__gloss {
  inset: 46px;
  background: radial-gradient(circle at 38% 34%, rgba(255, 255, 255, .85), rgba(255, 255, 255, .05) 55%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.orb__wave {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.orb__wave i {
  display: block;
  width: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .95);
  animation: sf-bar .9s ease-in-out infinite;
}
.orb__wave i:nth-child(1) { height: 34px;  animation-delay: 0s; }
.orb__wave i:nth-child(2) { height: 62px;  animation-delay: .12s; }
.orb__wave i:nth-child(3) { height: 90px;  animation-delay: .24s; background: rgba(255, 255, 255, .98); }
.orb__wave i:nth-child(4) { height: 120px; animation-delay: .36s; background: #fff; }
.orb__wave i:nth-child(5) { height: 90px;  animation-delay: .48s; background: rgba(255, 255, 255, .98); }
.orb__wave i:nth-child(6) { height: 62px;  animation-delay: .6s; }
.orb__wave i:nth-child(7) { height: 34px;  animation-delay: .72s; }

.chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(11, 16, 35, .14);
  border: 1px solid var(--line-soft);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.chip--live {
  bottom: 54px; right: 6px;
  animation: sf-float 7s ease-in-out infinite;
}
.chip--booked {
  top: 62px; left: 0;
  animation: sf-float2 9s ease-in-out infinite;
}
.chip__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .18);
}
.chip__emoji { font-size: 18px; line-height: 1; }

/* ============================== stats ============================== */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 38px 32px;
  text-align: center;
}
.stat__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}
.stat__copy {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 18px;
}
.stat b { color: var(--ink); }

/* ============================== features ============================== */

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(11, 16, 35, .06);
  border-radius: 18px;
  padding: 24px 26px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(139, 92, 246, .16);
  border-color: rgba(139, 92, 246, .3);
}
.feature__num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 124, 255, .12), rgba(236, 72, 153, .12));
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
}
.feature__body { min-width: 0; }
.feature h3 {
  font-size: 17.5px;
  letter-spacing: -.4px;
  margin-bottom: 6px;
}
.feature p { font-size: 15px; line-height: 1.5; color: var(--muted); }

/* ============================== steps ============================== */

.steps-wrap { position: relative; }
.steps-wrap::before {
  content: "";
  position: absolute;
  top: 34px; left: 11%; right: 11%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #4F7CFF, #8B5CF6, #EC4899);
  opacity: .5;
}
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.step { text-align: center; }
.step__badge {
  width: 70px; height: 70px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(11, 16, 35, .06);
  box-shadow: 0 10px 30px rgba(139, 92, 246, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
}
.step__badge span {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step:nth-child(1) .step__badge span { background-image: linear-gradient(135deg, #4F7CFF, #8B5CF6); }
.step:nth-child(2) .step__badge span { background-image: linear-gradient(135deg, #6a5cf0, #8B5CF6); }
.step:nth-child(3) .step__badge span { background-image: linear-gradient(135deg, #8B5CF6, #c44ad0); }
.step:nth-child(4) .step__badge span { background-image: linear-gradient(135deg, #c44ad0, #EC4899); }
.step h3 { font-size: 19px; letter-spacing: -.4px; margin-bottom: 9px; }
.step p { font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ============================== pricing ============================== */

.section-head--pricing { margin-bottom: 18px; }
.pricing-note {
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 50px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(139, 92, 246, .24);
}

.plan--featured {
  position: relative;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #4F7CFF, #8B5CF6, #EC4899);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 24px 60px rgba(139, 92, 246, .22);
  transform: translateY(-10px);
}
.plan--featured:hover { transform: translateY(-16px); }

.plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background-image: var(--grad);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(139, 92, 246, .4);
  white-space: nowrap;
}

.plan h3 { font-size: 22px; }
.plan__for { font-size: 14px; color: var(--muted); margin: 6px 0 24px; }

.plan__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}
.plan__amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -1.5px;
}
.plan__per { font-size: 16px; color: var(--muted); font-weight: 600; }
.plan__from { font-size: 18px; color: var(--muted); font-weight: 600; }
.plan__setup { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }

.plan__cta {
  text-align: center;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  padding: 13px;
  border-radius: 999px;
  margin-bottom: 28px;
  transition: border-color .25s ease, background-position .5s ease;
}
.plan__cta--soft {
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid rgba(11, 16, 35, .12);
}
.plan__cta--soft:hover { border-color: rgba(139, 92, 246, .5); }
.plan__cta--grad {
  color: #fff;
  background-image: var(--grad);
  background-size: 200% auto;
  background-position: 0% center;
  box-shadow: 0 10px 26px rgba(139, 92, 246, .34);
}
.plan__cta--grad:hover { background-position: 100% center; }

.plan__list { display: flex; flex-direction: column; gap: 13px; margin-top: auto; }
.plan__list li {
  display: flex;
  gap: 11px;
  font-size: 14.5px;
  color: var(--ink);
}
.plan__list li::before {
  content: "\2713";
  color: var(--violet);
  font-weight: 800;
  flex-shrink: 0;
}
.plan--featured .plan__list li::before { color: var(--pink); }

/* ============================== comparison table ============================== */

.compare-card {
  margin-top: 60px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}
.compare th, .compare td { padding: 15px 28px; }
.compare thead th {
  padding: 24px 28px;
  vertical-align: bottom;
  border-bottom: 1px solid rgba(11, 16, 35, .07);
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  text-align: center;
}
.compare thead th:first-child {
  text-align: left;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}
.compare tbody th {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  width: 34%;
}
.compare tbody td { text-align: center; font-size: 15px; font-weight: 500; }
.compare tbody tr:nth-child(even) { background: #FBFBFD; }
.compare tbody tr:not(:last-child) th,
.compare tbody tr:not(:last-child) td { border-bottom: 1px solid var(--line-soft); }

.compare .col-plus { background-color: rgba(139, 92, 246, .05); font-weight: 700; }
.compare thead .col-plus {
  background-image: var(--grad-120);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compare .yes { color: var(--violet); font-weight: 800; font-size: 17px; }
.compare .col-plus .yes { color: var(--pink); }
.compare .no { color: #c2c7d6; font-size: 17px; }

/* ============================== trust ============================== */

.trust {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.trust h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -1.2px;
  line-height: 1.12;
  margin: 14px 0 18px;
}
.trust__intro { font-size: 17px; line-height: 1.62; color: var(--muted); }

.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust__card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 26px;
}
.trust__card > span { font-size: 26px; display: block; margin-bottom: 12px; line-height: 1; }
.trust__card h3 { font-size: 16px; margin-bottom: 6px; }
.trust__card p { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ============================== final CTA ============================== */

.cta {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(800px 500px at 80% -20%, rgba(139, 92, 246, .4), transparent 60%),
    radial-gradient(700px 500px at 10% 120%, rgba(236, 72, 153, .3), transparent 58%),
    #0B1023;
  padding: 80px 64px;
  text-align: center;
}
.cta__orb {
  position: absolute;
  top: 50%; right: 8%;
  width: 240px; height: 240px;
  margin-top: -120px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #4F7CFF, #8B5CF6, #EC4899, #8B5CF6, #4F7CFF);
  filter: blur(8px);
  opacity: .5;
  animation: sf-rotate 16s linear infinite;
  pointer-events: none;
}
.cta__body { position: relative; }
.cta h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: -1.8px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.06;
  text-wrap: balance;
}
.cta__accent {
  background: linear-gradient(110deg, #7da2ff, #b794ff, #f876b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #aab2d8;
  max-width: 540px;
  margin: 0 auto 34px;
}
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn--light { color: var(--ink); background: #fff; }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255, 255, 255, .18); }
.btn--outline {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
}
.btn--outline:hover { background: rgba(255, 255, 255, .16); }

/* ============================== footer ============================== */

.footer { background: #0B1023; color: #fff; padding: 64px 0 36px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer .logo__word { color: #fff; }
.footer .logo__bars { height: 24px; }
.footer .logo__bars i { animation: none; }
.footer .logo__bars i:nth-child(1) { height: 8px; }
.footer .logo__bars i:nth-child(2) { height: 16px; }
.footer .logo__bars i:nth-child(3) { height: 24px; }
.footer .logo__bars i:nth-child(4) { height: 14px; }
.footer .logo__bars i:nth-child(5) { height: 8px; }
.footer .logo__word { font-size: 20px; }
.footer__about {
  font-size: 14.5px;
  line-height: 1.6;
  color: #8a93bd;
  max-width: 300px;
  margin-top: 18px;
}
.footer__col h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  color: #fff;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 14px; color: #8a93bd; transition: color .2s ease; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #6a7299;
}

/* ============================== cookiebanner ============================== */

.footer__cookies {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.footer__cookies:hover { color: #fff; }

.consent {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(880px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(11, 16, 35, .22);
  animation: sf-consent-in .45s var(--ease) both;
}
.consent[hidden] { display: none; }

.consent__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 26px;
}
.consent__title {
  font-family: var(--display);
  font-size: 16px;
  margin-bottom: 4px;
}
.consent__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}
.consent__link {
  color: var(--violet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.consent__btn { font-size: 14.5px; padding: 11px 22px; }

@keyframes sf-consent-in {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 720px) {
  .consent { bottom: 12px; width: calc(100vw - 24px); }
  .consent__inner { flex-direction: column; align-items: stretch; gap: 18px; padding: 20px; }
  .consent__actions { flex-direction: row-reverse; }
  .consent__btn { flex: 1; }
}

/* ============================== animations ============================== */

@keyframes sf-bar {
  0%, 100% { transform: scaleY(.35); }
  50% { transform: scaleY(1); }
}
@keyframes sf-breathe {
  0%, 100% { transform: scale(1); border-radius: 50%; }
  50% { transform: scale(1.05); border-radius: 54% 46% 50% 50%; }
}
@keyframes sf-rotate { to { transform: rotate(360deg); } }
@keyframes sf-rotate-rev { to { transform: rotate(-360deg); } }
@keyframes sf-ripple {
  0% { transform: scale(.72); opacity: .55; }
  100% { transform: scale(1.85); opacity: 0; }
}
@keyframes sf-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -26px, 0); }
}
@keyframes sf-float2 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, 22px, 0); }
}

/* Scroll reveal — alleen gewapend als JS het ook weer kan ontwapenen.
   Bewust een animatie met fill-mode `backwards` in plaats van een transitie:
   na afloop blijft er geen transform op het element hangen, zodat eigen
   transforms (orb-schaal, lift van de Plus-kaart, hover-effecten) blijven werken. */
.js [data-reveal] { opacity: 0; }
.js [data-reveal].is-visible {
  opacity: 1;
  animation: sf-reveal .7s var(--ease) backwards;
}
@keyframes sf-reveal {
  from { opacity: 0; transform: translateY(26px); }
}

/* ============================== responsive ============================== */

@media (max-width: 1080px) {
  .hero__grid { gap: 32px; }
  .nav__links { gap: 24px; }
}

@media (max-width: 980px) {
  :root { --gutter: 24px; }

  .nav__inner { padding: 14px var(--gutter); position: relative; }
  .nav__end > .btn { display: none; }
  .nav__burger { display: flex; }

  /* nav links become a drawer under the bar */
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 20px;
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(11, 16, 35, .1);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    display: block;
    padding: 14px 4px;
    font-size: 17px;
    color: var(--ink);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__links-cta { display: block; margin-top: 18px; }
  .nav__links-cta a {
    border-bottom: 0;
    color: #fff;
    padding: 14px 22px;
    font-size: 15px;
    text-align: center;
  }

  .hero { padding: 128px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; }
  /* Kop en CTA eerst; de illustratie is decoratief en mag onder de vouw. */
  .orb { height: 420px; transform: scale(.86); margin-top: 8px; }
  .hero__lead { font-size: 17.5px; }

  .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
  .plan__list { margin-top: 0; }

  .trust { grid-template-columns: 1fr; gap: 36px; }
  .cta { padding: 56px 28px; }
  .cta__orb { display: none; }
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .steps-wrap::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .features { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section--tight { padding: 24px 0 72px; }
  .section-head, .section-head--center { margin-bottom: 40px; }
}

@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 30px 24px; }
  .stat__num { font-size: 54px; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .steps { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: flex-start; }
  .orb { height: 340px; transform: scale(.68); }
  .hero { padding: 112px 0 56px; }
  .hero__actions .btn, .cta__actions .btn { flex: 1 1 100%; }
}

/* ============================== reduced motion ============================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1; }
  .js [data-reveal].is-visible { animation: none; }
}

@media print {
  .nav, .blob, .orb, .cta__orb { display: none !important; }
  body { color: #000; }
}
