/* ============================================================
   Brand Solutions, brand-solutions.nl
   Huisstijl: navy + magenta (uit logo), speels & toegankelijk
   ============================================================ */

:root {
  --navy-950: #0a0e24;
  --navy-900: #0e1430;
  --navy-800: #151d42;
  --navy-700: #1e2a5e;
  --magenta: #e0218a;
  --magenta-dark: #b81a72;
  --magenta-soft: #ff5fb1;
  --blue: #7cc4ee;
  --blue-deep: #3a7bd5;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --ink: #1b2036;
  --ink-soft: #5a6178;
  --paper: #ffffff;
  --paper-soft: #f6f7fc;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 10px 35px rgba(14, 20, 48, 0.10);
  --shadow-lift: 0 18px 50px rgba(14, 20, 48, 0.18);
  --grad-brand: linear-gradient(120deg, #e0218a 0%, #8d3db4 55%, #3a7bd5 100%);
  --grad-dark: linear-gradient(165deg, #1e2a5e 0%, #0e1430 60%, #0a0e24 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Quicksand", "Nunito", sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

img { max-width: 100%; display: block; }

a { color: var(--magenta); text-decoration: none; }

.container { width: min(1120px, 92%); margin: 0 auto; }

section { padding: 72px 0; }

.section-label {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  background: rgba(224, 33, 138, 0.09);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.section-intro { color: var(--ink-soft); max-width: 640px; font-size: 1.06rem; }

.center { text-align: center; }
.center .section-intro { margin-inline: auto; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(224, 33, 138, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(224, 33, 138, 0.45); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }

.btn-outline {
  background: #fff;
  color: var(--navy-800);
  border: 2px solid #e3e6f2;
}
.btn-outline:hover { border-color: var(--magenta); color: var(--magenta); }

/* ---------- Navigatie ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 20, 48, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  line-height: 1;
}
.logo .logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  align-self: center;
  box-shadow: 0 4px 14px rgba(224, 33, 138, 0.4);
}
.logo .logo-text { display: flex; flex-direction: column; }
.logo .logo-text b { font-size: 1.35rem; font-weight: 700; letter-spacing: 0.01em; }
.logo .logo-text span {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}

/* Echt logo (afbeelding) */
.logo-img { height: 40px; width: auto; display: block; }
@media (max-width: 680px) { .logo-img { height: 34px; } }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 0.97rem;
  font-family: "Quicksand", sans-serif;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links .btn { padding: 11px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--grad-dark);
  color: #fff;
  padding: 84px 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 33, 138, 0.28), transparent 65%);
  top: -180px;
  right: -120px;
  pointer-events: none;
}

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

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }

.hero-usps { display: flex; gap: 26px; flex-wrap: wrap; padding-bottom: 56px; }
.hero-usps li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
}
.hero-usps .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  color: var(--whatsapp);
  display: grid; place-items: center;
  font-size: 0.8rem;
}

