/* ===================================================================
   Groeispeurt — styles.css
   Premium palette: smaragdgroen · crème · midnight navy
   =================================================================== */

/* ---------- Custom properties ---------- */
:root {
  /* Accenten */
  --emerald: #0A6E4F;
  --emerald-2: #0D7A57;
  --emerald-dark: #085c41;
  --cream: #F5E6C8;
  --cream-2: #EDD9A3;

  /* Achtergronden */
  --navy: #0B1220;
  --navy-2: #0E1A2E;
  --off-white: #FAFAF8;
  --beige: #F7F4EF;
  --dark-warm: #161512;

  /* Tekst */
  --text-dark: #1A2232;
  --text-muted: #5A6473;
  --text-light: #FFFFFF;
  --text-cream: #F0EBE0;

  /* Lijnen */
  --border-light: #E2DDD7;
  --border-dark: #1F2A3A;

  /* Maatvoering */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --container: 1200px;
  --container-narrow: 820px;
  --space-section: clamp(72px, 9vw, 128px);

  /* Schaduw */
  --shadow-sm: 0 2px 10px rgba(11, 18, 32, 0.05);
  --shadow-md: 0 14px 40px rgba(11, 18, 32, 0.10);
  --shadow-emerald: 0 18px 50px rgba(10, 110, 79, 0.22);

  /* Typografie */
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

.section { padding: var(--space-section) 0; position: relative; }
.section--beige { background: var(--beige); }

.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head--light { max-width: 680px; }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 18px 0 18px;
}
.section__title--light { color: var(--text-light); }

.section__lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 560px;
}
.section__lead--light { color: var(--text-cream); opacity: 0.85; }

.section__cta { margin-top: 52px; }

/* ---------- Sectie-marker (dossier) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
}
.eyebrow--light { color: var(--cream-2); }
/* crosshair i.p.v. ronde bullet — "speur"-vizier */
.eyebrow__bullet {
  position: relative;
  width: 12px; height: 12px;
  background: none; border-radius: 0; box-shadow: none;
  flex-shrink: 0;
}
.eyebrow__bullet::before, .eyebrow__bullet::after { content: ""; position: absolute; background: currentColor; }
.eyebrow__bullet::before { left: 50%; top: 0; width: 1.5px; height: 12px; transform: translateX(-50%); }
.eyebrow__bullet::after { top: 50%; left: 0; height: 1.5px; width: 12px; transform: translateY(-50%); }

/* Dossier-nummering per sectie via CSS-counter */
main { counter-reset: dossier; }
.section__head { counter-increment: dossier; position: relative; }
.section__head .eyebrow::before {
  content: counter(dossier, decimal-leading-zero);
  font-variant-numeric: tabular-nums;
  color: inherit; opacity: .55; font-weight: 700;
}
/* Ghost-watermark nummer */
.section__head::after {
  content: counter(dossier, decimal-leading-zero);
  position: absolute; top: -0.5em; right: 0;
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.04em;
  font-size: clamp(88px, 12vw, 158px); line-height: 1;
  color: var(--text-dark); opacity: 0.045;
  pointer-events: none; z-index: 0;
}
.section__head--light::after { color: #fff; opacity: 0.07; }

/* ---------- Cursor-lens (speuren) op donkere secties ---------- */
.spotlight { position: relative; }
.spotlight::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(25, 160, 107, 0.16), transparent 62%);
  opacity: 0; transition: opacity .4s ease;
}
.spotlight:hover::after { opacity: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn__arrow { transition: transform .25s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--emerald); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--emerald-2); box-shadow: var(--shadow-emerald); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--emerald); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--emerald); border: 1.5px solid var(--emerald); }
.btn--outline:hover { background: var(--emerald); color: #fff; transform: translateY(-2px); }

.btn--lg { padding: 16px 32px; font-size: 16px; }

/* ---------- Link with arrow ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  color: var(--emerald);
  position: relative;
}
.link-arrow span { transition: transform .25s ease; }
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--emerald);
  transition: width .3s ease;
}
.link-arrow:hover::after { width: calc(100% - 18px); }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow--lg { font-size: 17px; }
.link-arrow--light { color: var(--cream-2); }
.link-arrow--light::after { background: var(--cream-2); }

/* ---------- Grain / noise overlay ---------- */
.grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ===================================================================
   HEADER
   =================================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(250, 250, 248, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
  padding: 12px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--text-dark); }
