/* =========================================================================
   Neural Content-Analyse Studio — global site styles
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--color-neutral-darkest);
  color: var(--color-white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: var(--text-regular);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
img[loading] { background: rgba(255,255,255,0.04); }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0;
}
p { margin: 0; }

/* ---- Containers & layout helpers ---- */
.container {
  margin-inline: auto;
  max-width: var(--container-xxl);
  padding-inline: clamp(1rem, 5vw, 5rem);
  width: 100%;
}
.container--narrow { max-width: var(--container-lg); }
.container--tight  { max-width: var(--container-md); }

/* Type utilities */
.text-h1 { font-size: var(--text-h1); line-height: 1.05; }
.text-h2 { font-size: var(--text-h2); line-height: 1.1; }
.text-h3 { font-size: var(--text-h3); line-height: 1.15; }
.text-h4 { font-size: var(--text-h4); line-height: 1.2; }
.text-h5 { font-size: var(--text-h5); line-height: 1.2; }
.text-h6 { font-size: var(--text-h6); line-height: 1.25; }
.text-large    { font-size: var(--text-large); line-height: 1.5; }
.text-medium   { font-size: var(--text-medium); line-height: 1.6; }
.text-regular  { font-size: var(--text-regular); line-height: 1.6; }
.text-small    { font-size: var(--text-small); line-height: 1.6; }
.text-tiny     { font-size: var(--text-tiny); line-height: 1.5; }
.font-serif    { font-family: "Fraunces", serif; }
.weight-500    { font-weight: 500; }
.weight-600    { font-weight: 600; }
.weight-700    { font-weight: 700; }
.accent-gold   { color: var(--color-golden-grass); }
.muted         { color: var(--color-neutral-light); }

/* =========================================================================
   Navigation
   ========================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(1, 1, 1, 0.6);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-out-soft), background 0.4s var(--ease-out-soft);
}
.nav.is-scrolled {
  background: rgba(1, 1, 1, 0.85);
  border-bottom-color: var(--color-white-10);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  min-height: 4.5rem;
  padding-inline: 5%;
  gap: 1rem;
}
.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: var(--text-regular);
  color: var(--color-white);
}
.nav__links a {
  position: relative;
  padding-block: 0.5rem;
  color: var(--color-white);
  transition: color 0.3s var(--ease-out-soft);
}
.nav__links a:hover { color: var(--color-golden-grass-light); }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--color-golden-grass);
}
.nav__brand {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: 0.42em;
  font-size: 0.875rem;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
}
.nav__actions { display: flex; justify-content: flex-end; align-items: center; gap: 0.75rem; }
.nav__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border: 0;
  color: var(--color-white);
}
.nav__toggle span {
  display: block;
  width: 1.5rem;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease-out-soft), opacity 0.3s var(--ease-out-soft);
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__inner { grid-template-columns: max-content 1fr max-content; }
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-button);
  font-size: var(--text-regular);
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.3s var(--ease-out-soft),
    color 0.3s var(--ease-out-soft),
    border-color 0.3s var(--ease-out-soft),
    transform 0.3s var(--ease-out-soft),
    box-shadow 0.4s var(--ease-out-soft);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--color-golden-grass-lightest);
  color: var(--color-neutral-darkest);
  border-color: var(--color-golden-grass-lightest);
}
.btn--primary:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  box-shadow: 0 0 36px -10px #f6efdb;
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white-30);
}
.btn--secondary:hover {
  background: var(--color-white-10);
  border-color: var(--color-white);
}
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  padding-inline: 0.25rem;
  border-radius: 0;
}
.btn--icon {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: var(--radius-button);
  border: 1px solid var(--color-white-30);
  background: transparent;
  color: var(--color-white);
}
.btn--icon:hover { background: var(--color-white-10); }

/* =========================================================================
   Inputs
   ========================================================================= */
.input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--color-white-30);
  color: var(--color-white);
  font: inherit;
  font-size: var(--text-regular);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-form);
  transition: border-color 0.3s var(--ease-out-soft), background 0.3s var(--ease-out-soft);
}
.input::placeholder { color: var(--color-neutral-light); }
.input:focus { outline: none; border-color: var(--color-white); background: var(--color-white-10); }

.field-row {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 1rem;
  width: 100%;
  max-width: 30rem;
}
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
}

