/* =========================================================
   MyPelvi — Editorial luxury health brand
   Style adapted from brand reference: PT Serif headlines,
   JetBrains Mono eyebrows, warm "bone" palette, hairline
   sections, full-screen photographic hero.
   ========================================================= */
:root{
  /* Blue — from logo / reference */
  --brand-blue:#406090; --brand-blue-2:#2f4a73; --brand-blue-soft:#7aaad8; --brand-blue-tint:#c9dcef;
  --brand-soft:#eaf1f8;
  /* Accent — brand yellow #FFC800 (single source of truth; replaces the former orange/gold) */
  --brand-yellow:#FFC800; --brand-yellow-deep:#e0a800; --brand-yellow-rgb:255,200,0;
  /* Back-compat aliases — every existing accent usage points at the yellow tokens */
  --brand-orange:var(--brand-yellow); --brand-orange-deep:var(--brand-yellow-deep);
  /* Cool clinical neutrals (premium-health, less beige) */
  --bone:#f5f7fa; --bone-2:#eaeef4; --sand:#dde4ee; --hair:#e4e9f0; --hair-2:#ccd5e1;
  --ink:#16213a; --ink-2:#3a4866; --ink-3:#6b7488;
  /* Deep navy (from logo) for premium dark bands / footer */
  --navy:#15233f; --navy-2:#22345b;

  /* Elevation tokens (referenced by platform.css) */
  --shadow-sm: 0 1px 2px rgba(28,35,51,.05), 0 4px 14px rgba(28,35,51,.06);
  --shadow-md: 0 10px 30px rgba(28,35,51,.08), 0 2px 8px rgba(28,35,51,.05);
  --shadow-lg: 0 30px 70px rgba(28,35,51,.13), 0 8px 24px rgba(28,35,51,.08);

  --serif:'PT Serif','Times New Roman',serif;
  --sans:'Albert Sans',ui-sans-serif,system-ui,sans-serif;
  --mono:'JetBrains Mono',ui-monospace,monospace;

  --maxw:1280px;
  --gut:clamp(22px,4vw,40px);
  --nav-h:72px;

  /* Global spacing scale — single rhythm across all pages (8 · 16 · 24 · 40 · 64 · 96) */
  --sp-2xs:8px; --sp-xs:16px; --sp-sm:24px; --sp-md:40px; --sp-lg:64px; --sp-xl:96px;

  /* Type system — premium, calm (single source of truth for landing rhythm).
     Headlines: PT Serif 400, tight tracking. Body: Albert Sans, generous leading.
     Eyebrow: JetBrains Mono, wide tracking. */
  --fs-h1:clamp(34px,5.2vw,54px); --lh-h1:1.06; --ls-h1:-0.018em;
  --fs-h2:clamp(28px,4vw,44px);   --lh-h2:1.08; --ls-h2:-0.014em;
  --fs-h3:21px;                   --lh-h3:1.25;
  --fs-lead:19px;  --lh-lead:1.62;
  --fs-body:17px;  --lh-body:1.72;
  --fs-eyebrow:11.5px; --ls-eyebrow:0.16em;
}
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--bone); color:var(--ink); font-family:var(--sans);
  font-weight:400; font-size:16px; line-height:1.55;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; overflow-x:hidden;
}
::selection{ background:var(--brand-blue); color:#fff; }
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
h1,h2,h3,h4,p{ margin:0; }

.container{ max-width:var(--maxw); margin:0 auto; padding-inline:var(--gut); }

/* ---------- Type ---------- */
.eyebrow{
  font-family:var(--mono); font-size:11px; font-weight:500; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink-3); display:inline-flex; align-items:center; gap:9px;
}
.eyebrow::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--brand-orange); box-shadow:0 0 0 3px rgba(var(--brand-yellow-rgb),.16); }
.eyebrow.bare::before{ display:none; }
.lead{ font-size:19px; line-height:1.6; color:var(--ink-2); max-width:56ch; text-wrap:pretty; }
p{ text-wrap:pretty; }
.serif-em{ font-style:italic; color:var(--brand-blue); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px; padding:15px 24px; border-radius:999px;
  font-family:var(--sans); font-size:15px; font-weight:500; letter-spacing:.005em; white-space:nowrap;
  transition:transform .2s, background .2s, color .2s, box-shadow .2s;
}
.btn .arrow{ transition:transform .2s; }
.btn:hover .arrow{ transform:translateX(3px); }
.btn-primary{ background:var(--brand-blue); color:#fff; box-shadow:0 14px 30px -16px rgba(64,96,144,.55); }
.btn-primary:hover{ background:var(--brand-blue-2); transform:translateY(-1px); }
.btn-orange{ background:var(--brand-orange); color:#1c2333; font-weight:600; box-shadow:0 14px 30px -14px rgba(var(--brand-yellow-rgb),.6); }
.btn-orange:hover{ background:var(--brand-orange-deep); transform:translateY(-1px); }
.btn-ghost{ background:transparent; color:var(--ink); box-shadow:inset 0 0 0 1px var(--hair-2); }
.btn-ghost:hover{ background:rgba(28,35,51,.04); }
.btn-lg{ padding:17px 30px; font-size:16px; }

/* ---------- Official logo (image, retina 2x — crisp, no distortion) ---------- */
.logo{ display:inline-flex; align-items:center; line-height:1; }
.logo-img{ height:30px; width:auto; display:block; }
.on-dark .logo-img, footer .logo-img{ filter:brightness(0) invert(1); }
@media (max-width:640px){ .logo-img{ height:26px; } }

/* =========================================================
   NAV — transparent over hero, solid on scroll
   ========================================================= */
.nav{ position:fixed; inset:0 0 auto 0; z-index:50; transition:background .3s, box-shadow .3s, border-color .3s; background:rgba(245,247,250,.9); backdrop-filter:saturate(140%) blur(14px); border-bottom:1px solid transparent; }
.nav .row{ display:flex; align-items:center; justify-content:space-between; gap:24px; height:var(--nav-h); }
.nav__links{ display:flex; gap:30px; align-items:center; }
.nav__links a{ font-size:14px; font-weight:500; color:var(--ink-2); transition:color .2s; }
.nav__links a:hover{ color:var(--brand-blue); }
.nav__right{ display:flex; align-items:center; gap:14px; }
.nav.scrolled{ border-color:rgba(204,213,225,.8); box-shadow:0 1px 0 rgba(204,213,225,.5); }
.nav__ghost{ color:var(--ink); box-shadow:inset 0 0 0 1px var(--hair-2); padding:11px 18px; font-size:14px; }
.nav__ghost:hover{ background:rgba(28,35,51,.04); }
.nav__cta{ padding:11px 20px; font-size:14px; }
.burger{ display:none; width:44px; height:44px; border-radius:50%; align-items:center; justify-content:center; }
.burger span,.burger span::before,.burger span::after{ content:""; display:block; width:20px; height:2px; background:var(--ink); transition:.3s; position:relative; }
.burger span::before{ position:absolute; top:-6px; } .burger span::after{ position:absolute; top:6px; }
body.menu-open .burger span{ background:transparent!important; }
body.menu-open .burger span::before{ top:0; transform:rotate(45deg); }
body.menu-open .burger span::after{ top:0; transform:rotate(-45deg); }
.drawer{ position:fixed; inset:var(--nav-h) 0 0 0; z-index:45; background:var(--bone); transform:translateY(-10px); opacity:0; pointer-events:none; transition:.3s; display:flex; flex-direction:column; padding:24px var(--gut) 40px; }
body.menu-open .drawer{ opacity:1; transform:none; pointer-events:auto; }
.drawer a{ font-family:var(--serif); font-size:1.7rem; padding:14px 0; border-bottom:1px solid var(--hair); color:var(--ink); }
.drawer .btn{ margin-top:22px; justify-content:center; }

/* =========================================================
   HERO — split layout (copy left, image right)
   ========================================================= */
.hero{ position:relative; background:var(--bone); padding-top:var(--nav-h); }
/* FIX (2026-06-30): war padding:X 0 Y (Kurzschreibweise) — das "0" hat versehentlich den seitlichen
   Abstand von .container (padding-inline:var(--gut)) überschrieben, da .hero__grid beide Klassen
   gleichzeitig trägt (<div class="container hero__grid">). Auf Desktop unsichtbar (Auto-Margins
   zentrieren den schmaleren Container ohnehin), auf Mobil/Tablet lag der Inhalt direkt am Bildschirmrand.
   padding-block statt padding fasst die seitlichen Werte nicht an. */
.hero__grid{ display:grid; grid-template-columns:1.02fr .98fr; gap:clamp(32px,5vw,72px); align-items:center; padding-block:clamp(44px,6vw,84px) clamp(52px,7vw,96px); }
.hero .eyebrow{ margin-bottom:24px; }
.hero h1{
  font-family:var(--serif); font-weight:400; color:var(--ink);
  font-size:clamp(42px,5.4vw,76px); line-height:1.02; letter-spacing:-.018em; margin:0 0 22px; text-wrap:balance; max-width:15ch;
}
.hero h1 .serif-em{ color:var(--brand-blue); font-style:italic; }
.hero__sub{ font-size:clamp(17px,1.5vw,20px); line-height:1.55; color:var(--ink-2); max-width:46ch; margin:0 0 30px; }
.hero__cta{ display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.hero__rating{ margin-top:26px; display:flex; align-items:center; gap:12px; }
.hero__rating .stars{ color:var(--brand-orange); letter-spacing:2px; font-size:15px; }
.hero__rating .txt{ font-size:14px; color:var(--ink-2); } .hero__rating .txt b{ color:var(--ink); font-weight:600; }
.hero__trustline{ margin:18px 0 0; font-family:var(--mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-3); }
.hero__media{ position:relative; }
.hero__media .frame{ aspect-ratio:4/5; border-radius:18px; overflow:hidden; box-shadow:0 40px 90px -50px rgba(28,35,51,.5); }
.hero__media .frame img{ width:100%; height:100%; object-fit:cover; object-position:50% 28%; }
.hero__media .frame video{ width:100%; height:100%; object-fit:cover; object-position:50% 30%; display:block; background:var(--sand); }
.hero__stats{ position:absolute; left:-18px; bottom:24px; background:rgba(245,247,250,.92); backdrop-filter:blur(10px); border:1px solid var(--hair); border-radius:14px; padding:16px 20px; display:flex; gap:22px; box-shadow:0 18px 40px -24px rgba(28,35,51,.4); }
.hero__stats .s .n{ font-family:var(--serif); font-size:26px; line-height:1; color:var(--brand-blue); }
.hero__stats .s .l{ font-family:var(--mono); font-size:9.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-3); margin-top:6px; }
@media (max-width:920px){
  .hero__grid{ grid-template-columns:1fr; gap:36px; padding-bottom:40px; }
  .hero__media{ max-width:540px; } .hero__media .frame{ aspect-ratio:16/12; }
  .hero__stats{ left:auto; right:16px; }
}

/* =========================================================
   QUIZ — prominent assessment block
   ========================================================= */
.quizband{ background:var(--brand-blue); color:#fff; position:relative; overflow:hidden; }
.quizband::before{ content:""; position:absolute; inset:0; background:
  radial-gradient(46% 70% at 88% 8%, rgba(var(--brand-yellow-rgb),.26), transparent 70%),
  radial-gradient(50% 80% at 4% 100%, rgba(122,170,216,.34), transparent 70%); }
.quizband .container{ position:relative; }
.quizband__grid{ display:grid; grid-template-columns:.92fr 1.08fr; gap:clamp(32px,5vw,72px); align-items:center; }
@media (max-width:920px){ .quizband__grid{ grid-template-columns:1fr; gap:32px; } }
.quizband .eyebrow{ color:rgba(255,255,255,.74); }
.quizband .eyebrow::before{ box-shadow:none; }
.quizband h2{ font-family:var(--serif); font-weight:400; font-size:clamp(32px,4.2vw,54px); line-height:1.04; letter-spacing:-.014em; margin:18px 0 16px; text-wrap:balance; }
.quizband h2 .serif-em{ color:var(--brand-orange); font-style:italic; }
.quizband__lead{ color:rgba(255,255,255,.82); font-size:17px; max-width:44ch; margin-bottom:26px; }
.quizband__feat{ display:flex; gap:22px; flex-wrap:wrap; margin-top:8px; }
.quizband__feat span{ display:inline-flex; align-items:center; gap:8px; font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.7); }
.quizband__feat .dot{ width:5px; height:5px; border-radius:50%; background:var(--brand-orange); }
.quizcard{ background:var(--bone); color:var(--ink); border-radius:18px; padding:clamp(26px,3vw,40px); box-shadow:0 40px 90px -40px rgba(0,0,0,.5); }
.quizcard__meta{ display:flex; align-items:center; gap:14px; margin-bottom:20px; font-family:var(--mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-3); }
.quizcard__bar{ flex:1; height:4px; border-radius:3px; background:var(--sand); overflow:hidden; }
.quizcard__bar i{ display:block; height:100%; width:0%; background:var(--brand-orange); transition:width .4s; }
.quizcard__q{ font-family:var(--serif); font-weight:400; font-size:clamp(22px,2.4vw,30px); line-height:1.16; letter-spacing:-.008em; margin-bottom:22px; min-height:2.3em; }
.quizcard__opts{ display:flex; flex-direction:column; gap:10px; }
.quizopt{ text-align:left; padding:16px 20px; border-radius:12px; border:1px solid var(--hair-2); background:#fff; font-family:var(--sans); font-size:15.5px; font-weight:500; color:var(--ink); display:flex; align-items:center; justify-content:space-between; gap:14px; transition:.18s; }
.quizopt:hover{ border-color:var(--brand-blue); background:#fff; transform:translateX(3px); box-shadow:0 10px 24px -16px rgba(64,96,144,.5); }
.quizopt .chev{ color:var(--ink-3); transition:.18s; } .quizopt:hover .chev{ color:var(--brand-blue); transform:translateX(3px); }
.quizcard__result{ display:none; }
.quizcard__result.show{ display:block; }
.quizcard__score{ display:flex; align-items:baseline; gap:14px; margin-bottom:8px; }
.quizcard__score .big{ font-family:var(--serif); font-size:56px; line-height:1; color:var(--brand-blue); }
.quizcard__score .lvl{ font-family:var(--mono); font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--brand-orange); }
.quizcard__result h3{ font-family:var(--serif); font-weight:400; font-size:26px; margin:14px 0 8px; }
.quizcard__result p{ color:var(--ink-2); font-size:15px; margin-bottom:22px; }
.quizcard__again{ font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-3); margin-top:16px; display:inline-block; cursor:pointer; }
.quizcard__again:hover{ color:var(--brand-blue); }

/* Quiz lead-capture step (gates the result) */
.quizcard__lead{ display:none; }
.quizcard__lead.show{ display:block; }
.quizcard__leadtitle{ font-family:var(--serif); font-weight:400; font-size:clamp(22px,2.4vw,30px); line-height:1.14; letter-spacing:-.008em; margin:6px 0 8px; }
.quizcard__leadsub{ color:var(--ink-2); font-size:15px; margin-bottom:22px; }
.qlead-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media (max-width:520px){ .qlead-row{ grid-template-columns:1fr; } }
.qlead-field{ margin-bottom:13px; }
.qlead-field label{ display:block; font-family:var(--mono); font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-3); margin-bottom:6px; }
.qlead-field input{ width:100%; padding:13px 15px; border-radius:11px; border:1px solid var(--hair-2); background:#fff; font-family:var(--sans); font-size:15px; outline:none; transition:.2s; }
.qlead-field input:focus{ border-color:var(--brand-blue); box-shadow:0 0 0 4px rgba(64,96,144,.12); }
.qlead-consent{ display:flex; gap:11px; align-items:flex-start; padding:9px 0; cursor:pointer; }
.qlead-consent input{ width:19px; height:19px; margin-top:1px; flex:none; accent-color:var(--brand-blue); cursor:pointer; }
.qlead-consent span{ font-size:12.5px; color:var(--ink-2); line-height:1.5; }
.qlead-consent a{ color:var(--brand-blue); text-decoration:underline; }
.qlead-error{ display:none; color:#b4471f; font-size:13px; margin:8px 0 2px; }
.qlead-error.show{ display:block; }
.qlead-trust{ display:flex; align-items:center; gap:8px; justify-content:center; margin-top:14px; font-family:var(--mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-3); }
.qlead-trust .d{ width:5px; height:5px; border-radius:50%; background:#1c8a52; }
.quizcard__rcta{ display:flex; flex-direction:column; gap:10px; }
.quizcard__rcta .btn{ width:100%; justify-content:center; }

/* =========================================================
   Sections
   ========================================================= */
section{ padding:clamp(72px,10vw,118px) 0; position:relative; }
.bg-bone2{ background:var(--bone-2); border-top:1px solid var(--hair); border-bottom:1px solid var(--hair); }
.section-head{ display:grid; grid-template-columns:220px 1fr; gap:40px; align-items:start; margin-bottom:60px; }
.section-head h2{ font-family:var(--serif); font-weight:400; font-size:clamp(32px,4.4vw,58px); line-height:1.04; letter-spacing:-.012em; margin:0; text-wrap:balance; }
.section-head .eyebrow{ padding-top:8px; white-space:nowrap; }
@media (max-width:820px){ .section-head{ grid-template-columns:1fr; gap:16px; margin-bottom:44px; } }

/* ---------- Trust strip (under hero) ---------- */
.trust{ padding:30px 0; border-bottom:1px solid var(--hair); display:grid; grid-template-columns:230px 1fr; gap:32px; align-items:center; }
.trust .trust-label{ font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-3); }
.trust .trust-row{ display:flex; gap:30px; flex-wrap:wrap; align-items:center; font-family:var(--serif); font-size:clamp(18px,2vw,24px); color:var(--ink-2); }
.trust .trust-row .dot{ width:4px; height:4px; border-radius:50%; background:var(--brand-orange); }
@media (max-width:720px){ .trust{ grid-template-columns:1fr; gap:14px; } }

/* ---------- Relevance / pull-quote ---------- */
.relevance-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:80px; align-items:center; }
@media (max-width:980px){ .relevance-grid{ grid-template-columns:1fr; gap:44px; } }
.pull{ font-family:var(--serif); font-weight:400; font-size:clamp(32px,4.4vw,60px); line-height:1.08; letter-spacing:-.012em; text-wrap:balance; max-width:22ch; }
.pull-attrib{ margin-top:32px; font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-3); }
.ambient-photo{ aspect-ratio:5/6; border-radius:16px; overflow:hidden; box-shadow:0 30px 80px -50px rgba(28,35,51,.4); }
.ambient-photo img{ width:100%; height:100%; object-fit:cover; }

/* ---------- Desires ---------- */
.desires{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
@media (max-width:980px){ .desires{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .desires{ grid-template-columns:1fr; } }
.desire{ background:var(--bone-2); border:1px solid var(--hair); border-radius:14px; padding:28px 24px 30px; display:flex; flex-direction:column; min-height:260px; transition:transform .3s, box-shadow .3s; }
.bg-bone2 .desire{ background:var(--bone); }
.desire:hover{ transform:translateY(-4px); box-shadow:0 22px 50px -34px rgba(28,35,51,.4); }
.desire .num{ font-family:var(--mono); font-size:11px; letter-spacing:.16em; color:var(--ink-3); margin-bottom:26px; display:flex; align-items:center; gap:8px; }
.desire .num::before{ content:""; width:5px; height:5px; border-radius:50%; background:var(--brand-orange); }
.desire h3{ font-family:var(--serif); font-weight:400; font-size:24px; line-height:1.14; letter-spacing:-.005em; margin:0 0 12px; }
.desire p{ font-size:14.5px; color:var(--ink-2); line-height:1.6; margin:0; }

/* ---------- Method / Technology ---------- */
.tech-grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:64px; align-items:center; }
@media (max-width:980px){ .tech-grid{ grid-template-columns:1fr; gap:40px; } }
.tech-photo{ aspect-ratio:1/1; border-radius:18px; overflow:hidden; box-shadow:0 40px 80px -50px rgba(28,35,51,.45); }
.tech-photo img{ width:100%; height:100%; object-fit:cover; }
.tech h2{ font-family:var(--serif); font-weight:400; font-size:clamp(30px,4vw,52px); line-height:1.05; letter-spacing:-.012em; margin:16px 0 20px; }
.pillars{ margin-top:34px; }
.pillar{ display:grid; grid-template-columns:120px 1fr; gap:24px; padding:22px 0; border-top:1px solid var(--hair); }
.pillar:last-child{ border-bottom:1px solid var(--hair); }
.pillar .k{ font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-3); padding-top:6px; }
.pillar h4{ font-family:var(--serif); font-weight:400; font-size:23px; letter-spacing:-.005em; margin:0 0 6px; }
.pillar p{ color:var(--ink-2); font-size:15px; margin:0; max-width:56ch; }

/* ---------- Audience ---------- */
.audience-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
@media (max-width:900px){ .audience-grid{ grid-template-columns:1fr; } }
.aud-card{ background:var(--bone); border:1px solid var(--hair); border-radius:16px; overflow:hidden; display:flex; flex-direction:column; transition:transform .3s, box-shadow .3s; }
.aud-card:hover{ transform:translateY(-4px); box-shadow:0 26px 56px -38px rgba(28,35,51,.45); }
.aud-photo{ aspect-ratio:16/11; overflow:hidden; }
.aud-photo img{ width:100%; height:100%; object-fit:cover; }
.aud-body{ padding:24px 24px 28px; }
.aud-body .k{ font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-3); margin-bottom:10px; display:flex; align-items:center; gap:8px; }
.aud-body .k::before{ content:""; width:5px; height:5px; border-radius:50%; background:var(--brand-orange); }
.aud-body h4{ font-family:var(--serif); font-weight:400; font-size:24px; letter-spacing:-.005em; margin:0 0 10px; }
.aud-body p{ font-size:14.5px; color:var(--ink-2); margin:0; }

