/* ============================================================
   Hair Genesis — Design Tokens (Figma: LP10747E)
   ============================================================ */
:root {
  /* Brand colors (extracted from Figma) */
  --petrol:        #304A59;   /* primary dark teal */
  --petrol-deep:   #1D2C35;
  --petrol-ink:    #1E2C36;
  --teal-slate:    #2F4858;
  --mint:          #DCFFE9;
  --sage:          #A7CFB6;
  --cream:         #EDDFC5;   /* CTA / warm accent */
  --cream-2:       #EDE0C5;
  --white:         #FFFFFF;
  --ink:           #1D2C35;
  --muted:         #7F8181;

  /* Hero gradient stops (sampled from mockup) */
  --hero-1: #5E8A90;
  --hero-2: #7BA0A4;
  --hero-3: #A9C4C2;
  --hero-4: #EFF4F3;

  --font: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1280px;
  --radius: 14px;
}

body:where(:not(:has(.hg-tailwind-route))) * { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:where(:not(:has(.hg-tailwind-route))) a { color: inherit; text-decoration: none; }
body:where(:not(:has(.hg-tailwind-route))) ul { list-style: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(23, 36, 44, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  padding-top: 11px; padding-bottom: 11px;
}
.site-header.scrolled .brand { margin-top: 0; }
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  background: #1D2C36;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(0,0,0,.22);
}
.nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .1px;
  opacity: .95;
  transition: opacity .2s ease;
  white-space: nowrap;
}
.nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.brand {
  flex: 0 0 auto;
  width: 120px; height: 120px;
  margin: 0 8px;
  display: grid; place-items: center;
  background: transparent;
}
.brand img {
  width: 100%; height: 100%; object-fit: contain;
  background: transparent;
}


.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
/* scroll-gesteuerte Hero-Transformation (kahl → volles Haar) */
.hero-scroller { position: relative; height: 130vh; }
.hero-pin { position: sticky; top: 0; height: 72vh; min-height: 540px; overflow: hidden; isolation: isolate; }
.hero-scroll-hint {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  pointer-events: none;
}
.hero-scroll-hint .mouse {
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.75); border-radius: 14px;
  position: relative;
}
.hero-scroll-hint .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 8px;
  background: rgba(255,255,255,.9); border-radius: 2px; transform: translateX(-50%);
  animation: heroScrollDot 1.6s ease-in-out infinite;
}
.hero-scroll-hint .chev {
  width: 14px; height: 14px; border-right: 2px solid rgba(255,255,255,.75);
  border-bottom: 2px solid rgba(255,255,255,.75); transform: rotate(45deg);
  animation: heroScrollChev 1.6s ease-in-out infinite;
}
@keyframes heroScrollDot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  70% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}
@keyframes heroScrollChev {
  0%, 100% { transform: rotate(45deg) translate(0,0); opacity: .4; }
  50% { transform: rotate(45deg) translate(4px,4px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint .mouse::after,
  .hero-scroll-hint .chev { animation: none; }
}
.hero {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 85% 20%, rgba(220,255,233,.55) 0%, rgba(220,255,233,0) 45%),
    radial-gradient(90% 80% at 10% 100%, var(--hero-4) 0%, rgba(239,244,243,0) 55%),
    linear-gradient(155deg, var(--hero-1) 0%, var(--hero-2) 42%, var(--hero-3) 72%, var(--hero-4) 100%);
}
/* halftone dot decorations */
.dots { position: absolute; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.6) 1.6px, transparent 1.7px);
  background-size: 16px 16px; }
.dots-left   { left: 0;   top: 32%;  width: 120px; height: 220px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent); mask-image: linear-gradient(90deg, #000, transparent); }
.dots-bottom { left: 4%;  bottom: 6%; width: 200px; height: 150px; opacity: .35; }
.glow { position: absolute; right: 6%; top: 8%; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(167,207,182,.45), transparent 62%); filter: blur(8px); }

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px clamp(20px, 4vw, 56px) 60px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 20px;
  height: 100%;
}

/* ---- copy ---- */
.pill {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  font-size: 15px; font-weight: 500;
  backdrop-filter: blur(4px);
  margin-bottom: 26px;
}
.hero-title {
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.06;
  letter-spacing: -.5px;
  margin-bottom: 24px;
  text-shadow: 0 1px 18px rgba(29,44,53,.18);
}
.hero-title .thin { display: block; font-weight: 500; }
.hero-title .bold { display: block; font-weight: 700; }
.hero-sub {
  color: rgba(255,255,255,.92);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  line-height: 1.5;
  max-width: 430px;
  margin-bottom: 34px;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 13px 16px 13px 26px;
  background: var(--cream);
  color: var(--petrol-deep);
  font-size: 16px; font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(29,44,53,.16);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(29,44,53,.24); }
.btn-arrow {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--petrol); color: var(--white);
}

/* ---- visual / model + journey ---- */
.hero-visual { position: relative; align-self: stretch; min-height: 600px; }
.hero-model-wrap { position: absolute; right: -3%; bottom: 0; width: 60%; max-width: 680px; z-index: 1; }
.hero-model {
  position: absolute; right: 0; bottom: 0;
  width: 100%; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(29,44,53,.22));
}
.hm-bald { opacity: 1; transition: opacity .12s linear; }
.hm-hand { opacity: 0; transition: opacity .12s linear; }
.hm-grow { opacity: 0; transition: opacity .12s linear; }
.hm-full { opacity: 0; transition: opacity .12s linear; }
.journey-arc { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; }
.journey { position: absolute; inset: 0; z-index: 3; }
.step {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%, -50%) scale(.88);
  display: flex; align-items: center; gap: 12px;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.step.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.step-icon { transition: background .25s ease, color .25s ease, box-shadow .25s ease; }
.step.is-active .step-icon { background: var(--petrol); color: #fff; box-shadow: 0 0 0 6px rgba(167,207,182,.28), 0 8px 22px rgba(29,44,53,.28); }
.step.is-active .step-label { font-weight: 700; }
.step:not(.is-active) .step-label { opacity: .8; }
.step-icon {
  flex: 0 0 auto;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92);
  color: var(--petrol);
  box-shadow: 0 8px 22px rgba(29,44,53,.18);
  backdrop-filter: blur(2px);
}
.step-icon svg { width: 26px; height: 26px; }
.step-label {
  color: var(--white);
  font-size: 15px; font-weight: 600;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(29,44,53,.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav { justify-content: space-between; flex-wrap: wrap; }
  .nav-left, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .brand { margin-top: 0; width: 72px; height: 72px; }
  .site-header { padding: 8px 16px; }
  .site-header.scrolled { padding-top: 6px; padding-bottom: 6px; }
  /* Mobile-Menü (Hamburger) */
  .site-header.menu-open { background: rgba(23,36,44,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 14px 30px rgba(0,0,0,.32); }
  .site-header.menu-open .nav-left,
  .site-header.menu-open .nav-right { display: flex; flex-direction: column; flex-basis: 100%; gap: 0; }
  .site-header.menu-open .nav-left { order: 3; margin-top: 14px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.12); }
  .site-header.menu-open .nav-right { order: 4; padding-bottom: 6px; }
  .nav-left a, .nav-right a { display: block; padding: 11px 4px; font-size: 16px; }
  .nav-toggle span { transition: transform .25s ease, opacity .2s ease; }
  .site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* Hero-Scrollytelling auf Mobil deaktivieren */
  .hero-scroller { height: auto; }
  .hero-pin { position: static; height: auto; min-height: auto; }
  .hero { min-height: 600px; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 120px; height: auto; }
  .hero-visual { min-height: 420px; order: 2; }
  .hero-model-wrap { position: relative; right: 0; width: auto; max-width: 360px; margin: 0 auto; }
  .hm-bald, .hm-hand, .hm-grow { display: none !important; }
  .hm-full { opacity: 1 !important; position: relative; }
  .journey { display: none; }
}
@media (max-width: 560px) {
  .hero-title { font-size: 32px; }
  .person-grid.cols-2-center { grid-template-columns: 1fr; max-width: 380px; }
  .stats-card .stat { justify-items: start; }
}

/* ============================================================
   SHARED
   ============================================================ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.center { text-align: center; }
.section-dark { background: var(--petrol-deep); color: var(--white); position: relative; }

.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 66px; height: 66px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(48,74,89,.78); display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.play-btn span { width: 0; height: 0; margin-left: 4px;
  border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 18px solid var(--white); }
.play-btn.sm { width: 48px; height: 48px; }
.play-btn.sm span { border-top-width: 8px; border-bottom-width: 8px; border-left-width: 13px; }

/* ============================================================
   INTRO + STATS
   ============================================================ */
.intro { padding: clamp(64px, 8vw, 110px) 0; }
.intro-title { text-align: center; font-size: clamp(26px, 3vw, 40px); font-weight: 500; max-width: 760px; margin: 0 auto 18px; line-height: 1.2; }
.intro-lead { text-align: center; max-width: 760px; margin: 0 auto 56px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.6; }

.intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; margin-bottom: 56px; }
.quote-card {
  background: rgba(255,255,255,.03);
  border: 1.5px solid rgba(167,207,182,.45);
  border-radius: 20px; padding: 34px 36px;
  box-shadow: 0 0 50px rgba(167,207,182,.12), inset 0 0 30px rgba(167,207,182,.06);
  display: grid; gap: 18px;
}
.quote-card p { color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.6; }
.quote-card em { color: var(--sage); font-style: normal; font-weight: 600; }
.intro-media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,.3); }
.intro-media img { width: 100%; display: block; }