/* =========================================================================
   Section primitives
   ========================================================================= */
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.eyebrow {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
.eyebrow--gold { color: var(--color-golden-grass); }

/* Section number labels (Voordelen — 01 Nauwkeurigheid / 02 Privacy / 03 Diepgang) */
.chapter-label {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: center;
  font-size: var(--text-small);
  font-weight: 600;
  padding-block: 1rem;
  color: var(--color-white);
}

/* =========================================================================
   Reveal-on-scroll system  (progressive enhancement)
   Default state = fully visible & correctly coloured. Only when JS is
   ready do we hide elements and wait for the IntersectionObserver to
   reveal them. If JS / IO fails for any reason, content stays readable.
   ========================================================================= */

/* Hidden state only applies when JS has marked the document ready.
   BASE reveal = opacity + transform only (safe for buttons, links, wrappers,
   anything). The grey->white COLOUR effect is layered on separately below,
   targeting only headings + paragraphs so it can never wash out a button. */
html.js-ready .reveal:not(.is-visible) {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease-out-cinema) var(--reveal-delay),
    transform 1s var(--ease-out-cinema) var(--reveal-delay);
  will-change: opacity, transform;
}

/* Grey → white text reveal — ONLY headings & paragraphs that carry .reveal. */
html.js-ready :is(h1, h2, h3, h4, h5, h6, p).reveal {
  transition:
    opacity 0.9s var(--ease-out-cinema) var(--reveal-delay),
    transform 1s var(--ease-out-cinema) var(--reveal-delay),
    color 1.2s var(--ease-out-soft) var(--reveal-delay);
}
html.js-ready :is(h1, h2, h3, h4, h5, h6, p).reveal:not(.is-visible) {
  color: var(--color-neutral-dark);
}

/* Word-by-word title reveal (grey → white) — only when JS-ready */
html.js-ready .reveal--words:not(.is-visible) { color: transparent; }
html.js-ready .reveal--words:not(.is-visible) .w {
  display: inline-block;
  color: var(--color-neutral-dark);
  opacity: 0;
  transform: translateY(0.4em);
  transition:
    color 0.9s var(--ease-out-soft),
    opacity 0.7s var(--ease-out-cinema),
    transform 0.9s var(--ease-out-cinema);
}

/* When the title becomes visible, words fade in white (or gold for accent) */
.reveal--words .w { display: inline-block; }
.reveal--words.is-visible .w {
  color: var(--color-white);
  opacity: 1;
  transform: none;
  transition:
    color 0.9s var(--ease-out-soft),
    opacity 0.7s var(--ease-out-cinema),
    transform 0.9s var(--ease-out-cinema);
}
.reveal--words.is-visible .w.accent { color: var(--color-golden-grass); }
.reveal--words .space { display: inline-block; width: 0.25em; }

/* Reveal completes -> opacity & transform settle.
   (Colour is handled by the heading/paragraph-scoped rules above, so we
   deliberately do NOT touch color here — that previously washed out buttons.) */
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
:is(h1, h2, h3, h4, h5, h6, p).reveal.is-visible { color: inherit; }

/* Images fade-up + faint scale */
html.js-ready .reveal--image:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px) scale(1.02);
  filter: brightness(0.7);
  transition:
    opacity 1.1s var(--ease-out-cinema),
    transform 1.4s var(--ease-out-cinema),
    filter 1.4s var(--ease-out-cinema);
  will-change: opacity, transform, filter;
}
.reveal--image.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Hero parallax holder */
.parallax { will-change: transform; transition: transform 80ms linear; }