/* ---------- Steps ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
@media (max-width:900px){ .steps{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:540px){ .steps{ grid-template-columns:1fr; } }
.step{ padding-top:26px; border-top:1px solid var(--hair-2); }
.step .num{ font-family:var(--mono); font-size:11px; letter-spacing:.16em; color:var(--ink-3); margin-bottom:18px; }
.step h4{ font-family:var(--serif); font-weight:400; font-size:23px; letter-spacing:-.005em; margin:0 0 8px; }
.step p{ font-size:14.5px; color:var(--ink-2); margin:0; }

/* ---------- Voices ---------- */
.voices{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
@media (max-width:980px){ .voices{ grid-template-columns:1fr; } }
.voice{ background:var(--bone-2); border:1px solid var(--hair); border-radius:16px; padding:32px 28px; display:flex; flex-direction:column; justify-content:space-between; min-height:320px; }
.bg-bone2 .voice{ background:var(--bone); }
.voice .quote{ font-family:var(--serif); font-weight:400; font-style:italic; font-size:21px; line-height:1.3; color:var(--ink); text-wrap:pretty; }
.voice .quote::before{ content:"„"; color:var(--brand-orange); margin-right:.04em; }
.voice .who{ margin-top:26px; display:flex; align-items:center; gap:12px; font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-3); }
.voice .avatar{ width:34px; height:34px; border-radius:50%; overflow:hidden; background:linear-gradient(135deg,var(--brand-blue-soft),var(--brand-blue-tint)); flex:none; }
.voice .avatar img{ width:100%; height:100%; object-fit:cover; }

