/* =========================================
   Future Fit — design system
   ========================================= */
:root {
  --color-primary: #00AF66;
  --color-primary-dark: #008f53;
  --color-heading: #1C244B;
  --color-body: #324A6D;
  --color-muted: #7A7A7A;
  --color-light: #F3F5F8;
  --color-white: #FFFFFF;
  --color-border: #E7ECF2;

  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 30px;

  --shadow-soft: 0 10px 30px -20px rgba(28, 36, 75, 0.18);
  --shadow-card: 0 12px 28px -22px rgba(28, 36, 75, 0.20);

  --t-fast: 160ms;
  --t-base: 240ms;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 300;
  color: var(--color-body);
  line-height: 1.5;
  font-size: 16px;
  background: var(--color-white);
}
img, svg, picture, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: var(--color-primary); text-decoration: none; }
button { cursor: pointer; font: inherit; color: inherit; background: none; border: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-heading); color: #fff;
  padding: .75rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 0; }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--color-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
h1 { font-size: 42px; font-weight: 600; line-height: 1.25; }
h2 { font-size: 34px; font-weight: 600; }
h3 { font-size: 22px; font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 28px; }
  h2 { font-size: 26px; }
  h3 { font-size: 18px; }
  body { font-size: 14px; }
}

p { margin: 0; }
p + p { margin-top: 1em; }

.text-green { color: var(--color-primary); }

.eyebrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0;
  margin-bottom: 16px;
}

.muted { color: var(--color-muted); }

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-left: 3%;
  padding-right: 3%;
}
@media (max-width: 1024px) { .container { padding-left: 5%; padding-right: 5%; } }
@media (max-width: 768px)  { .container { padding-left: 6%; padding-right: 6%; } }

.section { padding: 96px 0; }
.section-white { background: var(--color-white); }
.section-light { background: var(--color-light); }
.section-dark  { background: var(--color-heading); color: var(--color-white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.78); }

.section-narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.section-centered { text-align: center; }

@media (max-width: 1024px) { .section { padding: 72px 0; } }
@media (max-width: 768px)  { .section { padding: 56px 0; } }