/* Reduced motion: drop all of it */
@media (prefers-reduced-motion: reduce) {
  html.js-ready .reveal, html.js-ready .reveal--image, html.js-ready .reveal--words .w {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    color: inherit !important;
    filter: none !important;
  }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   HERO — section 2 (sitemap)
   ========================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(560px, 92vh, 940px);
  display: grid;
  align-items: center;
  padding-block: 6rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.95;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #010101 8%, rgba(1, 1, 1, 0.7) 38%, rgba(1, 1, 1, 0.05) 65%, rgba(1, 1, 1, 0) 100%),
    linear-gradient(180deg, rgba(1, 1, 1, 0.4) 0%, transparent 30%, rgba(1, 1, 1, 0.4) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__copy { max-width: 36rem; }
.hero__title { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif; font-size: clamp(3rem, 7vw, 5.25rem); margin-bottom: 1.5rem; line-height: 1.05; }
.hero__sub { color: var(--color-neutral-lightest); font-size: var(--text-medium); margin-bottom: 2rem; max-width: 30rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =========================================================================
   Features list — "Drie manieren" (3 cards)
   ========================================================================= */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; } }

.feature-card { text-align: center; display: flex; flex-direction: column; gap: 1.25rem; }
/* Fixed image-area height so all three cards align (headings + text + row below
   start at the same Y regardless of each image's native aspect). object-fit
   contain keeps every infographic fully visible, letterboxed invisibly on black. */
.feature-card__img-wrap {
  height: clamp(190px, 20vw, 270px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-card__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 1.2s var(--ease-out-cinema);
}
/* Make the three feature cards equal height so their bottoms align too */
.feature-card h3 { min-height: 2.2em; }
.feature-card:hover .feature-card__img-wrap img { transform: scale(1.04); }
.feature-card h3 { font-size: var(--text-h4); margin-bottom: 0.25rem; }
.feature-card p { color: var(--color-neutral-light); }

.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.section-head h2 { font-size: var(--text-h2); margin-bottom: 1.25rem; line-height: 1.1; }
.section-head p  { color: var(--color-neutral-light); font-size: var(--text-medium); }

/* =========================================================================
   Voordelen — sticky stack (3 panels: Nauwkeurigheid / Privacy / Diepgang)
   ========================================================================= */
.stack { position: relative; }
.stack__panel {
  position: sticky;
  background: var(--color-neutral-darkest);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.stack__panel:nth-child(1) { top: 0; }
.stack__panel:nth-child(2) { top: 4.5rem; }
.stack__panel:nth-child(3) { top: 9rem; }

.stack__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-top: clamp(1.5rem, 4vw, 3rem);
}
@media (max-width: 900px) {
  .stack__row { grid-template-columns: 1fr; }
  .stack__panel { position: relative; top: 0 !important; padding-block: clamp(2.5rem, 6vw, 4rem); }
}
/* Content images show at their NATURAL aspect ratio — these are detailed
   infographics (brein-respons charts, timelines, stat graphs) and lifestyle
   shots that must never be cropped. Only true full-bleed backgrounds
   (hero, newsletter) use object-fit: cover. */
.stack__row > div:last-child { overflow: visible; }
.stack__row > div:last-child img {
  width: 100%;
  height: auto;
}
.stack__copy h2 { font-size: var(--text-h2); margin-block: 1rem 1.25rem; line-height: 1.1; }
.stack__copy p  { color: var(--color-neutral-light); font-size: var(--text-medium); max-width: 32rem; }

/* =========================================================================
   Stats — number / label / sublabel rows with gold divider
   ========================================================================= */
.stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 900px) { .stats { grid-template-columns: 1fr; } }
.stats__image { overflow: visible; }
.stats__image img {
  width: 100%;
  height: auto;
}
.stats__list { display: flex; flex-direction: column; gap: clamp(2.5rem, 4vw, 3.5rem); }
.stat {
  border-left: 1px solid var(--color-golden-grass);
  padding-left: 2rem;
}
.stat__num {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(3rem, 6.5vw, 5.25rem);
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.stat__label { font-size: var(--text-h6); font-family: "Fraunces", serif; font-weight: 500; margin-bottom: 0.5rem; }
.stat__sub   { color: var(--color-neutral-light); font-size: var(--text-regular); }

/* =========================================================================
   Pricing — Monthly / Yearly toggle + card
   ========================================================================= */
.pricing-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  background: var(--color-neutral-darker);
  border: 1px solid var(--color-white-10);
  border-radius: var(--radius-button);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.pricing-tabs__btn {
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: var(--color-white);
  border: 0;
  border-radius: var(--radius-button);
  font-size: var(--text-regular);
  transition: background 0.3s var(--ease-out-soft), color 0.3s var(--ease-out-soft);
}
.pricing-tabs__btn[aria-pressed="true"] {
  background: var(--color-neutral-darkest);
  color: var(--color-white);
  font-weight: 500;
}
.pricing-card {
  max-width: 32rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-neutral-darker);
  border: 1px solid var(--color-white-10);
  text-align: left;
}
.pricing-card__head { text-align: center; margin-bottom: 2rem; }
.pricing-card__head h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: var(--text-h6); }
.pricing-card__price {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 1;
  margin-block: 0.5rem;
  text-align: center;
}
.pricing-card__features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.pricing-card__features li { display: flex; gap: 1rem; align-items: flex-start; color: var(--color-neutral-lightest); }
.pricing-card__features svg { flex: 0 0 1.25rem; margin-top: 0.25rem; color: var(--color-white); }

.pricing-tabs__btn:focus-visible,
.pricing-card__cta:focus-visible { outline: 2px solid var(--color-golden-grass); outline-offset: 2px; }