/* ---------- Experts / trust mini ---------- */
.experts{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
@media (max-width:820px){ .experts{ grid-template-columns:1fr; } }
.expert{ border-top:1px solid var(--hair-2); padding-top:26px; }
.expert .role{ font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-3); margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.expert .role::before{ content:""; width:5px; height:5px; border-radius:50%; background:var(--brand-orange); }
.expert p{ font-family:var(--serif); font-style:italic; font-size:20px; line-height:1.36; color:var(--ink); margin:0 0 16px; }
.expert .name{ font-size:14px; color:var(--ink-2); } .expert .name b{ color:var(--ink); font-weight:600; }

/* ---------- FAQ (native details) ---------- */
.faq{ max-width:920px; margin:0 auto; border-top:1px solid var(--hair-2); }
details.q{ border-bottom:1px solid var(--hair-2); padding:24px 0; }
details.q summary{ list-style:none; cursor:pointer; display:flex; justify-content:space-between; align-items:baseline; gap:24px; font-family:var(--serif); font-size:clamp(20px,2.4vw,26px); line-height:1.2; letter-spacing:-.005em; color:var(--ink); }
details.q summary::-webkit-details-marker{ display:none; }
details.q summary .plus{ font-family:var(--sans); font-size:24px; color:var(--ink-2); transition:transform .25s, color .25s; flex:none; line-height:1; }
details.q[open] summary .plus{ transform:rotate(45deg); color:var(--brand-orange); }
details.q .a{ margin-top:14px; color:var(--ink); font-size:16px; line-height:1.7; max-width:74ch; }

/* ---------- Locations ---------- */
.loc-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:48px; align-items:start; }
@media (max-width:900px){ .loc-grid{ grid-template-columns:1fr; gap:32px; } }
.loc-search{ }
.loc-field{ display:flex; gap:10px; margin:8px 0 6px; }
.loc-field input{ flex:1; padding:16px 18px; border-radius:999px; border:1px solid var(--hair-2); background:var(--bone); font-family:var(--sans); font-size:16px; outline:none; transition:.2s; }
.loc-field input:focus{ border-color:var(--brand-blue); box-shadow:0 0 0 4px rgba(64,96,144,.12); background:#fff; }
.loc-list{ margin-top:18px; display:flex; flex-direction:column; }
.loc-item{ display:flex; justify-content:space-between; align-items:baseline; gap:16px; padding:18px 0; border-top:1px solid var(--hair); cursor:pointer; transition:.2s; }
.loc-item:hover{ padding-left:8px; }
.loc-item .city{ font-family:var(--serif); font-size:21px; letter-spacing:-.005em; }
.loc-item .meta{ font-family:var(--mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-3); }
.loc-item .stat{ font-family:var(--mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--brand-blue); white-space:nowrap; }
.loc-item .stat.wait{ color:var(--ink-3); }
.loc-empty{ padding:22px 0; color:var(--ink-2); border-top:1px solid var(--hair); }
.loc-map{ aspect-ratio:5/4; border-radius:16px; position:relative; overflow:hidden; background:linear-gradient(160deg,#dde8f3,#c4d6ea); border:1px solid var(--hair); }
.loc-map .pin{ position:absolute; width:14px; height:14px; background:var(--brand-orange); border:3px solid #fff; border-radius:50% 50% 50% 0; transform:rotate(-45deg); box-shadow:0 4px 10px rgba(0,0,0,.2); }
.loc-map .pin.b{ background:var(--brand-blue); }
.loc-map .maplabel{ position:absolute; left:18px; bottom:16px; font-family:var(--mono); font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--brand-blue-2); background:rgba(245,247,250,.8); padding:7px 12px; border-radius:999px; }

/* ---------- Closer ---------- */
.closer{ background:var(--brand-blue); color:#fff; overflow:hidden; position:relative; }
.closer::before{ content:""; position:absolute; inset:0; background:
  radial-gradient(40% 60% at 82% 18%, rgba(var(--brand-yellow-rgb),.26), transparent 70%),
  radial-gradient(50% 70% at 0% 100%, rgba(122,170,216,.34), transparent 70%); }
.closer .container{ position:relative; text-align:center; }
.closer .eyebrow{ color:rgba(255,255,255,.72); justify-content:center; }
.closer .eyebrow::before{ box-shadow:none; }
.closer h2{ font-family:var(--serif); font-weight:400; font-size:clamp(40px,5.6vw,82px); line-height:1.04; letter-spacing:-.018em; margin:22px auto 26px; text-wrap:balance; max-width:20ch; }
.closer h2 .serif-em{ color:var(--brand-orange); font-style:italic; }
.closer p{ font-size:18px; color:rgba(255,255,255,.84); max-width:50ch; margin:0 auto 34px; }
.closer .closer-cta{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.closer .btn-ghost{ color:#fff; box-shadow:inset 0 0 0 1px rgba(255,255,255,.4); }
.closer .btn-ghost:hover{ background:rgba(255,255,255,.1); }
.closer-meta{ display:flex; gap:26px; flex-wrap:wrap; justify-content:center; margin-top:40px; font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.62); }
.closer-meta span{ display:inline-flex; align-items:center; gap:8px; } .closer-meta .dot{ width:6px; height:6px; border-radius:50%; background:var(--brand-orange); }
.closer-trustline{ margin:22px auto 0; font-family:var(--mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.66); }

/* ---------- Footer ---------- */
footer{ background:var(--navy); padding:66px 0 40px; color:rgba(255,255,255,.6); font-size:13px; }
.foot-row{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:32px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.12); }
@media (max-width:820px){ .foot-row{ grid-template-columns:1fr 1fr; } } @media (max-width:520px){ .foot-row{ grid-template-columns:1fr; } }
.foot-row h5{ font-family:var(--mono); font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.5); margin:0 0 14px; font-weight:500; }
.foot-row a{ display:block; padding:4px 0; color:rgba(255,255,255,.72); } .foot-row a:hover{ color:#fff; }
.foot-blurb{ font-family:var(--serif); font-style:italic; font-size:21px; color:#fff; line-height:1.3; max-width:30ch; margin:16px 0 0; }
.foot-bottom{ display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; padding-top:24px; color:rgba(255,255,255,.5); }
.foot-bottom a{ color:rgba(255,255,255,.72); } .foot-bottom a:hover{ color:#fff; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta{ position:fixed; left:0; right:0; bottom:0; z-index:44; padding:12px var(--gut) calc(12px + env(safe-area-inset-bottom)); background:rgba(245,247,250,.94); backdrop-filter:blur(14px); border-top:1px solid var(--hair); display:none; gap:10px; transform:translateY(120%); transition:transform .35s cubic-bezier(.2,.7,.2,1); }
.sticky-cta.show{ transform:none; }
.sticky-cta .btn{ flex:1; justify-content:center; padding:15px; }

/* ---------- Modal ---------- */
.modal{ position:fixed; inset:0; z-index:100; display:none; align-items:center; justify-content:center; padding:20px; }
.modal.open{ display:flex; }
.modal__scrim{ position:absolute; inset:0; background:rgba(28,35,51,.55); backdrop-filter:blur(4px); opacity:0; transition:.3s; }
.modal.open .modal__scrim{ opacity:1; }
.modal__card{ position:relative; background:var(--bone); border-radius:20px; width:min(560px,100%); max-height:92vh; overflow:auto; box-shadow:0 40px 90px -30px rgba(28,35,51,.5); transform:translateY(20px) scale(.98); opacity:0; transition:.35s cubic-bezier(.2,.7,.2,1); }
.modal.open .modal__card{ transform:none; opacity:1; }
.modal__head{ padding:32px 32px 0; position:relative; }
.modal__head h3{ font-family:var(--serif); font-weight:400; font-size:32px; letter-spacing:-.01em; margin:12px 0 6px; }
.modal__head p{ color:var(--ink-2); font-size:15px; }
.modal__close{ position:absolute; top:16px; right:16px; width:40px; height:40px; border-radius:50%; background:var(--bone-2); display:grid; place-items:center; font-size:1.3rem; color:var(--ink-2); transition:.2s; }
.modal__close:hover{ background:var(--hair); }
.modal__body{ padding:18px 32px 34px; }
.field{ margin-bottom:16px; } .field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:520px){ .field-row{ grid-template-columns:1fr; } }
.field label{ display:block; font-family:var(--mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-3); margin-bottom:8px; }
.field input,.field select{ width:100%; padding:15px 16px; border-radius:12px; border:1px solid var(--hair-2); background:#fff; font-family:var(--sans); font-size:15px; outline:none; transition:.2s; }
.field input:focus,.field select:focus{ border-color:var(--brand-blue); box-shadow:0 0 0 4px rgba(64,96,144,.12); }
.modal__success{ display:none; text-align:center; padding:20px 0; }
.modal__success.show{ display:block; }
.success-check{ width:70px; height:70px; border-radius:50%; background:rgba(64,96,144,.1); color:var(--brand-blue); display:grid; place-items:center; margin:0 auto 20px; font-size:1.8rem; }
.modal__success h3{ font-family:var(--serif); font-weight:400; font-size:30px; margin-bottom:10px; }

/* ---------- Reveal (transform-only; safe if animation clock pauses) ---------- */
.reveal{ }
.reveal.in{ animation:revUp .7s cubic-bezier(.2,.7,.2,1) both; }
.reveal.d1{ animation-delay:.08s; } .reveal.d2{ animation-delay:.16s; } .reveal.d3{ animation-delay:.24s; } .reveal.d4{ animation-delay:.32s; }
@keyframes revUp{ from{ transform:translateY(22px); } to{ transform:none; } }
@media (prefers-reduced-motion:reduce){ *{ animation:none!important; transition:none!important; } .scroll-hint .line{ animation:none!important; } }

/* =========================================================
   AUDIENCE — compact 4-up cards (no large image sections)
   ========================================================= */
.aud4{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
@media (max-width:980px){ .aud4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .aud4{ grid-template-columns:1fr; } }
.audc{ background:var(--bone); border:1px solid var(--hair); border-radius:14px; overflow:hidden; display:flex; flex-direction:column; transition:transform .25s, box-shadow .25s; }
.bg-bone2 .audc{ background:#fff; }
.audc:hover{ transform:translateY(-4px); box-shadow:0 22px 50px -34px rgba(28,35,51,.42); }
.audc__thumb{ aspect-ratio:3/2; overflow:hidden; }
.audc__thumb img{ width:100%; height:100%; object-fit:cover; }
.audc__body{ padding:20px 20px 22px; display:flex; flex-direction:column; gap:8px; flex:1; }
.audc__k{ font-family:var(--mono); font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-3); display:flex; align-items:center; gap:7px; }
.audc__k::before{ content:""; width:5px; height:5px; border-radius:50%; background:var(--brand-orange); }
.audc__body h4{ font-family:var(--serif); font-weight:400; font-size:20px; line-height:1.12; letter-spacing:-.005em; margin:0; }
.audc__body p{ font-size:13.5px; color:var(--ink-2); margin:0; line-height:1.5; }
.audc__link{ margin-top:auto; padding-top:12px; font-family:var(--mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--brand-blue); display:inline-flex; align-items:center; gap:7px; }
.audc__link .arrow{ transition:transform .2s; } .audc:hover .audc__link .arrow{ transform:translateX(3px); }

/* =========================================================
   PRICING — location-specific
   ========================================================= */
.pricing-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom:44px; }
.price-loc{ display:flex; align-items:center; gap:12px; }
.price-loc label{ font-family:var(--mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-3); }
.price-loc select{ font-family:var(--sans); font-size:15px; font-weight:500; color:var(--ink); padding:11px 38px 11px 16px; border-radius:999px; border:1px solid var(--hair-2); background:var(--bone) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%236b7388' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat right 14px center; -webkit-appearance:none; appearance:none; cursor:pointer; outline:none; transition:.2s; }
.price-loc select:focus{ border-color:var(--brand-blue); box-shadow:0 0 0 4px rgba(64,96,144,.12); }
.prices{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; align-items:stretch; }
@media (max-width:900px){ .prices{ grid-template-columns:1fr; max-width:460px; } }
.pcard{ background:var(--bone); border:1px solid var(--hair); border-radius:18px; padding:30px 28px 32px; display:flex; flex-direction:column; position:relative; transition:transform .25s, box-shadow .25s; }
.bg-bone2 .pcard{ background:#fff; }
.pcard.featured{ border-color:var(--brand-blue); box-shadow:0 30px 70px -44px rgba(64,96,144,.6); }
.pcard.featured::before{ content:"Beliebt"; position:absolute; top:-11px; left:28px; font-family:var(--mono); font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:#fff; background:var(--brand-blue); padding:5px 12px; border-radius:999px; }
.pcard__k{ font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-3); margin-bottom:16px; }
.pcard__price{ display:flex; align-items:baseline; gap:8px; margin-bottom:6px; }
.pcard__price .amt{ font-family:var(--serif); font-size:48px; line-height:1; color:var(--ink); letter-spacing:-.02em; }
.pcard.trial .pcard__price .amt{ color:var(--brand-blue); }
.pcard__price .per{ font-size:14px; color:var(--ink-3); }
.pcard__note{ font-size:13.5px; color:var(--ink-2); margin-bottom:22px; min-height:2.6em; }
.pcard__feats{ list-style:none; margin:0 0 26px; padding:22px 0 0; border-top:1px solid var(--hair); display:flex; flex-direction:column; gap:12px; flex:1; }
.pcard__feats li{ display:flex; gap:11px; align-items:flex-start; font-size:14px; color:var(--ink-2); }
.pcard__feats li::before{ content:""; flex:none; width:16px; height:16px; margin-top:2px; border-radius:50%; background:rgba(64,96,144,.12) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 5l2 2 4-5' stroke='%23406090' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center; }
.pcard .btn{ justify-content:center; width:100%; }
.price-foot{ margin-top:26px; font-family:var(--mono); font-size:11px; letter-spacing:.06em; color:var(--ink-3); display:flex; align-items:center; gap:8px; }
.price-foot::before{ content:""; width:5px; height:5px; border-radius:50%; background:var(--brand-orange); }

/* =========================================================
   FRANCHISE — second lead funnel
   ========================================================= */
.franchise{ background:var(--brand-blue-2); color:#fff; position:relative; overflow:hidden; }
.franchise::before{ content:""; position:absolute; inset:0; background:
  radial-gradient(40% 70% at 92% 12%, rgba(var(--brand-yellow-rgb),.3), transparent 70%),
  radial-gradient(46% 80% at 6% 96%, rgba(64,96,144,.5), transparent 70%); }
.franchise .container{ position:relative; }
.fr-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,72px); align-items:center; }
@media (max-width:900px){ .fr-grid{ grid-template-columns:1fr; gap:36px; } }
.franchise .eyebrow{ color:rgba(255,255,255,.74); } .franchise .eyebrow::before{ box-shadow:none; }
.franchise h2{ font-family:var(--serif); font-weight:400; font-size:clamp(32px,4.4vw,56px); line-height:1.04; letter-spacing:-.014em; margin:18px 0 18px; text-wrap:balance; }
.franchise h2 .serif-em{ color:var(--brand-orange); font-style:italic; }
.franchise p.lead{ color:rgba(255,255,255,.84); max-width:46ch; margin-bottom:28px; }
.fr-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:30px; max-width:520px; }
.fr-stats .s{ border-top:1px solid rgba(255,255,255,.22); padding-top:14px; }
.fr-stats .s .n{ font-family:var(--serif); font-size:34px; line-height:1; color:#fff; }
.fr-stats .s .l{ font-family:var(--mono); font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.66); margin-top:8px; }
.fr-card{ background:rgba(245,247,250,.06); border:1px solid rgba(255,255,255,.16); border-radius:18px; padding:30px; backdrop-filter:blur(4px); }
.fr-card h3{ font-family:var(--serif); font-weight:400; font-size:24px; margin:0 0 6px; }
.fr-card p{ color:rgba(255,255,255,.74); font-size:14px; margin:0 0 22px; }
.fr-card .fr-list{ list-style:none; padding:0; margin:0 0 24px; display:flex; flex-direction:column; gap:13px; }
.fr-card .fr-list li{ display:flex; gap:11px; align-items:flex-start; font-size:14px; color:rgba(255,255,255,.86); }
.fr-card .fr-list li::before{ content:""; flex:none; width:16px; height:16px; margin-top:2px; border-radius:50%; background:rgba(var(--brand-yellow-rgb),.22) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 5l2 2 4-5' stroke='%23FFC800' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center; }
.fr-card .btn{ width:100%; justify-content:center; }

/* ---------- Responsive nav ---------- */
@media (max-width:860px){
  .nav__links{ display:none; } .nav__ghost{ display:none; } .nav__cta{ display:none; }
  .burger{ display:flex; }
  .sticky-cta{ display:flex; }
  .pillar{ grid-template-columns:1fr; gap:6px; }
  body{ font-size:16px; }
}