.logo__mark { color: var(--emerald); flex-shrink: 0; }
.logo__img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.logo__img--lg { width: 56px; height: 56px; }
.logo__dot { color: var(--emerald); }
.logo--light { color: var(--text-light); }

.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 16px;
  font-weight: 500; font-size: 15px;
  color: var(--text-dark);
  border-radius: var(--radius-pill);
  transition: color .2s ease, background .2s ease;
}
.nav__link:hover { color: var(--emerald); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.nav__item--has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px); }
.dropdown__link { display: block; padding: 10px 14px; border-radius: 8px; font-size: 14.5px; font-weight: 500; color: var(--text-dark); transition: background .18s, color .18s; }
.dropdown__link:hover { background: var(--beige); color: var(--emerald); }

.header__cta { display: inline-flex; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 12px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh; width: min(320px, 84vw);
  background: var(--off-white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 96px 28px 28px;
  box-shadow: -20px 0 50px rgba(11,18,32,0.15);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link { padding: 14px 8px; font-size: 19px; font-weight: 500; font-family: var(--font-display); border-bottom: 1px solid var(--border-light); transition: color .2s; }
.mobile-menu__link:hover { color: var(--emerald); }
.mobile-menu__cta { margin-top: 22px; justify-content: center; }

.overlay { position: fixed; inset: 0; background: rgba(11,18,32,0.45); z-index: 150; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s; }
.overlay.show { opacity: 1; visibility: visible; }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(120% 80% at 82% -10%, #103049 0%, transparent 52%),
    linear-gradient(165deg, var(--navy) 0%, #0a1526 60%, #0c1830 100%);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}
/* Radar: concentrische ringen + roterende sweep + coördinatengrid */
.hero__rings, .hero__sweep {
  position: absolute; top: 50%; right: -8%;
  width: 760px; height: 760px;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 0; pointer-events: none;
}
.hero__rings {
  background: repeating-radial-gradient(circle, rgba(25,160,107,0.10) 0 1px, transparent 1px 72px);
  opacity: .6;
}
.hero__sweep {
  overflow: hidden;
  background: conic-gradient(from 0deg, rgba(25,160,107,0.22), transparent 22%);
  opacity: .45;
  animation: hero-sweep 7s linear infinite;
}
@keyframes hero-sweep { to { transform: translateY(-50%) rotate(360deg); } }
.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 100% at 45% 45%, #000 25%, transparent 72%);
  mask-image: radial-gradient(120% 100% at 45% 45%, #000 25%, transparent 72%);
}

.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; width: 100%; }
.hero__text { max-width: 600px; }

/* Tracker-pill */
.tracker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.03);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-2);
}
.tracker__dot { width: 8px; height: 8px; border-radius: 50%; background: #19A06B; animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(25,160,107,0.5); } 100% { box-shadow: 0 0 0 9px rgba(25,160,107,0); } }
.tracker__coord { color: rgba(255,255,255,0.4); padding-left: 8px; margin-left: 2px; border-left: 1px solid rgba(255,255,255,0.15); letter-spacing: 0.08em; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 26px 0 22px;
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--cream-2); }
.hero__title-accent { color: #19A06B; font-style: italic; }
.hero__subtext { font-size: clamp(16px, 2vw, 19px); color: var(--text-cream); max-width: 520px; opacity: 0.85; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__proof { display: flex; align-items: center; gap: 12px; margin-top: 40px; }
.hero__proof-num { font-family: var(--font-display); font-weight: 600; font-size: 42px; color: #fff; line-height: 1; }
.hero__proof-plus { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: #19A06B; align-self: flex-start; margin: 4px 8px 0 -6px; }
.hero__proof-txt { font-size: 13px; color: var(--text-cream); opacity: 0.8; line-height: 1.45; }
.stars { color: #E9B949; letter-spacing: 2px; font-size: 13px; }

/* Groei-tracker paneel */
.tracker-panel {
  position: relative; z-index: 2;
  background: rgba(10,18,32,0.55);
  border: 1px solid var(--border-dark);
  border-radius: 20px; padding: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.tracker-panel__bar { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: rgba(255,255,255,0.5); padding: 2px 4px 12px; }
.tracker-panel__live { display: inline-flex; align-items: center; gap: 7px; color: #19A06B; }
.tracker-panel__plot { position: relative; aspect-ratio: 360 / 200; border: 1px solid var(--border-dark); border-radius: 12px; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); }
.trail { width: 100%; height: 100%; display: block; }
.trail__line { stroke-dasharray: 100; stroke-dashoffset: 100; animation: trail-draw 2.4s ease forwards .4s; filter: drop-shadow(0 0 6px rgba(25,160,107,0.5)); }
@keyframes trail-draw { to { stroke-dashoffset: 0; } }
.trail__pins circle { fill: var(--cream-2); }
.trail__pin--end { fill: #19A06B; }
.trail__dot { filter: drop-shadow(0 0 6px rgba(255,255,255,0.85)); }
.trail__flag { position: absolute; font-size: 11px; font-weight: 600; color: #fff; background: rgba(13,122,87,0.92); padding: 3px 8px; border-radius: 7px; white-space: nowrap; box-shadow: 0 6px 16px rgba(0,0,0,0.35); }
.trail__flag--1 { left: 30%; top: 52%; }
.trail__flag--2 { left: 60%; top: 12%; }
.tracker-panel__foot { display: flex; justify-content: space-between; gap: 8px; padding: 14px 6px 4px; }
.tstat { display: flex; flex-direction: column; }
.tstat__v { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: #fff; }
.tstat__l { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

@media (max-width: 900px) {
  .hero { padding: 130px 0 70px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__text { max-width: 100%; }
  .hero__rings, .hero__sweep { right: -40%; opacity: .35; }
  .tracker-panel { max-width: 460px; }
}

/* ===================================================================
   RESULTATEN-CAROUSEL (donker, groen & goud)
   =================================================================== */
.results {
  position: relative;
  padding: 64px 0 58px;
  background: linear-gradient(165deg, var(--navy) 0%, #0a1526 100%);
  overflow: hidden;
}
.results__title { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-2); margin-bottom: 34px; position: relative; z-index: 2; }
.results__carousel { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.results__viewport { position: relative; }
.result {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.result.is-active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.result__client { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #19A06B; border: 1px solid rgba(25,160,107,0.35); border-radius: var(--radius-pill); padding: 6px 14px; margin-bottom: 18px; }
.result__quote { font-family: var(--font-display); font-style: italic; font-size: clamp(19px, 2.6vw, 26px); line-height: 1.45; color: #fff; max-width: 640px; margin: 0 auto 22px; }
.result__stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.rstat { display: flex; flex-direction: column; }
.rstat__v { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--cream-2); line-height: 1.2; }
.rstat__l { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 3px; }
.results__dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.results__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.22); border: none; padding: 0; cursor: pointer; transition: all .25s ease; }
.results__dot.active { background: var(--cream-2); width: 26px; border-radius: var(--radius-pill); }
.results__dot:focus-visible { outline: 2px solid var(--cream-2); outline-offset: 2px; }

/* ===================================================================
   DIENSTEN
   =================================================================== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #F7F4EF;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  padding: 24px 26px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-emerald); border-color: rgba(10,110,79,0.25); }

/* Etappenummer + coördinaat-tag */
.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.service-card__num { font-family: var(--font-display); font-weight: 400; font-size: 46px; line-height: 1; color: var(--emerald); opacity: .32; letter-spacing: -0.02em; }
.service-card__tag {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-light); border-radius: var(--radius-pill);
  padding: 5px 12px; background: var(--off-white);
  white-space: nowrap; margin-top: 8px;
}

/* Spoorlijn met vergrootglas-reveal */
.service-card__trail { position: relative; margin: 12px 0 14px; }
.service-card__trail svg { width: 100%; height: auto; display: block; }
.sline { stroke: var(--emerald-2); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1.4s ease .25s; }
.service-card.visible .sline, .dossier-card.visible .sline { stroke-dashoffset: 0; }
.sline__end { fill: var(--emerald); opacity: 0; transition: opacity .4s ease 1.4s; }
.service-card.visible .sline__end, .dossier-card.visible .sline__end { opacity: 1; }

.lens {
  position: absolute; right: 0; top: 0;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: var(--emerald);
  background: var(--off-white);
  border: 1px solid var(--border-light); border-radius: var(--radius-pill);
  padding: 5px 12px;
  box-shadow: var(--shadow-sm);
  clip-path: circle(0% at 13px 50%);
  transition: clip-path .45s ease;
}
.lens__ring { flex-shrink: 0; }
.service-card:hover .lens,
.service-card:focus-within .lens { clip-path: circle(150% at 13px 50%); }

.service-card__title { font-family: var(--font-display); font-weight: 600; font-size: 23px; margin-bottom: 8px; letter-spacing: -0.01em; }
.service-card__desc { color: var(--text-muted); font-size: 15.5px; margin-bottom: 18px; }

/* ===================================================================
   CASES / DOSSIER
   =================================================================== */
.tag { font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em; padding: 5px 13px; border-radius: var(--radius-pill); background: var(--beige); color: var(--emerald); border: 1px solid var(--border-light); }
.stat-pill { display: inline-block; padding: 8px 16px; background: var(--emerald); color: #fff; font-weight: 600; font-size: 14px; border-radius: var(--radius-pill); }

.dossier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.dossier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 26px 28px 30px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.dossier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-emerald); border-color: rgba(10,110,79,0.25); }
.dossier-card__tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-light); border-radius: var(--radius-pill);
  padding: 5px 12px; background: var(--off-white);
  margin-bottom: 18px;
}
.dossier-card__shot {
  display: grid; place-items: center;
  aspect-ratio: 16 / 10;
  border: 1.5px dashed var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--beige);
  margin-bottom: 18px;
}
.dossier-card__placeholder { font-size: 13px; font-weight: 600; letter-spacing: .06em; color: var(--text-muted); }
.dossier-card__shot--img { border: none; background: none; overflow: hidden; }
.dossier-card__shot--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dossier-card__todo { font-weight: 600; color: var(--text-muted); }
.dossier-card__trail { position: relative; margin-bottom: 14px; }
.dossier-card__trail svg { width: 100%; height: auto; display: block; }
.dossier-card__pill { position: absolute; right: 0; top: 0; font-size: 15px; padding: 9px 18px; box-shadow: var(--shadow-emerald); }
.dossier-card__title { font-family: var(--font-display); font-weight: 600; font-size: 26px; margin-bottom: 10px; letter-spacing: -0.01em; }
.dossier-card__desc { color: var(--text-muted); font-size: 15.5px; line-height: 1.6; }

/* ===================================================================
   REVIEWS / CAROUSEL
   =================================================================== */
.rating-badge { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; padding: 10px 18px; background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-pill); font-size: 14.5px; box-shadow: var(--shadow-sm); }

.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.review-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--emerald); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 16px; flex-shrink: 0; }
.review-card__name { font-weight: 600; font-size: 16px; }
.review-card__company { font-size: 13.5px; color: var(--text-muted); }
.review-card__quote { font-family: var(--font-display); font-size: 18px; line-height: 1.55; color: var(--text-dark); margin: 14px 0 18px; font-style: italic; }

.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.carousel__btn { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--border-light); background: #fff; font-size: 18px; color: var(--text-dark); display: grid; place-items: center; transition: all .25s ease; }
.carousel__btn:hover { background: var(--emerald); color: #fff; border-color: var(--emerald); transform: translateY(-2px); }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-light); transition: all .25s; }
.carousel__dot.active { background: var(--emerald); width: 26px; border-radius: var(--radius-pill); }

/* ===================================================================
   WERKWIJZE / TIMELINE
   =================================================================== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.timeline__step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.timeline__step::before {
  content: "";
  position: absolute;
  top: 50%; right: -14px;
  width: 24px; height: 2px;
  background: var(--border-light);
}
.timeline__step:last-child::before { display: none; }
.timeline__step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.timeline__badge { display: inline-block; padding: 6px 14px; background: var(--emerald); color: #fff; font-size: 13px; font-weight: 600; border-radius: var(--radius-pill); margin-bottom: 16px; }
.timeline__title { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 8px; }
.timeline__desc { color: var(--text-muted); font-size: 15px; }

/* ===================================================================
   PRICING
   =================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card--featured { background: var(--emerald); color: #fff; border-color: var(--emerald); box-shadow: var(--shadow-emerald); transform: scale(1.03); }
.price-card--featured:hover { transform: scale(1.03) translateY(-6px); }
.price-card__tag { position: absolute; top: 20px; right: 20px; background: var(--cream-2); color: var(--emerald-dark); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); }
.price-card__badge { width: 52px; height: 52px; display: grid; place-items: center; background: var(--beige); border-radius: 14px; font-size: 24px; margin-bottom: 20px; }
.price-card__badge--light { background: rgba(255,255,255,0.18); }
.price-card__name { font-family: var(--font-display); font-weight: 600; font-size: 26px; margin-bottom: 8px; }
.price-card__desc { font-size: 15.5px; color: var(--text-muted); margin-bottom: 16px; }
.price-card--featured .price-card__desc { color: var(--text-cream); opacity: 0.9; }
.price-card__price { display: block; font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--text-dark); margin-bottom: 12px; line-height: 1.25; }
.price-card__price small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--text-muted); }
.price-card--featured .price-card__price { color: #fff; }
.price-card--featured .price-card__price small { color: var(--text-cream); opacity: .85; }
.price-card__time { display: inline-block; padding: 5px 14px; border: 1px solid var(--border-light); border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 24px; }
.price-card--featured .price-card__time { border-color: rgba(255,255,255,0.3); color: var(--text-cream); }
.price-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-card__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.check { color: var(--emerald); font-weight: 700; flex-shrink: 0; }
.price-card--featured .check { color: var(--cream-2); }
.price-card__cta { width: 100%; justify-content: center; }

/* ===================================================================
   INTAKE-FORMULIER
   =================================================================== */
.intake-form {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.intake-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.intake-field { display: flex; flex-direction: column; gap: 8px; }
.intake-field__label { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.intake-field__label em { font-style: normal; font-weight: 500; color: var(--text-muted); }
.intake-field input {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.intake-field input:focus-visible { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(10,110,79,0.15); }
.intake-group { border: none; padding: 0; margin: 0; }
.intake-group__legend { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; padding: 0; }
.intake-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; display: inline-flex; cursor: pointer; }
.chip input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.chip span {
  display: inline-block;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  background: var(--off-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover span { border-color: var(--emerald); color: var(--text-dark); }
.chip input:checked + span { background: var(--emerald); border-color: var(--emerald); color: #fff; }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(10,110,79,0.25); }
.intake-form__submit { align-self: flex-start; }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact { background: var(--navy); color: #fff; overflow: hidden; }
.contact__inner { position: relative; z-index: 2; }

/* WhatsApp-knop */
.btn--whatsapp { background: var(--emerald); color: #fff; box-shadow: var(--shadow-emerald); gap: 12px; margin-top: 26px; }
.btn--whatsapp:hover { background: var(--emerald-2); transform: translateY(-2px); }
.btn--whatsapp svg { flex-shrink: 0; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 44px; }
.contact-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  backdrop-filter: blur(6px);
}
.contact-card:hover { transform: translateY(-6px); background: rgba(10,110,79,0.18); border-color: rgba(237,217,163,0.4); }
.contact-card__icon { font-size: 30px; margin-bottom: 18px; }
.contact-card__title { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin-bottom: 8px; }
.contact-card__desc { color: var(--text-cream); opacity: 0.8; font-size: 15px; margin-bottom: 20px; flex-grow: 1; }
.contact__info { display: flex; flex-wrap: wrap; gap: 14px; }
.contact__info-item { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-pill); font-size: 15px; transition: border-color .25s, background .25s; }
.contact__info-item:hover { border-color: var(--cream-2); background: rgba(255,255,255,0.05); }

/* ===================================================================
   FAQ / ACCORDION
   =================================================================== */
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion__item { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.accordion__item.open { box-shadow: var(--shadow-sm); border-color: rgba(10,110,79,0.3); }
.accordion__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--text-dark);
}
.accordion__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.accordion__icon::before, .accordion__icon::after { content: ""; position: absolute; background: var(--emerald); border-radius: 2px; transition: transform .3s ease; }
.accordion__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.accordion__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.accordion__item.open .accordion__icon::after { transform: scaleY(0); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion__panel p { padding: 0 26px 24px; color: var(--text-muted); font-size: 16px; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { position: relative; background: var(--dark-warm); color: var(--text-cream); padding: 80px 0 32px; overflow: hidden; }
.footer__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 2fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__tagline { margin: 18px 0 24px; font-size: 15px; color: var(--text-cream); opacity: 0.7; max-width: 320px; }
.socials { display: flex; gap: 12px; }
.social { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.07); color: var(--text-cream); transition: background .25s, color .25s, transform .25s; }
.social:hover { background: var(--emerald); color: #fff; transform: translateY(-3px); }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__heading { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #fff; margin-bottom: 18px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__link { font-size: 15px; color: var(--text-cream); opacity: 0.72; transition: opacity .2s, color .2s; }
.footer__link:hover { opacity: 1; color: var(--cream-2); }
.footer__link--static { cursor: default; }
.footer__link--static:hover { opacity: 0.72; color: var(--text-cream); }

.footer__cta-box { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer__cta-title { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #fff; }

.footer__bottom { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: 14px; opacity: 0.7; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--cream-2); }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
/* Leesbare ondergrens (0.6) als vangnet: ook zonder .visible blijft content leesbaar */
.reveal { opacity: 0.6; transform: translateY(18px); transition: opacity .4s ease, transform .4s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline__step::before { display: none; }
  .review-card { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 880px) {
  .nav, .header__cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  /* geen hover op touch: lens standaard zichtbaar */
  .lens { clip-path: none; }
  .dossier-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .review-card { flex: 0 0 100%; }
  .intake-form__row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 120px; }
}

/* ===================================================================
   DIENSTEN-PAGINA
   =================================================================== */
.subhero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% -20%, #103049 0%, transparent 55%),
    linear-gradient(165deg, var(--navy) 0%, #0a1526 70%);
  color: #fff; padding: 168px 0 84px;
}
.subhero__inner { position: relative; z-index: 2; max-width: 820px; }
.subhero__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(38px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.03em; margin: 22px 0 20px; }
.subhero__title em { font-style: italic; color: #19A06B; font-weight: 500; }
.subhero__lead { font-size: clamp(16px, 2vw, 19px); color: var(--text-cream); opacity: 0.85; max-width: 640px; }
.svc-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.svc-chip { padding: 9px 18px; border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; color: var(--cream-2); transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.svc-chip:hover { background: var(--emerald); border-color: var(--emerald); color: #fff; transform: translateY(-2px); }

.svc { position: relative; padding: clamp(60px, 8vw, 100px) 0; overflow: hidden; }
.svc--alt { background: var(--beige); }
.svc__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.svc--rev .svc__content { order: 2; }
.svc--rev .svc__media { order: 1; }
.svc__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(27px, 3.4vw, 42px); line-height: 1.1; letter-spacing: -0.02em; margin: 16px 0 14px; }
.svc__lead { color: var(--text-muted); font-size: 16.5px; line-height: 1.6; margin-bottom: 22px; max-width: 520px; }
.svc__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 22px; }
.svc__list li { display: flex; gap: 9px; font-size: 14.5px; align-items: flex-start; color: var(--text-dark); }
.svc__list li::before { content: "✓"; color: var(--emerald); font-weight: 700; flex-shrink: 0; }
.svc__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.svc__ghost { position: absolute; top: 24px; right: 5%; font-family: var(--font-display); font-weight: 600; font-size: clamp(120px, 16vw, 220px); line-height: 1; color: var(--emerald); opacity: 0.05; z-index: 0; pointer-events: none; letter-spacing: -0.04em; }
.svc-sub { margin: 52px 0 20px; }
.dossier-card__features { margin-top: 18px; margin-bottom: 0; }

/* Media — algemeen */
.svc__media { display: flex; justify-content: center; }

/* Creatives distributie-diagram */
.distrib { display: flex; align-items: center; gap: 22px; width: 100%; max-width: 460px; background: #fff; border: 1px solid var(--border-light); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-md); }
.distrib__core { width: 104px; height: 104px; border-radius: 22px; background: var(--emerald); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; font-weight: 600; font-size: 13px; flex-shrink: 0; box-shadow: var(--shadow-emerald); }
.distrib__core .ico { font-size: 30px; }
.distrib__line { width: 38px; height: 2px; flex-shrink: 0; background: repeating-linear-gradient(90deg, var(--emerald) 0 6px, transparent 6px 11px); background-size: 11px 2px; position: relative; animation: distrib-flow 1s linear infinite; }
.distrib__line::after { content: ""; position: absolute; right: -1px; top: 50%; transform: translateY(-50%); border-left: 6px solid var(--emerald); border-top: 4px solid transparent; border-bottom: 4px solid transparent; }
@keyframes distrib-flow { to { background-position: 11px 0; } }
.distrib__nodes { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.dnode { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--border-light); border-radius: 12px; font-weight: 600; font-size: 13.5px; background: #fff; }
.dnode::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--c, #000); flex-shrink: 0; }

/* Instagram-ad preview */
.ig-ad { width: 300px; max-width: 100%; background: #fff; border: 1px solid var(--border-light); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.ig-ad__top { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.ig-ad__av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #EDD9A3, #0A6E4F); flex-shrink: 0; }
.ig-ad__top b { font-size: 13px; display: block; }
.ig-ad__top small { font-size: 11px; color: var(--text-muted); }
.ig-ad__top .dots { margin-left: auto; color: var(--text-muted); }
.ig-ad__img { aspect-ratio: 1; background: linear-gradient(150deg, #0E1A2E, #0A6E4F); display: grid; place-items: center; font-size: 54px; }
.ig-ad__cta { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: #F7F4EF; font-weight: 600; font-size: 14px; color: var(--emerald); }
.ig-ad__actions { display: flex; gap: 14px; padding: 11px 14px 3px; font-size: 17px; }
.ig-ad__actions .save { margin-left: auto; }
.ig-ad__likes { padding: 0 14px 14px; font-size: 13px; font-weight: 600; }

/* Google SERP */
.g-serp { width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--border-light); border-radius: 16px; padding: 18px; box-shadow: var(--shadow-md); }
.g-serp__bar { display: flex; align-items: center; gap: 10px; border: 1px solid var(--border-light); border-radius: var(--radius-pill); padding: 10px 16px; font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.g-serp__ad { padding-bottom: 14px; border-bottom: 1px solid var(--border-light); margin-bottom: 14px; }
.g-serp__tag { font-size: 11px; font-weight: 700; color: var(--text-dark); border: 1px solid var(--border-light); border-radius: 4px; padding: 1px 5px; margin-right: 8px; }
.g-serp__url { font-size: 12.5px; color: #1A7F4B; }
.g-serp__ad h4, .g-serp__result h4 { font-family: var(--font-display); font-size: 17px; color: #1d4ed8; font-weight: 500; margin: 4px 0; line-height: 1.25; }
.g-serp__ad p { font-size: 13px; color: var(--text-muted); }
.g-serp__links { display: flex; gap: 16px; margin-top: 8px; font-size: 12.5px; color: #1d4ed8; }

/* Device (Snapchat / TikTok) */
.device { position: relative; width: 184px; height: 372px; background: #0d0d10; border-radius: 34px; padding: 9px; box-shadow: 0 26px 54px rgba(11,18,32,0.35), inset 0 0 0 2px #23232a; }
.device__notch { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 50px; height: 8px; background: #23232a; border-radius: 6px; z-index: 3; }
.device__screen { position: relative; width: 100%; height: 100%; border-radius: 26px; overflow: hidden; display: flex; flex-direction: column; }
.snap-screen { background: linear-gradient(160deg, #FFFC00 0%, #FFE600 100%); color: #111; }
.snap-top { position: absolute; top: 18px; left: 14px; font-size: 11px; font-weight: 700; background: rgba(0,0,0,0.12); padding: 3px 9px; border-radius: 6px; }
.snap-mid { flex: 1; display: grid; place-items: center; font-size: 84px; }
.snap-cta { text-align: center; padding-bottom: 22px; font-weight: 700; font-size: 14px; line-height: 1.3; }
.snap-cta span { display: block; font-size: 18px; }
.snap-cta small { font-weight: 600; }
.tok-screen { background: linear-gradient(180deg, #1f2a44 0%, #0A6E4F 130%); color: #fff; }
.tok-play { position: absolute; inset: 0; display: grid; place-items: center; font-size: 34px; color: rgba(255,255,255,0.85); }
.tok-rail { position: absolute; right: 10px; bottom: 78px; display: flex; flex-direction: column; gap: 16px; text-align: center; font-size: 18px; z-index: 2; }
.tok-rail i { font-style: normal; font-size: 10px; display: block; margin-top: 2px; }
.tok-bottom { position: absolute; left: 12px; right: 50px; bottom: 18px; z-index: 2; font-size: 12px; line-height: 1.35; }
.tok-bottom b { display: block; margin-bottom: 4px; }

/* Checkout */
.checkout { width: 100%; max-width: 360px; background: #fff; border: 1px solid var(--border-light); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-md); }
.checkout__head { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-bottom: 16px; }
.checkout__row { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--border-light); font-size: 14px; color: var(--text-muted); }
.checkout__row b { font-family: var(--font-display); font-size: 22px; color: var(--text-dark); }
.checkout__methods { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pm { padding: 8px 12px; border: 1px solid var(--border-light); border-radius: 9px; font-size: 12.5px; font-weight: 700; color: var(--text-dark); background: #F7F4EF; }
.pm--ideal { color: #CC0066; }
.checkout__pay { background: var(--emerald); color: #fff; text-align: center; font-weight: 600; padding: 13px; border-radius: var(--radius-pill); font-size: 14.5px; }
.checkout__ok { margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--emerald); display: flex; align-items: center; gap: 7px; }

/* Browser mock */
.browser { width: 100%; max-width: 420px; background: #fff; border: 1px solid var(--border-light); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.browser__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #F7F4EF; border-bottom: 1px solid var(--border-light); }
.browser__bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #d8d3cc; }
.browser__url { margin-left: 12px; flex: 1; background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-pill); padding: 5px 14px; font-size: 12px; color: var(--text-muted); }
.browser__body { position: relative; padding: 22px; }
.bw-badge { position: absolute; top: 16px; right: 16px; background: var(--emerald); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: var(--radius-pill); box-shadow: var(--shadow-emerald); }
.bw-hero { height: 90px; border-radius: 12px; background: linear-gradient(150deg, #0E1A2E, #0A6E4F); margin-bottom: 16px; }
.bw-line { height: 12px; border-radius: 6px; background: #ece8e2; margin-bottom: 10px; }
.bw-line--w { width: 60%; }
.bw-cta { margin-top: 16px; display: inline-block; background: var(--emerald); color: #fff; font-weight: 600; font-size: 13px; padding: 10px 20px; border-radius: var(--radius-pill); }

/* CTA-band */
.cta-band { position: relative; overflow: hidden; background: var(--dark-warm); color: #fff; text-align: center; padding: clamp(64px, 9vw, 110px) 0; }
.cta-band__inner { position: relative; z-index: 2; max-width: 640px; }
.cta-band__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4.5vw, 52px); letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-band__lead { color: var(--text-cream); opacity: 0.85; font-size: 17px; margin-bottom: 30px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 860px) {
  .svc__inner { grid-template-columns: 1fr; gap: 34px; }
  .svc--rev .svc__content { order: 1; }
  .svc--rev .svc__media { order: 2; }
  .svc__media { order: 2; }
  .svc__ghost { font-size: 120px; top: 14px; opacity: 0.06; }
}
@media (max-width: 560px) {
  .svc__list { grid-template-columns: 1fr; }
  .distrib { flex-direction: column; }
  .distrib__line { width: 2px; height: 30px; background: repeating-linear-gradient(180deg, var(--emerald) 0 6px, transparent 6px 11px); background-size: 2px 11px; animation: none; }
  .distrib__line::after { right: 50%; top: auto; bottom: -1px; transform: translateX(50%); border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid var(--emerald); border-bottom: none; }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .sline { stroke-dashoffset: 0; }
  .sline__end { opacity: 1; }
}