/* =========================================================================
   Pricing — clean two-plan layout (First Run / Monthly Intelligence)
   ========================================================================= */
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 52rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  align-items: stretch;
}
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; max-width: 26rem; } }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--color-white-15);
  background: transparent;
  transition: border-color 0.4s var(--ease-out-soft), transform 0.4s var(--ease-out-soft);
}
.plan:hover { transform: translateY(-2px); }
.plan--featured {
  border-color: var(--color-golden-grass);
  background: linear-gradient(180deg, rgba(75, 131, 216, 0.06), transparent 60%);
}
.plan__badge {
  position: absolute;
  top: -0.7rem;
  left: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--color-golden-grass);
  color: #ffffff;
  font-size: var(--text-tiny);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.plan__name {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-regular);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-golden-grass);
  margin-bottom: 0.875rem;
}
.plan__price { display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap; }
.plan__amount { font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(2.25rem, 3.4vw, 2.875rem); line-height: 1; }
.plan__per { color: var(--color-neutral-light); font-size: var(--text-regular); }
.plan__note { color: var(--color-neutral-light); font-size: var(--text-small); line-height: 1.45; margin: 0.625rem 0 1.5rem; min-height: 2.6em; }
.plan__cta { width: 100%; margin-bottom: 1.5rem; padding-block: 0.75rem; }
.plan__incl { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif; font-weight: 600; font-size: var(--text-tiny); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-neutral-light); margin-bottom: 0.875rem; }
.plan__features { display: flex; flex-direction: column; gap: 0.625rem; }
.plan__features li { display: flex; gap: 0.625rem; align-items: flex-start; font-size: var(--text-small); color: var(--color-neutral-lightest); line-height: 1.4; }
.plan__features svg { flex: 0 0 0.95rem; width: 0.95rem; height: 0.95rem; margin-top: 0.2rem; color: var(--color-golden-grass); }

/* Slim comparison strip below the plans — "Waarom anders dan Meta Ads" */
.pricing-compare {
  max-width: 52rem;
  margin: 1.25rem auto 0;
  border: 1px solid var(--color-white-10);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) { .pricing-compare { grid-template-columns: 1fr; } }
.pricing-compare > div { padding: clamp(1.25rem, 2.5vw, 1.75rem); }
.pricing-compare > div:first-child { border-right: 1px solid var(--color-white-10); }
@media (max-width: 640px) { .pricing-compare > div:first-child { border-right: 0; border-bottom: 1px solid var(--color-white-10); } }
.pricing-compare h4 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif; font-weight: 600; font-size: var(--text-small); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.5rem; }
.pricing-compare h4.is-meta { color: var(--color-neutral-light); }
.pricing-compare h4.is-neural { color: var(--color-golden-grass); }
.pricing-compare p { color: var(--color-neutral-light); font-size: var(--text-small); line-height: 1.5; }
.pricing-compare p strong { color: var(--color-white); font-weight: 500; }

/* =========================================================================
   Story section — centered editorial manifesto.
   Words start dark grey and "light up" to white as they cross the reading
   line on scroll, drawing the reader down the page. Key words go gold.
   ========================================================================= */
.story-section { padding-block: clamp(5rem, 12vh, 9rem); }
.story-wrap { max-width: 54rem; margin-inline: auto; text-align: center; }
.story-eyebrow {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-small);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-golden-grass);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.story {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.42;
  letter-spacing: 0.005em;
}
.story-line { margin: 0 0 clamp(1.25rem, 2.5vw, 1.9rem); }
.story-line:last-child { margin-bottom: 0; }
.story .w {
  color: var(--color-neutral-dark);
  transition: color 0.5s var(--ease-out-soft);
}
.story .w.lit { color: var(--color-white); }
.story .w.lit.accent { color: var(--color-golden-grass); }

@media (prefers-reduced-motion: reduce) {
  .story .w { color: var(--color-white) !important; transition: none !important; }
  .story .w.accent { color: var(--color-golden-grass) !important; }
}

/* =========================================================================
   Checkout page
   ========================================================================= */
.checkout-head { text-align: center; max-width: 40rem; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.checkout-head h1 { font-size: var(--text-h2); line-height: 1.1; margin-bottom: 1rem; }
.checkout-head p { color: var(--color-neutral-light); font-size: var(--text-medium); }
.checkout-head .stripe-line {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1rem; color: var(--color-neutral-light); font-size: var(--text-small);
}
.checkout-head .stripe-line svg { width: 1rem; height: 1rem; color: var(--color-golden-grass); }

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 52rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  align-items: stretch;
}
@media (max-width: 860px) { .checkout-grid { grid-template-columns: 1fr; max-width: 26rem; } }

