/* ==========================================================================
   PELVIC VITAAL — design system v3
   Clinical-tech brand aesthetic, matched to the official flyer: bright
   blue-to-white gradients, vivid azure + deep navy, bold geometric sans
   (Poppins) for display type, crisp white surfaces instead of warm paper.
   Circular ring-icon badges echo the flyer's symptom icons. Caveat script
   kept as the single handwritten accent ("Er is vaak iets aan te doen."),
   exactly as used on the flyer itself.
   ========================================================================== */

:root {
  /* palette — sampled from the official Pelvic Vitaal flyer */
  --ink: #1f2937;          /* charcoal — primary text */
  --navy: #0e4a8a;         /* brand navy-blue (headings, buttons) */
  --navy-deep: #082c54;    /* deep navy — dark bands / badge circle */
  --teal: #0996c8;         /* logo swoosh blue */
  --teal-deep: #0c7fb0;    /* logo deep blue */
  --teal-soft: #e7f2fb;    /* icon-circle tint */
  --cream: #eef6fc;        /* light blue-white wash (replaces warm paper) */
  --cream-deep: #dcedf8;
  --white: #ffffff;
  --muted: #5b6b7a;
  --line: #dce7f0;
  --line-dark: rgba(255,255,255,.14);
  --gold: #e2a33c;         /* review stars */
  --wa: #23c25f;
  --rose: #dd93a6;         /* vrouwen-kaart */
  --rose-deep: #b85c73;

  /* type */
  --serif: "Poppins", "Manrope", "Segoe UI", Helvetica, Arial, sans-serif; /* bold geometric display, matches the logotype/flyer headings */
  --sans: "Manrope", "Segoe UI", Helvetica, Arial, sans-serif;
  --script: "Caveat", "Segoe Script", cursive;

  /* misc */
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 12px;
  --shadow-lg: 0 34px 70px -30px rgba(14, 74, 138, .32);
  --shadow-md: 0 18px 44px -22px rgba(14, 74, 138, .26);
  --shadow-sm: 0 10px 26px -14px rgba(14, 74, 138, .2);
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .65, .2, 1);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 700; color: var(--ink); margin: 0 0 .45em; letter-spacing: -.01em; }
h4, h5 { font-family: var(--sans); font-weight: 800; color: var(--ink); margin: 0 0 .4em; }
p { margin: 0 0 1em; color: var(--muted); }
strong { color: var(--ink); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
::selection { background: var(--teal); color: #fff; }

.script { font-family: var(--script); font-weight: 600; letter-spacing: .01em; }

/* ---------- sections ---------- */
.sec { padding: 116px 0; position: relative; }
.sec--cream { background: linear-gradient(155deg, var(--white) 0%, var(--cream) 55%, var(--cream-deep) 100%); }
.sec--navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); }
.sec--navy h2, .sec--navy h3 { color: #fff; }
.sec--navy p { color: rgba(255,255,255,.72); }
.sec--flush-b { padding-bottom: 0; }

/* numbered section heads */
.shead { max-width: 720px; margin-bottom: 60px; }
.shead--center { margin-left: auto; margin-right: auto; text-align: center; }
.shead__top { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.shead--center .shead__top { justify-content: center; }
.shead__num { font-family: var(--serif); font-style: normal; font-weight: 800; font-size: 1.05rem; color: var(--teal-deep); }
.shead__kicker { font-size: .74rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-deep); }
.sec--navy .shead__kicker { color: var(--teal); }
.shead h2 { font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.12; }
.shead p { font-size: 1.08rem; }
.shead em, h1 em, h2 em { font-style: normal; font-weight: 800; color: var(--teal-deep); }
.sec--navy .shead em { color: var(--teal); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-weight: 800; font-size: .95rem; letter-spacing: .01em;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--teal-deep); box-shadow: 0 18px 40px -14px rgba(21,146,196,.5); }
.btn--ghost { border-color: rgba(11,37,48,.22); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--teal-deep); color: var(--teal-deep); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { box-shadow: 0 16px 36px -14px rgba(0,0,0,.4); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 12px 30px -12px rgba(35,194,95,.55); }
.btn--wa:hover { box-shadow: 0 18px 42px -12px rgba(35,194,95,.65); }
.btn--sm { padding: 11px 20px; font-size: .85rem; }

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 700;
  background: #fff;
  border-bottom: 1px solid rgba(14,74,138,.08);
  transition: box-shadow .3s;
}
/* NB: geen backdrop-filter/transform op .hdr — dat maakt hem containing block
   voor het fixed mobiele menu en klemt dat menu in de headerhoogte. */