.hero-visual { position: relative; padding-bottom: 56px; }
.hero-visual .hero-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.float-card {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-lift);
  font-family: "Quicksand", sans-serif;
  line-height: 1.3;
}
.float-card b { font-size: 1.25rem; display: block; }
.float-card span { font-size: 0.8rem; color: var(--ink-soft); font-weight: 600; }
.float-card.top { top: -20px; right: -10px; }
.float-card.bottom { bottom: 36px; left: -16px; }
.float-card .stars { color: #f5a623; letter-spacing: 2px; font-size: 0.95rem; }

/* ---------- Statistieken-balk ---------- */
.statbar { background: var(--navy-950); color: #fff; padding: 34px 0; }
.statbar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}
.statbar b {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statbar span { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 600; }

/* ---------- Kaarten ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card .card-body { padding: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

.icon-bubble {
  width: 54px; height: 54px;
  border-radius: 18px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(224, 33, 138, 0.28);
}

/* ---------- Verdiensten ---------- */
.earnings { background: var(--grad-dark); color: #fff; }
.earnings .section-intro { color: rgba(255, 255, 255, 0.78); }
.earnings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.earn-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.earn-card.featured {
  background: var(--grad-brand);
  border: none;
  transform: scale(1.04);
  box-shadow: 0 18px 50px rgba(224, 33, 138, 0.35);
}
.earn-card .label {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.earn-card.featured .label { color: rgba(255, 255, 255, 0.9); }
.earn-card .amount {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  margin: 12px 0 6px;
}
.earn-card p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.75); }
.earn-card.featured p { color: rgba(255, 255, 255, 0.92); }

.earnings-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Verhalen / video's ---------- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.story {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}
.story img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.story:hover img { transform: scale(1.05); }

/* ---------- Wereldbol "Werk hard, reis ver" ---------- */
.globe-section {
  background: var(--grad-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;   /* geen padding onder: de horizon raakt de sectierand */
}
.globe-section .section-intro { color: rgba(255, 255, 255, 0.78); }

.globe-statline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin: 22px 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.globe-statline b {
  font-size: 1.15rem;
  margin-right: 5px;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.globe-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.globe-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.globe-chip:hover { transform: translateY(-2px); border-color: var(--magenta-soft); }
.globe-chip.active {
  background: var(--grad-brand);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(224, 33, 138, 0.35);
}
.globe-chip b { font-weight: 700; }
.globe-chip span { color: rgba(255, 255, 255, 0.6); font-size: 0.8rem; }
.globe-chip.active span { color: rgba(255, 255, 255, 0.85); }

/* Horizon: alleen de bovenkant van de aarde is zichtbaar */
.globe-horizon {
  position: relative;
  height: clamp(240px, 32vw, 380px);
  margin-top: 28px;
  overflow: hidden;
  cursor: grab;
}
.globe-horizon:active { cursor: grabbing; }

#globe-canvas {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Zachte overgang waar de bol wordt afgesneden */
.globe-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  background: linear-gradient(transparent, rgba(10, 14, 36, 0.9));
  pointer-events: none;
}

.globe-fallback {
  text-align: center;
  font-size: 3.2rem;
  padding-top: 40px;
}
.globe-fallback p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 12px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

/* ---------- Doorgroei-roadmap ---------- */
.roadmap {
  background: var(--navy-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.roadmap .section-intro { color: rgba(255, 255, 255, 0.78); }

.road { position: relative; margin-top: 48px; }
.road-track { position: relative; }

/* verticale lijn + vulling */
.road-spine {
  position: absolute;
  top: 14px; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  width: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.10);
}
.road-spine-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;                 /* zonder JS: volledig getekend */
  background: var(--grad-brand);
  border-radius: 4px;
  box-shadow: 0 0 16px rgba(224, 33, 138, 0.6);
}
.road-anim .road-spine-fill {
  height: calc(var(--rp, 0) * 1%);
  transition: height 0.15s linear;
}

/* stap-rij: kaart links/rechts, node op de lijn */
.road-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 28px;
  margin-bottom: 30px;
}
.road-step:last-child { margin-bottom: 0; }
.road-step.right .road-card { grid-column: 3; }
.road-step.left  .road-card { grid-column: 1; text-align: right; }

.road-node {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  background: var(--grad-brand);
  border: 3px solid transparent;
  box-shadow: 0 0 0 5px rgba(224, 33, 138, 0.16), 0 8px 22px rgba(224, 33, 138, 0.4);
}

/* foto vult de lege zigzag-kant (alleen desktop) */
.road-photo {
  position: relative;
  grid-row: 1;
  align-self: stretch;
  min-height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lift);
}
.road-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.road-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(224, 33, 138, 0.10), transparent 45%, rgba(10, 14, 36, 0.6));
}
.road-step.right .road-photo { grid-column: 1; }
.road-step.left  .road-photo { grid-column: 3; }