.checkout-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: transparent;
  border: 1px solid var(--color-white-15);
  transition: border-color 0.4s var(--ease-out-soft), transform 0.4s var(--ease-out-soft);
}
.checkout-card:hover { transform: translateY(-2px); }
.checkout-card--selected {
  border-color: var(--color-golden-grass);
  background: linear-gradient(180deg, rgba(75, 131, 216, 0.06), transparent 60%);
}
.checkout-card__tag { font-size: var(--text-tiny); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-golden-grass); margin-bottom: 0.5rem; }
.checkout-card__name { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif; font-weight: 500; font-size: var(--text-regular); color: var(--color-neutral-lightest); margin-bottom: 0.5rem; }
.checkout-card__big {
  font-family: "Fraunces", serif; font-weight: 500;
  font-size: clamp(2.25rem, 3.4vw, 2.875rem); line-height: 1; margin-bottom: 0.4rem;
}
.checkout-card__big small { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif; font-size: var(--text-regular); font-weight: 400; color: var(--color-neutral-light); }
.checkout-card__explain { color: var(--color-neutral-light); font-size: var(--text-small); line-height: 1.45; margin: 0.5rem 0 1.25rem; min-height: 2.6em; }
.checkout-card__total {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0.75rem 0; border-block: 1px solid var(--color-white-15); margin-bottom: 1.25rem;
  font-size: var(--text-small);
}
.checkout-card__total span { color: var(--color-neutral-light); }
.checkout-card__total strong { font-family: "Fraunces", serif; font-weight: 500; font-size: var(--text-regular); }
.checkout-card__list-title { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif; font-weight: 600; font-size: var(--text-tiny); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-neutral-light); margin-bottom: 0.875rem; }
.checkout-card__list { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; }
.checkout-card__list li { display: flex; gap: 0.625rem; align-items: flex-start; color: var(--color-neutral-lightest); font-size: var(--text-small); line-height: 1.4; }
.checkout-card__list svg { flex: 0 0 0.95rem; width: 0.95rem; height: 0.95rem; margin-top: 0.2rem; color: var(--color-golden-grass); }
.checkout-card__cta { width: 100%; margin-top: auto; padding-block: 0.75rem; }

/* Voorbeeldrapport-kaart */
.report-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 56rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid var(--color-white-15);
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.4s var(--ease-out-soft), transform 0.4s var(--ease-out-soft), background 0.4s var(--ease-out-soft);
  align-items: center;
}
.report-card:hover {
  border-color: var(--color-golden-grass);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(75, 131, 216, 0.04), transparent 60%);
}
.report-card__preview {
  aspect-ratio: 993 / 1404;
  background: #0a0a0a;
  border: 1px solid var(--color-white-15);
  overflow: hidden;
}
.report-card__preview img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.report-card__tag { font-size: var(--text-tiny); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-golden-grass); }
.report-card__body h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(1.5rem, 2.4vw, 1.875rem); margin: 0.5rem 0 0.75rem; line-height: 1.2; }
.report-card__body p { color: var(--color-neutral-light); font-size: var(--text-small); line-height: 1.55; margin-bottom: 1rem; }
.report-card__cta { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-golden-grass); font-size: var(--text-small); font-weight: 500; }
@media (max-width: 740px) {
  .report-card { grid-template-columns: 1fr; }
  .report-card__preview { max-height: 320px; }
}

/* Juridische pagina's */
.legal-prose {
  max-width: 44rem;
  margin: 0 auto;
  font-size: var(--text-regular);
  line-height: 1.7;
  color: var(--color-neutral-lightest);
}
.legal-prose h1 { font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 0.5rem; }
.legal-prose .legal-meta { color: var(--color-neutral-light); font-size: var(--text-small); margin-bottom: 2.5rem; }
.legal-prose h2 { font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(1.25rem, 2vw, 1.5rem); margin: 2.5rem 0 0.875rem; line-height: 1.25; }
.legal-prose h3 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif; font-weight: 600; font-size: var(--text-regular); margin: 1.5rem 0 0.5rem; }
.legal-prose p { margin-bottom: 1rem; color: var(--color-neutral-lightest); }
.legal-prose ul, .legal-prose ol { margin: 0.5rem 0 1.25rem 1.25rem; }
.legal-prose li { margin-bottom: 0.4rem; color: var(--color-neutral-lightest); }
.legal-prose table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: var(--text-small); }
.legal-prose th, .legal-prose td { text-align: left; padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--color-white-15); vertical-align: top; }
.legal-prose th { color: var(--color-golden-grass); font-weight: 600; }
.legal-prose a { color: var(--color-golden-grass); text-decoration: underline; }
.legal-tbd { background: rgba(75, 131, 216, 0.12); border-left: 2px solid var(--color-golden-grass); padding: 0.5rem 0.75rem; font-size: var(--text-small); color: var(--color-neutral-light); margin: 0.5rem 0; font-style: italic; }
.legal-pos { background: rgba(255,255,255,0.03); border-left: 2px solid var(--color-white-15); padding: 1rem 1.25rem; margin: 1.5rem 0; color: var(--color-neutral-lightest); }
.legal-pos strong { color: #fff; }
.checkout-pay-icons span {
  font-size: var(--text-tiny); letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--color-white-20); padding: 0.35rem 0.75rem; border-radius: 0.35rem;
}