.stats-card {
  background: var(--white); color: var(--ink);
  border-radius: 22px; padding: 38px clamp(24px,4vw,60px);
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,.28); margin-bottom: 40px;
}
.stat { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 16px; align-items: center; }
.stat-ico { grid-row: 1 / 3; width: 54px; height: 54px; border-radius: 50%; background: var(--mint); color: var(--petrol); display: grid; place-items: center; }
.stat-ico svg { width: 26px; height: 26px; }
.stat strong { font-size: clamp(28px, 3vw, 42px); font-weight: 600; line-height: 1; }
.stat-label { color: var(--muted); font-size: 15px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 0 0 clamp(64px,8vw,110px); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.sec-head h2 { font-size: clamp(26px, 3.2vw, 44px); font-weight: 500; line-height: 1.15; }
.slider-nav { display: flex; gap: 12px; }
.slider-nav button {
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  background: transparent; border: 1.5px solid rgba(255,255,255,.4); color: var(--white);
  font-size: 22px; line-height: 1; transition: background .2s;
}
.slider-nav button:hover { background: rgba(255,255,255,.12); }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--white); color: var(--ink); border-radius: 20px; padding: 16px 16px 26px; box-shadow: 0 20px 44px rgba(0,0,0,.22); position: relative; }
.testi-card.is-active { outline: 2px solid var(--sage); box-shadow: 0 0 0 6px rgba(167,207,182,.18), 0 20px 44px rgba(0,0,0,.22); }
.testi-video { position: relative; border-radius: 14px; overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/9; background: #000; }
.testi-video img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.testi-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.stars { color: #6FBF8E; letter-spacing: 3px; font-size: 18px; margin: 0 6px 12px; }
.testi-card p { margin: 0 6px 18px; font-size: 15px; line-height: 1.55; color: #2b3b44; }
.testi-name { margin: 0 6px; font-size: 14px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; }
.testi-card::after { content: "\201D"; position: absolute; right: 20px; bottom: 6px; font-size: 64px; line-height: 1; color: var(--sage); opacity: .5; font-family: Georgia, serif; }

@media (max-width: 940px) {
  .intro-grid { grid-template-columns: 1fr; }
  .stats-card { grid-template-columns: 1fr; gap: 20px; }
  .testi-grid { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   LIGHT SECTION (Häufigster Fehler / Vermeiden)
   ============================================================ */
.section-light {
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(167,207,182,.5) 0%, transparent 60%),
    linear-gradient(168deg, #BCD4CE 0%, #DCEAE6 45%, #EFF4F2 100%);
  color: var(--ink);
}

.fehler { padding: clamp(64px, 8vw, 110px) 0 clamp(40px,5vw,70px); }
.fehler-top { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: start; margin-bottom: 44px; }
.fehler-text h2 { color: var(--petrol); font-size: clamp(26px,3vw,44px); font-weight: 500; line-height: 1.15; margin-bottom: 22px; }
.fehler-text p { color: #2f3e46; font-size: 16px; line-height: 1.65; margin-bottom: 16px; max-width: 560px; }
.hl-box {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.7); border: 1px solid rgba(48,74,89,.12);
  border-radius: 14px; padding: 18px 20px; margin-top: 8px;
  font-size: 16px; font-weight: 600; color: var(--petrol); max-width: 560px;
}
.hl-ico { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px; background: var(--mint); color: var(--petrol); display: grid; place-items: center; }
.hl-ico svg { width: 18px; height: 18px; }
.fehler-mirror { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(29,44,53,.18); }
.fehler-mirror img { width: 100%; display: block; }

.fehler-scene { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(29,44,53,.22); }
.fehler-scene .scene-img { width: 100%; display: block; }
.scene-card {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  width: min(420px, 44%);
  background: rgba(29,44,53,.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 26px; color: #e8eef0;
}
.scene-card p { font-size: 15px; line-height: 1.55; margin-bottom: 14px; color: rgba(255,255,255,.85); }
.warn-box { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,.08); border-radius: 12px; padding: 14px 16px; font-size: 14px; }
.warn-ico { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px; background: var(--cream); color: var(--petrol-deep); display: grid; place-items: center; }
.warn-ico svg { width: 18px; height: 18px; }

/* … und wie du ihn vermeidest */
.vermeiden { padding: clamp(30px,4vw,50px) 0 clamp(70px,9vw,120px); }
.vermeiden-eyebrow { text-align: center; color: var(--petrol); opacity: .7; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 10px; font-weight: 600; }
.vermeiden-title { text-align: center; color: var(--petrol); font-size: clamp(24px,3vw,40px); font-weight: 500; margin-bottom: 18px; }
.vermeiden-lead { text-align: center; max-width: 720px; margin: 0 auto 48px; color: var(--petrol); opacity: .82; font-size: clamp(15px,1.15vw,17px); line-height: 1.6; }
.vermeiden-foot { margin-top: clamp(40px,5vw,64px); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: clamp(24px,3vw,36px) clamp(24px,3vw,40px); background: rgba(255,255,255,.55); border: 1px solid rgba(15,52,70,.08); border-radius: 18px; backdrop-filter: blur(8px); }
.vermeiden-foot__text h3 { margin: 0 0 8px; color: var(--petrol); font-size: clamp(18px,1.5vw,22px); font-weight: 600; }
.vermeiden-foot__text p { margin: 0; color: var(--petrol); opacity: .85; font-size: 15px; line-height: 1.6; }
@media (max-width: 720px) { .vermeiden-foot { grid-template-columns: 1fr; text-align: center; } }
/* interaktiver Karten-Carousel: aktive Karte breit + Detail offen, Klick zum Wechseln */
.mistake-row { display: flex; gap: 20px; align-items: stretch; }
.mistake-card { flex: 1 1 0; min-width: 0; background: rgba(255,255,255,.5); border: 1px solid rgba(48,74,89,.12); border-radius: 20px; overflow: hidden; opacity: .72; transition: flex-grow .45s cubic-bezier(.4,0,.2,1), background .3s ease, box-shadow .3s ease, opacity .3s ease; }
.mistake-card:hover { opacity: .9; }
.mistake-card.is-active { flex-grow: 2; background: #fff; border-color: transparent; opacity: 1; box-shadow: 0 0 0 5px rgba(167,207,182,.22), 0 28px 56px rgba(29,44,53,.16); }
.mistake-btn { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font: inherit; padding: 26px clamp(18px,2vw,28px); display: flex; align-items: center; gap: 14px; }
.warn-chip { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--mint); color: var(--petrol); display: grid; place-items: center; transition: background .3s ease, color .3s ease; }
.warn-chip svg { width: 23px; height: 23px; }
.mistake-card.is-active .warn-chip { background: var(--petrol); color: #fff; }
.mistake-btn h3 { flex: 1; min-width: 0; font-size: 16px; font-weight: 600; color: var(--petrol); line-height: 1.3; }
.mistake-plus { flex: 0 0 auto; position: relative; width: 28px; height: 28px; border-radius: 50%; background: rgba(48,74,89,.1); transition: background .3s ease; }
.mistake-card.is-active .mistake-plus { background: var(--mint); }
.mistake-plus::before, .mistake-plus::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--petrol); border-radius: 2px; }
.mistake-plus::before { width: 12px; height: 2px; transform: translate(-50%,-50%); }
.mistake-plus::after { width: 2px; height: 12px; transform: translate(-50%,-50%); transition: transform .3s ease; }
.mistake-card.is-active .mistake-plus::after { transform: translate(-50%,-50%) scaleY(0); }
.mistake-detail { max-height: 0; opacity: 0; overflow: hidden; padding: 0 clamp(18px,2vw,28px); transition: max-height .45s ease, opacity .35s ease, padding .45s ease; }
.mistake-card.is-active .mistake-detail { max-height: 480px; opacity: 1; padding-bottom: 28px; }
.mistake-detail p { font-size: 15px; line-height: 1.65; color: #2f3e46; margin-bottom: 12px; }
.mistake-detail p:last-child { margin-bottom: 0; }

@media (max-width: 940px) {
  .fehler-top { grid-template-columns: 1fr; }
  .scene-card { position: static; transform: none; width: auto; margin: -2px; border-radius: 0 0 20px 20px; }
  .mistake-row { flex-direction: column; }
  .mistake-card, .mistake-card.is-active { flex: none; }
}

/* ============================================================
   PRÄZISE BEHANDLUNG — 2 Säulen
   ============================================================ */
.pillars { padding: clamp(64px,8vw,110px) 0; }
.pillars-title { text-align: center; font-size: clamp(24px,2.8vw,38px); font-weight: 500; line-height: 1.2; color: var(--mint); margin-bottom: 22px; }
.pillars-lead { text-align: center; max-width: 720px; margin: 0 auto 12px; font-size: 19px; color: rgba(255,255,255,.9); line-height: 1.5; }
.pillars-lead em { color: var(--sage); font-style: normal; }
.pillars-sub { text-align: center; max-width: 640px; margin: 0 auto 50px; font-size: 15px; color: rgba(255,255,255,.82); }
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pillar-card { background: #fff; color: var(--ink); border-radius: 22px; padding: 36px clamp(20px,2.5vw,34px); box-shadow: 0 0 0 6px rgba(167,207,182,.18), 0 30px 60px rgba(0,0,0,.28); }
.pillar-ico { display: grid; place-items: center; width: 74px; height: 74px; border-radius: 50%; background: var(--mint); color: var(--petrol); margin: 0 auto 16px; }
.pillar-ico svg { width: 34px; height: 34px; }
.pillar-card > h3 { text-align: center; font-size: 19px; font-weight: 600; color: var(--petrol); margin-bottom: 22px; }

.acc { border: 1px solid rgba(48,74,89,.12); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.acc[open] { border-color: var(--sage); background: rgba(167,207,182,.06); }
.acc summary {
  list-style: none; cursor: pointer; padding: 15px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 600; color: var(--petrol);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::before {
  content: ""; flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.acc summary::after { content: "⌄"; margin-left: auto; color: var(--muted); font-size: 18px; transition: transform .2s; }
.acc[open] summary::after { transform: rotate(180deg); }
.acc-body { padding: 0 18px 16px 50px; font-size: 14px; line-height: 1.6; color: #3d4a51; }

/* ============================================================
   OUTCOMES
   ============================================================ */
.outcomes {
  background: linear-gradient(180deg, #4E7A82 0%, #79A0A2 38%, #B9D3CD 70%, #EFF4F2 100%);
  color: #fff; padding: clamp(56px,7vw,100px) 0 clamp(64px,8vw,110px);
}
.outcomes-title { text-align: center; font-size: clamp(22px,2.6vw,36px); font-weight: 500; line-height: 1.25; max-width: 860px; margin: 0 auto 40px; }
.outcomes-stage { position: relative; max-width: 1000px; margin: 0 auto 36px; }
.outcomes-model { display: block; width: 100%; border-radius: 18px; box-shadow: 0 30px 60px rgba(29,44,53,.3); }
.ob {
  background: rgba(29,44,53,.55); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px;
  padding: 14px 16px; width: 290px; color: #fff;
  position: absolute; box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.ob-head { display: flex; align-items: center; gap: 10px; width: 100%; background: transparent; border: 0; padding: 0; color: inherit; font: inherit; text-align: left; cursor: pointer; }
.ob-ico { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--petrol); display: grid; place-items: center; }
.ob-ico svg { width: 18px; height: 18px; }
.ob-head strong { font-size: 14px; font-weight: 600; line-height: 1.25; }
.ob-tog { margin-left: auto; font-size: 20px; line-height: 1; opacity: .8; transition: transform .2s ease; }
.ob p { margin-top: 10px; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.82); overflow: hidden; transition: max-height .25s ease, margin-top .25s ease, opacity .2s ease; }
.ob.collapsed { width: auto; min-width: 210px; }
.ob.collapsed p { max-height: 0; margin-top: 0; opacity: 0; pointer-events: none; }

.ob-1 { top: 22%; left: -2%; }
.ob-2 { top: 40%; right: -4%; }
.ob-3 { bottom: 8%; left: 22%; }

@media (max-width: 940px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .outcomes-stage { max-width: 560px; }
  .ob { position: static; width: auto; margin: 10px auto 0; }
  .outcomes-model { margin-bottom: 6px; }
}

/* ============================================================
   VORHER / NACHHER  (⚠️ HWG-Risk — vor Go-Live prüfen)
   ============================================================ */
.vorher-nachher { padding: clamp(64px,8vw,110px) 0; background: var(--petrol-ink); }
.ba-title { text-align: center; font-size: clamp(24px,2.8vw,40px); font-weight: 500; line-height: 1.2; margin-bottom: 48px; color: #fff; }
.ba-title span { color: var(--sage); }
.ba-row { display: flex; align-items: center; justify-content: center; gap: 24px; }
.ba-card { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,.4); }
.ba-card img { display: block; width: 100%; height: auto; }
.ba-card.is-side { width: 300px; opacity: .5; flex: 0 0 auto; }
.ba-card.is-active { width: 480px; flex: 0 0 auto; box-shadow: 0 0 0 3px rgba(167,207,182,.4), 0 30px 60px rgba(0,0,0,.5); }
.ba-nav { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.ba-nav button { width: 50px; height: 50px; border-radius: 50%; cursor: pointer; background: transparent; border: 1.5px solid rgba(255,255,255,.4); color: #fff; font-size: 22px; transition: background .2s; }
.ba-nav button:hover { background: rgba(255,255,255,.12); }

/* interaktiver Vorher/Nachher-Slider */
.ba-slider { position: relative; width: 100%; aspect-ratio: 1408 / 768; user-select: none; --before-pos: 30%; --after-pos: 30%; }
.ba-slider .ba-base { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% var(--after-pos); display: block; }
.ba-slider .ba-overlay { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-slider .ba-overlay img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% var(--before-pos); display: block; }
.ba-tag { position: absolute; bottom: 12px; font-size: 12px; font-weight: 600; letter-spacing: .3px; color: #fff; background: rgba(29,44,53,.6); backdrop-filter: blur(4px); padding: 5px 12px; border-radius: 999px; z-index: 3; }
.ba-tag-l { left: 12px; } .ba-tag-r { right: 12px; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: #fff; transform: translateX(-1px); z-index: 4; pointer-events: none; box-shadow: 0 0 12px rgba(0,0,0,.4); }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--petrol); display: grid; place-items: center; font-size: 16px; font-weight: 700; box-shadow: 0 4px 14px rgba(0,0,0,.3); letter-spacing: -2px; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 5; }

/* Karussell mit Thumbnails */
.ba-carousel { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.ba-stage { width: 100%; display: flex; justify-content: center; }
.ba-stage .ba-card.is-active { width: min(720px, 100%); }
.ba-thumbs { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ba-thumb { width: 96px; height: 64px; padding: 0; border-radius: 10px; overflow: hidden; cursor: pointer; background: transparent; border: 2px solid rgba(255,255,255,.18); transition: border-color .2s, transform .2s, opacity .2s; opacity: .65; }
.ba-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-thumb:hover { opacity: .9; }
.ba-thumb.is-active { border-color: var(--sage, #a7cfb6); opacity: 1; transform: translateY(-2px); }
.ba-thumb { position: relative; width: 120px; height: 80px; }
.ba-thumb-name { position: absolute; left: 0; right: 0; bottom: 0; font-size: 11px; font-weight: 600; color: #fff; background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0)); padding: 14px 6px 4px; letter-spacing: .02em; text-align: center; }
.ba-caption { margin: 14px 0 0; text-align: center; font-size: 15px; font-weight: 600; letter-spacing: .04em; color: var(--sage, #a7cfb6); text-transform: uppercase; }

@media (max-width: 940px) {
  .ba-card.is-side { display: none; }
  .ba-card.is-active { width: 100%; max-width: 440px; }
  .ba-stage .ba-card.is-active { width: 100%; }
}


/* ============================================================
   METHODEN / LEISTUNGEN
   ============================================================ */
.services { padding: clamp(64px,8vw,110px) 0; }
.services-title { text-align: center; font-size: clamp(26px,3vw,44px); font-weight: 500; color: var(--mint); margin-bottom: 12px; }
.services-sub { text-align: center; font-size: 22px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 44px; }
.service-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 70px; }
.svc-card { background: #fff; color: var(--ink); border-radius: 18px; padding: 30px 28px; box-shadow: 0 0 0 5px rgba(167,207,182,.16), 0 20px 44px rgba(0,0,0,.24); }
.svc-ico { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 14px; background: var(--mint); color: var(--petrol); margin-bottom: 18px; }
.svc-ico svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 20px; font-weight: 600; color: var(--petrol); margin-bottom: 12px; }
.svc-card p { font-size: 14px; line-height: 1.6; color: #3d4a51; }
.svc-list { margin: 12px 0 0; padding: 0; display: grid; gap: 8px; }
.svc-list li { list-style: none; padding-left: 24px; position: relative; font-size: 14px; color: #2f3e46; }
.svc-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat; }

.methods-title { text-align: center; font-size: clamp(20px,2.4vw,32px); font-weight: 500; color: rgba(255,255,255,.92); margin-bottom: 26px; }
.methods { position: relative; }
.tab-bar { display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); margin: 0 auto 24px; }
.methods { display: flex; flex-direction: column; align-items: center; }
.tab-bar label { cursor: pointer; padding: 9px 30px; border-radius: 999px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,.88); transition: .2s; }
#m-dhi:checked ~ .tab-bar label[for="m-dhi"],
#m-fue:checked ~ .tab-bar label[for="m-fue"],
#m-sapphire:checked ~ .tab-bar label[for="m-sapphire"] { background: var(--mint); color: var(--petrol); }
.tab-panel { display: none; width: 100%; position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 28px 60px rgba(0,0,0,.34); }
#m-dhi:checked ~ .panel-dhi, #m-fue:checked ~ .panel-fue, #m-sapphire:checked ~ .panel-sapphire { display: block; }
.tab-panel img { width: 100%; display: block; }
.method-card { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: min(420px,45%); background: rgba(20,32,40,.74); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 26px; }
.method-card h4 { font-size: 19px; font-weight: 600; margin-bottom: 14px; color: #fff; }
.method-card p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.82); margin-bottom: 10px; }
.draft-note { font-size: 12px !important; color: rgba(255,255,255,.85) !important; font-style: italic; }

.prp { display: grid; grid-template-columns: 1.2fr .9fr; gap: 30px; align-items: center; margin-top: 70px; }
.prp-card { background: rgba(167,207,182,.06); border: 1.5px solid rgba(167,207,182,.4); border-radius: 20px; padding: 32px; box-shadow: 0 0 50px rgba(167,207,182,.1); display: flex; gap: 20px; }
.prp-ico { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 14px; background: var(--mint); color: var(--petrol); display: grid; place-items: center; }
.prp-ico svg { width: 28px; height: 28px; }
.prp-card h3 { font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 14px; line-height: 1.3; }
.prp-card p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.8); margin-bottom: 10px; }
.prp-extra { color: var(--sage) !important; }
.prp-media { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,.3); }
.prp-media img { width: 100%; display: block; }

@media (max-width: 940px) {
  .service-cards { grid-template-columns: 1fr; }
  .method-card { position: static; transform: none; width: auto; }
  .prp { grid-template-columns: 1fr; }
  .prp-card { flex-direction: column; }
}

/* ============================================================
   ABLAUF (01–04 Stepper)
   ============================================================ */
.ablauf { padding: clamp(48px,5vw,72px) 0 0; }
.ablauf-title { text-align: center; font-size: clamp(22px,2.4vw,32px); font-weight: 500; color: #fff; margin-bottom: 10px; }
.ablauf-title span { color: var(--sage); }
/* scroll-gesteuerter Stepper: kompakter Scroller + gepinnte Bühne */
.ablauf-scroller { position: relative; height: 240vh; }
.ablauf-pin { position: sticky; top: 0; height: 560px; max-height: 92vh; display: flex; align-items: center; }
.ablauf-stage { display: grid; grid-template-columns: 1fr 110px 1fr; gap: 28px; align-items: center; width: 100%; max-width: 1100px; margin: 0 auto; }
.ablauf-img { border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,.4); max-height: 420px; }
.ablauf-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ablauf-arc { position: relative; height: 360px; }
.ablauf-arc svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.arc-node { position: absolute; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(255,255,255,.25); background: var(--petrol-deep); color: rgba(255,255,255,.8); font-size: 13px; font-weight: 700; cursor: pointer; display: grid; place-items: center; transition: .35s ease; z-index: 2; }
.arc-node.n1 { left: 60%; top: 5%; }
.arc-node.n2 { left: 30%; top: 38%; }
.arc-node.n3 { left: 48%; top: 66%; }
.arc-node.n4 { left: 65%; top: 95%; }
.ablauf-pin[data-step="1"] .n1,
.ablauf-pin[data-step="2"] .n2,
.ablauf-pin[data-step="3"] .n3,
.ablauf-pin[data-step="4"] .n4 { background: var(--mint); color: var(--petrol); border-color: var(--mint); transform: translate(-50%,-50%) scale(1.12); box-shadow: 0 0 0 6px rgba(167,207,182,.18); }

.ablauf-panels { position: relative; min-height: 240px; }
.apanel { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .4s ease, transform .4s ease; }
.ablauf-pin[data-step="1"] .apanel[data-i="1"],
.ablauf-pin[data-step="2"] .apanel[data-i="2"],
.ablauf-pin[data-step="3"] .apanel[data-i="3"],
.ablauf-pin[data-step="4"] .apanel[data-i="4"] { opacity: 1; visibility: visible; transform: none; position: relative; }
.step-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--mint); color: var(--petrol); margin-bottom: 14px; }
.step-ico svg { width: 22px; height: 22px; }
.apanel h3 { font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.apanel p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.8); }
.ablauf-panels .btn-cta { margin-top: 18px; }

/* ============================================================
   KOSTENLOSE SPRECHSTUNDE
   ============================================================ */
.sprechstunde { padding: clamp(64px,8vw,110px) 0; }
.spr-title { text-align: center; font-size: clamp(24px,2.8vw,40px); font-weight: 500; color: var(--petrol); margin-bottom: 16px; }
.spr-lead { text-align: center; max-width: 720px; margin: 0 auto 50px; font-size: 19px; color: #2f3e46; line-height: 1.5; }
.spr-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 44px; position: relative; }
.spr-cards::before { content: ""; position: absolute; top: 38px; left: 16%; right: 16%; height: 2px; background: rgba(48,74,89,.2); z-index: 0; }
.spr-card { background: rgba(255,255,255,.6); border: 1px solid rgba(48,74,89,.1); border-radius: 18px; padding: 30px 28px; position: relative; z-index: 1; backdrop-filter: blur(4px); }
.spr-ico { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--white); color: var(--petrol); box-shadow: 0 6px 16px rgba(29,44,53,.12); margin-bottom: 20px; }
.spr-ico svg { width: 28px; height: 28px; }
.spr-card p { font-size: 14px; line-height: 1.65; color: #35424a; }
.spr-card strong { color: var(--petrol); font-weight: 600; }

/* ============================================================
   PRAXIS / MAP
   ============================================================ */
.praxis { padding: clamp(64px,8vw,110px) 0; }
.praxis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.praxis-map { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,.4); aspect-ratio: 7 / 5; background: #1b2a33; }
.praxis-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.05); }
.map-open { position: absolute; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px; background: var(--white); color: var(--petrol); font-size: 13px; font-weight: 600; box-shadow: 0 6px 18px rgba(0,0,0,.25); transition: transform .18s ease; }
.map-open:hover { transform: translateY(-2px); }
.praxis-text h2 { font-size: clamp(24px,2.6vw,38px); font-weight: 500; color: #fff; line-height: 1.2; margin-bottom: 22px; }
.praxis-text p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.78); margin-bottom: 16px; max-width: 520px; }
.praxis-text strong { color: var(--sage); font-weight: 600; }
.praxis-contact { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.12); }
.pc-item { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.8); }
.pc-ico { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; background: rgba(167,207,182,.14); color: var(--sage); display: grid; place-items: center; }
.pc-ico svg { width: 22px; height: 22px; }
.pc-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .8px; color: var(--sage); font-weight: 600; margin-bottom: 6px; }
.pc-item a:hover { color: #fff; text-decoration: underline; }

/* ============================================================
   PERSON-CARDS (Team / Gründer / Arzt / Organisation)
   ============================================================ */
.person { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 44px rgba(0,0,0,.3); }
.person > img { width: 100%; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.person figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 14px 18px; border-radius: 14px; background: rgba(20,32,40,.62); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.12); }
.person figcaption strong { display: block; color: #fff; font-size: 17px; font-weight: 700; }
.person figcaption span { display: block; color: rgba(255,255,255,.72); font-size: 13px; margin-top: 3px; }
.person-grid { display: grid; gap: 24px; }
.person-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.person-grid.cols-2-center { grid-template-columns: repeat(2,1fr); max-width: 720px; margin: 0 auto; }

/* Über Hair Genesis */
.ueber { padding: clamp(64px,8vw,110px) 0; }
.ueber-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; margin-bottom: 50px; }
.ueber-text h2 { font-size: clamp(26px,3vw,42px); font-weight: 500; color: #fff; margin-bottom: 22px; }
.ueber-text h2 span { color: var(--sage); }
.ueber-text .lead { font-size: 19px; line-height: 1.55; color: rgba(255,255,255,.9); margin-bottom: 20px; }
.ueber-text p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.72); margin-bottom: 16px; }
.ueber-text .quote-card { margin-top: 8px; }
.ueber-img { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 50px rgba(0,0,0,.4); position: sticky; top: 100px; }
.ueber-img img { width: 100%; display: block; }
.ueber-founders { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.founder-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.founder-note { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.72); }

/* Behandlungsteam + Organisation */
.team, .organisation { padding: clamp(56px,7vw,100px) 0; }
.team-title { text-align: center; font-size: clamp(26px,3vw,42px); font-weight: 500; color: #fff; margin-bottom: 16px; }
.team-lead { text-align: center; max-width: 760px; margin: 0 auto 48px; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.75); }

/* Arzt */
.arzt { padding: clamp(40px,5vw,70px) 0; }
.arzt-grid { display: grid; grid-template-columns: 360px 1fr; gap: 50px; align-items: center; }
.person-arzt { max-width: 360px; }
.arzt-text h2 { font-size: clamp(24px,2.6vw,38px); font-weight: 500; color: #fff; margin-bottom: 18px; }
.arzt-text p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.78); max-width: 540px; }

@media (max-width: 940px) {
  .ueber-top, .ueber-founders, .arzt-grid { grid-template-columns: 1fr; }
  .ueber-img { position: static; }
  .person-grid.cols-3 { grid-template-columns: 1fr; }
  .person-arzt { max-width: 100%; }
}
@media (max-width: 560px) {
  .person-grid.cols-2-center { grid-template-columns: 1fr; max-width: 380px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.container-narrow { max-width: 920px; }
.faq { padding: clamp(64px,8vw,110px) 0; }
.faq-title { text-align: center; font-size: clamp(24px,2.6vw,34px); font-weight: 500; color: var(--petrol); margin-bottom: 44px; }
.faq-item { background: rgba(255,255,255,.55); border: 1px solid rgba(48,74,89,.12); border-radius: 14px; margin-bottom: 14px; overflow: hidden; backdrop-filter: blur(4px); }
.faq-item[open] { background: rgba(255,255,255,.78); border-color: var(--sage); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; gap: 16px; font-size: 16px; font-weight: 600; color: var(--petrol); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; margin-left: auto; flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: rgba(48,74,89,.1); color: var(--petrol); display: grid; place-items: center; font-size: 18px; font-weight: 400; transition: .2s; }
.faq-item[open] summary::after { content: "–"; background: var(--mint); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { font-size: 15px; line-height: 1.7; color: #35424a; margin-bottom: 12px; }
.faq-body p:last-child { margin-bottom: 0; }

/* ============================================================
   KONTAKT / LEAD-FORMULAR
   ============================================================ */
.kontakt { padding: clamp(64px,8vw,110px) 0; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.kontakt-pill { margin-bottom: 22px; }
.kontakt-intro h2 { font-size: clamp(26px,3vw,42px); font-weight: 500; color: #fff; line-height: 1.15; margin-bottom: 18px; }
.kontakt-intro > p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.8); margin-bottom: 26px; max-width: 480px; }
.kontakt-points { display: grid; gap: 12px; }
.kontakt-points li { list-style: none; display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,.88); }
.kp-ico { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--mint); color: var(--petrol); display: grid; place-items: center; }
.kp-ico svg { width: 14px; height: 14px; }

.kontakt-form { background: #fff; border-radius: 22px; padding: clamp(26px,3vw,40px); box-shadow: 0 30px 60px rgba(0,0,0,.3); display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--petrol); }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea { font: inherit; font-size: 15px; color: var(--ink); padding: 12px 14px; border: 1.5px solid rgba(48,74,89,.18); border-radius: 11px; background: #fbfcfc; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(167,207,182,.25); }
.field textarea { resize: vertical; min-height: 70px; }
.field.invalid input, .field.invalid textarea { border-color: #d9534f; }
.field-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.5; color: #3d4a51; cursor: pointer; }
.field-check input { margin-top: 2px; flex: 0 0 auto; width: 16px; height: 16px; accent-color: var(--petrol); }
.field-check a { color: var(--petrol); text-decoration: underline; }
.kontakt-submit { justify-self: start; border: 0; cursor: pointer; margin-top: 4px; }
.form-status { font-size: 14px; margin: 0; min-height: 18px; }
.form-status.ok { color: #2f7d4f; font-weight: 600; }
.form-status.err { color: #c0392b; }

@media (max-width: 940px) { .kontakt-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #fff; padding: 40px 0 48px; border-top: 1px solid rgba(48,74,89,.1); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 26px; }
.footer-brand { width: 72px; height: 72px; flex: 0 0 auto; display: grid; place-items: center; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 16px 30px; }
.footer-nav a { font-size: 15px; font-weight: 500; color: var(--petrol); }
.footer-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 26px; border-top: 1px solid rgba(48,74,89,.1); flex-wrap: wrap; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; background: var(--petrol); color: #fff; display: grid; place-items: center; transition: transform .18s ease, background .18s ease; }
.footer-social a:hover { transform: translateY(-2px); background: var(--teal-slate); }
.footer-social svg { width: 20px; height: 20px; }
.footer-copy { font-size: 14px; color: var(--muted); }
.footer-legal { display: flex; gap: 26px; }
.footer-legal a { font-size: 14px; color: var(--petrol); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--muted); }

@media (max-width: 760px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   KLINIK-GALERIE
   ============================================================ */
.galerie { padding: clamp(50px,6vw,80px) 0; }
.gal-viewport { overflow: hidden; }
.gal-track { display: flex; gap: 22px; scroll-behavior: smooth; transition: transform .5s ease; will-change: transform; }
.gal-item { flex: 0 0 calc((100% - 44px) / 3); border-radius: 16px; overflow: hidden; box-shadow: 0 18px 40px rgba(29,44,53,.16); margin: 0; }
.gal-item img { width: 100%; display: block; aspect-ratio: 3/2; object-fit: cover; }
.gal-nav { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.gal-nav button { width: 50px; height: 50px; border-radius: 50%; cursor: pointer; background: #fff; border: 1.5px solid rgba(48,74,89,.2); color: var(--petrol); font-size: 22px; transition: background .2s; }
.gal-nav button:hover { background: var(--mint); }
.gal-nav button:disabled { opacity: .4; cursor: not-allowed; }

@media (max-width: 900px) {
  .gal-item { flex-basis: calc((100% - 22px) / 2); }
}
@media (max-width: 600px) {
  .gal-item { flex-basis: 100%; }
}


@media (max-width: 940px) {
  .praxis-grid { grid-template-columns: 1fr; }
  .praxis-contact { grid-template-columns: 1fr 1fr; }
  .gal-track { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .praxis-contact { grid-template-columns: 1fr; } }

@media (max-width: 940px) {
  .ablauf-scroller { height: auto; }
  .ablauf-pin { position: static; height: auto; display: block; padding: 10px 0 60px; }
  .ablauf-stage { grid-template-columns: 1fr; gap: 24px; }
  .ablauf-arc { display: none; }
  .ablauf-panels { min-height: 0; display: grid; gap: 20px; }
  .apanel { position: relative !important; opacity: 1 !important; visibility: visible !important; transform: none !important; inset: auto; border: 1px solid rgba(167,207,182,.25); border-radius: 16px; padding: 22px; }
  .ablauf-panels .btn-cta { margin-top: 4px; }
  .spr-cards { grid-template-columns: 1fr; }
  .spr-cards::before { display: none; }
}

/* ============================================================
   UNTERSEITEN (Behandlungen, Datenschutz, Impressum, Blog)
   ============================================================ */
.subpage .site-header { background: rgba(23,36,44,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 6px 24px rgba(0,0,0,.2); }
.page-hero { padding: 138px 0 clamp(48px,6vw,80px); }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.82); margin-bottom: 20px; }
.breadcrumb a { color: var(--sage); } .breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; opacity: .5; }
.page-hero .pill { margin-bottom: 20px; }
.page-hero h1 { color: #fff; font-size: clamp(28px,3.6vw,46px); font-weight: 600; line-height: 1.12; margin-bottom: 20px; }
.page-hero > .container > p { color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.6; max-width: 620px; margin-bottom: 30px; }

/* Blog page hero – larger with background image */
.blog-page-hero {
  position: relative;
  padding: 180px 0 clamp(90px, 11vw, 160px);
  background-image:
    linear-gradient(180deg, rgba(15,28,36,.78) 0%, rgba(15,28,36,.72) 45%, rgba(15,28,36,.92) 100%),
    url("/__l5e/assets-v1/534e0ba3-51a2-4021-93c0-a05e07207f99/blog-hero-bg.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.blog-page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(167,207,182,.18), transparent 60%);
  pointer-events: none;
}
.blog-page-hero > .container { position: relative; z-index: 1; }
.blog-page-hero h1 { font-size: clamp(34px, 4.4vw, 58px); margin-bottom: 24px; }
.blog-page-hero > .container > p { font-size: clamp(17px, 1.4vw, 20px); max-width: 660px; }
@media (max-width: 768px) {
  .blog-page-hero { padding: 140px 0 80px; background-position: center; }
}

.treatments { padding: clamp(56px,7vw,90px) 0; }
.treatment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.treatment-card { background: #fff; border-radius: 18px; padding: 32px 30px; box-shadow: 0 0 0 5px rgba(167,207,182,.14), 0 20px 44px rgba(29,44,53,.1); }
.treatment-card h2 { font-size: 21px; font-weight: 600; color: var(--petrol); margin: 16px 0 12px; }
.treatment-card p { font-size: 15px; line-height: 1.65; color: #3d4a51; }

.treat-process { padding: clamp(56px,7vw,90px) 0; }
.treat-process-title { text-align: center; font-size: clamp(24px,2.6vw,34px); font-weight: 500; color: var(--mint); margin-bottom: 44px; }
.tp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 44px; }
.tp-step { background: rgba(255,255,255,.04); border: 1px solid rgba(167,207,182,.28); border-radius: 18px; padding: 30px 26px; }
.tp-num { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--mint); color: var(--petrol); font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.tp-step h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.tp-step p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.78); }

@media (max-width: 760px) {
  .treatment-grid { grid-template-columns: 1fr; }
  .tp-grid { grid-template-columns: 1fr; }
}

/* Legal-Seiten (Impressum / Datenschutz) */
.legal { padding: clamp(48px,6vw,80px) 0 clamp(60px,8vw,110px); }
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: clamp(20px,2.2vw,28px); font-weight: 600; color: var(--petrol); margin: 36px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 17px; font-weight: 600; color: var(--petrol); margin: 22px 0 8px; }
.legal-content p { font-size: 15px; line-height: 1.7; color: #2f3e46; margin-bottom: 14px; }
.legal-content a { color: var(--petrol); text-decoration: underline; word-break: break-word; }
.legal-content strong { color: var(--petrol); }
.legal-note { background: #FFF7E8; border: 1px solid #E8D6A8; border-radius: 12px; padding: 16px 18px; font-size: 14px; line-height: 1.6; color: #6b5a2f; margin-bottom: 26px; }
.legal-block { background: rgba(48,74,89,.04); border: 1px solid rgba(48,74,89,.1); border-radius: 12px; padding: 18px 20px; margin-bottom: 16px; }
.legal-block p { margin-bottom: 4px; }

/* Blog-Liste + Artikel */
.blog-list { padding: clamp(56px,7vw,90px) 0; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.blog-card { background:#fff; border-radius:18px; padding:32px 30px; box-shadow: 0 0 0 5px rgba(167,207,182,.12), 0 18px 40px rgba(29,44,53,.1); display:flex; flex-direction:column; transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 5px rgba(167,207,182,.22), 0 28px 56px rgba(29,44,53,.16); }
.post-date { font-size:13px; font-weight:600; letter-spacing:.5px; text-transform:uppercase; color:#4f8069; margin-bottom:12px; }
.blog-card h2 { font-size:21px; font-weight:600; color:var(--petrol); line-height:1.25; margin-bottom:12px; }
.blog-card p { font-size:15px; line-height:1.6; color:#3d4a51; margin-bottom:20px; }
.blog-card .read-more { margin-top:auto; font-weight:600; color:var(--petrol); display:inline-flex; align-items:center; gap:6px; transition: gap .2s ease; }
.blog-card .read-more:hover { gap:10px; }
.article-lead { font-size:19px; line-height:1.6; color:#33454e; margin-bottom:26px; font-weight:500; }
.article-cta { margin-top:38px; padding:30px 32px; background: var(--petrol-deep); border-radius:18px; }
.article-cta h3 { color:#fff; font-size:20px; margin-bottom:10px; }
.article-cta p { color:rgba(255,255,255,.82); margin-bottom:18px; }
.legal-content ul { margin: 0 0 16px; padding-left: 22px; }
.legal-content ul li { font-size:15px; line-height:1.7; color:#2f3e46; margin-bottom:8px; }
.warn-list li::marker { color: var(--petrol); }
@media (max-width:760px){ .blog-grid { grid-template-columns:1fr; } }

/* ============================================================
   Behandlungs-Detailseiten
   ============================================================ */
/* klickbare Behandlungs-Karten (Übersicht + verwandte) */
a.treatment-card { display:block; transition: transform .2s ease, box-shadow .2s ease; }
a.treatment-card:hover { transform: translateY(-4px); box-shadow: 0 0 0 5px rgba(167,207,182,.24), 0 28px 56px rgba(29,44,53,.16); }
.treatment-card .more { display:inline-flex; align-items:center; gap:7px; margin-top:16px; font-size:14px; font-weight:600; color: var(--petrol); transition: gap .2s ease; }
.treatment-card .more svg { width:15px; height:15px; }
a.treatment-card:hover .more { gap:11px; }

/* Detail-Layout: Text + Fakten-Karte */
.tdetail { padding: clamp(56px,7vw,90px) 0; }
.tdetail-grid { display:grid; grid-template-columns: 1.25fr .75fr; gap: clamp(28px,4vw,56px); align-items:start; }
.tdetail-body h2 { font-size: clamp(22px,2.4vw,30px); font-weight:600; color: var(--petrol); margin: 36px 0 14px; }
.tdetail-body h2:first-child { margin-top:0; }
.tdetail-body h3 { font-size:18px; font-weight:600; color: var(--petrol); margin: 24px 0 8px; }
.tdetail-body p { font-size:16px; line-height:1.75; color:#2f3e46; margin-bottom:16px; }
.tdetail-body ul.ticks { margin: 6px 0 20px; display:grid; gap:11px; }
.tdetail-body ul.ticks li { position:relative; padding-left:30px; font-size:15px; line-height:1.6; color:#2f3e46; }
.tdetail-body ul.ticks li::before { content:""; position:absolute; left:0; top:1px; width:20px; height:20px; border-radius:50%; background:var(--mint); }
.tdetail-body ul.ticks li::after { content:""; position:absolute; left:6px; top:6px; width:8px; height:5px; border-left:2px solid var(--petrol); border-bottom:2px solid var(--petrol); transform:rotate(-45deg); }

/* Fakten-Karte (Auf einen Blick) */
.tdetail-grid aside { position:sticky; top:108px; align-self:start; display:grid; gap:20px; }
.facts-card { background:#fff; border-radius:18px; padding: 26px 26px 28px; box-shadow: 0 0 0 5px rgba(167,207,182,.14), 0 20px 44px rgba(29,44,53,.1); }
.facts-card h3 { font-size:17px; font-weight:600; color:var(--petrol); margin-bottom:10px; }
.facts-row { display:flex; align-items:center; gap:13px; padding:13px 0; border-bottom:1px solid rgba(48,74,89,.1); }
.facts-row:last-of-type { border-bottom:0; }
.fr-ico { flex:0 0 auto; width:36px; height:36px; border-radius:10px; background:var(--mint); color:var(--petrol); display:grid; place-items:center; }
.fr-ico svg { width:18px; height:18px; }
.fr-txt { display:flex; flex-direction:column; gap:2px; }
.fr-k { font-size:11.5px; color:var(--muted); text-transform:uppercase; letter-spacing:.5px; }
.fr-v { font-size:15px; font-weight:600; color:var(--petrol); line-height:1.3; }
.facts-card .btn-cta { display:flex; width:100%; justify-content:center; margin-top:22px; }
.price-tag { margin-top:18px; padding:14px 16px; background: var(--cream); border-radius:12px; }
.price-tag .pt-label { font-size:12px; text-transform:uppercase; letter-spacing:.5px; color:#7a6a45; }
.price-tag .pt-val { font-size:20px; font-weight:700; color:#3a2e16; }
.price-tag .pt-old { font-size:14px; color:#9a8a63; text-decoration:line-through; margin-left:8px; }

/* Seiten-Kontaktkarte (unter Fakten-Karte) */
.side-cta { background: var(--petrol-deep); color:#fff; border-radius:18px; padding:24px 24px 26px; }
.side-cta h3 { color:#fff; font-size:17px; font-weight:600; margin-bottom:8px; }
.side-cta p { font-size:14px; line-height:1.6; color:rgba(255,255,255,.8); margin-bottom:16px; }
.side-phone { display:inline-flex; align-items:center; gap:10px; font-size:19px; font-weight:700; color:#fff; margin-bottom:14px; }
.side-phone svg { width:18px; height:18px; color:var(--sage); flex:0 0 auto; }
.side-phone:hover { color:var(--sage); }
.side-rating { display:flex; align-items:center; gap:8px; font-size:13px; color:rgba(255,255,255,.85); }
.side-rating .stars { color:#F2C14E; letter-spacing:1px; font-size:14px; }

/* Vorteile-Band */
.benefits { padding: clamp(48px,6vw,80px) 0; background:#F2F6F3; }
.benefits-title { text-align:center; font-size: clamp(24px,2.6vw,34px); font-weight:500; color:var(--petrol); margin-bottom:38px; }
.benefit-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.benefit { background:#fff; border-radius:16px; padding:28px 26px; box-shadow:0 10px 30px rgba(29,44,53,.06); }
.benefit .svc-ico { width:52px; height:52px; margin-bottom:14px; }
.benefit h3 { font-size:17px; font-weight:600; color:var(--petrol); margin-bottom:8px; }
.benefit p { font-size:14.5px; line-height:1.6; color:#3d4a51; }

/* CTA-Band (Abschluss) */
.cta-band { padding: clamp(56px,7vw,90px) 0; text-align:center; }
.cta-band h2 { font-size: clamp(26px,3vw,40px); font-weight:500; color:var(--mint); margin-bottom:16px; }
.cta-band p { max-width:620px; margin:0 auto 28px; font-size:17px; line-height:1.6; color:rgba(255,255,255,.85); }
.cta-band .btn-cta { margin:0 auto; }

.related-title { text-align:center; font-size: clamp(24px,2.6vw,34px); font-weight:500; color:var(--petrol); margin-bottom:34px; }

/* Interlinks von Startseite -> Behandlungs-Detailseiten */
.svc-card { display:flex; flex-direction:column; }
.svc-more { display:inline-flex; align-items:center; gap:7px; margin-top:auto; padding-top:16px; font-size:14px; font-weight:600; color:var(--petrol); transition: gap .2s ease; }
.svc-more svg { width:15px; height:15px; }
.svc-more:hover { gap:11px; }
.prp-more { display:inline-flex; align-items:center; gap:7px; margin-top:8px; font-size:14px; font-weight:600; color:var(--mint); transition: gap .2s ease; }
.prp-more svg { width:15px; height:15px; }
.prp-more:hover { gap:11px; }
.services-cta { text-align:center; margin-top:48px; }

@media (max-width:860px){
  .tdetail-grid { grid-template-columns:1fr; }
  .tdetail-grid aside { position:static; }
  .benefit-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .benefit-grid { grid-template-columns:1fr; }
}

/* ============================================================
   PERFORMANCE & UX OPTIMIZATIONS (added)
   ============================================================ */

/* Prevent horizontal overflow WITHOUT breaking position:sticky.
   `overflow-x: clip` does not create a new scroll container, so the
   sticky hero pin keeps working. Never put overflow on <html>. */
body { overflow-x: clip; }
img, video { max-width: 100%; height: auto; }

/* Promote ONLY actually-animated elements to their own compositor layer */
.hero-pin { will-change: transform; }
.hero-model { will-change: opacity; transition: opacity .35s ease-out; }

/* Respect users that prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-scroller { height: auto !important; }
  .hero-pin { position: relative !important; height: auto !important; min-height: 0 !important; }
}

/* Mobile spacing & legibility refinements */
@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .container { padding-left: 20px; padding-right: 20px; }
  .hero-title { font-size: clamp(28px, 8vw, 40px); line-height: 1.15; }
  .hero-sub { font-size: 15px; }
  .btn-cta { min-height: 48px; padding: 14px 22px; }
  .sec-head h2, .intro-title, .vermeiden-title { font-size: clamp(22px, 6vw, 30px); line-height: 1.2; }
  section { padding-top: 56px; padding-bottom: 56px; }
}

/* Tap targets: 44px minimum on touch devices */
@media (hover: none) and (pointer: coarse) {
  .nav a, .btn-cta, .play-btn, .mistake-btn, .nav-toggle { min-height: 44px; }
}

/* Skip rendering work for large, static images far below the fold.
   Excludes hero-model and scene-img (those are animated / sticky). */
.klinik-1, .klinik-2, .klinik-3, .map, .testi-video img { content-visibility: auto; contain-intrinsic-size: 600px 400px; }


/* ============================================================
   VERKAUFSPSYCHOLOGIE: TRUST BAR + STICKY MOBILE CTA
   ============================================================ */
.trust-bar {
  background: linear-gradient(180deg, #1A2A33 0%, var(--petrol-deep) 100%);
  color: #fff; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.06);
}
.trust-bar .trust-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px,4vw,56px);
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.85); }
.trust-item svg { flex: 0 0 auto; width: 28px; height: 28px; color: var(--sage); }
.trust-item strong { display: block; color: #fff; font-size: 16px; font-weight: 700; line-height: 1.1; }
.trust-item span { display: block; font-size: 12.5px; color: rgba(255,255,255,.65); margin-top: 2px; }
@media (max-width: 760px) { .trust-bar .trust-grid { grid-template-columns: repeat(2,1fr); gap: 14px; } }

.sticky-mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  display: none; gap: 8px; padding: 10px; border-radius: 16px;
  background: rgba(23,36,44,.96); backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.sticky-mobile-cta a {
  flex: 1; text-align: center; padding: 13px 10px; border-radius: 12px;
  font-weight: 600; font-size: 14px; letter-spacing: .2px;
}
.sticky-mobile-cta .sm-call { background: rgba(255,255,255,.1); color: #fff; }
.sticky-mobile-cta .sm-cta  { background: var(--cream); color: var(--petrol-deep); }
@media (max-width: 760px) { .sticky-mobile-cta { display: flex; } body { padding-bottom: 86px; } }

.wa-float {
  position: fixed; right: 18px; bottom: 96px; z-index: 55;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
@media (min-width: 761px) { .wa-float { bottom: 22px; } }

/* ============================================================
   ÜBER UNS – Team-Bereich
   ============================================================ */
.team-about {
  background: linear-gradient(180deg, #F6F4EE 0%, #ECE7DC 100%);
  padding: clamp(70px, 9vw, 130px) 0;
  color: var(--ink);
}
.team-about .container { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px,5vw,72px); align-items: center; }
.team-about .ta-copy .pill-light {
  display: inline-block; padding: 7px 14px; border-radius: 999px;
  background: var(--petrol); color: #fff; font-size: 13px; font-weight: 600;
  letter-spacing: .4px; margin-bottom: 18px; text-transform: uppercase;
}
.team-about h2 {
  font-size: clamp(30px, 3.6vw, 50px); font-weight: 600; line-height: 1.1;
  color: var(--petrol-deep); margin-bottom: 18px; letter-spacing: -.5px;
}
.team-about h2 em { font-style: normal; color: var(--petrol); font-weight: 700;
  background: linear-gradient(120deg, transparent 60%, rgba(220,255,233,.7) 60%); padding: 0 4px; }
.team-about .ta-lead { font-size: 18px; line-height: 1.65; color: #2f3e46; margin-bottom: 18px; max-width: 540px; }
.team-about .ta-points { display: grid; gap: 12px; margin: 22px 0 28px; }
.team-about .ta-points li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: #2c3a43; }
.team-about .ta-points li::before {
  content: ""; flex: 0 0 auto; margin-top: 8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--sage) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D2C35' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}
.team-about .ta-visual {
  position: relative; border-radius: 26px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(29,44,53,.25), 0 0 0 1px rgba(255,255,255,.5) inset;
  aspect-ratio: 16/10;
}
.team-about .ta-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-about .ta-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(29,44,53,.35) 100%);
  pointer-events: none;
}
.team-about .ta-badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; gap: 18px; flex-wrap: wrap; color: #fff;
}
.team-about .ta-badge .b { background: rgba(0,0,0,.4); backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 12px; font-size: 13px; }
.team-about .ta-badge .b strong { display: block; font-size: 18px; font-weight: 700; }
.team-about .ta-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 32px; }
.team-about .ta-stats .s { background: #fff; border-radius: 14px; padding: 16px; text-align: center;
  box-shadow: 0 6px 18px rgba(29,44,53,.08); }
.team-about .ta-stats .s strong { display: block; font-size: 26px; font-weight: 700; color: var(--petrol-deep); }
.team-about .ta-stats .s span { font-size: 12.5px; color: var(--muted); }
@media (max-width: 960px) {
  .team-about .container { grid-template-columns: 1fr; }
  .team-about .ta-stats { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   BLOG LAYOUT MIT SIDEBAR + ARTIKEL-LESBARKEIT
   ============================================================ */
.blog-layout {
  display: grid; grid-template-columns: minmax(0,1fr) 340px;
  gap: clamp(28px,4vw,56px);
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(140px,14vw,200px) clamp(20px,4vw,56px) clamp(60px,8vw,110px);
}
.blog-main { min-width: 0; }
.blog-meta {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  font-size: 13.5px; color: var(--muted); margin-bottom: 14px;
}
.blog-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); opacity: .5; }
.blog-meta .tag { background: var(--mint); color: var(--petrol); padding: 3px 10px;
  border-radius: 999px; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .4px; }
.blog-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: 18px; margin: 22px 0 28px; box-shadow: 0 20px 50px rgba(29,44,53,.18); }
.blog-title { font-size: clamp(30px,3.6vw,46px); line-height: 1.12; letter-spacing: -.5px;
  color: var(--petrol-deep); font-weight: 700; margin: 6px 0 8px; }
.blog-excerpt { font-size: 19px; color: #2f3e46; line-height: 1.55; margin-bottom: 22px; }

/* Inhaltsverzeichnis */
.blog-toc {
  background: #F4F7F5; border: 1px solid #DCE6E1; border-radius: 14px;
  padding: 20px 22px; margin: 0 0 28px;
}
.blog-toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .8px; color: var(--petrol); margin-bottom: 12px; }
.blog-toc ol { list-style: decimal inside; display: grid; gap: 7px; color: #2c3a43; }
.blog-toc ol li a { color: var(--petrol-deep); border-bottom: 1px dashed transparent; transition: border-color .2s; }
.blog-toc ol li a:hover { border-color: var(--petrol); }

/* "Auf einen Blick" */
.blog-keybox {
  background: linear-gradient(135deg, #DCFFE9 0%, #F6FFFB 100%);
  border-left: 4px solid var(--petrol);
  border-radius: 12px; padding: 22px 24px; margin: 26px 0;
}
.blog-keybox h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .8px; color: var(--petrol); margin-bottom: 10px; }
.blog-keybox ul { display: grid; gap: 8px; }
.blog-keybox li { font-size: 15px; line-height: 1.5; color: #1d2c35; padding-left: 22px; position: relative; }
.blog-keybox li::before { content: "✓"; position: absolute; left: 0; color: var(--petrol); font-weight: 700; }

/* Artikel-Body */
.blog-body {
  font-size: 17.5px; line-height: 1.75; color: #2a3740; max-width: 72ch;
}
.blog-body h2 { font-size: clamp(24px,2.4vw,32px); color: var(--petrol-deep); font-weight: 700;
  margin: 44px 0 14px; letter-spacing: -.3px; line-height: 1.2; scroll-margin-top: 100px; }
.blog-body h3 { font-size: clamp(19px,1.8vw,23px); color: var(--petrol); font-weight: 700;
  margin: 28px 0 10px; line-height: 1.3; }
.blog-body p { margin: 0 0 16px; }
.blog-body strong { color: var(--petrol-deep); font-weight: 700; }
.blog-body ul, .blog-body ol { margin: 14px 0 22px; padding-left: 22px; display: grid; gap: 9px; }
.blog-body ul li, .blog-body ol li { line-height: 1.65; }
.blog-body ul li::marker { color: var(--petrol); }
.blog-body a { color: var(--petrol); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.blog-body a:hover { color: var(--petrol-deep); }
.blog-body blockquote {
  margin: 24px 0; padding: 18px 22px; border-left: 4px solid var(--sage);
  background: #F4F7F5; border-radius: 0 12px 12px 0; font-style: italic; color: #2c3a43;
}
.blog-body .info-box {
  background: #FFF8EC; border: 1px solid #EFD9A8; border-radius: 12px;
  padding: 18px 22px; margin: 22px 0; font-size: 16px;
}
.blog-body .info-box strong { color: #7A5A11; }
.blog-body table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px; }
.blog-body th, .blog-body td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #E2E8E5; }
.blog-body th { background: #F4F7F5; color: var(--petrol-deep); font-weight: 700; }

/* FAQ */
.blog-faq { margin-top: 40px; }
.blog-faq h2 { font-size: 28px; color: var(--petrol-deep); margin-bottom: 18px; }
.blog-faq details { background: #fff; border: 1px solid #E2E8E5; border-radius: 12px;
  padding: 16px 20px; margin-bottom: 10px; }
.blog-faq summary { font-weight: 700; color: var(--petrol-deep); cursor: pointer; font-size: 16.5px; }
.blog-faq details[open] { box-shadow: 0 8px 20px rgba(29,44,53,.08); }
.blog-faq details p { margin-top: 10px; font-size: 15.5px; line-height: 1.65; color: #2f3e46; }

/* CTA-Box am Ende */
.blog-cta {
  margin: 44px 0 10px;
  background: linear-gradient(135deg, var(--petrol-deep) 0%, var(--petrol) 100%);
  color: #fff; border-radius: 22px; padding: 36px clamp(24px,4vw,44px);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  box-shadow: 0 30px 60px rgba(29,44,53,.25);
}
.blog-cta h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; line-height: 1.25; }
.blog-cta p { color: rgba(255,255,255,.8); font-size: 15.5px; }
.blog-cta .btn-cta { background: var(--cream); color: var(--petrol-deep); }
@media (max-width: 640px) { .blog-cta { grid-template-columns: 1fr; } }

/* Sidebar */
.blog-sidebar { position: sticky; top: 100px; align-self: start; display: grid; gap: 20px; }
.side-card {
  background: #fff; border: 1px solid #E2E8E5; border-radius: 16px;
  padding: 22px; box-shadow: 0 8px 24px rgba(29,44,53,.06);
}
.side-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .8px;
  color: var(--petrol); margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid #E2E8E5; }
.side-contact .sc-row { display: flex; align-items: center; gap: 12px; padding: 10px 0;
  font-size: 14.5px; color: #2c3a43; border-bottom: 1px dashed #E2E8E5; }
.side-contact .sc-row:last-of-type { border-bottom: 0; }
.side-contact .sc-row svg { width: 18px; height: 18px; color: var(--petrol); flex: 0 0 auto; }
.side-contact .sc-row a { color: var(--petrol-deep); font-weight: 600; }
.side-contact .sc-cta {
  display: block; text-align: center; margin-top: 14px;
  padding: 12px 16px; border-radius: 10px;
  background: var(--cream); color: var(--petrol-deep); font-weight: 700; font-size: 14px;
  transition: transform .15s ease;
}
.side-contact .sc-cta:hover { transform: translateY(-2px); }
.side-posts ul { display: grid; gap: 14px; }
.side-posts li a { display: grid; gap: 4px; padding: 10px; border-radius: 10px;
  transition: background .15s ease; }
.side-posts li a:hover { background: #F4F7F5; }
.side-posts .sp-title { font-size: 14.5px; line-height: 1.35; font-weight: 600; color: var(--petrol-deep); }
.side-posts .sp-meta { font-size: 12px; color: var(--muted); }
.side-topics { display: flex; flex-wrap: wrap; gap: 8px; }
.side-topics a { padding: 6px 12px; border-radius: 999px;
  background: #F4F7F5; color: var(--petrol-deep); font-size: 13px; font-weight: 500;
  border: 1px solid #E2E8E5; }
.side-topics a:hover { background: var(--petrol); color: #fff; border-color: var(--petrol); }
.side-analyse {
  background: linear-gradient(135deg, var(--petrol-deep) 0%, var(--petrol) 100%);
  color: #fff; border: 0;
}
.side-analyse h4 { color: rgba(255,255,255,.88); border-color: rgba(255,255,255,.15); }
.side-analyse p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.side-analyse .sc-cta { background: var(--cream); color: var(--petrol-deep); }

@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

/* Blog-Index Grid Upgrade */
.blog-list { background: linear-gradient(180deg, #F3F7F5 0%, #E8F0EC 100%); }
.blog-list .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-list .blog-card {
  background: #fff; border-radius: 20px; overflow: hidden; padding: 0;
  border: 1px solid rgba(167,207,182,.25);
  box-shadow: 0 6px 18px rgba(29,44,53,.06);
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.blog-list .blog-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(29,44,53,.18); border-color: rgba(167,207,182,.55); }
.blog-list .blog-card > a:first-child { position: relative; overflow: hidden; display: block; aspect-ratio: 16/10; background: linear-gradient(135deg,#dfece4,#cfe0d6); }
.blog-list .blog-card > a:first-child::after { content:""; position:absolute; inset:auto 0 0 0; height: 45%; background: linear-gradient(180deg, transparent, rgba(29,44,53,.32)); opacity: 0; transition: opacity .3s ease; pointer-events:none; }
.blog-list .blog-card:hover > a:first-child::after { opacity: 1; }
.blog-list .blog-card .card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.blog-list .blog-card:hover .card-img { transform: scale(1.06); }
.blog-list .blog-card .card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-list .blog-card h2 { font-size: 19px; line-height: 1.3; color: var(--petrol-deep); font-weight: 700; margin: 0; }
.blog-list .blog-card h2 a { color: inherit; text-decoration: none; background-image: linear-gradient(currentColor,currentColor); background-size: 0 1.5px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .3s ease; }
.blog-list .blog-card:hover h2 a { background-size: 100% 1.5px; }
.blog-list .blog-card p { font-size: 14.5px; color: #5b6970; line-height: 1.55; flex: 1; margin: 0; }
.blog-list .blog-card .read-more { color: var(--petrol); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; text-decoration: none;
  transition: gap .2s ease, color .2s ease; }
.blog-list .blog-card .read-more:hover { gap: 12px; color: var(--petrol-deep); }
.blog-list .post-date { font-size: 11.5px; color: var(--petrol); text-transform: uppercase; letter-spacing: .8px; font-weight: 700;
  display: inline-flex; align-self: flex-start; padding: 5px 11px; border-radius: 999px;
  background: rgba(167,207,182,.18); border: 1px solid rgba(167,207,182,.4); }
@media (max-width: 960px) { .blog-list .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .blog-list .blog-grid { grid-template-columns: 1fr; } }


/* Hero CTA Pulsation */
.btn-cta.pulse { position: relative; }
.btn-cta.pulse::before {
  content: ""; position: absolute; inset: -3px; border-radius: 999px;
  border: 2px solid var(--cream); opacity: .6; animation: ctaPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.18); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .btn-cta.pulse::before { animation: none; } }

/* Hero scroll-hint upgrade */
.hero-scroll-hint { bottom: 22px; }
.hero-scroll-hint span { font-size: 11.5px; font-weight: 600; }

/* ============================================================
   v2: NEW HERO (team image) + MODERN NAV TOUCHUPS + LEAD MODAL
   ============================================================ */

/* Floating header with a subtle translucent backdrop so nav stays legible
   over both hero image and light/dark sections. */
.site-header {
  background: rgba(23, 36, 44, .42);
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
/* When scrolled, switch to a solid translucent dark bar so the centered logo
   and pill-nav don't overlap light section content on laptops/desktops. */
.site-header.scrolled {
  background: rgba(23, 36, 44, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
}
.nav a { position: relative; }


/* ===== Hero v2 (full-bleed image background) ===== */
.hg-hero {
  position: relative;
  min-height: 70vh;
  height: 70vh;
  padding: 120px clamp(20px, 4vw, 56px) 80px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hg-hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.hg-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform-origin: center 35%;
  animation: hg-hero-zoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hg-hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hg-hero__bg img { animation: none; }
}

.hg-hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 80% at 25% 55%, rgba(8,18,26,.85) 0%, rgba(8,18,26,.55) 45%, rgba(8,18,26,0) 75%),
    linear-gradient(90deg, rgba(8,18,26,.78) 0%, rgba(8,18,26,.45) 50%, rgba(8,18,26,.15) 100%),
    linear-gradient(180deg, rgba(8,18,26,.35) 0%, rgba(8,18,26,.55) 100%);
}
.hg-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hg-hero__copy {
  max-width: 880px;
  position: relative;
  text-align: center;
}
.hg-hero__copy::before {
  content: "";
  position: absolute;
  inset: -60px -80px -50px -80px;
  background: radial-gradient(ellipse at 50% 50%, rgba(8,18,26,.6) 0%, rgba(8,18,26,.3) 55%, rgba(8,18,26,0) 80%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}
.hg-hero__copy > * { position: relative; }

.hg-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28);
  font-size: 14px; font-weight: 600; letter-spacing: .2px;
}
.hg-pill__dot { width:8px; height:8px; border-radius:50%; background:#7CE39B; box-shadow: 0 0 12px #7CE39B; }
.hg-pill--dark { background: rgba(48,74,89,.1); border-color: rgba(48,74,89,.2); color: var(--petrol); }
.hg-hero__title {
  margin-top: 22px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -.025em;
  text-shadow: 0 2px 18px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.5);
  color: #fff;
}

.hg-hero__sub-title { display:block; margin-top: 14px; font-size: clamp(20px, 2.4vw, 30px); font-weight: 500; opacity:.96; color: #fff; }
.hg-accent {
  background: linear-gradient(120deg, #FFD98A 0%, #FFE9A8 50%, #FFC76B 100%);
  -webkit-background-clip: text; background-clip: text;
  color: #FFD98A;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.25));
}

.hg-hero__lead { margin: 22px auto 0; font-size: clamp(17px, 1.45vw, 20px); line-height: 1.6; max-width: 680px; opacity: 1; color: rgba(255,255,255,.95); text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.hg-hero__cta-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }


.hg-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none; line-height: 1;
}
.hg-cta--primary {
  background: linear-gradient(135deg, #EDDFC5, #F5E9CE);
  color: #1D2C35;
  box-shadow: 0 10px 24px -8px rgba(237,223,197,.6), inset 0 1px 0 rgba(255,255,255,.6);
  animation: hg-cta-glow 3.2s ease-in-out infinite;
}
.hg-cta--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(237,223,197,.7); animation-play-state: paused; }
.hg-cta--primary:disabled { opacity:.5; cursor:not-allowed; transform:none; box-shadow:none; animation:none; }
@keyframes hg-cta-glow {
  0%, 100% { box-shadow: 0 10px 24px -8px rgba(237,223,197,.55), 0 0 0 0 rgba(237,223,197,.0), inset 0 1px 0 rgba(255,255,255,.6); }
  50%      { box-shadow: 0 12px 28px -8px rgba(237,223,197,.75), 0 0 0 6px rgba(237,223,197,.18), inset 0 1px 0 rgba(255,255,255,.6); }
}
@media (prefers-reduced-motion: reduce) {
  .hg-cta--primary { animation: none; }
}

.hg-cta--ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.hg-cta--ghost:hover { background: rgba(255,255,255,.18); }

.hg-hero__trust { margin: 30px auto 0; display:flex; flex-wrap:wrap; gap: 28px; list-style:none; padding:0; justify-content: center; }
.hg-hero__trust li { font-size: 14px; opacity:.95; display:flex; flex-direction:column; align-items: center; }
.hg-hero__trust strong { font-size: 17px; color: var(--cream); }

.hg-hero__scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(255,255,255,.85); font-size: 11.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  animation: hgBounce 2s ease-in-out infinite;
  text-decoration: none;
}
@keyframes hgBounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }
@media (prefers-reduced-motion: reduce) { .hg-hero__scroll { animation: none; } }

@media (max-width: 900px) {
  .hg-hero { min-height: 70vh; height: auto; padding: 110px 20px 70px; }
  .hg-hero__bg img { object-position: center center; }
  .hg-hero__overlay { background: linear-gradient(180deg, rgba(15,28,38,.78), rgba(15,28,38,.72)); }
  .hg-hero__scroll { display: none; }
}


/* ===== Patient-Journey relocated section ===== */
.journey-section { padding: 80px 0 0; background: #1D2C35; }
.journey-intro { text-align:center; padding: 0 20px; }
.journey-intro .kicker { display:inline-block; font-size:13px; letter-spacing:1.6px; text-transform:uppercase; color: var(--cream); margin-bottom: 14px; }
.journey-intro h2 { color:#fff; font-size: clamp(28px,3.4vw,42px); margin-bottom: 10px; font-weight: 600; }
.journey-intro h2 strong { color: var(--cream); }
.journey-intro .lead { color: rgba(255,255,255,.88); max-width: 620px; margin: 0 auto; font-size: 16px; }
.journey-section .hero-scroller { margin-top: 30px; height: auto; }
.journey-section .hero-pin { position: relative; height: auto; min-height: 540px; }

/* ===== Floating sticky CTA (desktop) ===== */
.hg-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  padding: 14px 20px;
}
body.hg-modal-open .hg-fab { display: none !important; }
@media (max-width: 768px) { .hg-fab { display: none !important; } }

/* ===== MULTISTEP MODAL ===== */
.hg-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; }
.hg-modal__backdrop { position:absolute; inset:0; background: rgba(15,24,30,.72); backdrop-filter: blur(6px); border:none; cursor:pointer; }
.hg-modal__card {
  position: relative;
  width: min(640px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #fff; color: #1D2C35;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
  animation: hgIn .25s ease-out;
}
@keyframes hgIn { from { opacity: 0; transform: translateY(10px) scale(.98); } }
.hg-modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(0,0,0,.05); font-size: 22px; line-height: 1; cursor: pointer;
  display:grid; place-items:center;
}
.hg-modal__close:hover { background: rgba(0,0,0,.1); }
.hg-modal__head { padding: 28px 28px 0; }
.hg-modal__head h2 { font-size: 24px; margin: 10px 0 18px; font-weight: 700; letter-spacing: -.01em; }
.hg-steps { display:flex; gap: 10px; margin-top: 12px; }
.hg-step { flex:1; display:flex; flex-direction:column; align-items: center; gap: 4px; padding: 10px 6px; border-radius: 12px; background: #F4F1EB; opacity: .55; transition: all .25s ease; }
.hg-step span { width:28px; height:28px; border-radius:50%; background:#fff; display:grid; place-items:center; font-weight:700; font-size:13px; }
.hg-step em { font-style: normal; font-size: 12px; font-weight: 600; }
.hg-step.is-active { opacity:1; background: var(--petrol); color: #fff; }
.hg-step.is-active span { background: var(--cream); color: var(--petrol); }
.hg-modal__body { padding: 24px 28px; }
.hg-form { display:flex; flex-direction: column; gap: 12px; }
.hg-label { font-size: 13px; font-weight: 700; color: #1D2C35; margin-top: 4px; }
.hg-help { font-size: 13px; color: #6b7480; margin-top: -4px; }
.hg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 8px; }
@media (max-width:520px) { .hg-grid { grid-template-columns: repeat(2,1fr); } }
.hg-tile { padding: 14px 8px; border-radius: 12px; border: 1.5px solid #E4E6E2; background:#fff; font-weight:600; font-size:13px; cursor:pointer; display:flex; flex-direction:column; align-items:center; gap:6px; transition: all .15s ease; color: #1D2C35; }
.hg-tile:hover { border-color: var(--petrol); }
.hg-tile.is-active { border-color: var(--petrol); background: var(--petrol); color:#fff; }
.hg-tile__emoji { font-size: 22px; }
.hg-tile__icon { width: 56px; height: 56px; object-fit: contain; display: block; }
.hg-tile.is-active .hg-tile__icon { filter: drop-shadow(0 2px 6px rgba(29,44,53,0.18)); }
.hg-input { width:100%; padding: 13px 14px; border-radius: 10px; border: 1.5px solid #E4E6E2; font-size: 15px; font-family: inherit; background:#fff; color: #1D2C35; }
.hg-input:focus { outline: none; border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(48,74,89,.15); }
.hg-dropzone { display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 8px; padding: 28px 16px; border: 2px dashed #C8CFC9; border-radius: 14px; background:#FAFAF6; color: var(--petrol); cursor:pointer; transition: all .2s ease; }
.hg-dropzone:hover { background: #F2EFE6; border-color: var(--petrol); }
.hg-dropzone strong { font-size: 15px; }
.hg-dropzone span { font-size: 12.5px; opacity:.7; }
.hg-thumbs { display:grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 8px; }
@media (max-width: 520px) { .hg-thumbs { grid-template-columns: repeat(2,1fr); } }
.hg-thumb { position: relative; aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; background:#f4f1eb; }
.hg-thumb img { width:100%; height:100%; object-fit: cover; display:block; }
.hg-thumb button { position:absolute; top:4px; right:4px; width:24px; height:24px; border-radius:50%; border:none; background: rgba(0,0,0,.6); color:#fff; cursor:pointer; font-size:16px; line-height:1; }
.hg-checkbox { display:flex; gap:10px; align-items:flex-start; font-size:13px; line-height: 1.4; color:#3b4750; margin-top: 6px; }
.hg-checkbox input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--petrol); }
.hg-checkbox a { color: var(--petrol); text-decoration: underline; }
.hg-modal__foot { display:flex; justify-content: space-between; gap: 10px; padding: 18px 28px 28px; border-top: 1px solid #F0EDE4; }
.hg-modal__foot .hg-cta--ghost { color: var(--petrol); background: transparent; border: 1.5px solid #E4E6E2; }
.hg-modal__foot .hg-cta--ghost:hover { background: #F4F1EB; }
.hg-success { padding: 48px 28px; text-align:center; }
.hg-success__icon { width: 72px; height: 72px; border-radius: 50%; background: #DCFFE9; color: #2F7A4A; display:grid; place-items:center; font-size: 38px; margin: 0 auto 18px; }
.hg-success h2 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.hg-success p { color: #4a5862; font-size: 15px; line-height: 1.55; margin-bottom: 22px; }

/* Hide old hero scroll-hint placeholder if any */
#new-hero-mount { min-height: 0; }

/* ===== Video Testimonials ===== */
.vtest { padding: 90px 0; background: #1D2C35; color: #fff; }
.vtest-head { text-align: center; max-width: 760px; margin: 0 auto 48px; padding: 0 20px; }
.vtest-head .kicker { display:inline-block; font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--cream); margin-bottom: 14px; }
.vtest-head h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 600; margin: 0 0 14px; line-height: 1.15; }
.vtest-head h2 strong { color: var(--cream); font-weight: 700; }
.vtest-lead { font-size: 16px; line-height: 1.6; opacity: .85; margin: 0; }
.vtest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.vtest-card {
  margin: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vtest-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,.5); border-color: rgba(237,223,197,.35); }
.vtest-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vtest-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
.vtest-card figcaption {
  padding: 16px 20px 18px;
  display: flex; flex-direction: column; gap: 2px;
}
.vtest-card figcaption strong { font-size: 15px; color: var(--cream); }
.vtest-card figcaption span { font-size: 13px; opacity: .75; }

@media (max-width: 980px) {
  .vtest-grid { grid-template-columns: 1fr; gap: 18px; }
  .vtest { padding: 64px 0; }
}

/* Intro video embed */
.intro-media--video { background:#000; }
.intro-video { position: relative; width: 100%; aspect-ratio: 16/9; }
.intro-video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }

/* Inline lead form (non-modal) */
.hg-inline { width: 100%; }
.hg-inline .hg-modal__card--inline { position: static; max-width: 720px; width: 100%; margin: 0 auto; max-height: none; transform: none; box-shadow: 0 30px 80px -30px rgba(15,24,30,.25); }

/* ============================================================
   SMALL LAPTOPS (12"–13" / 1024–1366 CSS px)
   Avoid navbar pills colliding with the centered logo and
   keep hero title / scroll cue from clipping at short heights.
   ============================================================ */
@media (min-width: 941px) and (max-width: 1366px) {
  /* Header: tighten paddings and pill nav, shrink centered brand */
  .site-header { padding: 12px clamp(16px, 2.4vw, 32px); }
  .nav { gap: 14px; }
  .nav-group { padding: 7px 14px; gap: 12px; }
  .nav a { font-size: 13.5px; }
  .brand { width: 76px; height: 76px; margin: 0 4px; }
  .site-header.scrolled { padding-top: 6px; padding-bottom: 6px; }
  .site-header.scrolled .brand { width: 56px; height: 56px; }

  /* Hero: keep big headline from clipping the viewport edges
     and push copy below the centered floating logo. */
  .hg-hero__inner { padding-left: 40px; padding-right: 40px; padding-top: 40px; }

  .hg-hero__title { font-size: clamp(40px, 4.8vw, 60px); }
  .hg-hero__sub-title { font-size: clamp(18px, 1.9vw, 24px); }
  .hg-hero__lead { font-size: 16px; max-width: 620px; }

  /* Sections: trim vertical padding so more content fits on short laptop screens */
  section { padding-top: clamp(56px, 6vw, 88px); padding-bottom: clamp(56px, 6vw, 88px); }

  /* Trust bar: keep all three items on one line at 1280–1366 */
  .trust-grid { gap: 18px; }
  .trust-item strong { font-size: 14.5px; line-height: 1.25; }
  .trust-item span { font-size: 12.5px; }

  /* Google reviews + carousels: align with narrower laptop width */
  .g-reviews .container,
  .container { max-width: min(1200px, 94vw); }

  /* Before/After carousel: shrink stage a touch so thumbs row doesn't overflow */
  .ba-stage { max-width: 100%; }
  .ba-thumbs { gap: 8px; }
  .ba-thumb { width: 76px; height: 76px; }
}

/* Hide hero scroll cue on short laptop displays so it
   never overlaps the CTA row (1280x720, 1366x768). */
@media (max-height: 800px) and (min-width: 941px) {
  .hg-hero__scroll { display: none; }
}


/* ============ GOOGLE REVIEWS SLIDER ============ */
.g-reviews { padding: 72px 0; background: linear-gradient(180deg, #F8F5EE 0%, #FFFFFF 100%); }
.g-reviews .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.gr-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.gr-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; margin: 10px 0 14px; color: #1F3641; letter-spacing: -0.02em; }
.gr-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: #1F3641; background: #fff; padding: 8px 14px; border-radius: 999px; border: 1px solid #E5DECB; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.gr-rating { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.gr-rating strong { font-size: 1.7rem; color: #1F3641; font-weight: 700; }
.gr-rating__stars { color: #F5B400; font-size: 1.1rem; letter-spacing: 2px; }
.gr-rating__count { color: #6B7378; font-size: .92rem; }
.gr-nav { display: flex; gap: 10px; }
.gr-nav-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid #D9D2C5; background: #fff; font-size: 1.4rem; color: #1F3641; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all .2s ease; }
.gr-nav-btn:hover { background: #1F3641; color: #fff; border-color: #1F3641; transform: translateY(-1px); }

.gr-viewport { overflow: hidden; }
.gr-track { display: flex; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.gr-card { flex: 0 0 100%; max-width: 100%; box-sizing: border-box; padding: 6px 10px; display: flex; transition: flex-basis .3s ease, max-width .3s ease; }
.gr-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: #d6d0c0; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.gr-dot.is-active { background: #1F3641; transform: scale(1.25); }
.gr-card__inner { flex: 1 1 auto; display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid #ECE6D6; border-radius: 18px; box-shadow: 0 6px 24px rgba(31,54,65,.06); padding: 26px 24px; min-height: 240px; }
.gr-card > * { box-sizing: border-box; }
.gr-card__head { display: flex; align-items: center; gap: 12px; }
.gr-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #1F3641, #2A4654); color: #EAD9B8; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: .95rem; letter-spacing: .5px; flex-shrink: 0; }
.gr-name { display: block; font-weight: 600; color: #1F3641; font-size: .98rem; line-height: 1.2; }
.gr-when { display: block; font-size: .8rem; color: #8A969B; margin-top: 2px; }
.gr-card__head .gr-g { margin-left: auto; flex-shrink: 0; }
.gr-stars { color: #F5B400; letter-spacing: 2px; font-size: 1rem; }
.gr-text { color: #3A4A52; font-size: .96rem; line-height: 1.55; margin: 0; }

.gr-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.gr-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: #D9D2C5; cursor: pointer; padding: 0; transition: all .25s ease; }
.gr-dot.is-active { background: #1F3641; width: 24px; border-radius: 999px; }

.gr-cta { text-align: center; margin-top: 28px; }
.gr-cta-link { display: inline-flex; align-items: center; gap: 8px; color: #1F3641; font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color .2s ease; }
.gr-cta-link:hover { border-bottom-color: #1F3641; }

@media (max-width: 720px) {
  .g-reviews { padding: 56px 0; }
  .gr-head { flex-direction: column; align-items: flex-start; }
  .gr-nav { align-self: flex-end; }
  article.gr-card { margin: 6px 8px; min-height: auto; }
}