.eyebrow-center { text-align: center; display: block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: transform var(--t-fast) ease, background var(--t-base) ease, color var(--t-base) ease, border-color var(--t-base) ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  color: var(--color-white);
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: transparent;
  padding-left: 16px;
  padding-right: 16px;
}
.btn-secondary:hover {
  background: transparent;
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}
.btn-on-dark {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-on-dark:hover { background: var(--color-primary-dark); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .btn-row { justify-content: center; gap: 12px; }
  .btn-primary { width: 100%; max-width: 320px; }
}

/* Header */
.site-header {
  background: var(--color-white);
}
.site-header__inner {
  min-height: 10vh;
  padding-block: 14px;
  padding-left: 3%; padding-right: 3%;
  display: flex; align-items: center; gap: 16px;
}
@media (max-width: 1024px) { .site-header__inner { padding-left: 5%; padding-right: 5%; } }

.brand {
  display: inline-flex; flex-direction: column;
  line-height: 1.1; color: var(--color-heading);
  margin-right: auto; text-decoration: none;
}
.brand__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 22px;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.brand__tagline { font-size: 12px; color: var(--color-muted); font-weight: 400; }

.primary-nav { display: none; }
.primary-nav ul { display: flex; gap: 28px; align-items: center; }
.primary-nav a {
  font-size: 14px; font-weight: 600;
  color: var(--color-muted);
  transition: color var(--t-fast) ease;
}
.primary-nav a:hover { color: var(--color-heading); }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

.header-cta { display: none; }

@media (min-width: 1024px) {
  .primary-nav { display: block; margin-right: 24px; }
  .header-cta { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 40px; height: 40px; border-radius: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-heading); transition: transform var(--t-fast) ease; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.primary-nav.is-open {
  display: block;
  position: absolute; inset: 100% 0 auto 0;
  background: #fff;
  padding: 16px 5% 24px; box-shadow: var(--shadow-soft);
  z-index: 50;
}
.primary-nav.is-open ul { flex-direction: column; align-items: stretch; gap: 12px; }
.primary-nav.is-open a { padding: 8px 0; display: block; font-size: 16px; }

/* Hero */
.hero { padding: 64px 0 80px; }
.hero__grid {
  display: grid; gap: 40px; align-items: center;
}
@media (min-width: 768px) { .hero { min-height: 90vh; padding-block: 80px; } .hero__grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.hero__copy { padding-right: 4%; }
@media (min-width: 1024px) { .hero__copy { padding-right: 6%; } }

.hero__copy h1 { margin-bottom: 20px; }
.hero__copy .hero__sub { font-size: 17px; color: var(--color-body); max-width: 520px; }
.hero__copy .hero__sub p + p { margin-top: 12px; }
.hero__deck {
  margin: 20px 0 16px; max-width: 520px;
  font-weight: 600; font-size: 18px; color: var(--color-heading); line-height: 1.45;
}
.hero__deck span { display: block; }

@media (max-width: 768px) {
  .hero { padding: 48px 0 56px; }
  .hero__copy { padding-right: 0; text-align: center; }
  .hero__copy h1 br { display: none; }
  .hero__copy .hero__sub,
  .hero__deck { margin-left: auto; margin-right: auto; }
}

/* Hero visual composition */
.hero__visual {
  position: relative;
  min-height: 360px;
}
.hero__media {
  position: relative;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  width: 100%;
}
.hero__media--big   { width: 78%; margin-left: auto; }
.hero__media--small {
  position: absolute; left: 0; bottom: 12%;
  width: 48%; aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}
.hero__media img, .hero__media svg { width: 100%; height: 100%; object-fit: cover; }

.hero__chip {
  position: absolute;
  background: #fff; border-radius: 14px;
  padding: 10px 14px; box-shadow: var(--shadow-card);
  font-size: 14px; font-weight: 600; color: var(--color-heading);
  display: inline-flex; gap: 8px; align-items: center;
}
.hero__chip--a { top: 8%; left: 4%; }
.hero__chip--b { bottom: 4%; right: 6%; }
.hero__chip svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }

@media (max-width: 768px) {
  .hero__visual { min-height: 280px; }
  .hero__media--big { width: 80%; margin-inline: auto; }
  .hero__media--small { width: 50%; left: auto; right: 0; bottom: 0; }
}

/* Rotating word */
.rotating-word {
  display: inline-block; color: var(--color-primary);
  transition: opacity var(--t-base) ease, transform var(--t-base) ease;
}
.rotating-word.is-leaving { opacity: 0; transform: translateY(-8px); }
.rotating-word.is-entering { opacity: 0; transform: translateY(8px); }

/* Section intros */
.section__intro { margin-bottom: 56px; max-width: 720px; margin-inline: auto; }
.section__intro p { margin-top: 12px; color: var(--color-body); font-size: 17px; }
@media (max-width: 768px) { .section__intro { margin-bottom: 36px; } }

/* Split layout (text + image alternating) */
.split-grid {
  display: grid; gap: 40px; align-items: center;
}
@media (min-width: 768px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split-grid--reverse .split-grid__media { order: 2; }
}
.split-grid__media {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); aspect-ratio: 4 / 3;
}
.split-grid__media img, .split-grid__media svg { width: 100%; height: 100%; object-fit: cover; }
.split-grid__copy h2 { margin-bottom: 16px; }
.split-grid__copy .body p + p { margin-top: 12px; }
.split-grid__copy .body { font-size: 16px; color: var(--color-body); max-width: 56ch; }

/* Cards */
.card {
  background: var(--color-light);
  border-radius: var(--radius-sm);
  padding: 28px;
  height: 100%;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform var(--t-base) ease, box-shadow var(--t-base) ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: #fff; border-radius: 12px;
  color: var(--color-primary);
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 22px; font-weight: 600; line-height: 1.25; color: var(--color-heading); }
.card__body  { font-size: 16px; font-weight: 300; color: var(--color-body); line-height: 1.55; }
@media (max-width: 768px) {
  .card { padding: 22px; }
  .card__icon { width: 42px; height: 42px; }
  .card__icon svg { width: 22px; height: 22px; }
  .card__title { font-size: 18px; }
  .card__body { font-size: 14px; }
}

.cards-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .cards-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .cards-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .cards-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 12px; max-width: 620px; }
.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--color-body);
  line-height: 1.55;
  font-size: 16px;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0, 175, 102, 0.14);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300AF66' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12.5 10 17 19 7'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 14px;
}
.check-list--dense li { font-size: 15px; }