/* =========================================================================
   CTA card — "Vraag een demo aan" (split: form | image)
   ========================================================================= */
.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--color-white-15);
  background: var(--color-neutral-darker);
  overflow: hidden;
  align-items: stretch;
}
@media (max-width: 900px) { .cta-card { grid-template-columns: 1fr; } }
.cta-card__copy { padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.cta-card__copy h2 { font-size: var(--text-h2); margin-bottom: 1.25rem; line-height: 1.1; }
.cta-card__copy p  { color: var(--color-neutral-light); font-size: var(--text-medium); margin-bottom: 2rem; }
.cta-card__img { position: relative; min-height: 320px; overflow: hidden; }
.cta-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .cta-card__img { min-height: 260px; aspect-ratio: 16/10; } }

/* Newsletter — "Blijf op de hoogte" (full-bleed background card) */
.newsletter {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--color-white-15);
  padding: clamp(2rem, 6vw, 5rem);
  min-height: clamp(18rem, 36vw, 26rem);
  display: flex;
  align-items: center;
}
.newsletter__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.newsletter__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.newsletter__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1,1,1,0.85) 0%, rgba(1,1,1,0.6) 40%, rgba(1,1,1,0.15) 100%);
}
.newsletter__copy { max-width: 36rem; position: relative; z-index: 1; }
.newsletter__copy h2 { font-size: var(--text-h2); margin-bottom: 1.25rem; line-height: 1.1; }
.newsletter__copy p  { color: var(--color-neutral-lightest); margin-bottom: 1.5rem; }

/* =========================================================================
   FAQ — accordion
   ========================================================================= */
.faq-list { border-top: 1px solid var(--color-white-15); }
.faq-item { border-bottom: 1px solid var(--color-white-15); }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--color-white);
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--text-medium);
  font-weight: 500;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: color 0.3s var(--ease-out-soft);
}
.faq-trigger:hover { color: var(--color-golden-grass-light); }
.faq-trigger__chev {
  flex: 0 0 1.25rem;
  width: 1.25rem; height: 1.25rem;
  margin-left: 1rem;
  transition: transform 0.4s var(--ease-out-soft);
  color: var(--color-white);
}
.faq-item[aria-expanded="true"] .faq-trigger__chev { transform: rotate(180deg); }
.faq-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-out-cinema), opacity 0.5s var(--ease-out-soft);
  opacity: 0;
  color: var(--color-neutral-light);
}
.faq-item[aria-expanded="true"] .faq-content { opacity: 1; }
.faq-content > div { padding-bottom: 1.5rem; max-width: 38rem; }