.road-card {
  grid-row: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.road-step-num {
  font-family: "Quicksand", sans-serif;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue);
}
.road-card h3 { font-size: 1.3rem; margin: 4px 0 8px; }
.road-pay {
  font-family: "Quicksand", sans-serif;
  font-weight: 700; font-size: 1.3rem;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.road-pay span {
  font-size: 0.82rem;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.6);
}
.road-card p, .road-branch p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.75); margin: 0; }
.road-card b, .road-branch b { color: #fff; }

/* splitsing */
.road-fork { position: relative; text-align: center; margin-top: 30px; padding-top: 30px; }
.road-fork::before {
  content: "";
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 44px;
  background: var(--grad-brand);
  border-radius: 4px;
}
.road-fork .road-node.fork { margin: 0 auto 16px; position: relative; }
.road-fork-label {
  font-family: "Quicksand", sans-serif;
  font-weight: 700; font-size: 1.12rem;
  margin-bottom: 24px;
}
.road-branches { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.road-branch {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
}
.road-branch-head {
  font-family: "Quicksand", sans-serif;
  font-weight: 700; font-size: 1.12rem;
  margin-bottom: 10px;
}

/* JS aan: dim → onthul op scroll */
.road-anim .road-card,
.road-anim .road-branch {
  opacity: 0.45;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.road-anim .road-step.in .road-card,
.road-anim .road-fork.in .road-branch { opacity: 1; transform: none; }

.road-anim .road-photo {
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.road-anim .road-step.in .road-photo { opacity: 1; transform: none; }
.road-anim .road-fork.in .road-branch:last-child { transition-delay: 0.12s; }

.road-anim .road-node {
  background: var(--navy-800);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.road-anim .road-step.in .road-node,
.road-anim .road-fork.in .road-node {
  background: var(--grad-brand);
  border-color: transparent;
  box-shadow: 0 0 0 5px rgba(224, 33, 138, 0.18), 0 8px 22px rgba(224, 33, 138, 0.45);
  transform: scale(1.08);
}

/* ---------- Roadmap: extra visual flair ---------- */
/* zwevende aurora-gloed + subtiel stippenpatroon achter de route */
.roadmap::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(40% 35% at 18% 12%, rgba(224, 33, 138, 0.22), transparent 70%),
    radial-gradient(38% 32% at 85% 72%, rgba(58, 123, 213, 0.20), transparent 70%);
  filter: blur(8px);
  animation: road-aurora 16s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}
.roadmap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1.4px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 72% 60% at 50% 45%, #000 38%, transparent 80%);
  mask-image: radial-gradient(ellipse 72% 60% at 50% 45%, #000 38%, transparent 80%);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
.roadmap > .container,
.roadmap > .road { position: relative; z-index: 1; }
@keyframes road-aurora {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(26px, -22px) scale(1.08); }
}

/* gloeiende "comeet" aan de kop van de gevulde lijn */
.road-anim .road-spine-fill::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  transform: translate(-50%, 50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 8%, var(--magenta-soft) 55%, transparent 72%);
  box-shadow: 0 0 16px 5px rgba(255, 95, 177, 0.7);
  animation: comet-pulse 1.8s ease-in-out infinite;
}
@keyframes comet-pulse {
  0%, 100% { box-shadow: 0 0 14px 4px rgba(255, 95, 177, 0.55); }
  50%      { box-shadow: 0 0 22px 7px rgba(255, 95, 177, 0.9); }
}

/* node: ripple bij activeren + zachte continue glow-pulse */
.road-node::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--magenta-soft);
  opacity: 0;
  pointer-events: none;
}
.road-anim .road-step.in .road-node::before,
.road-anim .road-fork.in .road-node::before { animation: node-ripple 0.9s ease-out; }
@keyframes node-ripple {
  0%   { opacity: 0.8; transform: scale(0.6); }
  100% { opacity: 0; transform: scale(2.1); }
}
.road-anim .road-step.in .road-node,
.road-anim .road-fork.in .road-node { animation: node-glow 2.6s ease-in-out infinite; }
@keyframes node-glow {
  0%, 100% { box-shadow: 0 0 0 5px rgba(224, 33, 138, 0.16), 0 8px 22px rgba(224, 33, 138, 0.45); }
  50%      { box-shadow: 0 0 0 9px rgba(224, 33, 138, 0.08), 0 10px 30px rgba(224, 33, 138, 0.65); }
}

/* hover-leven op kaarten, foto's en keuzes */
.road-card, .road-branch { transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.road-card:hover, .road-branch:hover {
  border-color: rgba(255, 95, 177, 0.45);
  box-shadow: 0 16px 40px rgba(224, 33, 138, 0.22);
}
.road-photo { transition: border-color 0.25s ease, box-shadow 0.3s ease; }
.road-photo img { transition: transform 0.45s ease; }
.road-photo:hover { border-color: rgba(255, 95, 177, 0.4); box-shadow: 0 20px 50px rgba(224, 33, 138, 0.28); }
.road-photo:hover img { transform: scale(1.06); }

/* mobiel: lijn links, alles in één kolom */
@media (max-width: 680px) {
  .road-spine { left: 26px; }
  .road-photo { display: none; }   /* geen lege kant op mobiel → geen foto's nodig */
  .road-step {
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    align-items: start;
    margin-bottom: 20px;
  }
  .road-node { grid-column: 1; width: 52px; height: 52px; font-size: 1.35rem; }
  .road-step.right .road-card,
  .road-step.left .road-card { grid-column: 2; text-align: left; }
  .road-fork::before { left: 26px; }
  .road-fork { text-align: left; }
  .road-fork .road-node.fork { margin: 0 0 14px; }
  .road-branches { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Reviews ---------- */
.reviews { background: var(--paper-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.review-shot {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 14px;
}
.review-shot img { border-radius: 8px; width: 100%; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  margin-top: 30px;
}
.google-badge .stars { color: #f5a623; letter-spacing: 2px; }

/* ---------- Vacature-kaarten ---------- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 44px;
}
.job-card {
  background: #fff;
  border: 2px solid #eceef7;
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.job-card:hover { border-color: var(--magenta); transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.job-card .job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: 0.76rem;
  font-weight: 800;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(58, 123, 213, 0.1);
  color: var(--blue-deep);
}
.job-tag.hot { background: rgba(224, 33, 138, 0.1); color: var(--magenta); }
.job-card h3 { font-size: 1.35rem; }
.job-card .job-pay {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--magenta);
  font-size: 1.05rem;
}
.job-card p { color: var(--ink-soft); font-size: 0.97rem; flex: 1; }
.job-card ul { list-style: none; display: grid; gap: 8px; }
.job-card ul li { display: flex; gap: 10px; align-items: baseline; font-size: 0.95rem; color: var(--ink-soft); }
.job-card ul li::before { content: "✓"; color: var(--whatsapp); font-weight: 800; }
.job-card .btn { align-self: flex-start; }

/* ---------- Stappen ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
  counter-reset: step;
}
.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(224, 33, 138, 0.3);
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 44px auto 0; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 2px solid #eceef7;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--magenta);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Sollicitatieformulier ---------- */
.apply { background: var(--grad-dark); color: #fff; }
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.apply .section-intro { color: rgba(255, 255, 255, 0.78); }
.apply-points { list-style: none; display: grid; gap: 14px; margin-top: 28px; }
.apply-points li { display: flex; gap: 12px; align-items: baseline; color: rgba(255,255,255,0.85); }
.apply-points li::before { content: "✓"; color: var(--whatsapp); font-weight: 800; }

.apply-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-lift);
  color: var(--ink);
}
.apply-form h3 { font-size: 1.3rem; margin-bottom: 6px; }
.apply-form .form-sub { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e3e6f2;
  border-radius: 12px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--magenta);
}
.apply-form .btn { width: 100%; margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }

/* ---------- Multi-step sollicitatieformulier ---------- */
.msf {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 32px 28px;
  box-shadow: var(--shadow-lift);
  color: var(--ink);
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.msf-progress { height: 6px; border-radius: 999px; background: #eceef7; overflow: hidden; margin-bottom: 26px; }
.msf-progress i { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--grad-brand); transition: width 0.45s cubic-bezier(0.22,0.61,0.36,1); }

.msf-step { display: none; flex: 1; flex-direction: column; animation: msf-in 0.45s cubic-bezier(0.22,0.61,0.36,1) both; }
.msf-step.is-active { display: flex; }
@keyframes msf-in { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }

.msf-q { font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--magenta); margin-bottom: 10px; }
.msf-step h3 { font-size: clamp(1.4rem, 3.4vw, 1.9rem); margin-bottom: 6px; }
.msf-sub { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 22px; }

.msf-choices { display: grid; gap: 12px; }
.msf-choice {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  background: #fff; border: 2px solid #e7eaf4; border-radius: 16px;
  padding: 16px 18px; cursor: pointer;
  font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy-800);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.msf-choice .e { font-size: 1.5rem; }
.msf-choice:hover { transform: translateY(-2px); border-color: var(--magenta); box-shadow: 0 12px 28px rgba(224,33,138,0.16); }
.msf-choice.picked { background: var(--grad-brand); border-color: transparent; color: #fff; box-shadow: 0 14px 32px rgba(224,33,138,0.4); }

.msf-input {
  width: 100%; padding: 16px 18px; border: 2px solid #e3e6f2; border-radius: 14px;
  font-family: "Nunito", sans-serif; font-size: 1.15rem; color: var(--ink); background: #fff;
  transition: border-color 0.15s ease;
}
.msf-input:focus { outline: none; border-color: var(--magenta); }
.msf-input.shake { border-color: #e0218a; animation: msf-shake 0.4s; }
@keyframes msf-shake { 0%,100% { transform: translateX(0); } 20%,60% { transform: translateX(-6px); } 40%,80% { transform: translateX(6px); } }

.msf-nav { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 22px; }
.msf-nav .btn { margin-left: auto; }
.msf-back, .msf-skip {
  background: none; border: none; cursor: pointer;
  font-family: "Quicksand", sans-serif; font-weight: 700; font-size: 0.92rem; color: var(--ink-soft);
  padding: 8px 4px;
}
.msf-back:hover, .msf-skip:hover { color: var(--magenta); }
.msf-step[data-step="0"] .msf-nav { display: none; }

.msf-done { align-items: center; text-align: center; justify-content: center; }
.msf-check {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; font-size: 2.2rem; margin: 0 auto 18px;
  box-shadow: 0 14px 34px rgba(224,33,138,0.4);
  animation: msf-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes msf-pop { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.msf-done .btn { margin-top: 18px; }
/* btn-ghost is wit-op-donker; op de witte bedankt-kaart maken we 'm zichtbaar (magenta-outline) */
.msf-done .btn-ghost {
  background: #fff;
  color: var(--magenta);
  border: 2px solid rgba(224, 33, 138, 0.4);
}
.msf-done .btn-ghost:hover { background: rgba(224, 33, 138, 0.06); border-color: var(--magenta); }

.msf .form-note { margin-top: 18px; }

/* ---------- Focus-modus: zoom in op het formulier, vervaag de rest ---------- */
.msf-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 30, 0.5);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  z-index: 96;
  pointer-events: none;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
body.msf-focused .msf-backdrop { opacity: 1; visibility: visible; }
/* het formulier boven de waas tillen + rustig naar het midden glijden (transform via JS) */
.msf { transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1), box-shadow 0.8s ease; will-change: transform; }
body.msf-focused .msf {
  position: relative;
  z-index: 97;
  box-shadow: 0 36px 90px rgba(8, 11, 30, 0.5);
}
/* concurrerende CTA's wegfaden zodat de focus echt op het formulier ligt */
body.msf-focused .wc-float,
body.msf-focused .mobile-cta {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  .msf-step, .msf-check { animation: none; }
  .msf-progress i { transition: none; }
  .msf, .msf-backdrop { transition: none; }
  body.msf-focused .msf { transform: none; }
}

/* ---------- CTA-banner ---------- */
.cta-banner {
  background: var(--grad-brand);
  border-radius: var(--radius);
  padding: 56px 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(224, 33, 138, 0.35);
}
.cta-banner h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-bottom: 8px; }
.cta-banner p { color: rgba(255, 255, 255, 0.88); }
.cta-banner .btn-primary { background: #fff; color: var(--magenta); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }

/* ---------- Page hero (subpagina's) ---------- */
.page-hero {
  background: var(--grad-dark);
  color: #fff;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 33, 138, 0.25), transparent 65%);
  top: -160px; right: -100px;
}
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-bottom: 14px; position: relative; }
.page-hero p { color: rgba(255, 255, 255, 0.8); max-width: 620px; font-size: 1.08rem; position: relative; }

/* ---------- Split-secties ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse > .split-img { order: 2; }
.split-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-bottom: 14px; }
.split p { color: var(--ink-soft); margin-bottom: 14px; }
.split ul { list-style: none; display: grid; gap: 10px; margin-top: 8px; }
.split ul li { display: flex; gap: 12px; align-items: baseline; }
.split ul li::before { content: "✓"; color: var(--whatsapp); font-weight: 800; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 110px;   /* extra ruimte voor sticky mobiele balk */
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
footer ul { list-style: none; display: grid; gap: 10px; }
footer a { color: rgba(255, 255, 255, 0.7); }
footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Zwevende waarde-check-knop ---------- */
.wc-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(224, 33, 138, 0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: wc-float-bob 3s ease-in-out infinite;
}
.wc-float:hover { transform: scale(1.1); box-shadow: 0 14px 36px rgba(224, 33, 138, 0.6); }
.wc-float span { font-size: 1.7rem; line-height: 1; }
@keyframes wc-float-bob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -6px; }
}

/* ---------- Sticky mobiele CTA-balk ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: rgba(14, 20, 48, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
}
.mobile-cta .btn { flex: 1; padding: 13px 10px; font-size: 0.93rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  section { padding: 48px 0; }
  .hero-grid, .apply-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > .split-img { order: 0; }
  .cards-3, .earnings-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .earn-card.featured { transform: none; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px;
    gap: 20px;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 680px) {
  section { padding: 40px 0; }
  .cards-3, .earnings-grid, .reviews-grid, .jobs-grid, .steps { grid-template-columns: 1fr; }
  /* video's blijven 2-koloms op mobiel, scheelt bijna een heel scherm hoogte */
  .stories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .statbar .container { grid-template-columns: 1fr 1fr; gap: 26px 14px; }
  .form-row { grid-template-columns: 1fr; }

  /* strakkere verticale ritmiek: minder lucht per sectie */
  .cards-3, .earnings-grid, .reviews-grid, .jobs-grid,
  .steps, .stories-grid, .faq-list { margin-top: 26px; gap: 16px; }
  .card .card-body { padding: 20px; }
  .card img { aspect-ratio: 16 / 9; }
  .job-card { padding: 24px; }
  .step { padding: 24px 22px; }
  .inline-cta { margin-top: 28px; }

  /* hero korter + geen dubbele WhatsApp-knop (de sticky balk dekt 'm al) */
  .hero { padding-top: 40px; }
  .hero-cta { gap: 10px; margin-bottom: 26px; }
  .hero-cta .btn { flex: 1; }
  .hero-cta .btn-whatsapp { display: none; }
  .hero-usps { gap: 10px 20px; padding-bottom: 32px; }
  .hero-visual { padding-bottom: 36px; }

  .float-card.top { top: -14px; right: 4px; }
  .float-card.bottom { bottom: 30px; left: 4px; }
  .cta-banner { padding: 40px 28px; }

  .mobile-cta { display: flex; }
  .wc-float { display: none; }   /* op mobiel vervangt de balk de zwevende knop */
}

/* ============================================================
   Flair: scroll-effecten & micro-interacties (effects.js)
   ============================================================ */

/* ---------- Inline CTA's tussen secties ---------- */
.cta-inline { margin-top: 28px; }
.inline-cta {
  display: grid;
  justify-items: center;
  gap: 13px;
  text-align: center;
  margin-top: 44px;
}
.inline-cta p {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  margin: 0;
  color: inherit;
}

/* ---------- Scroll-voortgangsbalk ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
}

.nav { transition: box-shadow 0.25s ease, background 0.25s ease; }
.nav.scrolled {
  background: rgba(14, 20, 48, 0.98);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* ---------- Scroll-reveal ----------
   `translate`/`opacity` i.p.v. `transform`, zodat bestaande
   transforms (featured-kaart, tilt, hovers) niet botsen. */
.reveal-pending {
  opacity: 0;
  translate: 0 30px;
  transition:
    opacity 0.7s ease var(--reveal-delay, 0ms),
    translate 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms);
}
.reveal-pending.revealed { opacity: 1; translate: 0 0; }

/* Boven de vouw: geen scroll-trigger, wel een zachte entree bij laden */
.reveal-instant {
  animation: reveal-in 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes reveal-in {
  from { opacity: 0; translate: 0 16px; }
  to   { opacity: 1; translate: 0 0; }
}

/* ---------- Gradient-ticker ---------- */
.ticker {
  background: var(--grad-brand);
  color: #fff;
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: ticker-scroll 26s linear infinite;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}
.ticker-track span { display: inline-flex; align-items: center; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Zwevende gradient-blobs ---------- */
.hero::before, .page-hero::before {
  animation: blob-drift 14s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 123, 213, 0.22), transparent 65%);
  bottom: -160px; left: -140px;
  pointer-events: none;
  animation: blob-drift 18s ease-in-out infinite alternate-reverse;
}
.earnings { position: relative; overflow: hidden; }
.earnings::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 196, 238, 0.14), transparent 65%);
  top: -200px; left: -180px;
  pointer-events: none;
  animation: blob-drift 16s ease-in-out infinite alternate;
}
.earnings .container { position: relative; }
@keyframes blob-drift {
  from { translate: 0 0; scale: 1; }
  to   { translate: 50px 36px; scale: 1.12; }
}

/* ---------- Dobberende hero-kaartjes ---------- */
.float-card.top { animation: bob 5.5s ease-in-out infinite; }
.float-card.bottom { animation: bob 6.5s ease-in-out 1.2s infinite; }
@keyframes bob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -9px; }
}

/* ---------- Levend gradient-accent in de hero-titel ---------- */
.hero h1 .accent {
  background-size: 220% 220%;
  animation: gradient-pan 6s ease-in-out infinite alternate;
}
@keyframes gradient-pan {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

/* ---------- 3D-tilt ---------- */
.tiltable { transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease; }

/* ---------- Reduced motion: alles uit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-pending { opacity: 1; translate: none; transition: none; }
  .reveal-instant, .ticker-track, .float-card.top, .float-card.bottom,
  .hero::before, .hero::after, .page-hero::before, .earnings::before,
  .hero h1 .accent, .roadmap::before, .wc-float { animation: none; }
}