/* Plain list — geen marker, centered ondersteuning. Voor negatieve / neutrale opsommingen waar groene vink misplaatst is. */
.plain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px auto;
  max-width: 480px;
}
.plain-list li {
  list-style: none;
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.55;
}

/* Subtle callout-card voor probleem-signalen / korte highlights */
.signal-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 24px auto;
  max-width: 520px;
  text-align: left;
}
.signal-card__intro {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.signal-card ul {
  display: grid;
  gap: 10px;
}
.signal-card li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  color: var(--color-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.signal-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 10px; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .signal-card { padding: 20px 22px; }
  .signal-card li { font-size: 15px; }
}

/* Steps / proces */
.steps {
  display: grid; gap: 32px;
}
@media (min-width: 768px) { .steps--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .steps--4 { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1024px) { .steps--4 { grid-template-columns: repeat(4, 1fr); } }
.step { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  font-weight: 700; font-size: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px -10px rgba(0,175,102,0.45);
}
.step__title { font-size: 20px; font-weight: 600; color: var(--color-heading); }
.step__body  { font-size: 15px; color: var(--color-body); line-height: 1.6; max-width: 30ch; }
.steps-cta { text-align: center; margin-top: 40px; display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap; }

/* Expeditie route (medewerker) */
.route {
  display: grid; gap: 24px; counter-reset: route;
}
@media (min-width: 768px) { .route { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .route { grid-template-columns: repeat(5, 1fr); } }
.route__item {
  background: #fff; border-radius: var(--radius-sm);
  padding: 24px; box-shadow: var(--shadow-card);
  border-top: 4px solid var(--color-primary);
  display: flex; flex-direction: column; gap: 6px;
}
.route__num {
  font-weight: 700; color: var(--color-primary);
  font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
}
.route__title { font-size: 18px; font-weight: 600; color: var(--color-heading); margin-bottom: 4px; }
.route__body  { font-size: 14px; color: var(--color-body); line-height: 1.55; }
.route__guide {
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
}

/* Prijskaart */
.price-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 48px 40px; text-align: center;
  box-shadow: var(--shadow-soft); border: 1px solid var(--color-border);
  max-width: 520px; margin: 0 auto;
}
.price-card__amount {
  font-size: 64px; font-weight: 700; color: var(--color-heading);
  letter-spacing: -0.04em; line-height: 1;
}
.price-card__amount .text-green { color: var(--color-primary); }
.price-card__unit { color: var(--color-muted); font-size: 16px; margin-top: 8px; font-weight: 500; line-height: 1.4; }
.price-card__body { color: var(--color-body); font-size: 16px; margin-top: 16px; }

@media (max-width: 768px) {
  .price-card { padding: 32px 24px; }
  .price-card__amount { font-size: 48px; }
}

/* CTA-block */
.cta-block {
  background: var(--color-heading);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  position: relative; overflow: hidden;
  margin: 96px auto;
  max-width: var(--container);
}
.cta-block::before {
  content: ""; position: absolute; inset: auto -10% -50% auto;
  width: 60%; height: 80%;
  background: radial-gradient(closest-side, rgba(0,175,102,0.22), transparent 70%);
  pointer-events: none;
}
.cta-block__eyebrow {
  color: var(--color-primary);
  text-transform: none; letter-spacing: 0;
  margin-bottom: 16px; font-size: 16px; font-weight: 500;
}
.cta-block h2 { color: #fff; max-width: 22ch; margin: 0 auto 20px; }
.cta-block h2 .text-green { color: var(--color-primary); }
.cta-block__body { color: rgba(255,255,255,0.78); max-width: 56ch; margin: 0 auto; font-size: 17px; }
.cta-block .btn-row { justify-content: center; }
.cta-block .btn-secondary {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.30);
}
.cta-block .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

@media (max-width: 768px) {
  .cta-block { padding: 36px 24px; margin: 56px 6%; border-radius: 20px; }
}

/* Hero stat chips (kleine floating badges) */
.stat-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; padding: 8px 14px;
  border-radius: 999px; box-shadow: var(--shadow-card);
  font-size: 13px; font-weight: 600; color: var(--color-heading);
}

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  margin-top: 80px;
  padding-top: 64px; padding-bottom: 0;
  color: var(--color-body); font-size: 15px; line-height: 1.6;
}
.site-footer h3 { color: var(--color-heading); font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.site-footer a { color: var(--color-body); }
.site-footer a:hover { color: var(--color-primary); }
.site-footer__columns {
  display: grid; gap: 32px; padding-bottom: 48px;
}
@media (min-width: 768px) { .site-footer__columns { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.site-footer__brand p { max-width: 32ch; color: var(--color-body); margin-bottom: 16px; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer__socials { display: flex; gap: 16px; }
.site-footer__socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-heading);
}
.site-footer__socials svg { width: 22px; height: 22px; }
.site-footer__bottom {
  background: var(--color-heading); color: rgba(255,255,255,0.7);
  margin-top: 0;
}
.site-footer__bottom .container {
  padding-block: 16px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.site-footer__bottom p { font-size: 13px; }
.site-footer__bottom ul { display: flex; gap: 24px; }
.site-footer__bottom a { color: rgba(255,255,255,0.85); font-size: 13px; }
.site-footer__bottom a:hover { color: #fff; }

/* Highlight quote-card — voor cijfers/case-blokken die eruit moeten springen */
.highlight-card {
  background: var(--color-light);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 32px 36px;
  margin: 32px auto;
  max-width: 720px;
  font-size: 17px;
  color: var(--color-heading);
  font-weight: 500;
  line-height: 1.6;
}
.highlight-card p { margin: 0; }
.highlight-card p + p { margin-top: 10px; }
@media (max-width: 768px) {
  .highlight-card { padding: 24px 22px; font-size: 16px; }
}

/* Stats-trio — 3 social-proof getallen */
.stats-trio {
  display: grid;
  gap: 20px;
  margin: 40px auto;
  max-width: 880px;
}
@media (min-width: 768px) { .stats-trio { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.stat-card {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid var(--color-primary);
  box-shadow: var(--shadow-soft);
}
.stat-card__value {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-card__label {
  margin-top: 10px;
  color: var(--color-body);
  font-weight: 500;
  font-size: 15px;
}

/* Guide-cards — 4 topsporters */
.guide-card {
  background: var(--color-light);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  height: 100%;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform var(--t-base) ease, box-shadow var(--t-base) ease;
}
.guide-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.guide-card__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.25;
}
.guide-card__prestation {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 2px;
}
.guide-card__theme {
  margin-top: 10px;
  color: var(--color-body);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .guide-card { padding: 24px 20px; }
  .guide-card__name { font-size: 18px; }
}

/* FAQ accordion */
.faq-section {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__trigger {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-heading);
  background: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.faq-item__trigger:hover { color: var(--color-primary); }
.faq-item__icon {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 24px; font-weight: 300; color: var(--color-primary);
  transition: transform var(--t-fast) ease;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  padding: 0 4px 22px;
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.7;
}
.faq-item__answer p + p { margin-top: 12px; }
@media (max-width: 768px) {
  .faq-item__trigger { font-size: 16px; padding: 18px 0; }
}

/* Pullquote */
.pullquote {
  margin: 0; padding: 28px 32px;
  border-left: 4px solid var(--color-primary);
  background: var(--color-light);
  border-radius: 0 12px 12px 0;
  font-style: italic; font-size: 20px; color: var(--color-heading);
  line-height: 1.5;
}
.pullquote cite { display: block; margin-top: 12px; font-style: normal; font-size: 14px; color: var(--color-muted); }

/* Anim helpers */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.fade-in { animation: fadeIn .6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Cookie banner */
.cookie-banner {
  position: fixed; inset: auto 1rem 1rem 1rem; z-index: 200;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-card);
}
@media (min-width: 768px) {
  .cookie-banner { inset: auto 2rem 1.5rem auto; max-width: 460px; }
}
.cookie-banner__inner { padding: 20px; }
.cookie-banner__inner p { font-size: 14px; color: var(--color-body); margin-bottom: 12px; }
.cookie-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cookie-banner .btn { padding: 8px 16px; font-size: 14px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