.faq-foot { text-align: center; margin-top: clamp(2rem, 4vw, 3.5rem); }
.faq-foot h3 { font-size: var(--text-h4); margin-bottom: 0.75rem; }
.faq-foot p { color: var(--color-neutral-light); margin-bottom: 1.5rem; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--color-neutral-darkest); padding-block: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--color-white-10); }
.footer__top {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; }
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 700px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__logo img { max-width: 8rem; }
.footer__col h4 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif; font-weight: 600; font-size: var(--text-regular); margin-bottom: 1rem; }
.footer__col li { padding-block: 0.4rem; font-size: var(--text-small); color: var(--color-neutral-lightest); }
.footer__col li a:hover { color: var(--color-golden-grass-light); }
.footer__sub h4 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif; font-weight: 600; font-size: var(--text-regular); margin-bottom: 0.75rem; }
.footer__sub p { color: var(--color-neutral-lightest); margin-bottom: 1.25rem; font-size: var(--text-regular); }
.footer__sub small { color: var(--color-neutral-light); font-size: var(--text-tiny); display: block; margin-top: 0.5rem; }
.footer__divider { height: 1px; background: var(--color-white-15); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding-top: 1.5rem;
  font-size: var(--text-small);
  color: var(--color-neutral-light);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__legal a { text-decoration: underline; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a { color: var(--color-white); transition: color 0.3s var(--ease-out-soft); }
.footer__social a:hover { color: var(--color-golden-grass); }
.footer__social svg { width: 1.25rem; height: 1.25rem; }

/* =========================================================================
   Page-specific: "Over ons" feature row (icons + headline + image)
   ========================================================================= */
.over-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 900px) { .over-row { grid-template-columns: 1fr; } }
.over-list { display: flex; flex-direction: column; gap: 2rem; max-width: 28rem; }
.over-list__item { display: grid; grid-template-columns: 3rem 1fr; gap: 1.5rem; align-items: start; }
.over-list__icon {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border: 1px solid var(--color-golden-grass);
  border-radius: 999px;
  color: var(--color-golden-grass);
}
.over-list__icon svg { width: 1.25rem; height: 1.25rem; }
.over-list__item h3 { font-size: var(--text-h5); margin-bottom: 0.5rem; }
.over-list__item p { color: var(--color-neutral-light); }
.over-row__image { overflow: visible; }
.over-row__image img { width: 100%; height: auto; }

/* =========================================================================
   Page-specific: "Hoe het werkt" (stair-stepped 3 cards)
   ========================================================================= */
.stairs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 900px) { .stairs { grid-template-columns: 1fr; } }
.stairs__card { display: flex; flex-direction: column; gap: 1.25rem; }
/* Fixed-height image area so all three step headings align on one baseline */
.stairs__card > .reveal--image {
  height: clamp(220px, 24vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.stairs__card > .reveal--image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.stairs__card h3 { min-height: 2.4em; font-size: var(--text-h4); }
.stairs__card p { color: var(--color-neutral-light); }
.stairs__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 900px) { .stairs__head { grid-template-columns: 1fr; align-items: start; } }
.stairs__head h2 { font-size: var(--text-h2); line-height: 1.1; }
.stairs__head p  { color: var(--color-neutral-light); font-size: var(--text-medium); margin-bottom: 1.5rem; }

/* Split — image left, copy right (and reversed) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__media { overflow: visible; }
.split__media img { width: 100%; height: auto; }
.split__copy h2 { font-size: var(--text-h2); margin-bottom: 1.25rem; line-height: 1.1; }
.split__copy p  { color: var(--color-neutral-light); font-size: var(--text-medium); margin-bottom: 1.5rem; }
.split__copy ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; color: var(--color-neutral-light); }
.split__copy ul li { padding-left: 1.5rem; position: relative; }
.split__copy ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 0.4rem; height: 0.4rem;
  border-radius: 999px;
  background: var(--color-golden-grass);
}

/* Layout-456 (analyse): aandachtscurve — feature with mosaic of 3 images */
/* Mosaic (analyse aandachtscurve): infographics shown in full, natural ratio */
.mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 900px) { .mosaic { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; } }
.mosaic__main img { width: 100%; height: auto; }
.mosaic__side { display: grid; gap: clamp(1.25rem, 3vw, 2.5rem); }
.mosaic__side img { width: 100%; height: auto; }

/* Gallery — analyse */
.gallery {
  position: relative;
}
/* Gallery — analyse. Capped so heading + slide + controls fit one viewport. */
.gallery {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
}
.gallery__viewport { overflow: hidden; }
.gallery__track {
  display: flex;
  gap: 0;
  will-change: transform;
}
.gallery__slide {
  flex: 0 0 100%;
  min-width: 0;
  transition: opacity 0.6s var(--ease-out-soft);
}
.gallery__slide img {
  width: 100%;
  height: auto;
  max-height: 56vh;
  object-fit: contain;
}
.gallery__slide:not(.is-active) { opacity: 0.3; }
.gallery__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.25rem; }
.gallery__dots { display: flex; gap: 0.5rem; }
.gallery__dot {
  width: 0.5rem; height: 0.5rem; border-radius: 999px;
  background: var(--color-white-20);
  border: 0;
  padding: 0;
}
.gallery__dot[aria-pressed="true"] { background: var(--color-white); }
.gallery__buttons { display: flex; gap: 0.75rem; }

/* Stats-19 (over) — large image left, three big numbers right */
.stats-19 {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}
@media (max-width: 900px) { .stats-19 { grid-template-columns: 1fr; } }
.stats-19__image { overflow: visible; }
.stats-19__image img { width: 100%; height: auto; }
.stats-19__list { display: flex; flex-direction: column; gap: 2.5rem; justify-content: center; padding-left: clamp(0rem, 3vw, 2rem); }
.stats-19__list h3 { font-family: "Fraunces", serif; font-size: clamp(3rem, 5vw, 5.25rem); margin-bottom: 0.25rem; line-height: 1; }
.stats-19__list h4 { font-family: "Fraunces", serif; font-weight: 500; font-size: var(--text-h6); }