.hdr.scrolled { box-shadow: 0 10px 30px -22px rgba(11,37,48,.45); }
.hdr__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 28px; max-width: var(--maxw); margin: 0 auto; }
.hdr__logo img { height: 62px; width: auto; transition: height .3s var(--ease); }
.hdr.scrolled .hdr__logo img { height: 52px; }
.hdr__links { display: flex; align-items: center; gap: 32px; font-weight: 700; font-size: .92rem; }
.hdr__links a { position: relative; padding: 6px 0; color: var(--ink); }
.hdr__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--teal-deep); transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.hdr__links a:hover::after, .hdr__links a.active::after { transform: scaleX(1); transform-origin: left; }
.hdr__links a.active { color: var(--teal-deep); }
.hdr__right { display: flex; align-items: center; gap: 12px; }
.hdr__burger { display: none; background: none; border: 0; padding: 6px; }
.hdr__progress { position: absolute; left: 0; bottom: -1px; height: 2.5px; width: 0%; background: linear-gradient(90deg, var(--teal), var(--teal-deep)); z-index: 2; }

/* language switch (markup/classes gedeeld met i18n.js) */
.lang-switch { position: relative; }
.lang-switch__btn {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid rgba(11,37,48,.14);
  border-radius: 999px; padding: 9px 14px; font-size: .85rem; font-weight: 800; color: var(--ink);
}
.lang-switch__label { letter-spacing: .04em; }
.lang-switch__btn span[data-current-flag] svg { width: 18px; height: 12px; display: block; border-radius: 2px; box-shadow: 0 0 0 1px rgba(11,37,48,.12); }
.lang-switch__menu {
  position: absolute; right: 0; top: calc(100% + 10px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 6px; display: none; min-width: 175px;
  max-height: 300px; overflow-y: auto;
}
.lang-switch.open .lang-switch__menu { display: block; }
.lang-switch__menu button {
  display: flex; width: 100%; align-items: center; gap: 10px;
  padding: 10px 12px; border: 0; background: transparent; border-radius: 9px;
  font-size: .88rem; font-weight: 700; color: var(--ink); text-align: left;
}
.lang-switch__flag { flex: none; display: flex; align-items: center; }
.lang-switch__flag svg { width: 20px; height: 14px; display: block; border-radius: 2px; box-shadow: 0 0 0 1px rgba(11,37,48,.12); }
.lang-switch__menu button:hover { background: var(--teal-soft); }
.lang-switch__menu button[aria-current="true"] { color: var(--teal-deep); }

@media (max-width: 980px) {
  .hdr__links {
    position: fixed; inset: 94px 0 0 0; background: var(--cream);
    flex-direction: column; justify-content: flex-start; align-items: flex-start;
    padding: 40px 32px; gap: 26px; font-size: 1.2rem;
    transform: translateX(102%); transition: transform .38s var(--ease);
    overflow-y: auto; z-index: 650;
  }
  .hdr__links.open { transform: translateX(0); }
  .hdr__burger { display: block; }
  .hdr__cta-desktop { display: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: linear-gradient(135deg, var(--white) 0%, var(--cream) 45%, #cfe6f7 100%); overflow: hidden; padding: 88px 0 96px; }
.hero__medical {
  position: absolute; top: -10px; right: 30px; z-index: 1; pointer-events: none;
  width: 600px; height: 1030px;
  background: url("../assets/hero-pelvis.webp") no-repeat top center / contain;
  opacity: .5;
}
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid rgba(11,37,48,.1); border-radius: 999px;
  padding: 8px 16px; font-size: .78rem; font-weight: 800; letter-spacing: .06em;
  color: var(--navy); margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.hero h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.4rem);
  line-height: 1.04; margin-bottom: 18px; font-weight: 600;
}
.hero__script { font-family: var(--script); font-size: clamp(1.4rem, 2.2vw, 1.8rem); color: var(--teal-deep); margin: 0 0 18px; }
.hero__sub { font-size: 1.14rem; max-width: 500px; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__trust { display: flex; gap: 10px 22px; flex-wrap: wrap; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 800; color: var(--navy); }
.hero__trust svg { width: 17px; height: 17px; color: var(--teal-deep); flex: none; }

/* word-reveal animatie op de titel */
.w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; padding-right: .08em; margin-right: -.08em; }
.w i { display: inline-block; font-style: inherit; transform: translateY(115%); animation: wUp .9s var(--ease) forwards; animation-delay: calc(var(--i) * .085s + .12s); }
@keyframes wUp { to { transform: translateY(0); } }
.fade-in-late { opacity: 0; animation: fadeUp .9s var(--ease) forwards; }
.d1 { animation-delay: .55s } .d2 { animation-delay: .7s } .d3 { animation-delay: .85s } .d4 { animation-delay: 1s }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* arch frames — echo van de crescent in het logo */
.arch { position: relative; border-radius: 999px 999px var(--r-lg) var(--r-lg); overflow: hidden; }
.arch--dark { background: radial-gradient(120% 90% at 50% 20%, #123f74 0%, #051b36 70%); box-shadow: var(--shadow-lg); }
.arch--frame { border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-md); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.hero__media { position: relative; }
.hero__media .arch { aspect-ratio: 4 / 4.7; }
/* chair-white.jpg heeft een zwarte studio-achtergrond: met cover vult hij de
   arch naadloos (zwart loopt over in de donkere gradient), geen zichtbare rand */
.hero__media .arch img { object-fit: cover; object-position: center 62%; }

/* zwevende chips bij hero-beeld */
.chip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 999px; padding: 10px 16px;
  font-size: .8rem; font-weight: 800; color: var(--navy);
  box-shadow: var(--shadow-md); border: 1px solid rgba(11,37,48,.06);
}
.chip svg { width: 16px; height: 16px; color: var(--teal-deep); }
.chip--1 { top: 12%; left: -30px; }
.chip--2 { top: 44%; right: -26px; }
.chip--3 { bottom: 14%; left: -14px; }
.hero__badge {
  position: absolute; bottom: -24px; right: 8%;
  background: var(--navy); color: #fff; border-radius: 18px; padding: 16px 22px;
  box-shadow: var(--shadow-lg); z-index: 3;
}
.hero__badge strong { display: block; font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; }
.hero__badge span { font-size: .76rem; opacity: .8; }

/* decoratieve crescents */
.crescent { position: absolute; border-radius: 50%; border: 2px solid rgba(12,127,176,.18); pointer-events: none; }
.crescent--a { width: 420px; height: 420px; top: -140px; right: -120px; border-width: 2px; }
.crescent--b { width: 720px; height: 720px; bottom: -420px; left: -260px; border-color: rgba(12,127,176,.11); }

/* ---------- marquee band ---------- */
.marquee { background: linear-gradient(90deg, var(--teal), var(--navy)); color: #fff; overflow: hidden; padding: 16px 0; position: relative; z-index: 2; }
.marquee__inner { display: flex; gap: 56px; width: max-content; animation: slide 30s linear infinite; will-change: transform; }
.marquee__inner span { display: inline-block; font-weight: 400; font-size: .95rem; letter-spacing: .05em; white-space: nowrap; }
.marquee__inner b { font-weight: 800; }
.marquee__inner .sep { color: rgba(255,255,255,.55); margin: 0 26px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- scroll reveals (vanilla, geen library) ---------- */
.js [data-anim] { opacity: 0; transform: translateY(36px); transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s var(--ease); filter: blur(5px); will-change: opacity, transform, filter; }
.js [data-anim="left"] { transform: translateX(-44px); }
.js [data-anim="right"] { transform: translateX(44px); }
.js [data-anim="img"] { transform: none; filter: none; clip-path: inset(10% 8% 12% 8% round 40px); transition: clip-path 1.1s var(--ease), opacity .8s var(--ease); }
.js [data-anim].in { opacity: 1; transform: none; filter: none; }
.js [data-anim="img"].in { clip-path: inset(0 0 0 0 round 0px); }
.no-anim [data-anim], .no-anim [data-anim="img"] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }

/* ---------- symptomen ---------- */
.sym-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sym {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 18px 18px; font-weight: 700; font-size: .93rem; line-height: 1.4; color: var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.sec--cream .sym { background: #fff; }
.sym:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.sym svg { width: 20px; height: 20px; color: var(--teal-deep); flex: none; margin-top: 1px; }

/* ---------- journey (sticky scrollytelling) ---------- */
.journey { background: var(--white); }
.journey__scroll { height: 460vh; position: relative; }
.journey__pin { position: sticky; top: 0; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 96px 0 60px; }
.journey__line { position: relative; height: 2px; background: var(--line); margin: 44px 0 60px; }
.journey__line-fill { position: absolute; inset: 0 auto 0 0; width: 0%; background: linear-gradient(90deg, var(--teal), var(--teal-deep)); transition: width .18s linear; }
.jdots { position: absolute; inset: 0; display: flex; justify-content: space-between; }
.jdot { position: relative; top: -7px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 2px solid var(--line); transition: border-color .3s, background .3s, transform .3s var(--ease); cursor: pointer; padding: 0; }
.jdot.on { border-color: var(--teal-deep); background: var(--teal-deep); transform: scale(1.18); }
.jdot span { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); font-size: .74rem; font-weight: 800; letter-spacing: .04em; color: var(--muted); white-space: nowrap; }
.jdot.on span { color: var(--teal-deep); }
.jstage { position: relative; min-height: 330px; }
.jstep {
  position: absolute; inset: 0; display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
  opacity: 0; transform: translateY(26px); pointer-events: none;
  transition: opacity .22s ease-out, transform .22s ease-out; /* snel weg: geen ghosting */
}
.jstep.on { opacity: 1; transform: none; pointer-events: auto; transition: opacity .5s var(--ease) .12s, transform .5s var(--ease) .12s; }
.jstep__num { font-family: var(--serif); font-style: normal; font-weight: 800; font-size: clamp(5rem, 10vw, 8.5rem); line-height: 1; color: var(--teal-soft); -webkit-text-stroke: 2px var(--teal-deep); }
.jstep h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.jstep p { font-size: 1.06rem; max-width: 560px; }
.jstep__tag { display: inline-flex; align-items: center; gap: 7px; background: var(--teal-soft); color: var(--teal-deep); border-radius: 999px; padding: 6px 14px; font-size: .76rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 12px; }
.journey__hint { text-align: center; font-size: .8rem; color: var(--muted); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.journey__hint svg { width: 15px; height: 15px; vertical-align: -3px; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(5px);} }

@media (max-width: 900px) {
  .journey__scroll { height: auto; }
  .journey__pin { position: static; min-height: 0; padding: 0; }
  .journey__line, .journey__hint { display: none; }
  .jstage { min-height: 0; display: grid; gap: 18px; }
  .jstep { position: static; opacity: 1; transform: none; pointer-events: auto; grid-template-columns: auto 1fr; gap: 20px; background: var(--cream); border-radius: var(--r-md); padding: 26px 24px; align-items: start; }
  .jstep__num { font-size: 3rem; -webkit-text-stroke: 1.5px var(--teal-deep); }
}

/* ---------- techniek ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.two-col--tight { gap: 48px; }
.imgcard { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); background: #fff; }
.imgcard img { width: 100%; height: auto; display: block; }
.imgcard--pad { padding: 20px; }
.imgcard--pad img { border-radius: calc(var(--r-lg) - 12px); }
.ticklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 13px; font-weight: 600; color: var(--ink); font-size: .98rem; }
.ticklist svg { width: 20px; height: 20px; color: var(--teal-deep); flex: none; margin-top: 2px; }

/* vergelijking */
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cmp__panel { border-radius: var(--r-md); padding: 34px 32px; border: 1px solid var(--line); background: #fff; }
.cmp__panel--pv { background: var(--navy); border-color: transparent; box-shadow: var(--shadow-md); }
.cmp__panel h3 { font-family: var(--sans); font-weight: 800; font-size: 1.02rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.cmp__panel li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 13px; font-size: .95rem; font-weight: 600; color: var(--ink); }
.cmp__panel svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.cmp__panel--trad svg { color: #c4552f; }
.cmp__panel--pv svg { color: var(--teal); }
.cmp__panel--pv h3, .cmp__panel--pv li { color: #fff; }
.cmp__label { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.cmp__panel--trad .cmp__label { background: #f6e8e1; color: #c4552f; }
.cmp__panel--pv .cmp__label { background: rgba(255,255,255,.16); color: #eafcff; }

/* ---------- statsband + ECG ---------- */
.stats { position: relative; overflow: hidden; }
.stats__ecg { position: absolute; left: 0; right: 0; top: 54px; width: 100%; height: 90px; opacity: .5; }
.stats__ecg path { fill: none; stroke: var(--teal); stroke-width: 2; stroke-dasharray: 1; stroke-dashoffset: 1; }
.stats__ecg.on path { transition: stroke-dashoffset 3s ease .15s; stroke-dashoffset: 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; position: relative; z-index: 2; margin-top: 70px; }
.stat strong { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 4.4vw, 3.6rem); color: #fff; line-height: 1.05; margin-bottom: 8px; }
.stat strong sub { font-size: .45em; font-style: italic; vertical-align: baseline; }
.stat span { font-size: .86rem; font-weight: 700; color: rgba(255,255,255,.65); letter-spacing: .04em; }

/* ---------- USP's ---------- */
.usps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.usp {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 34px 30px 30px; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.usp::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-deep)); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.usp:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.usp:hover::before { transform: scaleX(1); }
.usp__icon { width: 60px; height: 60px; border-radius: 50%; background: var(--teal-soft); border: 1.5px solid rgba(12,127,176,.22); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.usp__icon svg { width: 26px; height: 26px; color: var(--teal-deep); }
.usp h3 { font-family: var(--sans); font-weight: 800; font-size: 1.06rem; margin-bottom: 8px; }
.usp p { font-size: .93rem; margin: 0; }
.usp__big { font-family: var(--serif); font-style: normal; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 1.1rem; color: var(--teal-deep); display: block; margin-bottom: 6px; }

/* ---------- werkingsprincipe kaarten (voor/tijdens/na met beeld) ---------- */
.principle { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.principle:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.principle__img { background: var(--cream); }
.principle__img img { width: 100%; height: auto; display: block; }
.principle__body { padding: 20px 22px 24px; }
.principle__body p { font-size: .89rem; margin: 6px 0 0; color: var(--muted); }
.principle-strip__label { text-align: center; display: block; margin-bottom: 18px; }

/* ---------- doelgroep kaarten ---------- */
.aud { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.aud__card { position: relative; padding-top: 55px; }
.aud__photo {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 110px; height: 110px; border-radius: 50%; overflow: hidden;
  border: 4px solid #fff; box-shadow: var(--shadow-md); z-index: 3;
}
.aud__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aud__inner { border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.aud__card:hover .aud__inner { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.aud__head { padding: 44px 34px 26px; text-align: center; color: #fff; }
.aud__head--w { background: linear-gradient(165deg, var(--rose), var(--rose-deep)); }
.aud__head--m { background: linear-gradient(165deg, var(--teal-deep), var(--navy)); }
.aud__head h3 { color: #fff; font-size: 1.7rem; margin: 0; }
.aud__head span { font-size: .84rem; opacity: .75; font-weight: 700; }
.aud__body { padding: 28px 34px 34px; }
.aud__body li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px dashed var(--line); font-weight: 600; font-size: .95rem; }
.aud__body li:last-child { border-bottom: 0; }
.aud__body svg { width: 19px; height: 19px; color: var(--teal-deep); flex: none; margin-top: 2px; }

/* ---------- reviews ---------- */
.revs { position: relative; }
.revs__track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 4px 26px; scrollbar-width: none; -ms-overflow-style: none;
}
.revs__track::-webkit-scrollbar { display: none; }
.rev {
  flex: 0 0 min(430px, 86%); scroll-snap-align: start;
  background: var(--cream); border-radius: var(--r-md); padding: 36px 34px 30px;
  position: relative; border: 1px solid rgba(11,37,48,.05);
  display: flex; flex-direction: column;
}
.rev__mark { font-family: var(--serif); font-size: 4.4rem; line-height: 0; color: var(--teal); opacity: .35; position: absolute; top: 44px; right: 30px; font-style: italic; }
.rev__stars { color: var(--gold); letter-spacing: 3px; font-size: .95rem; margin-bottom: 16px; }
.rev q { font-family: var(--serif); font-size: 1.13rem; line-height: 1.5; color: var(--ink); quotes: "“" "”"; display: block; margin-bottom: 22px; flex: 1; }
.rev__who { display: flex; align-items: center; gap: 13px; }
.rev__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; flex: none; }
.rev__who strong { display: block; font-size: .93rem; color: var(--ink); }
.rev__who span { font-size: .8rem; color: var(--muted); }
.revs__nav { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.revs__btn { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(11,37,48,.18); background: #fff; display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease); }
.revs__btn:hover { border-color: var(--teal-deep); color: var(--teal-deep); transform: translateY(-2px); }
.revs__btn svg { width: 18px; height: 18px; }

/* ---------- kernwaarden ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); }
.value { padding: 34px 30px; border-left: 1px solid var(--line); }
.value:first-child { border-left: 0; }
.value strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; display: block; margin-bottom: 8px; color: var(--ink); }
.value p { font-size: .88rem; margin: 0; }

/* ---------- note / contra ---------- */
.note {
  background: var(--teal-soft); border: 1px solid rgba(21,146,196,.25); border-radius: var(--r-md);
  padding: 26px 30px; font-size: .95rem; color: var(--muted); display: flex; gap: 16px; align-items: flex-start;
}
.note svg { width: 24px; height: 24px; color: var(--teal-deep); flex: none; margin-top: 2px; }
.note a { color: var(--navy); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.contra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contra { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 20px 22px; font-size: .92rem; font-weight: 600; display: flex; gap: 12px; align-items: flex-start; }
.contra svg { width: 19px; height: 19px; color: #c4552f; flex: none; margin-top: 2px; }

/* ---------- pull-quote (medische/rustige uitstraling) ---------- */
.pull-quote { max-width: 760px; margin: 0 auto; text-align: center; position: relative; padding: 6px 20px; }
.pull-quote::before, .pull-quote::after { content: ""; display: block; width: 44px; height: 2px; background: var(--teal-deep); margin: 0 auto 22px; opacity: .5; }
.pull-quote::after { margin: 22px auto 0; }
.pull-quote p { font-family: var(--script); font-size: clamp(1.5rem, 2.8vw, 2.1rem); color: var(--teal-deep); line-height: 1.35; margin: 0; }

/* ---------- tarieven ---------- */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 30px; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px 32px; text-align: center; box-shadow: var(--shadow-sm); }
.price-card__count { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 4px; }
.price-card__rate { font-size: .95rem; color: var(--muted); font-weight: 700; }
.price-card__rate strong { color: var(--teal-deep); font-size: 1.4rem; font-family: var(--serif); }
.pricing-note { display: flex; gap: 16px; align-items: flex-start; font-size: .95rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq summary { padding: 20px 24px; font-weight: 800; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink); font-size: .98rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-size: 1.5rem; color: var(--teal-deep); line-height: 1; transition: transform .3s var(--ease); flex: none; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 24px 22px; margin: 0; font-size: .94rem; }

/* ---------- CTA paneel ---------- */
.cta { position: relative; border-radius: 36px; overflow: hidden; padding: 76px 56px; text-align: center; background: linear-gradient(160deg, var(--navy) 10%, var(--navy-deep)); color: #fff; }
.cta .crescent { border-color: rgba(255,255,255,.1); }
.cta__script { font-family: var(--script); font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--teal); display: block; margin-bottom: 10px; }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); max-width: 620px; margin: 0 auto 14px; }
.cta p { color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.cta__meta { margin-top: 26px; font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 700; }

/* ---------- pagina-hero (subpaginas) ---------- */
.phero { background: linear-gradient(135deg, var(--white) 0%, var(--cream) 45%, #cfe6f7 100%); padding: 76px 0 84px; position: relative; overflow: hidden; }
.phero__medical {
  position: absolute; top: -20px; right: 20px; z-index: 1; pointer-events: none;
  width: 340px; height: 585px;
  background: url("../assets/hero-pelvis.webp") no-repeat top center / contain;
  opacity: .4;
}
.phero .container { position: relative; z-index: 2; }
.phero__crumb { font-size: .8rem; font-weight: 700; color: var(--muted); margin-bottom: 18px; }
.phero__crumb a { color: var(--teal-deep); }
.phero h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); line-height: 1.06; max-width: 780px; }
.phero p { font-size: 1.12rem; max-width: 620px; }

/* ---------- footer ---------- */
.ftr { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: 84px 0 34px; position: relative; overflow: hidden; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 46px; margin-bottom: 56px; position: relative; z-index: 2; }
.ftr__word { font-weight: 800; font-size: 1.5rem; color: #fff; margin-bottom: 6px; }
.ftr__word span { color: var(--teal); }
.ftr__script { font-family: var(--script); font-size: 1.35rem; color: var(--teal); display: block; margin-bottom: 16px; }
.ftr h4 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 18px; }
.ftr li { margin-bottom: 11px; font-size: .93rem; }
.ftr a:hover { color: #fff; }
.ftr__legal { border-top: 1px solid var(--line-dark); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: rgba(255,255,255,.45); position: relative; z-index: 2; }
.ftr__disc { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ---------- Zwevende knop (legacy, ongebruikt) ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff; border-radius: 999px;
  padding: 15px 22px 15px 16px; box-shadow: 0 16px 38px -10px rgba(0,0,0,.4);
  font-weight: 800; font-size: .9rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 22px 44px -10px rgba(0,0,0,.45); }
.wa-float svg { width: 25px; height: 25px; flex: none; }
@media (max-width: 600px) {
  .wa-float span { display: none; }
  .wa-float { padding: 13px; }
  .wa-float svg { width: 22px; height: 22px; }
  .ticklist { margin-bottom: 12px; }
  .ticklist li:last-child { padding-bottom: 22px; }
}

/* ---------- contact ---------- */
.ccards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ccard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px; }
.ccard h3 { font-family: var(--sans); font-weight: 800; font-size: 1.05rem; display: flex; gap: 10px; align-items: center; }
.ccard h3 svg { width: 21px; height: 21px; color: var(--teal-deep); }
.cform label { display: block; font-size: .84rem; font-weight: 800; margin-bottom: 7px; color: var(--ink); }
.cform input, .cform textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; font: inherit; font-size: .95rem; margin-bottom: 16px; background: var(--cream); transition: border-color .25s; }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--teal-deep); background: #fff; }
.cform__radios { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.cform__radio { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1.5px solid var(--line); border-radius: 12px; font-size: .92rem; font-weight: 700; color: var(--ink); background: var(--cream); cursor: pointer; transition: border-color .25s, background .25s; }
.cform__radio:has(input:checked) { border-color: var(--teal-deep); background: #fff; }
.cform__radio input { width: auto; margin: 0; accent-color: var(--teal-deep); }
.cform__req { font-size: .78rem; color: var(--muted); margin: -8px 0 18px; }
.cform__privacy { font-size: .8rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; margin-top: 14px; }
.cform__privacy svg { width: 16px; height: 16px; color: var(--teal-deep); flex: none; margin-top: 2px; }

/* ---------- juridische tekst (algemene voorwaarden) ---------- */
.legal h2 { font-size: 1.5rem; display: flex; align-items: baseline; gap: 14px; margin-top: 2.2em; }
.legal h2:first-child { margin-top: 0; }
.legal__num { font-family: var(--serif); font-weight: 800; font-size: 1rem; color: var(--teal-deep); flex: none; }
.legal h3 { font-size: 1.08rem; margin-top: 1.6em; }
.legal p { font-size: .98rem; line-height: 1.7; }
.legal__list { margin: 0 0 1.2em; padding: 0; }
.legal__list li { position: relative; padding-left: 22px; margin-bottom: 8px; font-size: .96rem; color: var(--muted); line-height: 1.6; }
.legal__list li::before { content: ""; position: absolute; left: 4px; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-deep); }
.legal__closing { margin-top: 2.4em; padding-top: 1.8em; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }

/* ---------- trajecten / tarieven (flyer-tabel) ---------- */
.tariefs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.tarief {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden;
  display: flex; flex-direction: column;
}
.tarief--featured { border-color: var(--navy-deep); box-shadow: var(--shadow-md); }
.tarief__head { padding: 22px 26px 20px; color: #fff; text-align: center; }
.tarief--basis .tarief__head { background: var(--rose-deep); }
.tarief--intensief .tarief__head { background: var(--teal-deep); }
.tarief--compleet .tarief__head { background: var(--navy-deep); }
.tarief__count { display: block; font-family: var(--serif); font-weight: 800; font-size: 1.45rem; line-height: 1.15; }
.tarief__tier { display: block; font-size: .74rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; opacity: .88; margin-top: 2px; }
.tarief--featured .tarief__head { padding-top: 40px; }
.tarief__star {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; white-space: nowrap;
  font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 999px; padding: 5px 12px; z-index: 2;
}
.tarief__body { padding: 24px 26px 8px; }
.tarief__desc { font-size: .93rem; margin: 0 0 18px; }
.tarief__list { margin: 0; padding: 0; list-style: none; }
.tarief__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.45; }
.tarief__list svg { width: 17px; height: 17px; flex: none; margin-top: 3px; }
.tarief--basis .tarief__list svg { color: var(--rose-deep); }
.tarief--intensief .tarief__list svg { color: var(--teal-deep); }
.tarief--compleet .tarief__list svg { color: var(--navy-deep); }
.tarief__price { margin-top: auto; padding: 20px 26px; border-top: 1px solid var(--line); text-align: center; }
.tarief__label { display: block; font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.tarief__amount { display: block; font-family: var(--serif); font-weight: 800; font-size: 2.1rem; line-height: 1.1; }
.tarief--basis .tarief__amount { color: var(--rose-deep); }
.tarief--intensief .tarief__amount { color: var(--teal-deep); }
.tarief--compleet .tarief__amount { color: var(--navy-deep); }
.tarief__rate { display: block; font-size: .9rem; font-weight: 700; color: var(--muted); margin-top: 4px; }
.tarief__pay { padding: 18px 26px 26px; background: var(--cream); text-align: center; }
.tarief__paylabel { display: block; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }
.tarief__payamount { display: block; font-family: var(--serif); font-weight: 800; font-size: 1.5rem; margin: 6px 0 12px; color: var(--ink); }
.tarief__pill {
  display: inline-block; border-radius: 999px; padding: 8px 18px; color: #fff;
  font-weight: 800; font-size: .92rem; letter-spacing: .02em;
}
.tarief--basis .tarief__pill { background: var(--rose-deep); }
.tarief--intensief .tarief__pill { background: var(--teal-deep); }
.tarief--compleet .tarief__pill { background: var(--navy-deep); }
.tarief__maxterm { display: block; font-size: .74rem; font-weight: 700; color: var(--muted); margin-top: 10px; }
.tarief__fn { font-size: .9rem; color: var(--muted); text-align: center; margin: 22px 0 0; }

/* onderhoudspakketten */
.maint { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.maint__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.maint__card--accent { background: #fdf7ef; border-color: #ecd9bb; }
.maint__title { font-family: var(--sans); font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 14px; }
.maint__card--accent .maint__title { color: #b07d2f; }
.maint__list { margin: 0 0 18px; padding: 0; list-style: none; }
.maint__list li { display: flex; gap: 9px; align-items: flex-start; font-size: .88rem; margin-bottom: 8px; line-height: 1.45; }
.maint__list svg { width: 16px; height: 16px; color: var(--teal-deep); flex: none; margin-top: 3px; }
.maint__card--accent .maint__list svg { color: #b07d2f; }
.maint__price { margin-top: auto; text-align: center; }
.maint__amount { display: block; font-family: var(--serif); font-weight: 800; font-size: 1.7rem; line-height: 1.1; color: var(--navy); }
.maint__card--accent .maint__amount { color: #b07d2f; }
.maint__unit { display: block; font-size: .82rem; font-weight: 700; color: var(--muted); margin-top: 3px; }
.maint__extra { display: inline-block; margin-top: 8px; font-size: .78rem; font-weight: 800; color: var(--muted); }

/* ---------- grid helpers ---------- */
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .usps { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}
@media (max-width: 900px) {
  .sec { padding: 74px 0; }
  .hero { padding: 56px 0 84px; }
  .hero__grid, .two-col, .cmp, .aud, .ccards, .g3, .g4, .g2, .pricing { grid-template-columns: 1fr; }
  .hero__grid { gap: 48px; }
  .hero__media { order: -1; max-width: 420px; margin: 0 auto; }
  .chip--1 { left: -8px; } .chip--2 { right: -8px; } .chip--3 { left: -4px; }
  .sym-grid { grid-template-columns: repeat(2, 1fr); }
  .contra-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .value { border-left: 0; border-top: 1px solid var(--line); }
  .value:nth-child(-n+2) { border-top: 0; }
  .cta { padding: 60px 30px; }
  .two-col > .imgcard, .two-col > .arch { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .sym-grid { grid-template-columns: 1fr; }
  .usps { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .value:nth-child(-n+2) { border-top: 1px solid var(--line); }
  .value:first-child { border-top: 0; }
  .hero h1 { font-size: 2.5rem; }
  .hero__badge { position: static; display: block; margin-top: 14px; text-align: center; }
}

/* ---------- toegankelijkheid & fallbacks ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-anim] { opacity: 1; transform: none; filter: none; clip-path: none; }
  .marquee__inner { animation: none; flex-wrap: wrap; width: auto; }
  .journey__scroll { height: auto !important; }
  .journey__pin { position: static !important; }
  .jstep { position: static; opacity: 1 !important; transform: none !important; }
  .jstage { min-height: 0; display: grid; gap: 18px; }
}


/* ---------- mobiel: hero-chips, footer & tarieven ---------- */
@media (max-width: 1060px) {
  .maint { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .tariefs { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .ftr__grid { grid-template-columns: 1fr 1fr; gap: 34px 30px; margin-bottom: 44px; }
}
@media (max-width: 700px) {
  /* USP-chips niet meer over de foto, maar netjes eronder – boven het blauwe vak */
  .hero__media .chip { position: static; }
  .hero__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; }
  .chip { font-size: .76rem; padding: 9px 14px; }
  .hero__badge { position: static; display: block; margin-top: 16px; text-align: center; }
}
@media (max-width: 620px) {
  .ftr { padding: 58px 0 28px; }
  .ftr__grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 34px; }
  .ftr__word { font-size: 1.3rem; }
  .ftr__script { font-size: 1.2rem; margin-bottom: 12px; }
  .ftr h4 { margin-bottom: 12px; }
  .ftr li { margin-bottom: 8px; font-size: .9rem; }
  .ftr ul { display: flex; flex-wrap: wrap; gap: 6px 20px; }
  .ftr ul li { margin-bottom: 4px; }
  .ftr__legal { flex-direction: column; gap: 6px; padding-bottom: 46px; }
  .maint { grid-template-columns: 1fr; }
  .tarief__head, .tarief__body, .tarief__price, .tarief__pay { padding-left: 20px; padding-right: 20px; }
}