/* === Video hero (Cloudflare Stream achtergrond) === */
.hero--video .hero__video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  border: 0; pointer-events: none;
}
.hero--video .hero__copy { max-width: 54rem; margin-inline: auto; text-align: center; }
.hero--video .hero__sub { max-width: 42rem; margin-left: auto; margin-right: auto; color: var(--color-neutral-lighter); }
.hero--video .hero__bg::after {
  background: linear-gradient(180deg, rgba(1,1,1,0.62) 0%, rgba(1,1,1,0.34) 42%, rgba(1,1,1,0.6) 100%);
}

/* === Feature-cards: inklapbare uitleg === */
.feature-card__disc { width: 100%; }
.feature-card__summary { list-style: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.feature-card__summary::-webkit-details-marker { display: none; }
.feature-card__summary h3 { margin: 0; }
.feature-card__more { display: inline-flex; align-items: center; gap: 0.35rem; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif; font-size: var(--text-small); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-neutral-light); transition: color 0.2s ease; }
.feature-card__summary:hover .feature-card__more { color: var(--color-white); }
.feature-card__more-label::after { content: "Lees meer"; }
.feature-card__disc[open] .feature-card__more-label::after { content: "Minder"; }
.feature-card__chev { transition: transform 0.25s var(--ease-out-soft); }
.feature-card__disc[open] .feature-card__chev { transform: rotate(180deg); }
.feature-card__text { max-width: 32rem; margin: 1.1rem auto 0; animation: featReveal 0.32s var(--ease-out-soft) both; }
@keyframes featReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* === Hero responsive (telefoon/tablet) === */
@media (max-width: 600px) {
  .hero { padding-block: 4rem; min-height: 86vh; }
  .hero--video .hero__title { font-size: clamp(2.1rem, 8.5vw, 3rem); }
  .hero--video .hero__sub { font-size: var(--text-regular); max-width: 24rem; }
  .hero--video .hero__copy { padding-inline: 1.1rem; }
}

/* === Feature-sectie: grote brein-afbeelding boven de 3 punten === */
.features-media { max-width: 56rem; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.features-media img { width: 100%; height: auto; display: block; }

/* === Story-sectie: eye-scan achtergrond === */
.story-section { position: relative; overflow: hidden; isolation: isolate; }
.story-section__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(125% 85% at 50% 48%, rgba(1,1,1,0.62) 0%, rgba(1,1,1,0.92) 72%),
    url("../assets/images/home-verschil-eye.jpg");
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.story-section .container { position: relative; z-index: 1; }


/* ===== Start-analyse knop (ring-kleur, witte tekst) ===== */
.btn--analyse {
  background: #f6efdb;
  color: var(--color-neutral-darkest);
  border-color: #f6efdb;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0.95rem 2rem;
}
.btn--analyse:hover {
  background: #fbf6ea;
  border-color: #fbf6ea;
  color: var(--color-neutral-darkest);
  transform: translateY(-1px);
  box-shadow: 0 14px 40px -18px rgba(246, 239, 219, 0.55);
}
.hero__cta { margin-top: 1.75rem; }

/* ===== Start-analyse cinematic loader overlay ===== */
.analyse-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out-soft), visibility 0.5s var(--ease-out-soft);
}
.analyse-loader.is-active { opacity: 1; visibility: visible; }
.analyse-loader__stage {
  width: min(86vw, 560px);
  aspect-ratio: 1664 / 1248;
  max-height: 64vh;
  border-radius: 14px;
  overflow: hidden;
}
.analyse-loader__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.analyse-loader__progress {
  width: min(86vw, 560px);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.analyse-loader__bar {
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.analyse-loader__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #f6efdb;
  border-radius: 100px;
  box-shadow: 0 0 14px 0 rgba(246, 239, 219, 0.6);
  transition: width 0.15s linear;
}
.analyse-loader__pct {
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #f6efdb;
  text-transform: uppercase;
  text-align: right;
}


/* Monthly-knop ("Start maandelijkse analyse") -> altijd het hover-design (wit + creme-glow) */
.plan--featured .plan__cta {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-neutral-darkest);
  box-shadow: 0 0 36px -10px #f6efdb;
}
.plan--featured .plan__cta:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  box-shadow: 0 0 46px -8px #f6efdb;
  transform: translateY(-1px);
}
