/* =========================================================
   FRAUEN ÄRZTINNEN KONSTANZ — Native HTML Site
   Style v1.0 (26.05.2026)

   Inhalt:
   1.  Tokens & Reset
   2.  Typography
   3.  Layout (Container, Sections, Grid)
   4.  Header & Navigation
   5.  Hero & Page-Hero
   6.  Hero-Questions (schwebende Fragen)
   7.  Buttons & CTAs
   8.  Cards (Wegweiser-Tiles, Angebot-Cards)
   9.  Team
   10. Patientinnen-Reise
   11. FAQ
   12. Quiz (Hormonkompass + Verhütungs-Check)
   13. Forms
   14. Footer
   15. Mobile CTA-Bar
   16. Utilities & Helpers
   17. Reveal-Animations
   ========================================================= */

/* ---------- 1. Tokens & Reset ---------- */
:root {
  --navy: #164193;
  --navy-soft: #1F4FA8;
  --coral: #FF7175;
  --coral-soft: #ff7276;
  --rosa: #F7C8D8;
  --rosa-light: #FDEEF3;
  --text: #1F2238;
  --text-dim: #6B7088;
  --rule: #EFE6E4;
  --bg: #FFFFFF;
  --max-width: 1180px;
  --max-narrow: 760px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "avenir-next-lt-pro", 'Avenir Next', Avenir, 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 64px;  /* Platz für Mobile-CTA-Bar */
}
@media (min-width: 721px) { body { padding-bottom: 0; } }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--navy); }
button { font-family: inherit; cursor: pointer; }

/* ---------- 2. Typography ---------- */
h1, h2, h3, h4 { color: var(--navy); font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(36px, 5.5vw, 60px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; letter-spacing: 0.02em; }
.accent { color: var(--coral); font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.eyebrow--center { display: block; text-align: center; }

p { color: var(--text); line-height: 1.65; }
.lead { font-size: 18px; color: var(--text-dim); line-height: 1.55; }

/* ---------- 3. Layout ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--max-narrow); }
.container--wide { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 40px 0; }
.section--tight { padding: 28px 0; }
.section--rosa { background: var(--rosa-light); }
.section-title { text-align: center; margin-bottom: 16px; }
.section-lead { text-align: center; max-width: 640px; margin: 0 auto 48px; color: var(--text-dim); font-size: 17px; }

/* ---------- 4. Header & Navigation ---------- */
.site-header {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
  transition: transform 0.3s ease;
}
.site-header.is-hidden { transform: translateY(-100%); }

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto;
  padding: 12px 24px;
  gap: 24px;
}
.site-header__logo { display: inline-block; line-height: 0; }
.site-header__logo svg, .site-header__logo img { width: 200px; max-height: 50px; }
@media (max-width: 720px) { .site-header__logo svg, .site-header__logo img { width: 140px; } }

.nav { display: flex; align-items: center; gap: 8px; }
.nav__toggle {
  display: none;
  background: transparent; border: 0;
  padding: 8px; font-size: 24px;
  color: var(--navy);
}
.nav__list {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav__list > li { position: relative; }
.nav__list > li > a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--navy);
  border-radius: 6px;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav__list > li > a:hover, .nav__list > li.is-active > a { background: var(--rosa-light); color: var(--coral); }
.nav__list > li.has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px; margin-bottom: 2px;
  opacity: 0.5;
  transition: transform 0.2s ease;
}
.nav__list > li.has-children:hover > a::after { transform: rotate(225deg); opacity: 1; }

.nav__submenu {
  position: absolute; top: 100%; left: 0;
  min-width: 250px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(22,65,147,0.10);
  list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}
/* Submenu-Karte: SOLID WEISS für alle (Jan 28.05 v2 — wieder weiß) */
.nav__cat--davor  > .nav__submenu { background: #FFF; border-color: rgba(22, 65, 147, 0.18); }
.nav__cat--drin   > .nav__submenu { background: #FFF; border-color: rgba(22, 65, 147, 0.18); }
.nav__cat--danach > .nav__submenu { background: #FFF; border-color: rgba(22, 65, 147, 0.18); }
body.theme-dark .nav__cat--davor  > .nav__submenu { background: #1e2954; border-color: rgba(247, 200, 216, 0.22); }
body.theme-dark .nav__cat--drin   > .nav__submenu { background: #1e2954; border-color: rgba(247, 200, 216, 0.22); }
body.theme-dark .nav__cat--danach > .nav__submenu { background: #1e2954; border-color: rgba(247, 200, 216, 0.22); }
.nav__list > li.has-children:hover > .nav__submenu,
.nav__list > li.has-children:focus-within > .nav__submenu,
.nav__list > li.is-open > .nav__submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
/* Unsichtbarer Hover-Puffer */
.nav__list > li.has-children::before {
  content: '';
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 12px;
}
.nav__submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: background 0.15s ease, padding-left 0.15s ease, color 0.15s ease;
}
/* generische Hover-Regel entfernt — Kategorie-spezifische Hover-Farben (siehe unten ~Zeile 3722) sind autoritativ */

.nav__cta { display: inline-flex; gap: 8px; align-items: center; margin-left: 12px; }
.nav__cta .cta-button { padding: 9px 16px; font-size: 12px; }

@media (max-width: 950px) {
  .nav__toggle { display: inline-block; }
  .nav__list {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #FFF;
    border-top: 1px solid var(--rule);
    padding: 16px 24px;
    gap: 0;
    align-items: stretch;
    display: none;
    box-shadow: 0 16px 40px rgba(22,65,147,0.10);
  }
  .nav__list.is-open { display: flex; }
  .nav__list > li > a { display: block; padding: 12px 0; }
  .nav__submenu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: 0;
    background: transparent; padding: 0 0 8px 16px;
    min-width: 0;
  }
  .nav__cta { display: none; }
}

/* ---------- 5. Hero & Page-Hero ---------- */
.hero {
  position: relative;
  background: #FFF;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
}
.hero h1 { margin: 16px 0 24px; }
.hero__lead { font-size: 17px; line-height: 1.6; color: var(--text-dim); margin: 0 0 28px; max-width: 540px; }
.hero__cta-row { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.hero__trust { font-size: 13px; color: var(--text-dim); display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust span { display: inline-flex; align-items: center; gap: 6px; }

.hero__portrait { width: 100%; border-radius: 28px; overflow: hidden; aspect-ratio: 1; position: relative; }
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero__portrait-caption {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  font-size: 13px; line-height: 1.4;
  color: var(--text);
}
.hero__portrait-caption strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 2px; }
.hero__portrait-caption .eyebrow { margin: 0 0 4px; font-size: 10px; }

.page-hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #FFF 0%, var(--rosa-light) 100%);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .breadcrumb { font-size: 12px; color: var(--text-dim); margin-bottom: 14px; }
.page-hero .breadcrumb a { color: var(--text-dim); border-bottom: 1px dotted; }
.page-hero .breadcrumb a:hover { color: var(--coral); }
.page-hero--with-bg {
  position: relative;
  color: #FFF;
  background: var(--navy);
  padding: 100px 0 80px;
}
.page-hero--with-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,65,147,0.92) 0%, rgba(255,113,117,0.65) 100%);
  z-index: 1;
}
.page-hero--with-bg .container { position: relative; z-index: 2; }
.page-hero--with-bg h1, .page-hero--with-bg .lead { color: #FFF; }

/* ---------- 6. Hero-Questions (schwebende Fragen) ---------- */
.hero-questions {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-questions__bubble {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  opacity: 0;
  animation: hero-question-float 12s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(22,65,147,0.08);
}
.hero-questions__bubble::before {
  content: '?';
  width: 18px; height: 18px;
  background: var(--coral); color: #FFF;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.hero-questions__bubble:nth-child(1) { top: 14%; left: 4%;  animation-delay: 0s; }
.hero-questions__bubble:nth-child(2) { top: 28%; right: 6%; animation-delay: 2s; }
.hero-questions__bubble:nth-child(3) { top: 56%; left: 8%;  animation-delay: 4s; }
.hero-questions__bubble:nth-child(4) { top: 72%; right: 10%;animation-delay: 6s; }
.hero-questions__bubble:nth-child(5) { top: 40%; left: 2%;  animation-delay: 8s; }
.hero-questions__bubble:nth-child(6) { top: 86%; right: 4%; animation-delay: 10s; }

@keyframes hero-question-float {
  0%   { opacity: 0; transform: translateY(20px) scale(0.95); }
  10%  { opacity: 1; transform: translateY(0) scale(1); }
  85%  { opacity: 1; transform: translateY(-10px) scale(1); }
  100% { opacity: 0; transform: translateY(-30px) scale(0.95); }
}
@media (max-width: 720px) {
  .hero-questions__bubble:nth-child(n+4) { display: none; }
  .hero-questions__bubble { font-size: 12px; padding: 6px 12px 6px 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-questions__bubble { animation: none; opacity: 0; }
}

/* ---------- 7. Buttons & CTAs ---------- */
.cta-button {
  display: inline-block;
  background: var(--coral); color: #FFF;
  padding: 13px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 1px solid var(--coral);
  transition: all 0.18s ease;
  cursor: pointer;
}
.cta-button:hover { background: var(--navy); border-color: var(--navy); color: #FFF; }
.cta-button--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.cta-button--outline:hover { background: var(--navy); color: #FFF; }
.cta-button--coral { background: var(--coral); border-color: var(--coral); color: #FFF; }
.cta-button--ghost { background: transparent; color: var(--coral); border-color: var(--coral); }
.cta-button--ghost:hover { background: var(--coral); color: #FFF; }
.cta-button--lg { padding: 16px 32px; font-size: 14px; }

/* ---------- 8. Cards ---------- */
/* Wegweiser-Tiles (Index-Page) */
.wegweiser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max-width); margin: 0 auto;
}
@media (max-width: 900px) { .wegweiser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wegweiser-grid { grid-template-columns: 1fr; } }
.wegweiser-tile {
  display: block;
  padding: 32px 28px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.28s ease;
  position: relative;
}
.wegweiser-tile:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
  box-shadow: 0 20px 48px rgba(22,65,147,0.10);
}
.wegweiser-tile__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: var(--rosa-light);
  border-radius: 16px;
  color: var(--coral);
  margin-bottom: 16px;
  transition: background 0.28s ease, color 0.28s ease;
}
.wegweiser-tile:hover .wegweiser-tile__icon { background: var(--coral); color: #FFF; }
.wegweiser-tile h3 { font-size: 20px; color: var(--navy); margin: 0 0 8px; }
.wegweiser-tile p { font-size: 14px; line-height: 1.5; color: var(--text-dim); margin: 0; }
.wegweiser-tile__arrow {
  position: absolute; top: 28px; right: 24px;
  color: var(--coral);
  font-size: 20px; font-weight: 300;
  opacity: 0.4;
  transition: all 0.28s ease;
}
.wegweiser-tile:hover .wegweiser-tile__arrow { opacity: 1; transform: translateX(4px); }

/* Angebot-Cards (Krebsvorsorge, Spirale etc.) */
.angebot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width); margin: 0 auto;
}
@media (max-width: 900px) { .angebot-grid { grid-template-columns: 1fr; gap: 16px; } }
.angebot-card {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: all 0.28s ease;
  position: relative;
}
.angebot-card:hover {
  transform: translateY(-2px);
  border-color: var(--coral);
  box-shadow: 0 16px 40px rgba(22,65,147,0.08);
}
.angebot-card--featured {
  border: 2px solid var(--coral) !important;
  box-shadow: 0 16px 48px rgba(255,113,117,0.20) !important;
  transform: translateY(-4px);
}
.angebot-card--featured::before {
  content: attr(data-badge, '★ BELIEBTESTE WAHL');
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral); color: #FFF;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255,113,117,0.35);
}
:lang(de) .angebot-card--featured::before { content: '★ BELIEBTESTE WAHL'; }
:lang(en) .angebot-card--featured::before { content: '★ MOST POPULAR'; }
:lang(fr) .angebot-card--featured::before { content: '★ LE PLUS POPULAIRE'; }
:lang(it) .angebot-card--featured::before { content: '★ PIÙ SCELTO'; }
.angebot-card__icon {
  width: 56px; height: 56px;
  background: var(--rosa-light);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--coral);
  margin-bottom: 16px;
}
.angebot-card h3 { font-size: 22px; color: var(--navy); margin: 0 0 4px; }
.angebot-card__price {
  font-size: 13px; color: var(--coral); font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.angebot-card__desc { font-size: 14px; line-height: 1.55; color: var(--text-dim); margin-bottom: 16px; }
.angebot-card__link { font-size: 12px; color: var(--coral); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

/* Trust-Items (Zahlen-Karten) */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}
@media (max-width: 720px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }
.trust-item {
  text-align: center;
  padding: 24px 12px;
  border: 1px solid var(--rule);
  border-radius: 12px;
}
.trust-item__big { font-size: 36px; font-weight: 300; color: var(--coral); line-height: 1; margin-bottom: 8px; }
.trust-item__label { font-size: 12px; color: var(--text-dim); letter-spacing: 0.02em; }

/* ---------- 9. Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
.team-card {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.28s ease;
  display: grid;
  grid-template-columns: 280px 1fr;
}
@media (max-width: 720px) {
  .team-card { grid-template-columns: 1fr; }
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(22,65,147,0.08); }
.team-card__photo {
  position: relative;
  aspect-ratio: 1;
  background: var(--rosa-light);
  overflow: hidden;
}
.team-card__photo img,
.team-card__photo svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card__status {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: var(--coral);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255,113,117,0.35);
}
.team-card__body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-card__header { border-bottom: 1px solid var(--rule); padding-bottom: 14px; }
.team-card__name {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.25;
}
.team-card__role {
  font-size: 13px;
  color: var(--coral);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
.team-card__details { display: grid; gap: 10px; }
.team-card__detail { display: grid; grid-template-columns: 150px 1fr; gap: 10px; align-items: start; }
@media (max-width: 540px) {
  .team-card__detail { grid-template-columns: 1fr; gap: 2px; }
}
.team-card__detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-top: 1px;
}
.team-card__detail-value {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
}
.team-card__bio p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 10px;
}
.team-card__bio p:last-child { margin-bottom: 0; }
.team-group { margin-bottom: 48px; }
.team-group__title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

/* Team-Quicknav (Pills zum direkten Springen) */
.team-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.team-quicknav__label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-dim);
  margin-right: 8px;
}
.team-quicknav__item {
  display: inline-block;
  padding: 6px 14px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.18s ease;
}
.team-quicknav__item:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #FFF;
}

/* Ärztin-Detail-Cards (groß, mit Bild + Bio + Meta) */
.aerztin-grid {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}
.aerztin-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px;
  scroll-margin-top: 100px; /* Anker-Sprung mit Header-Offset */
  transition: all 0.28s ease;
}
.aerztin-detail:hover {
  border-color: var(--coral);
  box-shadow: 0 16px 40px rgba(22,65,147,0.08);
}
.aerztin-detail__media img {
  width: 220px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: var(--rosa-light);
}
.aerztin-detail__content h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 700;
}
.aerztin-detail__role {
  font-size: 13px;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.aerztin-detail__bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
}
.aerztin-detail__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.aerztin-detail__meta > div {
  font-size: 14px;
  color: var(--text);
}
.aerztin-detail__meta-label {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

@media (max-width: 720px) {
  .aerztin-detail {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  .aerztin-detail__media img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .aerztin-detail__meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Praxisteam-Grid (kleiner, mit Mini-Bio) */
.praxisteam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.praxisteam-card {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px;
  scroll-margin-top: 100px;
  transition: all 0.28s ease;
}
.praxisteam-card:hover {
  border-color: var(--coral);
  box-shadow: 0 12px 28px rgba(22,65,147,0.06);
}
.praxisteam-card__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--rosa-light);
  margin-bottom: 16px;
}
.praxisteam-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.praxisteam-card__role {
  font-size: 12px;
  color: var(--coral);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.praxisteam-card__sprachen {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.praxisteam-card__bio {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
}

/* ---------- 10. Patientinnen-Reise ---------- */
.reise-station {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}
.reise-station:last-child { border-bottom: 0; }
.reise-station__number {
  width: 60px; height: 60px;
  background: var(--rosa-light);
  border: 2px solid var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 300;
  color: var(--coral);
}
.reise-station__title { color: var(--navy); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.reise-station__time { font-size: 12px; color: var(--coral); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; }
.reise-station__desc { color: var(--text); line-height: 1.6; }

/* ---------- 11. FAQ ---------- */
.faq-grid {
  display: grid;
  gap: 8px;
  max-width: var(--max-narrow);
  margin: 0 auto;
}
.faq-item {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition: all 0.18s ease;
}
.faq-item[open] { border-color: var(--coral); box-shadow: 0 8px 24px rgba(22,65,147,0.06); }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--coral);
  font-weight: 300;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__body { padding: 0 22px 22px; color: var(--text); line-height: 1.65; }
.faq-item__body p { margin-bottom: 12px; }
.faq-item__body p:last-child { margin-bottom: 0; }

/* ---------- 12. Quiz (Hormonkompass + Verhütungs-Check) ---------- */
.quiz {
  max-width: 720px;
  margin: 0 auto;
  background: var(--rosa-light);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}
@media (max-width: 720px) { .quiz { padding: 28px 20px; border-radius: 16px; } }
.quiz__header { text-align: center; margin-bottom: 32px; }
.quiz__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral); margin-bottom: 12px; }
.quiz__title { font-size: clamp(24px, 3.5vw, 34px); font-weight: 300; line-height: 1.15; color: var(--navy); margin-bottom: 12px; }
.quiz__lead { font-size: 15px; color: var(--text-dim); line-height: 1.6; max-width: 520px; margin: 0 auto; }
.quiz__progress {
  display: flex; gap: 6px;
  margin-bottom: 24px;
}
.quiz__progress-step {
  flex: 1; height: 4px;
  background: rgba(22,65,147,0.12);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.quiz__progress-step.is-active { background: var(--coral); }
.quiz__progress-step.is-done  { background: var(--navy); }
.quiz__progress-label { font-size: 11px; color: var(--text-dim); text-align: center; margin-bottom: 24px; letter-spacing: 0.04em; }
.quiz__question { font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 24px; text-align: center; }
.quiz__options { display: grid; gap: 10px; margin-bottom: 24px; }
.quiz__option {
  display: block; width: 100%;
  padding: 16px 20px;
  background: #FFF;
  border: 2px solid var(--rule);
  border-radius: 12px;
  text-align: left;
  font-size: 15px; line-height: 1.4;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}
.quiz__option:hover { border-color: var(--coral); background: var(--rosa-light); }
.quiz__option.is-selected { border-color: var(--coral); background: var(--coral); color: #FFF; }
.quiz__nav { display: flex; justify-content: space-between; gap: 12px; }
.quiz__nav-button {
  background: transparent; border: 0;
  color: var(--text-dim);
  font-size: 13px; font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  transition: color 0.18s ease;
}
.quiz__nav-button:hover { color: var(--navy); }
.quiz__nav-button:disabled { opacity: 0.3; cursor: not-allowed; }
.quiz__nav-button--primary { background: var(--coral); color: #FFF; padding: 10px 20px; border-radius: 4px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; font-size: 12px; }
.quiz__nav-button--primary:hover { background: var(--navy); color: #FFF; }

.quiz__result { display: none; text-align: center; }
.quiz__result.is-shown { display: block; }
.quiz__result-icon { font-size: 48px; margin-bottom: 16px; }
.quiz__result-title { font-size: 26px; font-weight: 300; color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.quiz__result-text { font-size: 16px; color: var(--text); line-height: 1.6; max-width: 520px; margin: 0 auto 24px; }
.quiz__result-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.quiz__result-cross { font-size: 13px; color: var(--text-dim); margin-top: 16px; }
.quiz__result-cross a { color: var(--coral); border-bottom: 1px solid; }

.quiz__restart { background: transparent; border: 0; color: var(--text-dim); font-size: 13px; padding: 8px 12px; cursor: pointer; margin-top: 8px; }
.quiz__restart:hover { color: var(--coral); }

/* ---------- 13. Forms ---------- */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; max-width: 760px; margin: 0 auto; }
/* Felder nebeneinander; Textarea, Einwilligung & Button über die volle Breite */
.form-field--check, .form > button, .form > .cta-button, .form-field:has(textarea), .form-field--full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form { grid-template-columns: 1fr; } }
.form-field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: #FFF;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 0;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,113,117,0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field--check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-dim); }
.form-field--check input { width: auto; margin-top: 4px; }

/* ---------- 14. Footer ---------- */
.site-footer {
  position: relative;       /* v5.38: Anker für footer-bg-logo */
  overflow: hidden;         /* v5.38: clip-rules links-Anschnitt des BG-Logos */
  background: #0A1F4A;
  color: #FFF;
  padding: 56px 0 24px;
  margin-top: 80px;
}
/* v5.38: Hintergrund-Logo F-Variante — links angeschnitten, volle Footer-Höhe
   Light Mode: farbig, ruhig (opacity 0.42)
   Dark Mode: weiß als Wasserzeichen (opacity 0.22) */
.footer-bg-logo {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  height: 100%;
  width: auto;
  aspect-ratio: 130 / 200;
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  transform: translateX(-30%) scale(1.15);
  transform-origin: left center;
}
.footer-bg-logo .bg-lm-1 { fill: #F7C8D8; }
.footer-bg-logo .bg-lm-2 { fill: #164193; }
.footer-bg-logo .bg-lm-3 { fill: #ff7276; }
/* Dark Mode: weiß als Wasserzeichen */
body.theme-dark .footer-bg-logo { opacity: 0.22; }
body.theme-dark .footer-bg-logo .bg-lm-1,
body.theme-dark .footer-bg-logo .bg-lm-2,
body.theme-dark .footer-bg-logo .bg-lm-3 { fill: #FFF; }
/* Footer-Content über dem BG-Logo */
.site-footer > .container { position: relative; z-index: 1; }
@media (max-width: 720px) {
  .footer-bg-logo { transform: translateX(-35%) scale(1.4); }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.site-footer h4 { color: #FFF; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.8; }
.site-footer a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
.site-footer a:hover { border-bottom-color: var(--coral); color: #FFF; }
.site-footer ul { list-style: none; }

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 720px) {
  .footer-bottom { grid-template-columns: 1fr; text-align: center; gap: 16px; }
}
.footer-bottom__logo { width: 140px; opacity: 1; }
.footer-bottom__logo svg { width: 140px !important; height: auto !important; max-height: 70px !important; }
/* Footer ist dunkler als das enzianblaue Logo-Navy (#164193) — Logo bleibt original:
   - .cls-2 (Logo-Punkt + Schrift) bleibt Enzianblau #164193 → sichtbar gegen #0A1F4A
   - Wir setzen nur die Schrift heller (lesbarkeit), Punkt bleibt original */
.site-footer .footer-bottom__logo svg .cls-2 { fill: #164193 !important; }
.site-footer .footer-bottom__logo svg .faekn-text-navy { fill: rgba(255,255,255,0.92) !important; }
.site-footer .footer-bottom__logo svg .faekn-mark-navy { fill: #164193 !important; }
.footer-bottom__copy { font-size: 13px; opacity: 0.85; }
.footer-bottom__links { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; }
.footer-bottom__sep { opacity: 0.4; }

/* ---------- 15. Mobile CTA-Bar ---------- */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #FFF;
  border-top: 1px solid var(--rule);
  padding: 8px 12px;
  gap: 8px;
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(22,65,147,0.08);
}
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
}
.mobile-cta a, .mobile-cta button {
  flex: 1;
  background: var(--rosa-light);
  color: var(--navy);
  text-align: center;
  padding: 12px 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.mobile-cta a.is-primary, .mobile-cta button.is-primary { background: var(--coral); color: #FFF; }
.mobile-cta a.is-secondary { background: var(--rosa-light); color: var(--navy); }
.mobile-cta svg { width: 16px; height: 16px; }

/* ---------- 16. Utilities ---------- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }

/* GKV-Hinweis Box */
.gkv-notice {
  max-width: 880px;
  margin: 32px auto;
  background: var(--rosa-light);
  border-left: 4px solid var(--coral);
  border-radius: 12px;
  padding: 20px 24px;
}
.gkv-notice strong { color: var(--navy); }
.gkv-notice p { font-size: 14px; line-height: 1.6; margin: 4px 0; color: var(--text); }

/* Twin-Banner (Privatpatientinnen + Schweiz) */
.twin-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 48px 0;
}
@media (max-width: 720px) { .twin-banner { grid-template-columns: 1fr; } }
.twin-banner__card {
  display: block;
  padding: 28px;
  background: var(--rosa-light);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.twin-banner__card:hover { border-color: var(--coral); transform: translateY(-2px); }
.twin-banner__card h4 { color: var(--coral); font-size: 12px; margin-bottom: 8px; letter-spacing: 0.06em; text-transform: uppercase; }
.twin-banner__card h3 { color: var(--navy); margin-bottom: 8px; }
.twin-banner__card p { font-size: 14px; color: var(--text-dim); margin-bottom: 12px; }
.twin-banner__card-arrow { color: var(--coral); font-weight: 700; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; }

/* Map-Embed */
.map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule);
  margin: 24px 0;
}
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* Kontakt-Wege */
.kontakt-ways {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 1080px) { .kontakt-ways { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .kontakt-ways { grid-template-columns: 1fr; } }
.kontakt-way {
  text-align: center;
  padding: 32px 24px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 16px;
  transition: all 0.25s ease;
}
.kontakt-way:hover {
  transform: translateY(-2px);
  border-color: var(--coral);
  box-shadow: 0 12px 32px rgba(22,65,147,0.08);
}
.kontakt-way--featured {
  background: linear-gradient(135deg, var(--rosa-light) 0%, #FFF 100%);
  border: 2px solid var(--coral);
}
.kontakt-way__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: var(--rosa-light);
  border-radius: 50%;
  color: var(--coral);
  margin-bottom: 16px;
}
.kontakt-way--featured .kontakt-way__icon { background: var(--coral); color: #FFF; }
.kontakt-way h3 { font-size: 18px; color: var(--navy); margin: 0 0 12px; }
.kontakt-way__big { font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.kontakt-way__sub { font-size: 13px; color: var(--text-dim); margin: 0 0 20px; line-height: 1.5; }

/* Impressum-Karten */
.impressum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 720px) { .impressum-grid { grid-template-columns: 1fr; } }
.impressum-card {
  padding: 28px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 14px;
}
.impressum-card__icon {
  width: 48px; height: 48px;
  background: var(--rosa-light);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--coral);
  margin-bottom: 14px;
}
.impressum-card h3 { font-size: 15px; color: var(--navy); margin: 0 0 10px; letter-spacing: 0.02em; }
.impressum-card p { font-size: 14px; line-height: 1.6; }

/* ---------- 17. Preloader (Lade-Logo, 1× pro Session) ---------- */
#page-loader {
  position: fixed;
  inset: 0;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}
#page-loader.is-done,
#page-loader.is-skipped {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#page-loader.is-skipped {
  display: none;
}
#page-loader .loader-logo {
  width: clamp(220px, 38vw, 360px);
  height: auto;
  animation: preloader-pulse 1.6s ease-in-out infinite;
}
@keyframes preloader-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;     transform: scale(1.03); }
}
#page-loader .faekn-step {
  opacity: 0;
  animation: preloader-step-in 0.5s ease forwards;
}
#page-loader .faekn-step--1 { animation-delay: 0.05s; }
#page-loader .faekn-step--2 { animation-delay: 0.22s; }
#page-loader .faekn-step--3 { animation-delay: 0.40s; }
#page-loader .faekn-step--4,
#page-loader .faekn-step--5,
#page-loader .faekn-step--6,
#page-loader .faekn-step--7,
#page-loader .faekn-step--8 { animation-delay: 0.60s; }
@keyframes preloader-step-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  #page-loader .loader-logo,
  #page-loader .faekn-step { animation: none; opacity: 1; }
}

/* ---------- 18. Scroll-Indikator rechts (zum Runterscrollen) ---------- */
.scroll-indicator {
  position: fixed;
  right: 28px;
  top: 50%;              /* v5.38: vertikal mittig statt unten — keine Kollision mit Chat-Popup */
  bottom: auto;
  margin-top: -55px;     /* halbe Höhe des Indikators */
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  user-select: none;
}
.scroll-indicator.is-hidden {
  opacity: 0;
  transform: translateY(12px);
}
.scroll-indicator__mark {
  width: 44px;
  height: 44px;
  background: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(22,65,147,0.14);
  animation: scroll-bob 2.6s ease-in-out infinite;
}
.scroll-indicator__mark img {
  width: 26px;
  height: 26px;
}
.scroll-indicator__arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(45deg);
  animation: scroll-arrow-bob 1.8s ease-in-out infinite;
  opacity: 0.7;
}
.scroll-indicator__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  opacity: 0.6;
  margin-top: 4px;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes scroll-arrow-bob {
  0%, 100% { transform: rotate(45deg) translate(0,0); opacity: 0.4; }
  50%      { transform: rotate(45deg) translate(3px,3px); opacity: 1; }
}
@media (max-width: 720px) {
  .scroll-indicator { right: 14px; top: 50%; bottom: auto; margin-top: -25px; }   /* v5.38: vertikal mittig auch auf Mobile */
  .scroll-indicator__mark { width: 38px; height: 38px; }
  .scroll-indicator__mark img { width: 22px; height: 22px; }
  .scroll-indicator__label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-indicator__mark,
  .scroll-indicator__arrow { animation: none; }
}

/* ---------- 19. Reveal-Animations ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 20. Side-Navigation rechts (vertikal, analog janthomasotte.eu) ---------- */
.side-nav {
  position: fixed;
  right: 24px;
  top: auto;
  bottom: 33vh;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px 10px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--rule);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(22,65,147,0.10);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.side-nav.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
/* Brand-Icons als zusammenhängender Logo-Cluster — bei Hover fahren sie auseinander */
.side-nav__item + .side-nav__item {
  margin-top: -14px;
  transition: margin-top 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.side-nav:hover .side-nav__item + .side-nav__item,
.side-nav:focus-within .side-nav__item + .side-nav__item {
  margin-top: 0;
}
@media (max-width: 720px) {
  .side-nav { right: 12px; top: auto; bottom: 78px; gap: 10px; padding: 12px 8px; }
}
.side-nav__logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s ease;
}
.side-nav__logo:hover { color: var(--coral); }
.side-nav__logo img { display: none; }
.side-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 0;
  background: transparent;
  border: none;
  opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.side-nav__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.side-nav__item:hover { opacity: 1; transform: scale(1.15); }
.side-nav__item.is-active { opacity: 1; transform: scale(1.2); }
.side-nav__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.side-nav__tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
}
.side-nav__item:hover .side-nav__tooltip {
  opacity: 1;
  transform: translate(-4px, -50%);
}
.side-nav__progress {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  width: 100%;
  text-align: center;
}
@media (max-width: 1080px) and (min-width: 721px) {
  .side-nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .side-nav { transition: none; }
}

/* ---------- 18. Page-Loader (Splash beim ersten Page-Load) ---------- */

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.04); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader img { animation: none; }
}

/* ---------- 19. Floating Scroll-Anchor (rechts unten) ---------- */
.scroll-anchor {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 12px 28px rgba(22,65,147,0.12);
  text-decoration: none;
}
.scroll-anchor.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-anchor:hover {
  background: var(--coral);
  border-color: var(--coral);
}
.scroll-anchor img {
  width: 30px;
  height: 30px;
  transition: filter 0.2s ease;
}
.scroll-anchor:hover img {
  filter: brightness(0) invert(1);
}
@media (max-width: 720px) {
  .scroll-anchor {
    right: 16px;
    bottom: 80px;  /* über der Mobile-CTA-Bar */
    width: 48px;
    height: 48px;
  }
  .scroll-anchor img { width: 24px; height: 24px; }
}

/* ---------- 23. Theme-Toggle & Dark Mode & Wissen-Badge ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--navy);
  cursor: pointer;
  margin-right: 8px;
  transition: color 0.2s ease;
}
.theme-toggle:hover { background: transparent; color: var(--coral); }
.theme-toggle__icon { display: block; }
.theme-toggle__sun { display: block; }
.theme-toggle__moon { display: none; }
body.theme-dark .theme-toggle__sun { display: none; }
body.theme-dark .theme-toggle__moon { display: block; }
@media (max-width: 950px) {
  .theme-toggle { margin: 0 0 12px; }
}

/* Wissen-Badge im Header-Nav */
.nav__wissen { display: inline-flex; align-items: center; gap: 6px; }
.nav__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--coral);
  color: #FFF;
  padding: 2px 6px;
  border-radius: 999px;
  vertical-align: middle;
}

/* Dark Mode — überschreibt CSS-Variablen */
body.theme-dark {
  --bg: #0E1226;
  --rule: #2A3155;
  --rosa-light: #1A1F3A;
  --text: #E3E6F0;
  --text-dim: #9097B0;
}
body.theme-dark .site-header {
  background: rgba(14, 18, 38, 0.96);
  border-bottom-color: var(--rule);
}
body.theme-dark .nav__list a,
body.theme-dark .nav__submenu a {
  color: var(--text);
}
body.theme-dark .nav__submenu {
  background: #181D34;
  border-color: var(--rule);
}
body.theme-dark .section--rosa {
  background: #131830;
}
body.theme-dark .angebot-card,
body.theme-dark .wegweiser-tile,
body.theme-dark .team-card,
body.theme-dark .aerztin-detail,
body.theme-dark .praxisteam-card,
body.theme-dark .twin-banner__card,
body.theme-dark .form-card,
body.theme-dark .reise-station {
  background: #181D34;
  border-color: var(--rule);
}
body.theme-dark .twin-banner__card h3 { color: var(--text); }
body.theme-dark .angebot-card h3,
body.theme-dark .wegweiser-tile h3,
body.theme-dark .team-card__name,
body.theme-dark .aerztin-detail__content h3,
body.theme-dark .praxisteam-card__name,
body.theme-dark .form-card__title { color: var(--text); }
body.theme-dark h1, body.theme-dark h2 { color: var(--text); }
body.theme-dark .section-title { color: var(--text); }
body.theme-dark .lang-switch { background: #181D34; }
body.theme-dark .lang-switch__item.is-active { background: var(--coral); }
body.theme-dark .side-nav { background: rgba(24, 29, 52, 0.92); border-color: var(--rule); }
body.theme-dark .scroll-indicator__bubble { background: #181D34; border-color: var(--rule); }
body.theme-dark .form-field input,
body.theme-dark .form-field textarea,
body.theme-dark .form-field select {
  background: #131830;
  border-color: var(--rule);
  color: var(--text);
}
body.theme-dark .gkv-notice {
  background: #1F1A2E;
  border-color: var(--coral);
}
body.theme-dark .gkv-notice p { color: var(--text); }
body.theme-dark .breadcrumb { color: var(--text-dim); }
body.theme-dark .breadcrumb a { color: var(--text); }
/* Standard-Hero im Dark-Mode durchgehend dunkel (Light-Gradient startet sonst auf #FFF -> heller Breadcrumb unsichtbar) */
body.theme-dark .page-hero:not(.page-hero--with-bg) { background: linear-gradient(180deg, var(--bg) 0%, var(--rosa-light) 100%); }

/* Loader im Dark Mode */
body.theme-dark .page-loader { background: var(--bg); }

/* ---------- 24. Formulare-Page (Form-Cards) ---------- */
.form-category { margin-bottom: 48px; }
.form-category__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 100px;
}
.form-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.form-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
.form-card:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22,65,147,0.08);
}
.form-card__icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  background: var(--rosa-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.form-card__content { flex: 1; min-width: 0; }
.form-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}
.form-card__desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0 0 10px 0;
}
.form-card__cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 12px;
  padding: 4px;
  background: var(--rosa-light);
  border-radius: 999px;
}
.lang-switch__item {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.15s ease;
}
.lang-switch__item:hover { color: var(--navy); }
.lang-switch__item.is-active { background: var(--navy); color: #FFF; }
@media (max-width: 950px) {
  .lang-switch { margin: 0 0 12px; }
}

/* ---------- Karriere-Grid (Rubriken-Cards) ---------- */
.karriere-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.karriere-card {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 26px;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}
.karriere-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(22,65,147,0.08);
  border-color: var(--coral);
}
.karriere-card h3 { transition: color 0.2s; }
.karriere-card:hover h3 { color: var(--coral); }


/* ---------- Patientinnenreise: Du / Wir Split ---------- */
.reise-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 720px) {
  .reise-split { grid-template-columns: 1fr; gap: 12px; }
}
.reise-split__col {
  padding: 18px 20px;
  border-radius: 12px;
  background: var(--rosa-light);
}
.reise-split__col--du {
  border-left: 3px solid var(--coral);
}
.reise-split__col--wir {
  border-left: 3px solid var(--navy);
}
.reise-split__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.reise-split__col--du .reise-split__label { color: var(--coral); }
.reise-split__col--wir .reise-split__label { color: var(--navy); }
.reise-split__col ul {
  margin: 0;
  padding-left: 18px;
  list-style: none;
}
.reise-split__col li {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 8px;
  color: var(--text);
  position: relative;
  padding-left: 14px;
}
.reise-split__col li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 800;
  font-size: 18px;
}
.reise-split__col--du li::before { color: var(--coral); }
.reise-split__col--wir li::before { color: var(--navy); }


/* ---------- Lite-YouTube Embed (Performance: kein iframe bis Klick) ---------- */
.lite-yt {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(22,65,147,0.15);
}
.lite-yt picture,
.lite-yt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}
.lite-yt:hover img { transform: scale(1.02); filter: brightness(1.05); }
.lite-yt__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px;
  height: 60px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
}
.lite-yt__play svg { width: 100%; height: 100%; display: block; }
.lite-yt:hover .lite-yt__play { transform: scale(1.08); }
.lite-yt.is-activated picture,
.lite-yt.is-activated .lite-yt__play { display: none; }
.lite-yt iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- DocMedico Modal ---------- */
.dmr-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.dmr-modal[hidden] { display: none; }
.dmr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,31,74,0.65);
  backdrop-filter: blur(4px);
}
.dmr-modal__panel {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 80vh;
  max-height: 720px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dmr-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--rule);
}
.dmr-modal__header h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.dmr-modal__close {
  background: var(--rosa-light);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.dmr-modal__close:hover { background: var(--coral); color: #FFF; }
.dmr-modal__body {
  flex: 1;
  padding: 16px;
  overflow: hidden;
}

/* Lang-Switch nur DE aktiv, andere flyout nach rechts beim Hover */
.lang-switch {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 3px;
  position: relative;
  overflow: hidden;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 50px;
}
.lang-switch:hover,
.lang-switch:focus-within {
  max-width: 220px;
}
.lang-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-decoration: none;
  border-radius: 0;
  transition: color 0.2s, opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.lang-switch__item:hover { color: var(--coral); }
.lang-switch__item.is-active {
  background: transparent;
  color: var(--coral);
  order: -1;
}
.lang-switch__item:not(.is-active) {
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
}
.lang-switch:hover .lang-switch__item:not(.is-active),
.lang-switch:focus-within .lang-switch__item:not(.is-active) {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.lang-switch__item:not(.is-active):hover {
  background: rgba(22,65,147,0.1);
}

/* ---------- Hero-Portrait als Link zur Team-Page ---------- */
a.hero__portrait {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.35s ease;
}
a.hero__portrait:hover { transform: translateY(-4px); }
a.hero__portrait:hover img { filter: brightness(1.02); }
.hero__portrait-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--coral);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}
a.hero__portrait:hover .hero__portrait-link { color: var(--navy); }


/* ---------- FAQ mit Bild-Begleitung + Zoom-Out-Animation ---------- */
.faq-with-image {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .faq-with-image { grid-template-columns: 1fr; gap: 24px; }
}
.faq-with-image__col-images {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 900px) {
  .faq-with-image__col-images { position: static; }
}
.faq-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--rosa-light);
  box-shadow: 0 8px 24px rgba(22,65,147,0.08);
}
.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.15);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
}
.faq-image.is-visible img {
  transform: scale(1);
  opacity: 1;
}
.faq-image__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* Platzhalter wenn Bild fehlt */
.faq-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(22,65,147,0.18);
  background: rgba(253,238,243,0.4);
}
.faq-image--placeholder span {
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
  padding: 0 20px;
  line-height: 1.5;
}


/* ---------- Scroll-to-Top-Button (unten rechts, vertikal mit Logo-Vagina-Symbol) ---------- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: #FFF;
  color: var(--coral);
  border: 1px solid rgba(255,113,117,0.25);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255,113,117,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease, background 0.2s ease;
  font-family: inherit;
  text-decoration: none;
  padding: 0;
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--rosa-light);
  box-shadow: 0 12px 30px rgba(255,113,117,0.35);
  transform: translateY(-2px);
}
.scroll-top__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}
.scroll-top__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--coral);
}
@media (max-width: 720px) {
  .scroll-top {
    bottom: 80px;
    right: 14px;
    width: 56px;
    height: 56px;
  }
  .scroll-top__icon { width: 24px; height: 24px; }
  .scroll-top__label { font-size: 9px; }
}

/* ---------- Praxisteam-Grid (kleinere Karten als Ärztinnen) ---------- */
.praxisteam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.praxisteam-card {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: center;
  transition: all 0.25s ease;
}
.praxisteam-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(22,65,147,0.08);
}
.praxisteam-card__avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--rosa-light);
}
.praxisteam-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.praxisteam-card__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  background: var(--rosa-light);
  border: 2px dashed rgba(255,113,117,0.3);
}
.praxisteam-card h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.3;
}
.praxisteam-card p {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.5;
}
.praxisteam-card--placeholder {
  border-style: dashed;
  background: rgba(253,238,243,0.4);
}


/* ---------- Feedback-Karussell (nur 5-Sterne-Rezensionen) ---------- */
.feedback-carousel {
  position: relative;
  margin-top: 32px;
}
.feedback-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 24px;
}
.feedback-carousel__track::-webkit-scrollbar { display: none; }

.feedback-card {
  flex: 0 0 calc(100% - 80px);
  max-width: 560px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px 30px;
  scroll-snap-align: center;
  box-shadow: 0 4px 14px rgba(22,65,147,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 720px) {
  .feedback-card { flex: 0 0 480px; }
}
.feedback-card__stars {
  color: var(--coral);
  font-size: 22px;
  letter-spacing: 4px;
  line-height: 1;
}
.feedback-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  font-style: italic;
}
.feedback-card__meta {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
}

.feedback-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.feedback-carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: #FFF;
  color: var(--navy);
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: inherit;
  line-height: 0;
  padding-bottom: 3px;
}
.feedback-carousel__btn:hover {
  background: var(--coral);
  color: #FFF;
  border-color: var(--coral);
}
.feedback-carousel__dots {
  display: flex;
  gap: 8px;
}
.feedback-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(22,65,147,0.2);
  border: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.feedback-carousel__dot.is-active {
  background: var(--coral);
  transform: scale(1.3);
}


/* ---------- Patientinnenreise: Sticky Anker-Navigation ---------- */
.reise-anchor-nav {
  position: sticky;
  top: 70px; /* unter dem Site-Header */
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
}
.reise-anchor-nav__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0;
}
.reise-anchor-nav__inner::-webkit-scrollbar { display: none; }
.reise-anchor-nav__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding-right: 4px;
}
.reise-anchor-nav__item {
  font-size: 13px;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.reise-anchor-nav__item:hover {
  background: var(--rosa-light);
  border-color: var(--rosa);
}
.reise-anchor-nav__item.is-active {
  background: var(--coral);
  color: #FFF;
  border-color: var(--coral);
  font-weight: 700;
}

/* ---------- Patientinnenreise: Bild pro Station ---------- */
.reise-station__image {
  margin: 16px 0 24px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--rosa-light);
  box-shadow: 0 6px 20px rgba(22,65,147,0.08);
}
.reise-station__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.reise-station__image:hover img {
  transform: scale(1.03);
}

/* Smooth-Scroll mit Offset für Sticky-Nav */
html { scroll-padding-top: 140px; }

/* Station-Anker: extra Top-Padding damit Title nicht unter der Nav verschwindet */
.reise-station[id^="schritt-"] {
  scroll-margin-top: 140px;
}


/* ---------- Formulare: Logo-Aufbau-Animation pro Bereich-Heading ---------- */
.form-category-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.form-category-logo {
  width: 50px;
  height: 76px;
  flex-shrink: 0;
  position: relative;
}
.form-category-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Drei Logo-Teile starten unsichtbar + leicht verschoben */
.form-category-logo .lm-2,
.form-category-logo .lm-1,
.form-category-logo .lm-3 {
  opacity: 0;
  transform: translateY(-8px);
  transform-origin: center;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Wenn sichtbar — animiere ein, mit Verzögerung */
.form-category-logo.is-built .lm-2 {  /* Kopf: erst */
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.form-category-logo.is-built .lm-1 {  /* Brust: dann */
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.form-category-logo.is-built .lm-3 {  /* Vagina: zuletzt */
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.form-category__title {
  margin: 0;
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.25;
}
.form-category__hint {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  font-weight: 400;
}

/* Mobile: Logo bleibt, aber kleiner */
@media (max-width: 720px) {
  .form-category-logo { width: 36px; height: 55px; }
  .form-category__title { font-size: 22px; }
}



/* ---------- DocMedico-Leiste (unter dem Header) ---------- */
.dmr-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--coral);
  color: #FFF;
  padding: 10px 24px;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.dmr-bar:hover {
  background: var(--navy);
  color: #FFF;
}
.dmr-bar strong {
  font-weight: 700;
}
.dmr-bar__arrow {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  margin-left: 4px;
}
.dmr-bar svg {
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .dmr-bar {
    padding: 9px 14px;
    font-size: 12px;
    gap: 8px;
  }
  .dmr-bar__arrow { display: none; }
}

/* ---------- Wizard-Bar (ersetzt DMR-Bar, öffnet Wizard-Modal) ---------- */
.wizard-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: transparent;
  color: var(--navy);
  padding: 10px 24px;
  font-size: 13px;
  font-family: inherit;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  border: 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: color 0.2s ease;
}
.wizard-bar:hover,
.wizard-bar:focus-visible {
  background: transparent;
  color: var(--coral);
  outline: none;
}
.wizard-bar strong {
  font-weight: 700;
}
.wizard-bar__arrow {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  margin-left: 4px;
}
.wizard-bar svg {
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .wizard-bar {
    padding: 9px 14px;
    font-size: 12px;
    gap: 8px;
  }
  .wizard-bar__arrow { display: none; }
}


/* ---------- Privat-Page: Wege-Cards (Termin-Buchungs-Wege) ---------- */
.wege-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wege-card {
  background: #FFF;
  border-radius: 14px;
  padding: 24px 26px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wege-card .cta-button {
  margin-top: auto;
}
@media (max-width: 720px) {
  .wege-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .schweiz-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}


/* ---------- FAQ-Page: Suchfeld + Filter ---------- */
.faq-search-wrap {
  position: relative;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 12px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-search-wrap:focus-within {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,113,117,0.12);
}
.faq-search-wrap svg {
  color: var(--coral);
  flex-shrink: 0;
}
#faq-search {
  border: 0;
  background: transparent;
  flex: 1;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  outline: 0;
}
#faq-search::placeholder { color: var(--text-dim); }
#faq-search-clear {
  border: 0;
  background: var(--rosa-light);
  color: var(--navy);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
}
#faq-search-clear:hover { background: var(--coral); color: #FFF; }

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.faq-filter {
  font-family: inherit;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: #FFF;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.faq-filter:hover {
  border-color: var(--coral);
  color: var(--coral);
}
.faq-filter.is-active {
  background: var(--coral);
  color: #FFF;
  border-color: var(--coral);
  font-weight: 700;
}
.faq-filter__count {
  opacity: 0.75;
  font-weight: 400;
  font-size: 12px;
}

.faq-category { margin-bottom: 40px; }
.faq-category[hidden] { display: none; }
.faq-category__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--coral);
}
.faq-item.is-hidden { display: none; }
.faq-empty-state {
  text-align: center;
  font-size: 16px;
  color: var(--text-dim);
  padding: 40px 20px;
  background: var(--rosa-light);
  border-radius: 14px;
  margin: 24px 0;
}

/* ---------- Header-Suche oben rechts (Site-Search) ---------- */
.header-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 6px 8px;
  margin-right: 8px;
  transition: border-color 0.2s;
  position: relative;
}
.header-search:focus-within {
  background: transparent;
  border-bottom: 1px solid var(--coral);
}
.header-search__icon {
  color: var(--navy);
  flex-shrink: 0;
  transition: color 0.2s;
}
.header-search:hover .header-search__icon,
.header-search:focus-within .header-search__icon {
  color: var(--coral);
}
.header-search__input {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  outline: 0;
  padding: 4px 8px;
  width: 0;
  transition: width 0.3s ease;
}
.header-search:focus-within .header-search__input,
.header-search.is-active .header-search__input {
  width: 160px;
}

/* Mobile: Suche kompakter */
@media (max-width: 980px) {
  .header-search {
    display: none;
  }
}


/* ---------- Wissen-Hub-Karten ---------- */
.wissen-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wissen-card {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.2s;
}
.wissen-card:not(.wissen-card--soon):hover {
  border-color: var(--coral);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(22,65,147,0.10);
}
.wissen-card--soon {
  opacity: 0.7;
  cursor: not-allowed;
}
.wissen-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--coral);
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.wissen-card__badge--soon { background: var(--text-dim); }
.wissen-card h2 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.wissen-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px 0;
  flex: 1;
}
.wissen-card__cta {
  color: var(--coral);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.wissen-card__cta--muted { color: var(--text-dim); font-weight: 400; font-style: italic; }
@media (max-width: 720px) {
  .wissen-cards { grid-template-columns: 1fr; }
}

/* ---------- Shorts-Page: Controls (Suche + Filter) ---------- */
.shorts-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  margin-bottom: 32px;
  align-items: center;
}
.shorts-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 10px 18px;
  max-width: 420px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.shorts-search:focus-within {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,113,117,0.12);
}
.shorts-search svg { color: var(--coral); flex-shrink: 0; }
#shorts-search {
  border: 0; background: transparent; flex: 1;
  font-size: 15px; font-family: inherit; outline: 0;
  color: var(--text);
}
#shorts-search::placeholder { color: var(--text-dim); }
#shorts-search-clear {
  border: 0; background: var(--rosa-light); color: var(--navy);
  width: 26px; height: 26px; border-radius: 50%;
  font-size: 16px; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
#shorts-search-clear:hover { background: var(--coral); color: #FFF; }

.shorts-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.shorts-filter {
  font-family: inherit;
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: #FFF;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.shorts-filter:hover { border-color: var(--coral); color: var(--coral); }
.shorts-filter.is-active {
  background: var(--coral); color: #FFF;
  border-color: var(--coral); font-weight: 700;
}
@media (max-width: 720px) {
  .shorts-controls { grid-template-columns: 1fr; }
  .shorts-filters { justify-content: flex-start; }
}

/* ---------- Shorts-Grid (9:16 Cards) ---------- */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .shorts-grid { grid-template-columns: 1fr; gap: 18px; }
}

.shorts-card {
  background: #FFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(22,65,147,0.06);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.shorts-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,65,147,0.10);
}
.shorts-card.is-hidden { display: none; }

/* Video-Wrap: vertikales 9:16 oder horizontales 16:9 */
.shorts-card__video {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}
.shorts-card__video iframe,
.shorts-card__video img,
.shorts-card__video .lite-yt {
  width: 100%; height: 100%;
  display: block;
  border: 0;
}
.shorts-card__video .lite-yt {
  cursor: pointer;
  position: relative;
}
.shorts-card__video .lite-yt img,
.shorts-card__video .lite-yt picture {
  width: 100%; height: 100%;
  object-fit: cover;
}
.shorts-card__video .lite-yt__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* Badge oben links: Kategorie + Dauer */
.shorts-card__meta {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; gap: 6px;
  z-index: 2;
}
.shorts-card__category {
  background: rgba(255,113,117,0.95);
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.shorts-card__duration {
  background: rgba(0,0,0,0.6);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.shorts-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.shorts-card__title {
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.shorts-card__story {
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}
.shorts-card__toggle {
  background: transparent;
  border: 0;
  color: var(--coral);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 0;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  margin-top: auto;
}
.shorts-card__toggle:hover { color: var(--navy); }
.shorts-card__toggle svg {
  transition: transform 0.25s ease;
}
.shorts-card.is-expanded .shorts-card__toggle svg {
  transform: rotate(180deg);
}
.shorts-card__transcript {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--rosa-light);
  border-radius: 10px;
  margin-top: 4px;
}
.shorts-card.is-expanded .shorts-card__transcript {
  max-height: 800px;
}
.shorts-card__transcript-inner {
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}
.shorts-card__transcript-inner strong {
  color: var(--coral);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.shorts-empty {
  text-align: center;
  font-size: 16px;
  color: var(--text-dim);
  padding: 40px 20px;
  background: var(--rosa-light);
  border-radius: 14px;
  margin: 24px 0;
}

.shorts-channel-link {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-dim);
}
.shorts-channel-link a {
  color: var(--coral);
  font-weight: 700;
  text-decoration: none;
}
.shorts-channel-link a:hover { text-decoration: underline; }


/* ---------- HIPSTER-NAV: Top-Level mehr Charakter ---------- */
/* Underline-Animation die beim Hover reinslidet */
.nav__list > li > a {
  position: relative;
  overflow: hidden;
}
.nav__list > li > a::before {
  content: none;
}
/* Hover: kein Hintergrund mehr, nur Underline + Coral-Text */
.nav__list > li > a:hover,
.nav__list > li.is-active > a {
  background: transparent;
  color: var(--coral);
}
/* Subtle Letter-Spacing-Push für die hippere Note */
.nav__list > li > a {
  transition: color 0.18s ease, letter-spacing 0.25s ease;
}
.nav__list > li > a:hover {
  letter-spacing: 0.06em;
}

/* ---------- "Im Aufbau"-Badge: Pulse als "Live" ---------- */
.nav__badge {
  position: relative;
  animation: dotPulse 2s ease-in-out infinite;
}
/* Live-Dot davor (wie bei Live-Streams) */
.nav__badge::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #FFF;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
  animation: livePulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.78; }
}
/* Reduced Motion: keine Animation */
@media (prefers-reduced-motion: reduce) {
  .nav__badge,
  .nav__badge::before { animation: none; }
}


/* ---------- Logo-Preload-Animation (Header) ---------- */
/* Die 3 Logo-Pfade bauen sich sequenziell auf, mit subtle scale-Effekt aufs SVG.
   .lm-2 = Navy/Kopf  ·  .lm-1 = Rosa/Brust  ·  .lm-3 = Coral/Vagina */
.site-header__logo svg {
  animation: logoZoom 1.4s cubic-bezier(0.34, 1.20, 0.64, 1) both;
  transform-origin: 70px 100px;
}
.site-header__logo .lm-2,
.site-header__logo .lm-1,
.site-header__logo .lm-3 {
  opacity: 0;
  animation: logoFadeIn 0.55s ease-out forwards;
}
.site-header__logo .lm-2 { animation-delay: 0.15s; }  /* Kopf zuerst */
.site-header__logo .lm-1 { animation-delay: 0.40s; }  /* dann Brust */
.site-header__logo .lm-3 { animation-delay: 0.65s; }  /* dann Coral-Form */

@keyframes logoFadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes logoZoom {
  0%   { transform: scale(0.88); }
  55%  { transform: scale(1.04); }
  100% { transform: scale(1.00); }
}

/* Reduced motion: keine Animation, alle Teile sofort sichtbar */
@media (prefers-reduced-motion: reduce) {
  .site-header__logo svg,
  .site-header__logo .lm-1,
  .site-header__logo .lm-2,
  .site-header__logo .lm-3 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ---------- Logo-Hover: Figur spreizt sich auseinander ----------
   Default = SVG wie original (verbunden). Hover = Navy-Kopf hoch, Coral-Form runter, Rosa-Brust bleibt.
   Selektor ist auf das erste <g> begrenzt — sonst würden die Buchstaben "FRAUEN ÄRZTINNEN KONSTANZ" mitfliegen.
   .cls-N = inline-SVG im Header  ·  .lm-N = falls künftig auf logo-mark.svg-Klassen umgestellt wird */
.site-header__logo svg > g:first-of-type .cls-1,
.site-header__logo svg > g:first-of-type .cls-2,
.site-header__logo svg > g:first-of-type .cls-3,
.site-header__logo svg > g:first-of-type .lm-1,
.site-header__logo svg > g:first-of-type .lm-2,
.site-header__logo svg > g:first-of-type .lm-3 {
  transition: transform 380ms cubic-bezier(0.34, 1.10, 0.64, 1);
  transform-box: fill-box;
  transform-origin: center;
}
.site-header__logo:hover svg > g:first-of-type .cls-2,
.site-header__logo:focus-visible svg > g:first-of-type .cls-2,
.site-header__logo:hover svg > g:first-of-type .lm-2,
.site-header__logo:focus-visible svg > g:first-of-type .lm-2 { transform: translateY(-26px); }
.site-header__logo:hover svg > g:first-of-type .cls-3,
.site-header__logo:focus-visible svg > g:first-of-type .cls-3,
.site-header__logo:hover svg > g:first-of-type .lm-3,
.site-header__logo:focus-visible svg > g:first-of-type .lm-3 { transform: translateY(26px); }
@media (prefers-reduced-motion: reduce) {
  .site-header__logo:hover svg > g:first-of-type .cls-2,
  .site-header__logo:hover svg > g:first-of-type .cls-3,
  .site-header__logo:hover svg > g:first-of-type .lm-2,
  .site-header__logo:hover svg > g:first-of-type .lm-3 { transform: none; }
}


/* ---------- HERO-SEARCH: "Was führt dich heute zu uns?" ---------- */
.hero-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFF;
  border: 1.5px solid var(--rule);
  border-radius: 999px;
  padding: 14px 12px 14px 22px;
  margin: 24px 0 16px;
  box-shadow: 0 4px 16px rgba(22,65,147,0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  max-width: 580px;
}
.hero-search:focus-within {
  border-color: var(--coral);
  box-shadow: 0 12px 32px rgba(255,113,117,0.18);
  transform: translateY(-1px);
}
.hero-search__icon {
  color: var(--coral);
  flex-shrink: 0;
}
.hero-search__input {
  border: 0;
  background: transparent;
  flex: 1;
  font-size: 17px;
  font-family: inherit;
  color: var(--text);
  outline: 0;
  min-width: 0;
  padding: 2px 0;
}
.hero-search__input::placeholder {
  color: var(--text-dim);
  opacity: 0.85;
}
.hero-search__submit {
  background: var(--coral);
  color: #FFF;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-search__submit:hover {
  background: var(--navy);
  transform: scale(1.06);
}

/* Smart-Suggestions Dropdown */
.hero-search__suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(22,65,147,0.12);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  z-index: 50;
}
.hero-search__suggestions.is-active {
  max-height: 340px;
  overflow-y: auto;
}
.hero-search__suggestion {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.hero-search__suggestion:last-child { border-bottom: 0; }
.hero-search__suggestion:hover,
.hero-search__suggestion.is-focused {
  background: var(--rosa-light);
  color: var(--navy);
}
.hero-search__suggestion-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rosa-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
  font-size: 18px;
}
.hero-search__suggestion-title {
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}
.hero-search__suggestion-desc {
  font-size: 12px;
  color: var(--text-dim);
}

/* Quick-Tags unter Search */
.hero-search__quicktags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13px;
}
.hero-search__quicktag-label {
  color: var(--text-dim);
  margin-right: 4px;
}
.hero-search__quicktag {
  display: inline-block;
  padding: 6px 14px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--navy);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}
.hero-search__quicktag:hover {
  background: var(--coral);
  color: #FFF;
  border-color: var(--coral);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .hero-search {
    padding: 10px 8px 10px 16px;
    gap: 8px;
  }
  .hero-search__input {
    font-size: 15px;
  }
  .hero-search__submit {
    width: 38px;
    height: 38px;
  }
  .hero-search__quicktag-label {
    width: 100%;
    margin-bottom: 4px;
  }
}

/* ---------- HEADER-MENÜ DEZENTER ---------- */
/* Subtileres Top-Level — kleiner, leichter, mehr "Tabbed" als "Buttoned" */
.nav__list > li > a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 10px;
}
/* Underline-Animation jetzt schmaler */
.nav__list > li > a::before {
  height: 1.5px;
  bottom: 2px;
  left: 10px;
  right: 10px;
}
/* Submenu-Pfeile dezenter */
.nav__list > li.has-children > a::after {
  border-color: currentColor;
  opacity: 0.5;
}


/* ---------- Sub-Captions unter DAVOR/DABEI/DANACH ---------- */
/* Coral 2. Zeile, einmalige Slide-Up-Animation beim Page-Load, dann statisch */
.nav__list > li > a {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  padding: 4px 10px 6px;
}
.nav__sub {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--coral);
  margin-top: 3px;
  opacity: 0;
  transform: translateY(-4px);
  animation: subCaptionIn 0.55s cubic-bezier(0.4, 0, 0.2, 1) 1.3s forwards;
}
/* Beim Hover/Active: Sub bleibt sichtbar (Caption ist statisch nach erster Animation) */
.nav__list > li > a:hover .nav__sub,
.nav__list > li.is-active > a .nav__sub {
  color: var(--coral);
}
@keyframes subCaptionIn {
  0%   { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 0.92; transform: translateY(0); }
}
/* Submenu-Pfeile: relative zu erster Zeile, nicht zur Sub */
.nav__list > li.has-children > a::after {
  position: relative;
  top: -10px;
  margin-left: 6px;
}
/* Underline-Effect anpassen (nur unter erster Zeile) */
.nav__list > li > a::before {
  bottom: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .nav__sub { animation: none; opacity: 0.92; transform: none; }
}

/* ---------- Logo: ® Registered-Hinweis ---------- */
.site-header__logo {
  position: relative;
}
.site-header__logo::after {
  content: none;
}
/* Im Footer-Logo: ® hinter "KONSTANZ" Text */
.footer-bottom__logo {
  position: relative;
}


/* ---------- PAGE-LOADER: Ladeanimation beim Page-Load ---------- */

/* ---------- LOADER-LOGO: echtes SVG, Original-Proportionen, aufbauend ---------- */
.page-loader__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-loader__logo {
  width: clamp(260px, 42vw, 480px);
  height: auto;
  display: block;
  overflow: visible;
}
/* Jede Step-Gruppe baut nacheinander auf — opacity + minimal scale.
   Reihenfolge wie im echten Logo: Punkt → Brust → Vulva → FRAUEN → ÄRZTINNEN → KONSTANZ */
.page-loader__logo .faekn-step {
  opacity: 0;
  transform: scale(0.86);
  transform-box: fill-box;
  transform-origin: center;
  animation: faeknStepIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.page-loader__logo .faekn-step--1 { animation-delay:    0ms; }
.page-loader__logo .faekn-step--2 { animation-delay:  180ms; }
.page-loader__logo .faekn-step--3 { animation-delay:  360ms; }
.page-loader__logo .faekn-step--4 { animation-delay:  560ms; }
.page-loader__logo .faekn-step--5 { animation-delay:  720ms; }
.page-loader__logo .faekn-step--6 { animation-delay:  880ms; }

@keyframes faeknStepIn {
  0%   { opacity: 0; transform: scale(0.86); filter: blur(3px); }
  60%  { opacity: 1; filter: blur(0.4px); }
  100% { opacity: 1; transform: scale(1);    filter: blur(0); }
}

/* Skip-Pfad: alles instant sichtbar */
.page-loader.is-skipped .page-loader__logo .faekn-step {
  animation: none;
  opacity: 1;
  transform: none;
}

@keyframes loaderFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; pointer-events: none; visibility: hidden; }
}

/* Reduced Motion: kein Loader */
@media (prefers-reduced-motion: reduce) {
  .page-loader { display: none; }
}


/* ---------- PAGE-LOADER: Saubere Definition v2 ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: #FFF;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0s 0s;
}
.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
}
.page-loader.is-skipped {
  display: none;
}
.page-loader__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.page-loader__row {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(8px);
  animation: rowIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.page-loader__row--1 { animation-delay: 0.15s; }
.page-loader__row--2 { animation-delay: 0.55s; }
.page-loader__row--3 { animation-delay: 0.95s; }
.page-loader__symbol {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-loader__symbol svg {
  width: 100%;
  height: 100%;
  display: block;
}
.page-loader__text {
  font-family: inherit;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
}
.page-loader .page-loader__row--1 .page-loader__text { color: #F7C8D8 !important; }
.page-loader .page-loader__row--2 .page-loader__text { color: #ff7276 !important; }
.page-loader .page-loader__row--3 .page-loader__text { color: #164193 !important; }

@keyframes rowIn {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader__row { animation: none; opacity: 1; transform: none; }
}

/* ---------- Philosophie-Page: Vier Säulen ---------- */
.philo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 720px) { .philo-grid { grid-template-columns: 1fr; } }
.philo-card {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px 32px 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}
.philo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(22,65,147,0.08);
  border-color: var(--coral);
}
.philo-card__num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 14px;
}
.philo-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.25;
}
.philo-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

/* ---------- Voraussetzungen (3 Punkte ab 2027) ---------- */
.voraussetzungen {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.voraussetzung {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  background: #FFF;
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid var(--rule);
}
.voraussetzung__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.voraussetzung h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
}
.voraussetzung p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
}
@media (max-width: 540px) {
  .voraussetzung { padding: 20px 22px; gap: 16px; }
  .voraussetzung__num { width: 36px; height: 36px; font-size: 16px; }
}

/* ---------- Drei Säulen ---------- */
.saulen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .saulen-grid { grid-template-columns: 1fr; } }
.saule {
  background: #FFF;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--coral);
  border-radius: 0 0 14px 14px;
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
}
.saule h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}
.saule p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 14px;
  flex: 1;
}
.saule__status {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

/* ---------- Index-Teaser für Philosophie ---------- */
.philo-teaser {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5dcc 100%);
  border-radius: 18px;
  padding: 48px 56px;
  color: #FFF;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.philo-teaser::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,113,117,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.philo-teaser__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  display: block;
}
.philo-teaser h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #FFF;
}
.philo-teaser h2 .accent { color: var(--coral); font-weight: 600; }
.philo-teaser p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
  opacity: 0.92;
}
.philo-teaser .cta-button {
  background: var(--coral);
  border-color: var(--coral);
  color: #FFF;
}
.philo-teaser .cta-button:hover {
  background: #FFF;
  color: var(--navy);
  border-color: #FFF;
}
@media (max-width: 720px) {
  .philo-teaser { padding: 32px 28px; }
  .philo-teaser h2 { font-size: 26px; }
}


/* ---------- Page-Loader: Welcome + Progress ---------- */
.page-loader {
  flex-direction: column;
  gap: 32px;
  padding: 24px;
}
.page-loader__welcome {
  text-align: center;
  opacity: 0;
  animation: rowIn 0.5s cubic-bezier(0.4,0,0.2,1) 1.4s forwards;
}
.page-loader__welcome-headline {
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.page-loader__welcome-sub {
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.page-loader__skip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: transparent;
  border: 0;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  padding: 8px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: skipIn 0.4s ease 3s forwards;
  text-decoration: underline;
}
.page-loader__skip:hover { color: var(--coral); }
@keyframes skipIn { to { opacity: 0.6; } }
.page-loader__progress {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  animation: rowIn 0.5s cubic-bezier(0.4,0,0.2,1) 1.3s forwards;
}
.page-loader__progress-bar {
  height: 3px;
  background: rgba(22, 65, 147, 0.10);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.page-loader__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #F7C8D8, #ff7276, #164193);
  border-radius: 999px;
  width: 0%;
  transition: width 0.25s ease-out;
}
.page-loader__progress-text {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: 0.02em;
}
.page-loader__progress-text #page-loader-percent {
  color: var(--coral);
  font-weight: 700;
}


/* ---------- BULLETPROOF Loader Auto-Hide via CSS ---------- */
/* CSS-only Failsafe: nach 6s GARANTIERT weg, auch ohne JS */
.page-loader {
  animation: loaderAutoHide 0.4s linear 6s forwards;
}
@keyframes loaderAutoHide {
  0% { opacity: 1; visibility: visible; pointer-events: all; }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}



/* ============================================================
   v5.6 — Nav-Kategorien · Welcome-Video · Aufbau-Disable · Typewriter
   ============================================================ */

/* ---------- Nav-Kategorien DAVOR / DRIN / DANACH ---------- */
/* Mapping: DAVOR=Navy · DRIN=Rosa · DANACH=Koralle */
/* Pfeil-Indikator (::after Chevron aus globaler Regel) deaktivieren — sonst überlagert er die 2-zeilige Subtitle */
.nav__cat > a::after { display: none !important; }
/* Grid-Layout: Icon links, Label oben rechts, Subtitle unten rechts */
.nav__cat > a {
  display: grid !important;
  grid-template-columns: 22px auto;
  column-gap: 8px;
  row-gap: 0;
  align-items: center;
  opacity: 0.65;
  transition: opacity 0.2s ease, filter 0.2s ease;
  padding: 4px 10px 6px;
}
.nav__cat .nav__icon {
  grid-row: 1 / 3;
  align-self: center;
  overflow: hidden;
  /* Standard versteckt UND ohne Platz — Items stehen eng zusammen */
  opacity: 0;
  transform: scale(0.6) translateX(-6px);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Beim Hover/Fokus: Icon-Spalte geht auf, Logo erscheint links */
.nav__cat:hover > a,
.nav__cat:focus-within > a { grid-template-columns: 22px auto; column-gap: 8px; }
.nav__cat:hover .nav__icon,
.nav__cat:focus-within .nav__icon {
  opacity: 1;
  transform: scale(1) translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .nav__cat .nav__icon { transition: opacity 0.2s ease; transform: none; }
  .nav__cat:hover .nav__icon, .nav__cat:focus-within .nav__icon { transform: none; }
}
.nav__cat .nav__label { grid-row: 1; grid-column: 2; }
.nav__cat .nav__sub   { grid-row: 2; grid-column: 2; }
.nav__cat > a:hover,
.nav__cat > a:focus-visible,
.nav__cat:hover > a {
  opacity: 1;
  filter: saturate(1.15);
  border-radius: 8px;
  transition: opacity 0.2s ease, filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.nav__cat--davor  > a { color: #164193; }                   /* Navy */
.nav__cat--drin   > a > .nav__label,
.nav__cat--drin   > a > .nav__sub   { color: #c4708c; }     /* Rosa-dunkel für Lesbarkeit */
.nav__cat--danach > a { color: #ff7276; }                   /* Koralle */

/* ---------- Top-Level Hover: Light-Tint BG, Text bleibt in Kategorie-Farbe ---------- */
/* DAVOR — Light-Navy BG, Text + Icon bleibt Navy */
.nav__cat--davor:hover > a,
.nav__cat--davor > a:hover,
.nav__cat--davor > a:focus-visible {
  background: transparent;
}
.nav__cat--davor:hover > a .nav__label,
.nav__cat--davor:hover > a .nav__sub,
.nav__cat--davor > a:hover .nav__label,
.nav__cat--davor > a:hover .nav__sub { color: #164193 !important; }
.nav__cat--davor:hover > a .nav__icon path,
.nav__cat--davor > a:hover .nav__icon path { fill: #164193 !important; }

/* DRIN — Rosa-BG, Text in dunklerem Rosa (Lesbarkeit), Icon bleibt rosa */
.nav__cat--drin:hover > a,
.nav__cat--drin > a:hover,
.nav__cat--drin > a:focus-visible {
  background: transparent;
}
.nav__cat--drin:hover > a .nav__label,
.nav__cat--drin:hover > a .nav__sub,
.nav__cat--drin > a:hover .nav__label,
.nav__cat--drin > a:hover .nav__sub { color: #8b3a5a !important; }

/* DANACH — Light-Coral BG, Text + Icon bleibt Coral */
.nav__cat--danach:hover > a,
.nav__cat--danach > a:hover,
.nav__cat--danach > a:focus-visible {
  background: transparent;
}
.nav__cat--danach:hover > a .nav__label,
.nav__cat--danach:hover > a .nav__sub,
.nav__cat--danach > a:hover .nav__label,
.nav__cat--danach > a:hover .nav__sub { color: #ff7276 !important; }
.nav__cat--danach:hover > a .nav__icon path,
.nav__cat--danach > a:hover .nav__icon path { fill: #ff7276 !important; }

/* Darkmode-Anpassung — Brust-Text dann heller */
body.theme-dark .nav__cat--drin   > a > .nav__label,
body.theme-dark .nav__cat--drin   > a > .nav__sub   { color: #f0a8be; }

/* ---------- Submenu-Items: Konsistenz mit Kategorie (Farbe + Opacity-Hover) ---------- */
.nav__cat .nav__submenu a {
  opacity: 0.65;
  transition: background 0.15s ease, padding-left 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.nav__cat .nav__submenu a:hover,
.nav__cat .nav__submenu a:focus-visible {
  opacity: 1;
  padding-left: 18px;
}
/* DAVOR / DRIN / DANACH — Submenu-Items einheitlich Navy.
   Farbidentität lebt in den Tab-Titeln oben; die Items bleiben lesbar & konsistent. */
.nav__cat--davor  .nav__submenu a,
.nav__cat--drin   .nav__submenu a,
.nav__cat--danach .nav__submenu a { color: #164193; }
.nav__cat--davor  .nav__submenu a:hover,
.nav__cat--davor  .nav__submenu a:focus-visible,
.nav__cat--drin   .nav__submenu a:hover,
.nav__cat--drin   .nav__submenu a:focus-visible,
.nav__cat--danach .nav__submenu a:hover,
.nav__cat--danach .nav__submenu a:focus-visible {
  color: #164193;
  background: rgba(22, 65, 147, 0.12);
}
/* Darkmode: Submenu-Items werden über die Generalregel oben (Zeile ~1466) eingefärbt — keine Kategorie-Override mehr nötig */


/* ---------- Welcome-Video Overlay-Modal (index.html, 1× pro Session) ---------- */
.welcome-video {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(22, 65, 147, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.welcome-video.is-active {
  opacity: 1;
  pointer-events: auto;
}
.welcome-video__inner {
  position: relative;
  width: min(900px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.welcome-video__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.welcome-video__controls {
  position: absolute;
  top: -48px;
  right: 0;
  display: flex;
  gap: 8px;
}
.welcome-video__btn {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.welcome-video__btn:hover {
  background: rgba(255,255,255,0.28);
}
/* Schließen-Button visuell stärker — soll klar erkennbar sein */
.welcome-video__btn--close {
  background: rgba(255, 114, 118, 0.85);
  border-color: #ff7276;
  font-weight: 500;
}
.welcome-video__btn--close:hover {
  background: #ff7276;
}
/* Hinweis-Zeile unter dem Video */
.welcome-video__hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .welcome-video__controls {
    top: -42px;
  }
  .welcome-video__btn {
    padding: 6px 10px;
    font-size: 12px;
  }
  .welcome-video__hint {
    font-size: 11px;
    bottom: -26px;
    padding: 0 8px;
  }
}


/* ---------- Aufbau-Disable (nur auf index.html, body.page-index) ---------- */
.is-aufbau-blocked {
  opacity: 0.45;
  cursor: not-allowed !important;
  position: relative;
}
.is-aufbau-blocked:hover {
  text-decoration: line-through;
}
.is-aufbau-blocked:hover::after {
  content: 'Bereich noch im Aufbau';
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #164193;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 9990;
}


/* ---------- Typewriter ---------- */
.is-typing::after {
  content: "▎";
  margin-left: 2px;
  animation: faeknBlink 0.8s steps(1) infinite;
  color: currentColor;
  opacity: 0.7;
  font-weight: 300;
}
@keyframes faeknBlink { 50% { opacity: 0; } }


/* ============================================================
   WIZARD — "Wohin geht's?" Modal-Overlay
   ============================================================ */

/* Trigger-Button im Header */
.wizard-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0.92;
  text-decoration: none;
  font-family: inherit;
}
.wizard-trigger:hover,
.wizard-trigger:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

/* Modal */
.wizard-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(22, 65, 147, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wizard-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.wizard-modal__card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.wizard-modal.is-open .wizard-modal__card {
  transform: translateY(0);
}
@media (max-width: 540px) {
  .wizard-modal__card { padding: 24px 20px 18px; border-radius: 12px; }
}

/* Header-Bar im Modal */
.wizard__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}
.wizard__back,
.wizard__close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 14px;
  transition: background 0.15s;
  font-family: inherit;
}
.wizard__back:hover,
.wizard__close:hover {
  background: rgba(22, 65, 147, 0.08);
}
.wizard__trail {
  flex: 1;
  font-size: 11px;
  color: rgba(22, 65, 147, 0.55);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wizard__trail-step + .wizard__trail-step { margin-left: 4px; }

/* Content-Wrapper mit Animation */
.wizard__content {
  animation: none;
}
.wizard__content.is-anim-forward { animation: wizardSlideIn 0.32s cubic-bezier(0.2, 0.7, 0.3, 1); }
.wizard__content.is-anim-back    { animation: wizardSlideBack 0.32s cubic-bezier(0.2, 0.7, 0.3, 1); }
@keyframes wizardSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes wizardSlideBack {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Text-Elemente */
.wizard__lead {
  font-size: 13px;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.wizard__question {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.25;
}
.wizard__intro {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  margin: 0 0 22px;
  line-height: 1.5;
}

/* Optionen */
.wizard__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.wizard__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(247, 200, 216, 0.18);
  border: 1.5px solid rgba(247, 200, 216, 0.5);
  border-radius: 10px;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
  font-family: inherit;
  width: 100%;
}
.wizard__option:hover,
.wizard__option:focus-visible {
  background: rgba(247, 200, 216, 0.4);
  border-color: var(--coral);
  transform: translateX(2px);
}
.wizard__option-emoji {
  font-size: 22px;
  flex-shrink: 0;
}
.wizard__option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--coral);
  background: rgba(255, 114, 118, 0.10);
  border-radius: 9px;
  transition: background 0.18s, color 0.18s;
}
.wizard__option:hover .wizard__option-icon,
.wizard__option:focus-visible .wizard__option-icon {
  background: var(--coral);
  color: #FFF;
}
.wizard__option-label {
  flex: 1;
  line-height: 1.3;
}
.wizard__option-arrow {
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.18s;
}
.wizard__option:hover .wizard__option-arrow { opacity: 1; }

/* Result-View */
.wizard__result-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.2;
}
.wizard__result-body {
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  line-height: 1.55;
  margin: 0 0 20px;
}
.wizard__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
}
.wizard__cta--primary {
  background: var(--coral);
  color: #fff;
  width: 100%;
  margin-bottom: 14px;
  font-size: 16px;
}
.wizard__cta--primary:hover { opacity: 0.92; transform: translateY(-1px); }
.wizard__cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.wizard__cta--secondary,
.wizard__cta--topic {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(22, 65, 147, 0.25);
  flex: 1;
  min-width: 140px;
  font-size: 13px;
  padding: 11px 14px;
}
.wizard__cta--secondary:hover,
.wizard__cta--topic:hover {
  border-color: var(--navy);
  background: rgba(22, 65, 147, 0.05);
}

/* Footer-Hinweis */
.wizard__footer-hint {
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  text-align: center;
  margin: 22px 0 0;
}
.wizard__footer-hint a {
  color: var(--coral);
  text-decoration: underline;
  text-decoration-color: rgba(255, 114, 118, 0.4);
}
.wizard__restart-btn {
  background: transparent;
  border: none;
  color: rgba(0,0,0,0.5);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  font-family: inherit;
}
.wizard__restart-btn:hover { color: var(--navy); background: rgba(0,0,0,0.04); }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .wizard-modal,
  .wizard-modal__card,
  .wizard__content,
  .wizard__option { transition: none !important; animation: none !important; }
}


/* ============================================================
   HERO EDITORIAL — Mini-Sample (v5.9, Inspiration koerpermitte.ch)
   Reversibel: nur aktiv mit .hero--editorial Klasse
   ============================================================ */

.hero--editorial {
  background: #FFF;               /* nur weiß (war warm cream) */
  padding: 48px 0 60px;            /* Marion höher, weniger Leerraum (war 120/100) */
}
.hero--editorial .hero__inner {
  gap: 64px;
  align-items: flex-start;         /* Marion-Image oben statt zentriert (weniger Leerraum oben) */
}
/* Media-Spalte (Marion) ohne Top-Padding, sodass sie weit oben sitzt */
.hero--editorial .hero__media {
  margin-top: 0;
  align-self: flex-start;
}
.hero--editorial .eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--rosa);              /* v5.80: rosa statt sand-brown */
  opacity: 0.9;
}
.hero--editorial h1 {
  font-family: inherit;            /* avenir-next-lt-pro vom body geerbt */
  font-weight: 400;                 /* Book/Regular — Light 300 ist im Kit nicht enthalten */
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 22px 0 30px;
  color: var(--navy);
}
.hero--editorial h1 .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
  display: inline-block;
}
.hero--editorial .hero__lead {
  font-size: 19px;
  line-height: 1.75;
  max-width: 560px;
  color: rgba(0,0,0,0.65);
}
/* Search-Bar: weicher, atmiger */
.hero--editorial .hero-search {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(184, 134, 110, 0.18);
  box-shadow: 0 8px 30px rgba(22, 65, 147, 0.04);
  border-radius: 999px;
  transition: box-shadow 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.hero--editorial .hero-search:focus-within {
  box-shadow: 0 12px 40px rgba(22, 65, 147, 0.10);
}
.hero--editorial .hero-search__quicktag {
  transition: background 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), border-color 0.4s;
}
/* CTAs: sanfter, längere Transitions */
.hero--editorial .cta-button {
  transition: opacity 0.4s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
/* Mobile-Anpassung — weniger extremer Padding */
@media (max-width: 880px) {
  .hero--editorial { padding: 70px 0 50px; }
  .hero--editorial .hero__inner { gap: 40px; }
  .hero--editorial h1 { font-size: clamp(36px, 9vw, 52px); }
}

/* Darkmode — Sand bleibt warm aber gedämpfter */
body.theme-dark .hero--editorial {
  background: var(--bg);
}
body.theme-dark .hero--editorial .eyebrow {
  color: var(--rosa);
}
body.theme-dark .hero--editorial h1 .accent {
  color: #ff9a9d;
}


/* ============================================================
   v5.9.11 — Wegweiser-Tile "In Planung" Variante
   Nicht-klickbare Karten mit dezentem Badge
   ============================================================ */
.wegweiser-tile--planung {
  cursor: default;
  background: #fff;
  border-style: dashed;
  border-color: var(--rule);
  padding-top: 38px; /* Platz für Badge oben rechts */
}
.wegweiser-tile--planung:hover {
  transform: none;
  border-color: rgba(22, 65, 147, 0.22);
  box-shadow: 0 6px 18px rgba(22, 65, 147, 0.05);
}
body.theme-dark .wegweiser-tile--planung {
  background: #161B30;
  border-color: var(--rule);
}
body.theme-dark .wegweiser-tile--planung:hover {
  border-color: rgba(247, 200, 216, 0.22);
}

.tile-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(22, 65, 147, 0.08);
  color: var(--navy);
  padding: 5px 10px;
  border-radius: 999px;
  line-height: 1;
}
body.theme-dark .tile-badge {
  background: rgba(247, 200, 216, 0.14);
  color: var(--rosa);
}


/* ============================================================
   v5.10.3 — Clara-Pulse-Dot in Wizard-Bar
   Atmender Punkt mit expandierendem Ring — Signal: jemand ist erreichbar.
   ============================================================ */
.wizard-bar__pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-right: 2px;
}
.wizard-bar__pulse-dot {
  width: 8px;
  height: 8px;
  background: #FFF;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: claraDot 2.4s ease-in-out infinite;
}
.wizard-bar__pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid #FFF;
  opacity: 0.7;
  animation: claraRing 2.4s ease-out infinite;
  z-index: 1;
}
@keyframes claraDot {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.2); opacity: 0.85; }
}
@keyframes claraRing {
  0%   { transform: scale(0.7); opacity: 0.7; border-width: 2px; }
  70%  { opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; border-width: 1px; }
}
/* Hover-Variante: Dot wird wärmer, Ring pulsiert schneller */
.wizard-bar:hover .wizard-bar__pulse-dot,
.wizard-bar:focus-visible .wizard-bar__pulse-dot {
  animation-duration: 1.4s;
}
.wizard-bar:hover .wizard-bar__pulse-ring,
.wizard-bar:focus-visible .wizard-bar__pulse-ring {
  animation-duration: 1.4s;
}
/* Reduced Motion: Animation aus, Dot statisch sichtbar */
@media (prefers-reduced-motion: reduce) {
  .wizard-bar__pulse-dot,
  .wizard-bar__pulse-ring { animation: none; }
  .wizard-bar__pulse-ring { opacity: 0.4; transform: scale(1.4); }
}


/* ============================================================
   v5.10.5 — Lebendige Atmosphäre
   1) Hero-Background-Blobs (sanft animiert)
   2) Service-Tiles 3D-Tilt + Glow
   3) Stagger-Reveal Verbesserung
   ============================================================ */

/* ---------- 1) HERO-BACKGROUND-BLOBS ---------- */
.hero--editorial { position: relative; overflow: hidden; }
.hero__bg-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 1; }
.hero__blob {
  position: absolute;
  width: 720px;
  height: 720px;
  filter: blur(80px);
  will-change: transform;
}
.hero__blob--1 {
  top: -180px;
  right: -120px;
  animation: blobFloat1 32s ease-in-out infinite;
}
.hero__blob--2 {
  bottom: -240px;
  left: -180px;
  width: 800px;
  height: 800px;
  animation: blobFloat2 38s ease-in-out infinite;
}
.hero__blob--3 {
  top: 40%;
  left: 30%;
  width: 480px;
  height: 480px;
  filter: blur(100px);
  animation: blobFloat3 28s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0)        scale(1)    rotate(0deg); }
  33%      { transform: translate(-40px, 30px) scale(1.08) rotate(20deg); }
  66%      { transform: translate(30px, -20px) scale(0.95) rotate(-15deg); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0)        scale(1)    rotate(0deg); }
  50%      { transform: translate(60px, -40px) scale(1.12) rotate(-25deg); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0)        scale(1)    rotate(0deg); }
  25%      { transform: translate(40px, -30px) scale(1.15) rotate(15deg); }
  75%      { transform: translate(-30px, 40px) scale(0.92) rotate(-10deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__blob { animation: none; }
}
/* Dark theme — Blobs werden schwächer */
body.theme-dark .hero__blob { opacity: 0.3; }

/* ---------- 2) SERVICE-TILES 3D-TILT + GLOW ---------- */
/* Greift alle Tile-artigen Karten: wegweiser-tile, service-card, tile-* */
.wegweiser-tile,
.service-card,
[class*="-tile"]:not(.tile-badge):not(.wegweiser-tile--planung) {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
  will-change: transform;
}
.tilt-active {
  transition: transform 0.1s linear,
              box-shadow 0.3s ease;
}
.wegweiser-tile:hover,
.service-card:hover {
  box-shadow: 0 22px 50px -16px rgba(22, 65, 147, 0.18),
              0 0 0 1px rgba(255, 114, 118, 0.20);
}
/* Glow in Kategorie-Farbe wenn datacat gesetzt ist */
.wegweiser-tile[data-cat="davor"]:hover {
  box-shadow: 0 22px 50px -16px rgba(22, 65, 147, 0.28),
              0 0 0 1px rgba(22, 65, 147, 0.30);
}
.wegweiser-tile[data-cat="drin"]:hover {
  box-shadow: 0 22px 50px -16px rgba(196, 112, 140, 0.28),
              0 0 0 1px rgba(196, 112, 140, 0.30);
}
.wegweiser-tile[data-cat="danach"]:hover {
  box-shadow: 0 22px 50px -16px rgba(255, 114, 118, 0.28),
              0 0 0 1px rgba(255, 114, 118, 0.30);
}
@media (prefers-reduced-motion: reduce) {
  .wegweiser-tile, .service-card, [class*="-tile"] { transition: none; transform: none !important; }
}

/* ---------- 3) STAGGER-REVEAL ---------- */
/* Reveal-Animation atmender, mit subtle scale-in */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Stagger-Delays für Kinder (basiert auf reveal-delay-N Klassen die schon existieren) */
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* ============================================================
   v5.11 — PREMIUM-PRAXIS-TRANSFORMATION
   Vom Kassenpraxis-Look zu Wellness/Beauty-Salon-Premium.
   Logo-Elemente als grafische DNA: angeschnittene Großformate,
   Editorial-Typografie, Numbered Layouts.
   ============================================================ */

/* ---------- LOGO-ELEMENT LIBRARY ----------
   Die 3 Logo-Pfade als reusable Brand-Art-Elements.
   Werden absolut positioniert, bleeden aus dem Viewport, drehen langsam.
   ---------------------------------------------------------- */
.brand-art {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  display: block;
  line-height: 0;
}
.brand-art svg { display: block; width: 100%; height: 100%; }

/* Position-Modifier: an welche Ecke gepinnt + wie weit bleeded */
.brand-art--tr { top: -25%; right: -15%; }    /* top-right, bleed */
.brand-art--tl { top: -20%; left: -20%; }
.brand-art--br { bottom: -30%; right: -15%; }
.brand-art--bl { bottom: -25%; left: -25%; }
.brand-art--center-r { top: 50%; right: -15%; transform: translateY(-50%); }

/* Size-Modifier */
.brand-art--xl { width: clamp(560px, 60vw, 980px); height: clamp(560px, 60vw, 980px); }
.brand-art--lg { width: clamp(360px, 40vw, 640px); height: clamp(360px, 40vw, 640px); }
.brand-art--md { width: clamp(220px, 22vw, 380px); height: clamp(220px, 22vw, 380px); }
.brand-art--sm { width: clamp(120px, 12vw, 200px); height: clamp(120px, 12vw, 200px); }

/* Opacity-Modifier */
.brand-art--muted { opacity: 0.55; }
.brand-art--soft  { opacity: 0.32; }
.brand-art--ghost { opacity: 0.16; }

/* Slow Floating Animations (drei Varianten, damit sich Elemente nicht synchron bewegen) */
.brand-art--float-a { animation: brandFloatA 38s ease-in-out infinite; }
.brand-art--float-b { animation: brandFloatB 44s ease-in-out infinite; }
.brand-art--float-c { animation: brandFloatC 52s ease-in-out infinite; }

@keyframes brandFloatA {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%      { transform: translate(20px, -30px) rotate(8deg) scale(1.04); }
  66%      { transform: translate(-15px, 20px) rotate(-5deg) scale(0.98); }
}
@keyframes brandFloatB {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%      { transform: translate(-25px, 35px) rotate(-12deg) scale(1.06); }
}
@keyframes brandFloatC {
  0%, 100% { transform: translateY(-50%) translate(0, 0) rotate(0deg); }
  50%      { transform: translateY(-50%) translate(20px, -10px) rotate(15deg); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-art--float-a, .brand-art--float-b, .brand-art--float-c { animation: none; }
}

/* ---------- HERO-PREMIUM ----------
   Größere Typografie, mehr Atem, asymmetrische Komposition.
   ---------------------------------------------------------- */
.hero--editorial {
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 160px);
  position: relative;
  isolation: isolate;
}
.hero--editorial .hero__inner {
  position: relative;
  z-index: 2;
}
.hero--editorial h1 {
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 300;
  margin: 0.4em 0 0.6em;
  max-width: 14ch;
}
.hero--editorial h1 .accent {
  font-weight: 700;
  color: var(--coral);
  font-style: italic;
  display: inline-block;
}
.hero--editorial .hero__lead {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  max-width: 58ch;
  color: rgba(0,0,0,0.65);
  font-weight: 300;
  margin-bottom: 32px;
}
.hero--editorial .eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}

/* Marion-Portrait als organische Bühne — Rosa-Bogen umrahmt halb */
.hero__portrait {
  position: relative;
  isolation: isolate;
}
.hero__portrait::before {
  content: '';
  position: absolute;
  inset: -8% -8% -8% -8%;
  background: radial-gradient(circle at 30% 40%, rgba(247, 200, 216, 0.50), rgba(247, 200, 216, 0) 65%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
}
.hero__portrait img {
  border-radius: 16px;
  box-shadow: 0 30px 80px -20px rgba(22, 65, 147, 0.18);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
}
.hero__portrait:hover img {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 38px 100px -20px rgba(22, 65, 147, 0.28);
}

/* ---------- NUMBERED WEGWEISER ----------
   Editorial-Magazine-Numbering ("01", "02", ...) als
   Display-Element. Macht jede Tile zur Storypoint.
   ---------------------------------------------------------- */
.wegweiser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 28px);
  counter-reset: wegweiser;
}
.wegweiser-tile {
  position: relative;
  counter-increment: wegweiser;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  background: #FFF;
  border-radius: 20px;
  border: 1px solid rgba(22, 65, 147, 0.08);
  overflow: hidden;
  isolation: isolate;
}
.wegweiser-tile::before {
  content: counter(wegweiser, decimal-leading-zero);
  position: absolute;
  top: clamp(14px, 1.6vw, 22px);
  right: clamp(20px, 2.2vw, 32px);
  font-size: clamp(56px, 5.5vw, 92px);
  font-weight: 200;
  color: var(--rosa);
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
  z-index: 0;
  opacity: 0.95;
  transition: color 0.4s ease, transform 0.4s ease;
}
.wegweiser-tile:hover::before {
  color: var(--coral);
  transform: translate(-2px, 2px);
}
.wegweiser-tile > * { position: relative; z-index: 1; }
.wegweiser-tile__icon {
  color: var(--coral);
  margin-bottom: 18px;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  background: rgba(247, 200, 216, 0.35);
  border-radius: 14px;
  transition: background 0.3s ease, color 0.3s ease;
}
.wegweiser-tile:hover .wegweiser-tile__icon {
  background: var(--coral);
  color: #FFF;
}
.wegweiser-tile h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 12ch;
}
.wegweiser-tile p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(0,0,0,0.65);
  margin: 0 0 20px;
}
.wegweiser-tile__arrow {
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  color: var(--coral);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.wegweiser-tile:hover .wegweiser-tile__arrow {
  transform: translateX(8px);
}

/* ---------- SECTION-DIVIDER mit Logo-Element ----------
   Trennlinien zwischen großen Sections — subtile Welle.
   ---------------------------------------------------------- */
.section-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  background: transparent;
}
.section-divider svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Body-Section in Premium-Look — moderater Whitespace, größere Headlines */
.section {
  padding: clamp(32px, 5vw, 72px) 0;
}
.section-title {
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 0.3em;
}
.section-title .accent { font-weight: 700; color: var(--coral); font-style: italic; }
.section-lead {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  max-width: 56ch;
  color: rgba(0,0,0,0.62);
  font-weight: 300;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
}


/* ============================================================
   v5.12 — Hero-Brand-Mark (angeschnitten wie Türaufkleber)
   Komplettes Logo-Mark, seitlich aus dem Viewport ragend,
   Brust-Seite angeschnitten. Minimaler Zoom in/out.
   ============================================================ */
.hero__brand-mark {
  display: none;                   /* Hintergrund-Logo komplett entfernt */
  position: absolute;
  top: 50%;
  left: -16%;                      /* stärker angeschnitten → reingezoomt, Brust-Seite weit raus */
  right: auto;
  transform: translateY(-50%);
  width: clamp(560px, 66vw, 1040px);  /* viel größer */
  height: auto;
  z-index: 0;
  opacity: 0.16;                   /* kräftiger, aber Hero-Text bleibt lesbar */
  pointer-events: none;
  animation: heroMarkBreath 13s ease-in-out infinite;  /* minimal, ruhig */
  transform-origin: 0% 50%;
}
/* statischer Hintergrund: das Mark sitzt in einer dezenten Fläche, wirkt nicht freischwebend */
.hero__brand-mark::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 128%; height: 128%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--rosa-light, #fdeef3) 0%, rgba(253,238,243,0) 70%);
  z-index: -1;
}
.hero__brand-mark svg { width: 100%; height: auto; display: block; }

@keyframes heroMarkBreath {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%      { transform: translateY(-50%) scale(1.025); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__brand-mark { animation: none; }
}
/* Mobil: Mark kleiner + weiter raus, damit Text Platz hat */
@media (max-width: 820px) {
  .hero__brand-mark { width: 240px; left: -14%; opacity: 0.06; }
}
/* Dark-Theme: Mark etwas präsenter auf dunklem Grund */
body.theme-dark .hero__brand-mark { opacity: 0.22; }


/* ============================================================
   v5.13 — Inline-Buchungs-CTA bei der Leistungsbeschreibung
   ============================================================ */
.intro-booking {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 24px 0 4px;
  padding: 20px 24px;
  background: var(--rosa-light, #fdeef3);
  border-radius: 14px;
  border: 1px solid rgba(255, 114, 118, 0.18);
}
.intro-booking__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  flex: 1 1 auto;
}
.intro-booking .cta-button { flex: 0 0 auto; }
@media (max-width: 560px) {
  .intro-booking { flex-direction: column; align-items: stretch; text-align: center; }
}


/* ============================================================
   v5.14 — Wizard Clara-Intro (Logo-Grafik + Schreibmaschine)
   ============================================================ */
.wizard__clara {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.wizard__clara-mark {
  display: inline-flex;
  width: 52px;
  height: 80px;
  flex-shrink: 0;
}
.wizard__clara-mark svg { width: 100%; height: 100%; display: block; }
.wizard__clara-text {
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
  min-height: 2.7em;     /* reserviert Platz, damit Options beim Tippen nicht springen */
}
.wizard__clara-typed { font-weight: 300; }
.wizard__clara-caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  background: var(--coral);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: claraCaretBlink 0.9s step-end infinite;
}
.wizard__clara-caret.is-done { display: none; }
@keyframes claraCaretBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wizard__clara-caret { animation: none; }
}


/* ============================================================
   v5.16 — Sperr-Seite (philosophie) + neugieriger Zukunft-Teaser
   ============================================================ */
.locked-hero { padding-top: 64px; padding-bottom: 64px; }
.locked-mark {
  display: inline-flex;
  margin-bottom: 8px;
  animation: lockedFloat 5s ease-in-out infinite;
}
@keyframes lockedFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .locked-mark { animation: none; }
}

/* Neugieriger Praxis-der-Zukunft-Teaser (am Seitenende) */
.philo-teaser--curious {
  text-align: center;
  padding: 8px 0;
}
.philo-teaser__tag {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}


/* ============================================================
   v5.18 — Globales Hintergrund-Logo mit Scroll-Zoom (alle Seiten)
   ============================================================ */
.brand-bg {
  position: fixed;
  top: 50%;
  left: -16%;
  width: clamp(560px, 66vw, 1040px);
  height: auto;
  z-index: 0;                        /* hinter Content */
  opacity: 0.10;
  pointer-events: none;
  transform-origin: 0% 50%;
  transform: translateY(-50%) scale(var(--brand-scale, 1));
  will-change: transform;
}
.brand-bg svg { width: 100%; height: auto; display: block; }
/* statische Einbettung */
.brand-bg::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 130%; height: 130%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--rosa-light, #fdeef3) 0%, rgba(253,238,243,0) 70%);
  z-index: -1;
}
/* Content über dem Hintergrund-Logo halten (Lesbarkeit). Header NICHT —
   der behält sein sticky/z-index:100, sonst wird das Dropdown abgeschnitten. */
body > main, body > footer { position: relative; z-index: 1; }
body.theme-dark .brand-bg { opacity: 0.14; }
@media (max-width: 720px) {
  .brand-bg { width: 320px; left: -22%; opacity: 0.07; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-bg { transform: translateY(-50%) scale(1) !important; }
}


/* ============================================================
   v5.19 — Footer Social-Icon-Leiste + 5-Spalten-Tablet
   ============================================================ */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 0;
  margin: 8px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-social__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.footer-social__icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: transparent;
  border: none !important;
  transition: transform 0.2s ease;
}
.footer-social__icon svg { width: 24px; height: 24px; display: block; }
.footer-social__icon svg path { fill: rgba(255,255,255,0.7); transition: fill 0.2s ease; }
.footer-social__icon:hover {
  background: transparent;
  transform: translateY(-2px);
}
.footer-social__icon:hover svg path { fill: var(--coral); }

/* Tablet: Footer-Grid 2-spaltig schon definiert; ab hier feinjustiert */
@media (max-width: 1024px) and (min-width: 721px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}


/* ============================================================
   v5.20 — Section-Teaser (Schreibmaschine, führt zur nächsten Section)
   ============================================================ */
.section-teaser {
  display: flex;
  justify-content: center;
  padding: 8px 16px 40px;
}
.section-teaser__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  opacity: 0.78;
  padding: 10px 4px;
  transition: opacity 0.2s ease, gap 0.2s ease;
  text-align: left;
}
.section-teaser__btn:hover { opacity: 1; gap: 16px; }
.section-teaser__text {
  font-weight: 500;
  min-height: 1.4em;
}
.section-teaser__caret {
  display: inline-block;
  width: 2px; height: 1.05em;
  background: var(--coral);
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: teaserCaret 0.9s step-end infinite;
}
.section-teaser__caret.is-done { display: none; }
@keyframes teaserCaret { 0%,100%{opacity:1;} 50%{opacity:0;} }
.section-teaser__arrow {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  animation: teaserBounce 1.8s ease-in-out infinite;
}
@keyframes teaserBounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(4px);} }
body.theme-dark .section-teaser__btn { color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .section-teaser__arrow, .section-teaser__caret { animation: none; }
}


/* ============================================================
   v5.20 — Newsletter-Block im Footer (kein Popup, fest eingebaut)
   ============================================================ */
.footer-newsletter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
}
.footer-newsletter__text { flex: 1 1 340px; }
.footer-newsletter__text h4 {
  color: #fff !important;
  font-size: 17px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  margin-bottom: 4px !important;
}
.footer-newsletter__text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.8) !important;
}
.footer-newsletter__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  border: none !important;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.footer-newsletter__btn:hover { transform: translateY(-2px); background: #ff5a5f; color: #fff !important; }
@media (max-width: 560px) {
  .footer-newsletter { flex-direction: column; align-items: stretch; text-align: center; }
  .footer-newsletter__btn { justify-content: center; }
}


/* ============================================================
   v5.21 — Social-Icons im Newsletter-Block + Header (Desktop)
   ============================================================ */
.footer-newsletter__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-newsletter__social-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65) !important;
  margin-right: 2px;
}
.footer-newsletter__social .footer-social__icon {
  width: 38px; height: 38px;
}
.footer-newsletter__social .footer-social__icon svg { width: 18px; height: 18px; }

/* Social-Icons im Header — nur auf großen Desktops mit Platz */
.header-social { display: none; }
@media (min-width: 1500px) {
  .header-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 4px;
  }
  .header-social__icon {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 30px; height: 30px;
    color: var(--navy);
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .header-social__icon svg { width: 18px; height: 18px; }
  .header-social__icon svg path { fill: currentColor; }
  .header-social__icon:hover { color: var(--coral); transform: translateY(-1px); }
  body.theme-dark .header-social__icon { color: var(--text); }
  body.theme-dark .header-social__icon:hover { color: var(--coral); }
}


/* ============================================================
   v5.21 — DARK-MODE LESBARKEIT (umfassend)
   Ziel: kein dunkler Text auf Mitternachtsblau. Navy-Texte → hell,
   schwarze/rgba-Texte → hell, Boxen/Quiz → dunkler Grund + heller Text.
   ============================================================ */

/* --- 1. Standard-Komponenten: navy/dunkle Akzent-Texte → helles Blau --- */
body.theme-dark .hero-search__quicktag,
body.theme-dark .kontakt-way__big,
body.theme-dark .reise-station__nr,
body.theme-dark .wegweiser-tile__nr {
  color: #F7C8D8 !important;
}

/* --- 2. Fancy-Pages (kv-/hs-/vh-): Titel, Stats, Timeline → hell --- */
body.theme-dark [class*="-stat__big"],
body.theme-dark [class*="-hook-number"],
body.theme-dark [class*="-timeline__label"],
body.theme-dark [class*="-timeline__dot"],
body.theme-dark [class*="-timeline__panel-title"],
body.theme-dark [class*="-section__title"],
body.theme-dark [class*="-bridge__title"],
body.theme-dark [class*="-cross__title"],
body.theme-dark [class*="-quiz__title"],
body.theme-dark [class*="-switcher__title"],
body.theme-dark [class*="-switcher__step-title"],
body.theme-dark [class*="-switcher__metric-value"],
body.theme-dark [class*="-service__title"],
body.theme-dark [class*="-service__meta"],
body.theme-dark [class*="-curve__legend-label"],
body.theme-dark [class*="-gap__donut-big"],
body.theme-dark [class*="-pearl__row-label"],
body.theme-dark [class*="-pearl__row-value"],
body.theme-dark [class*="-pearl__note"] {
  color: var(--text) !important;
}

/* --- 3. Leads / Fließtext mit rgba(0,0,0,…) → hell --- */
body.theme-dark .hero__lead,
body.theme-dark .section-lead,
body.theme-dark .hero--editorial .hero__lead,
body.theme-dark [class*="-section__lead"],
body.theme-dark [class*="-bridge__answer"],
body.theme-dark [class*="-bridge__intro"],
body.theme-dark [class*="__intro"] {
  color: var(--text-dim) !important;
}
/* generischer Fließtext in Sektionen */
body.theme-dark main p,
body.theme-dark main li,
body.theme-dark main td,
body.theme-dark main th {
  color: var(--text);
}

/* --- 4. Überschriften überall hell (außer auf hellem Grund, s.u.) --- */
body.theme-dark main h1,
body.theme-dark main h2,
body.theme-dark main h3,
body.theme-dark main h4 {
  color: var(--text);
}

/* --- 5. Outline-Buttons: navy Text+Border → hell --- */
body.theme-dark .cta-button--outline,
body.theme-dark [class*="-cta--outline"] {
  color: var(--text) !important;
  border-color: rgba(255,255,255,0.32) !important;
}

/* --- 6. Form-Labels + Kontakt-Wege → hell --- */
body.theme-dark label,
body.theme-dark .form-field label,
body.theme-dark .kontakt-way h3 {
  color: var(--text) !important;
}

/* --- 7. Sprachschalter (inaktiv) → hell --- */
body.theme-dark .lang-switch__item { color: var(--text) !important; }
body.theme-dark .lang-switch__item.is-active { color: #fff !important; }

/* --- 8. Weiße Boxen / Quiz → dunkler Grund + heller Text (lesbar) --- */
body.theme-dark [class*="-quiz"],
body.theme-dark [class*="__quiz"],
body.theme-dark .quiz-card,
body.theme-dark .quiz,
body.theme-dark [class*="-tier"],
body.theme-dark [class*="-package"],
body.theme-dark [class*="-card"],
body.theme-dark .info-box,
body.theme-dark .hinweis-box {
  background: #181D34 !important;
  border-color: var(--rule) !important;
}
body.theme-dark [class*="-quiz"] *,
body.theme-dark .quiz-card *,
body.theme-dark [class*="-card"] h3,
body.theme-dark [class*="-card"] p {
  color: var(--text);
}
/* Akzent-Texte (coral) in Boxen NICHT überschreiben */
body.theme-dark [class*="-card"] [class*="coral"]:not(.cta-button):not([class*="cta-button"]):not([class*="btn"]),
body.theme-dark [class*="-card"] .accent { color: var(--coral); }
/* coral-CTA-Buttons in Karten behalten immer weißen Text (Lesbarkeit Dark-Mode) */
body.theme-dark [class*="-card"] a.cta-button--coral { color: #FFF; }

/* --- 9. Wizard (Overlay) im Dark-Mode lesbar --- */
body.theme-dark .wizard__panel,
body.theme-dark .wizard__option {
  background: #181D34;
  border-color: var(--rule);
}
body.theme-dark .wizard__question,
body.theme-dark .wizard__option,
body.theme-dark .wizard__clara-text { color: var(--text); }


/* --- v5.21b Dark-Mode Nachtrag: verbleibende navy-Texte (inkl. inline styles) --- */
body.theme-dark [class*="hook-number"],
body.theme-dark [class*="timeline__"],
body.theme-dark .scroll-indicator__label {
  color: #F7C8D8 !important;
}
/* h3 mit inline color:var(--navy) → hell (überschreibt inline) */
body.theme-dark main h3[style*="--navy"],
body.theme-dark main h2[style*="--navy"],
body.theme-dark main p[style*="--navy"],
body.theme-dark main a[style*="--navy"],
body.theme-dark main span[style*="--navy"],
body.theme-dark main div[style*="--navy"] {
  color: var(--text) !important;
}
/* schwarze inline-Texte (rgba/000) → hell */
body.theme-dark main [style*="rgba(0,0,0"],
body.theme-dark main [style*="rgba(0, 0, 0"],
body.theme-dark main [style*="#000"],
body.theme-dark main [style*="color:#1"],
body.theme-dark main [style*="color: #1"] {
  color: var(--text) !important;
}


/* ============================================================
   v5.22 — Team-Detail-Piktogramme (Text auflockern)
   ============================================================ */
.team-card__detail-label {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.detail-ico {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--coral);
}
.detail-ico svg { width: 100%; height: 100%; display: block; }
.detail-ico svg path,
.detail-ico svg circle,
.detail-ico svg line,
.detail-ico svg polyline { stroke: currentColor; }
body.theme-dark .detail-ico { color: #F7C8D8; }


/* ============================================================
   v5.23 — Kosten & Ablauf Block (IGeL/Selbstzahler, GOÄ-konform)
   ============================================================ */
.kosten-block { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.kosten-prices {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--rule); border-radius: 16px; overflow: hidden;
  margin: 0 0 14px;
}
.kosten-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px; font-size: 16px;
  border-bottom: 1px solid var(--rule);
}
.kosten-row:last-child { border-bottom: none; }
.kosten-row__name { color: var(--text); }
.kosten-row__price { font-weight: 700; color: var(--navy); white-space: nowrap; }
.kosten-row--highlight { background: var(--rosa-light); }
.kosten-row--highlight .kosten-row__price { color: var(--coral); }
.kosten-disclaimer {
  font-size: 13px; color: var(--text-dim); font-style: italic;
  margin: 0 0 32px; text-align: center;
}
.kosten-notes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 600px) { .kosten-notes { grid-template-columns: 1fr; } }
.kosten-note {
  background: #fff; border: 1px solid var(--rule); border-radius: 14px;
  padding: 20px 22px;
}
.kosten-note h3 {
  font-size: 15px; font-weight: 700; color: var(--navy);
  margin: 0 0 6px; display: flex; align-items: center; gap: 8px;
}
.kosten-note p { font-size: 14px; line-height: 1.6; color: var(--text-dim); margin: 0; }
.kosten-note a { color: var(--coral); text-decoration: none; font-weight: 600; }
.kosten-note a:hover { text-decoration: underline; }
.kosten-note__ico { width: 17px; height: 17px; color: var(--coral); flex-shrink: 0; }
/* Dark-Mode */
body.theme-dark .kosten-note { background: #181D34; border-color: var(--rule); }
body.theme-dark .kosten-note h3 { color: #F7C8D8; }
body.theme-dark .kosten-row__price { color: #F7C8D8; }
body.theme-dark .kosten-row--highlight { background: rgba(255,255,255,0.04); }
body.theme-dark .kosten-row--highlight .kosten-row__price { color: var(--coral); }


/* ============================================================
   v5.24 — Cookie-Consent Banner + Modal
   ============================================================ */
#cc-root { position: fixed; inset: 0; z-index: 2147483000; pointer-events: none; }
.cc-banner {
  pointer-events: auto;
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  max-width: 940px; margin: 0 auto;
  background: #fff; color: var(--text);
  border: 1px solid var(--rule); border-radius: 16px;
  box-shadow: 0 18px 50px rgba(22,65,147,0.22);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cc-banner__text { flex: 1 1 380px; font-size: 14px; line-height: 1.55; }
.cc-banner__text a { color: var(--coral); font-weight: 600; }
.cc-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cc-btn {
  font-family: inherit; font-size: 14px; font-weight: 600;
  padding: 11px 20px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.cc-btn--primary { background: var(--coral); color: #fff; }
.cc-btn--primary:hover { background: #ff5a5f; }
.cc-btn--ghost { background: transparent; color: var(--navy); border-color: var(--rule); }
.cc-btn--ghost:hover { border-color: var(--navy); }

.cc-modal {
  pointer-events: auto;
  position: fixed; inset: 0; background: rgba(14,18,38,0.55);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.cc-modal[hidden] { display: none; }
.cc-modal__box {
  background: #fff; border-radius: 18px; max-width: 540px; width: 100%;
  padding: 32px; max-height: 88vh; overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.cc-modal__title { font-size: 22px; color: var(--navy); margin: 0 0 8px; }
.cc-modal__intro { font-size: 14px; color: var(--text-dim); margin: 0 0 20px; line-height: 1.55; }
.cc-opt {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; border: 1px solid var(--rule); border-radius: 12px;
  margin-bottom: 12px; font-size: 13.5px; line-height: 1.5; cursor: pointer;
}
.cc-opt--locked { opacity: 0.7; cursor: default; }
.cc-opt input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--coral); flex-shrink: 0; }
.cc-opt strong { color: var(--navy); }
.cc-modal__actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 8px; flex-wrap: wrap; }

#cc-reopen {
  position: fixed; left: 16px; bottom: 16px; z-index: 2147482000;
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1px solid var(--rule); color: var(--navy);
  cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,0.14);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, color .2s;
}
#cc-reopen:hover { transform: scale(1.08); color: var(--coral); }
#cc-reopen svg { width: 22px; height: 22px; }

/* Dark-Mode */
body.theme-dark .cc-banner,
body.theme-dark .cc-modal__box { background: #181D34; color: var(--text); border-color: rgba(255,255,255,0.14); }
body.theme-dark .cc-modal__title,
body.theme-dark .cc-opt strong { color: #F7C8D8; }
body.theme-dark .cc-btn--ghost { color: var(--text); border-color: rgba(255,255,255,0.25); }
body.theme-dark .cc-opt { border-color: rgba(255,255,255,0.14); }
body.theme-dark #cc-reopen { background: #181D34; color: var(--text); border-color: rgba(255,255,255,0.2); }

@media (max-width: 560px) {
  .cc-banner { padding: 18px; gap: 14px; }
  .cc-banner__actions { width: 100%; }
  .cc-banner__actions .cc-btn { flex: 1 1 auto; text-align: center; }
}


/* v5.25 — Formular-Piktogramme (SVG statt Emoji) */
.form-card__icon svg { width: 21px; height: 21px; color: var(--coral); }
.form-card__icon svg * { stroke: currentColor; }
body.theme-dark .form-card__icon { background: rgba(255,255,255,0.06); }
body.theme-dark .form-card__icon svg { color: #F7C8D8; }


/* ============================================================
   v5.26 — reise-anchor-nav: auf Mobile unten an CTA-Bar andocken
   (statt oben über dem Text zu schweben → ruhiger)
   ============================================================ */
@media (max-width: 720px) {
  .reise-anchor-nav {
    position: fixed;
    top: auto;
    bottom: 60px;              /* exakt über der mobile-cta */
    left: 0; right: 0;
    z-index: 89;               /* knapp unter mobile-cta (90) */
    background: #fff;          /* solid → verschmilzt mit CTA-Bar */
    backdrop-filter: none;
    border-top: 1px solid var(--rule);
    border-bottom: none;
    padding: 9px 0;
    box-shadow: 0 -3px 14px rgba(22,65,147,0.07);
  }
  /* nahtlos: keine Doppellinie zwischen anchor-nav und CTA-Bar */
  body.has-bottom-anchor .mobile-cta { border-top: none; box-shadow: none; }
  /* genug Platz, damit kein Inhalt verdeckt wird */
  body.has-bottom-anchor { padding-bottom: 120px; }
  body.theme-dark .reise-anchor-nav { background: #0E1226; }
}


/* v5.26b — Consent-Reopen-Button auf Mobile über CTA-Bar/Anchor-Nav heben */
@media (max-width: 720px) {
  #cc-reopen { bottom: 72px; }
  body.has-bottom-anchor #cc-reopen { bottom: 128px; }
}


/* v5.27 — Hero: Dreier-Button-Reihe (Variante A+B) */
.hero__cta-row--triple .cta-button { flex: 0 1 auto; }
@media (max-width: 560px) {
  .hero__cta-row--triple { flex-direction: column; align-items: stretch; }
  .hero__cta-row--triple .cta-button { width: 100%; text-align: center; }
}

/* v5.27 — Hero-Headline: zweiter Teil als kleinerer Unterton */
.hero__h1-sub { font-size: 0.44em; display: inline-block; margin-top: 0.4em; font-weight: 600; line-height: 1.2; }


/* v5.28 — Footer-Menü: Piktogramme vor jedem Link */
.footer-grid ul li a { display: inline-flex; align-items: center; gap: 9px; }
.footer-grid ul li a svg.fnav-ico { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.55; transition: opacity .2s ease; }
.footer-grid ul li a:hover svg.fnav-ico { opacity: 1; }
.footer-grid ul li a .fnav-soon { opacity: 1; color: var(--coral); font-size: 11px; margin-left: 2px; }
/* Clara-Quicklinks (Kontakt-Spalte) */
.footer-clara-links { display: inline-flex; gap: 10px; margin-top: 4px; }
.footer-clara-links a { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--coral); }
.footer-clara-links a svg { width: 13px; height: 13px; }


/* v5.31 — Hero-Sidecards: 3 kompakte Karten (Inhaberin / Praxis / Praxisteam) */
.hero__sidecards { display: flex; flex-direction: column; gap: 14px; }
.hero-card { position: relative; border-radius: 20px; overflow: hidden; display: block; box-shadow: 0 8px 30px rgba(22,65,147,0.10); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-card--portrait { aspect-ratio: 16 / 11; }
.hero-card--video { aspect-ratio: 16 / 10; cursor: pointer; }
.hero-card--team { aspect-ratio: 16 / 10; }
.hero-card__caption {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  padding: 8px 13px; background: rgba(255,255,255,0.94);
  border-radius: 12px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.hero-card__caption .eyebrow { margin: 0 0 2px; font-size: 9px; }
.hero-card__caption strong { display: block; color: var(--navy); font-size: 13px; line-height: 1.2; }
a.hero-card { transition: transform 0.25s ease; }
a.hero-card:hover { transform: translateY(-3px); }
/* Video-Karte: lite-yt im Karten-Kontext */
.hero-card--video.lite-yt { aspect-ratio: 16 / 10; }
.hero-card--video .lite-yt__play { z-index: 2; }
.hero-card--video .hero-card__caption { z-index: 3; }
/* Praxisteam-Karussell */
.hero-team-carousel { position: relative; width: 100%; height: 100%; background: var(--navy, #164193); overflow: hidden; }
.team-wipe { position: absolute; inset: 0; overflow: hidden; z-index: 3; pointer-events: none; }
.team-wipe__blob { position: absolute; border-radius: 50%; will-change: transform; transform: scale(0); }
.hero-team-carousel img { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
.hero-team-carousel img.is-active { opacity: 1; }
/* Dark-Mode */
body.theme-dark .hero-card__caption { background: rgba(24,29,52,0.92); }
body.theme-dark .hero-card__caption strong { color: var(--text); }
@media (max-width: 720px) {
  .hero__sidecards { max-width: 460px; margin: 0 auto; width: 100%; }
}


/* v5.32 — Voll-breiter Praxis-Rundgang mit Autoplay (consent-gated) */
.video-stage-section { padding-top: 44px; }
.video-stage {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: 24px; overflow: hidden; background: #000;
  box-shadow: 0 14px 44px rgba(22,65,147,0.14);
}
.video-stage__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-stage__placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; transition: opacity 0.4s ease;
}
.video-stage__placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72); }
.video-stage__hint {
  position: relative; z-index: 1; color: #fff; background: rgba(22,65,147,0.78);
  padding: 10px 18px; border-radius: 999px; font-size: 14px; max-width: 80%; text-align: center;
}
/* Sobald das iframe geladen ist (Consent erteilt), Platzhalter ausblenden */
.video-stage__iframe[src] ~ .video-stage__placeholder { opacity: 0; pointer-events: none; }
/* Etwas mehr Luft zwischen Marion-Karte und Ärztinnen-Slider */
.hero__sidecards { gap: 18px; }


/* v5.33 — side-nav "UNTEN" als Link */
a.side-nav__progress { text-decoration: none; cursor: pointer; transition: color 0.2s ease; display: block; }
a.side-nav__progress:hover { color: var(--coral); }


/* v5.33 — Video-Consent-Button im Platzhalter */
.video-stage__consent {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: #fff; border: 0; cursor: pointer;
  padding: 13px 22px; border-radius: 999px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(255,113,117,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-stage__consent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,113,117,0.55); }
.video-stage__consent svg { flex-shrink: 0; }


/* v5.33 — Team-Sprunganker (Header-Offset) */
.team-anchor { display: block; height: 0; scroll-margin-top: 100px; }


/* v5.36 — kv-stats sitewide verfügbar (Editorial-Statistik-Block) */
.kv-stats { padding: 56px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--cream, #FFF6F1); margin-top: 24px; }
.kv-page { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.kv-stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
@media (max-width: 880px) { .kv-stats__grid { grid-template-columns: 1fr; gap: 32px; } }
.kv-stat { text-align: left; padding-left: 20px; border-left: 3px solid var(--coral); }
.kv-stat:nth-child(2) { border-left-color: var(--navy); }
.kv-stat:nth-child(3) { border-left-color: var(--rosa); }
.kv-stat__big { font-size: clamp(40px, 5.5vw, 64px); font-weight: 800; line-height: 1; color: var(--navy); letter-spacing: -0.025em; margin-bottom: 8px; font-feature-settings: "tnum" 1; }
.kv-stat__sub { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.kv-stat__text { font-size: 15px; line-height: 1.55; color: var(--text-dim); margin: 0 0 12px; }
.kv-stat__source { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); opacity: 0.6; text-decoration: none; border-bottom: 1px solid currentColor; }
.kv-stat__source:hover { opacity: 1; color: var(--navy); }

/* === v5.42 DRAWER-HEADER (portiert aus Ratgeber-Theme) === */

/* ============================================
   9. TOP-NAV — KONTAKT · TERMIN · KNOW-HOW (Mega)
   Alle Header-Items harmonisch ~36px hoch.
   ============================================ */
.nav { position: relative; }   /* Anker für absolutes .nav__list auf Mobile */
.nav__list { gap: 4px; display: flex; align-items: center; }

/* Generische Item-Pille (KONTAKT, TERMIN, KNOW-HOW) */
.nav__item { position: relative; list-style: none; }
.nav__item > a {
  display: inline-flex !important;
  flex-direction: row !important;          /* Pikto LINKS, Text rechts */
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 5px !important;                     /* Abstand Pikto-Text, etwas enger */
  padding: 0 12px !important;
  height: 36px !important;
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #164193 !important;
  background: transparent !important;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
  /* Grid-Reste aus main-site.css überschreiben */
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  column-gap: 5px !important;
}
.nav__item > a:hover,
.nav__item.is-open > a,
.nav__item.has-children:hover > a,
.nav__item.has-children:focus-within > a {
  background: rgba(22, 65, 147, 0.06) !important;
  color: #164193 !important;
}
.nav__pic {
  flex-shrink: 0;
  width: 18px !important;
  height: 18px !important;
  color: #164193;
  display: inline-block !important;
  transition: color 0.18s ease;
}
.nav__label {
  display: inline-block !important;
  white-space: nowrap;
}
.nav__item > a:hover .nav__pic { color: #ff7276; }

/* Chevron-Pfeil aus main-site.css für KNOW-HOW ausblenden */
.nav__item > a::after { display: none !important; }

/* ----- MOBILE: nav-list versteckt, Burger als Trigger ----- */
@media (max-width: 950px) {
  .nav__toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    /* iOS-Touch-Polish: schnelle Reaktion, kein Highlight, kein Zoom */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
  }
  /* SVG IM Button darf Touch nicht abfangen */
  .nav__toggle svg { pointer-events: none; }
  .nav__list {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch !important;
    background: #FFF;
    border-top: 1px solid rgba(22, 65, 147, 0.12);
    padding: 12px 16px;
    gap: 2px !important;
    box-shadow: 0 16px 40px rgba(22, 65, 147, 0.10);
    z-index: 110;                                  /* über Drawer und sticky header */
  }
  .nav__list.is-open { display: flex !important; }
  .nav__list .nav__item { width: 100%; }
  .nav__item > a {
    height: auto !important;
    padding: 12px 8px !important;
    width: 100%;
    justify-content: flex-start !important;
    font-size: 13px;
  }
  /* Dark Mode: mobile Liste auf dunkelblau */
  body.theme-dark .nav__list {
    background: #0E1226;
    border-top-color: rgba(255, 255, 255, 0.12);
  }
}
@media (min-width: 951px) {
  .nav__toggle { display: none !important; }
}

/* ============================================
   10. DRAWER-PATTERN — KNOW-HOW & KONTAKT
   Schiebt Content nach unten (in-flow, max-height-Animation).
   Keine Border, kein Shadow. Weiss / Dunkelblau im Dark-Mode.
   ============================================ */
.site-header { position: sticky; top: 0; z-index: 100; }

.site-header__drawer {
  background: #FFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  border: 0;
  box-shadow: none;
}
body.theme-dark .site-header__drawer { background: #0E1226; }

body.is-drawer-knowhow-open .site-header__drawer[data-drawer="knowhow"],
body.is-drawer-kontakt-open .site-header__drawer[data-drawer="kontakt"] {
  max-height: 540px;
}

.site-header__drawer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 32px 32px;
}

/* KNOW-HOW: 3 Spalten */
.header-mega {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.header-mega-col { min-width: 0; }
.header-mega-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 2px solid currentColor;
}
.header-mega-logo { flex-shrink: 0; }
.header-mega-head strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: #164193;
  line-height: 1.2;
}
body.theme-dark .header-mega-head strong { color: #FFF; }
.header-mega-head span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #ff7276;
  margin-top: 4px;
  line-height: 1.3;
}
.header-mega-col--davor  .header-mega-head { color: #164193; }
.header-mega-col--drin   .header-mega-head { color: #f8bcd0; }
.header-mega-col--danach .header-mega-head { color: #ff7276; }

.header-mega-col ul { list-style: none; padding: 0; margin: 0; }
.header-mega-col li { margin: 0; }
.header-mega-col a {
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #164193 !important;
  text-decoration: none;
  border-radius: 6px;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.15s ease, color 0.15s ease;
}
body.theme-dark .header-mega-col a { color: #FFF !important; }
.header-mega-col--davor  a:hover { background: rgba(22, 65, 147, 0.08); }
.header-mega-col--drin   a:hover { background: rgba(248, 188, 208, 0.28); }

/* DANACH: nur bei Hover Coral-Overlay, sonst Standard */
.header-mega-col--danach a:hover {
  background: #ff7276 !important;
  color: #FFF !important;
}
.header-mega-col--danach a[aria-current="page"] {
  background: #ff7276 !important;
  color: #FFF !important;
  font-weight: 700;
}
/* Dark-Mode: Hover-Overlays */
body.theme-dark .header-mega-col--davor  a:hover { background: rgba(255, 255, 255, 0.08); }
body.theme-dark .header-mega-col--drin   a:hover { background: rgba(248, 188, 208, 0.18); }
body.theme-dark .header-mega-col--danach a:hover { background: #ff7276 !important; color: #FFF !important; }
body.theme-dark .header-mega-col--danach a[aria-current="page"] { background: #ff7276 !important; color: #FFF !important; }

/* KONTAKT: 3 Wege */
.header-kontakt {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.header-kontakt-way {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 6px;
  padding: 22px 24px;
  border-radius: 12px;
  background: rgba(22, 65, 147, 0.04);
  color: #164193 !important;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.18s ease, transform 0.18s ease;
}
.header-kontakt-way:hover {
  background: rgba(22, 65, 147, 0.08);
  transform: translateY(-2px);
}
.header-kontakt-way svg { color: #164193; }
.header-kontakt-way strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #164193;
  margin-top: 4px;
}
.header-kontakt-way__big {
  font-size: 18px;
  font-weight: 700;
  color: #164193;
  line-height: 1.25;
}
.header-kontakt-way__sub {
  font-size: 12px;
  font-weight: 400;
  color: #164193;
  opacity: 0.7;
  line-height: 1.4;
}
.header-kontakt-way--featured {
  background: #ff7276;
  color: #FFF !important;
}
.header-kontakt-way--featured:hover { background: #ff5a5e; }
.header-kontakt-way--featured svg,
.header-kontakt-way--featured strong,
.header-kontakt-way--featured .header-kontakt-way__big,
.header-kontakt-way--featured .header-kontakt-way__sub { color: #FFF; }
.header-kontakt-way--featured .header-kontakt-way__sub { opacity: 0.9; }

body.theme-dark .header-kontakt-way {
  background: rgba(255, 255, 255, 0.06);
  color: #FFF !important;
}
body.theme-dark .header-kontakt-way:hover { background: rgba(255, 255, 255, 0.12); }
body.theme-dark .header-kontakt-way,
body.theme-dark .header-kontakt-way svg,
body.theme-dark .header-kontakt-way strong,
body.theme-dark .header-kontakt-way .header-kontakt-way__big,
body.theme-dark .header-kontakt-way .header-kontakt-way__sub { color: #FFF !important; }
body.theme-dark .header-kontakt-way .header-kontakt-way__sub { opacity: 0.75; }

/* Mobile: Drawer-Inhalt einspaltig */
@media (max-width: 950px) {
  body.is-drawer-knowhow-open .site-header__drawer[data-drawer="knowhow"],
  body.is-drawer-kontakt-open .site-header__drawer[data-drawer="kontakt"] {
    max-height: 1400px;
  }
  .site-header__drawer-inner { padding: 18px 16px 22px; }
  .header-mega { grid-template-columns: 1fr; gap: 22px; }
  .header-kontakt { grid-template-columns: 1fr; gap: 14px; }
  .header-kontakt-way { padding: 16px 18px; }
}

/* ============================================
   11. THEME-TOGGLE · LANG-SWITCH · SOCIAL — harmonisch 36px hoch
   ============================================ */
.theme-toggle {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  margin: 0 4px !important;
  transition: background 0.18s ease;
}
.theme-toggle:hover { background: rgba(22, 65, 147, 0.06) !important; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0 4px;
  height: 36px;
}
.lang-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #164193 !important;
  background: transparent !important;
  text-decoration: none;
  transition: background 0.15s ease;
}
.lang-switch__item:hover { background: rgba(22, 65, 147, 0.08) !important; color: #164193 !important; }
.lang-switch__item.is-active { background: #164193 !important; color: #fff !important; }

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0 4px;
  height: 36px;
}
.header-social__icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.header-social__icon:hover { background: rgba(22, 65, 147, 0.06); }
.header-social__icon svg { width: 18px !important; height: 18px !important; }
.header-social__icon svg path { fill: #164193; transition: fill 0.15s ease; }
.header-social__icon:hover svg path { fill: #ff7276; }


/* --- Dark-Mode Header/Drawer + skip-link --- */
   13b. DARK MODE — Header + Drawer polish, Pictos rosa → coral
   ============================================ */
body.theme-dark .site-header {
  background: rgba(14, 18, 38, 0.96);
}
body.theme-dark .nav__item > a {
  color: #FFF !important;
}
body.theme-dark .nav__item > a:hover,
body.theme-dark .nav__item.is-open > a,
body.theme-dark .nav__item--mega:hover > a {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #FFF !important;
}
/* Pictogramme: Default Rosa, Hover Coral */
body.theme-dark .nav__pic { color: #f8bcd0 !important; }
body.theme-dark .nav__item > a:hover .nav__pic,
body.theme-dark .nav__item--mega:hover > a .nav__pic { color: #ff7276 !important; }

/* Theme-Toggle, Lang, Social im Dark-Mode lesbar */
body.theme-dark .theme-toggle { color: #FFF !important; }
body.theme-dark .theme-toggle:hover { background: rgba(255, 255, 255, 0.08) !important; color: #ff7276 !important; }
body.theme-dark .lang-switch__item { color: #FFF !important; }
body.theme-dark .lang-switch__item:hover { background: rgba(255, 255, 255, 0.10) !important; }
body.theme-dark .lang-switch__item.is-active { background: #ff7276 !important; color: #FFF !important; }
body.theme-dark .header-social__icon:hover { background: rgba(255, 255, 255, 0.08); }
body.theme-dark .header-social__icon svg path { fill: #f8bcd0; }
body.theme-dark .header-social__icon:hover svg path { fill: #ff7276; }

/* Burger im Dark */
body.theme-dark .nav__toggle { color: #FFF; }

/* Drawer-Logos: Geist-Pfade im Dark-Mode etwas heller damit erkennbar */
body.theme-dark .header-mega-logo path[opacity="0.18"] {
  opacity: 0.28;
}

/* ============================================
   ============================================ */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{position:fixed;left:16px;top:16px;width:auto;height:auto;padding:10px 16px;background:var(--navy);color:#fff;border-radius:6px;z-index:1000}

/* === v5.42 FOOTER-ANGLEICHUNG (footer-bottom: 2 Spalten + Legal-Icons) === */
.footer-bottom { align-items: center; gap: 24px !important; }
.footer-bottom__copy, .footer-bottom__links { position: relative; z-index: 1; }
.footer-bottom__links a { display: inline-flex; align-items: center; gap: 6px; }
.footer-bottom__links a svg { width: 13px; height: 13px; opacity: 0.85; flex-shrink: 0; }

/* === v5.42 LOGO STATISCH (Header-Logo-Animation aus) === */
.site-header__logo svg { animation: none !important; transform: none !important; }
.site-header__logo .lm-1, .site-header__logo .lm-2, .site-header__logo .lm-3,
.site-header__logo .cls-1, .site-header__logo .cls-2, .site-header__logo .cls-3 {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.site-header__logo:hover svg > g:first-of-type .cls-2,
.site-header__logo:hover svg > g:first-of-type .cls-3,
.site-header__logo:hover svg > g:first-of-type .lm-2,
.site-header__logo:hover svg > g:first-of-type .lm-3,
.site-header__logo:focus-visible svg > g:first-of-type .cls-2,
.site-header__logo:focus-visible svg > g:first-of-type .cls-3,
.site-header__logo:focus-visible svg > g:first-of-type .lm-2,
.site-header__logo:focus-visible svg > g:first-of-type .lm-3 { transform: none !important; }


/* === v5.42 SIDE-NAV BRAND-MARK (Original-Logo oben, statisch) === */
.side-nav__logo--brand { padding-bottom: 12px; line-height: 0; }
.side-nav__logo--brand svg { width: 26px; height: 40px; display: block; margin: 0 auto; }
.side-nav__logo--brand svg path { animation: none !important; transition: none !important; }
/* Dark-Mode: Navy-Kopf auf heller Pille sichtbar halten (Pille wird rgba(24,29,52)) */
body.theme-dark .side-nav__logo--brand svg path[fill="#164193"] { fill: #93A6DA !important; }

/* === v5.42 SIDE-NAV LOGO-ONLY (portiert aus Ratgeber-Theme §8) === */
/* ============================================
   8. SIDE-NAV (EIN-Logo-Variante, Hot-Spots, Typewriter)
   ============================================ */
/* Override main-site.css: kein Gap zwischen OBEN/Logo/UNTEN,
   Cluster sitzt tight zusammen, öffnet nur bei Hover */
.side-nav--single { gap: 0; padding: 14px 10px; }
.side-nav--single .side-nav__logo,
.side-nav--single .side-nav__progress { margin: 0; padding-top: 6px; padding-bottom: 6px; }

/* Logo-Container — exakte Logo-Proportion 130:200 */
.side-nav__body {
  position: relative;
  width: 42px;
  height: 65px;          /* 42 * 200/130 ≈ 65 — Logo-Aspect */
  margin: 6px 0;
}
.side-nav__svg {
  width: 100%;
  height: 100%;
  display: block;
}
.side-nav__svg path { transition: opacity 0.25s ease; }

/* Hot-Spots: horizontale Bänder über den drei Logo-Regionen.
   Im DOM VOR dem SVG, damit der ~-Selektor das SVG erreicht. */
.side-nav__hot {
  position: absolute;
  left: -6px;
  right: -6px;
  z-index: 2;
  display: block;
  cursor: pointer;
  text-decoration: none;
  border: 0;
}
.side-nav__hot--kopf  { top: 0;   height: 28%; }
.side-nav__hot--brust { top: 28%; height: 30%; }
.side-nav__hot--vulva { top: 58%; height: 42%; }

/* Dim-Logik: Hover über Hot → die anderen zwei Pfade werden grau */
.side-nav__hot--kopf:hover  ~ .side-nav__svg .sn-brust,
.side-nav__hot--kopf:hover  ~ .side-nav__svg .sn-vulva,
.side-nav__hot--brust:hover ~ .side-nav__svg .sn-kopf,
.side-nav__hot--brust:hover ~ .side-nav__svg .sn-vulva,
.side-nav__hot--vulva:hover ~ .side-nav__svg .sn-kopf,
.side-nav__hot--vulva:hover ~ .side-nav__svg .sn-brust { opacity: 0.15; }

/* Label-Container: CI-Farben, Position links neben dem Logo */
.side-nav__hot-label {
  position: absolute;
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  box-shadow: 0 6px 18px rgba(22,65,147,0.18);
  overflow: hidden;          /* clip für typewriter */
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.4,0,0.2,1);
}
/* CI-Farben strikt — nur Navy, Rosa, Coral */
.side-nav__hot--kopf  .side-nav__hot-label { background: #164193; color: #fff; }
.side-nav__hot--brust .side-nav__hot-label { background: #f8bcd0; color: #164193; }
.side-nav__hot--vulva .side-nav__hot-label { background: #ff7175; color: #fff; }

/* Typewriter-Effekt: Text schreibt sich Zeichen-für-Zeichen ein */
.side-nav__hot-text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  vertical-align: middle;
  transition: max-width 0.55s steps(40, end) 0.10s;
}
.side-nav__hot:hover .side-nav__hot-label,
.side-nav__hot:focus-visible .side-nav__hot-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.side-nav__hot:hover .side-nav__hot-text,
.side-nav__hot:focus-visible .side-nav__hot-text { max-width: 400px; }

/* Fokus für Tastatur-Bedienung */
.side-nav__hot:focus-visible { outline: 2px solid #164193; outline-offset: 2px; border-radius: 4px; }

/* === v5.42 PATCH 31-05 (Dark-Footer-Links · Mobile-Mega-Akkordeon · Mobile-Footer enger · Side-Nav-Kopf dark) === */
/* A) Dark-Mode: anrufen/chatten weiß */
body.theme-dark .footer-clara-links a { color: #FFF !important; }
body.theme-dark .footer-clara-links a svg { color: #FFF; }
/* Side-Nav: Navy-Kopf auf dunkler Pille sichtbar halten */
body.theme-dark .side-nav__svg .sn-kopf { fill: #93A6DA; }
/* B) Mobile: KNOW-HOW-Mega als Akkordeon — DAVOR/DRIN/DANACH antippen */
@media (max-width: 720px) {
  .header-mega-col .header-mega-head { cursor: pointer; position: relative; padding-right: 90px; -webkit-user-select: none; user-select: none; }
  .header-mega-col .header-mega-head::after {
    content: "ausziehen \25BE"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    font-size: 11px; font-weight: 700; letter-spacing: 0.02em; opacity: 0.7; white-space: nowrap; transition: opacity 0.2s ease;
  }
  .header-mega-col.is-open .header-mega-head::after { content: "anziehen \25B4"; }
  .header-mega-col > ul {
    overflow: hidden; max-height: 0; opacity: 0; margin-top: 0;
    transition: max-height 0.32s ease, opacity 0.25s ease, margin-top 0.32s ease;
  }
  .header-mega-col.is-open > ul { max-height: 680px; opacity: 1; margin-top: 8px; }
}
/* C) Mobile: Newsletter-Footer kompakter (kein erzwungener 340px-Textblock) */
@media (max-width: 560px) {
  .footer-newsletter { padding: 18px 18px; margin-bottom: 22px; gap: 14px; }
  .footer-newsletter__text { flex: 0 1 auto; }
  .footer-newsletter__social { margin-top: 10px; justify-content: center; }
  .footer-bg-logo { transform: translateX(-42%) scale(1.05); opacity: 0.30; }
}

/* ANRUFEN (mobile-CTA, is-secondary) im Dark-Mode: Text + Icon weiss */
body.theme-dark .mobile-cta a.is-secondary,
body.theme-dark .mobile-cta a.is-secondary svg { color: #FFF !important; }

/* Consent-Optionen: Hover-Feedback (klickbare Zeilen) */
.cc-opt:not(.cc-opt--locked):hover { border-color: var(--coral); background: rgba(255,114,118,0.05); }
body.theme-dark .cc-opt:not(.cc-opt--locked):hover { border-color: var(--coral); background: rgba(255,114,118,0.12); }

/* === v5.42 HEADER-LAYOUT 31-05: CTA-Boxen raus · 3 Icons (+Theme/Sprache) mittig · Social rechts === */
.nav__cta { display: none !important; }
@media (min-width: 721px) {
  .nav { flex: 1 1 auto; }
  .nav__list { margin-left: auto; }
  .header-social { display: inline-flex !important; margin-left: auto; align-items: center; gap: 6px; }
}

/* Logo nie schrumpfen (Mobile-Fix) */
.site-header__logo { flex-shrink: 0; }

/* MOBILE: Social aus (Header-Overflow-Fix) — Social ist im Drawer + Footer vorhanden */
@media (max-width: 720px) { .header-social { display: none !important; } }

/* #6 Praxis-der-Zukunft-Teaser: Body-Text weiss (Kontrast auf Blau) */
.philo-teaser--curious p:not(.philo-teaser__tag){color:#FFFFFF !important;}
.philo-teaser--curious p:not(.philo-teaser__tag) strong{color:#FFFFFF;}

/* Team-Karussell: Logo-Zoom-Schnitt-Übergang (v5.43) */
.hero-card--team .hero-card__caption{z-index:5;}
.hero-team-carousel__cut{position:absolute;inset:0;z-index:3;display:flex;align-items:center;justify-content:center;background:var(--navy,#164193);opacity:0;pointer-events:none;}
.hero-team-carousel__cut .hero-team-carousel__cut-logo{width:42%;height:auto;display:block;transform:scale(1);transform-origin:center;}
.hero-team-carousel__cut.is-cutting{opacity:1;}
.hero-team-carousel__cut.is-revealing{opacity:0;transition:opacity .3s ease-in;}
.hero-team-carousel__cut.is-revealing .hero-team-carousel__cut-logo{transform:scale(.32);transition:transform .3s ease-in;}
body.theme-dark .hero-team-carousel__cut{background:#0E1226;}

/* === MOBILE-CHROME-AUTOHIDE (v5.44): Header + Sprung-Leiste nur beim Scrollen === */
@media (max-width: 720px) {
  .site-header { transition: transform .32s ease; will-change: transform; }
  /* Header weg, wenn nicht gescrollt wird und nicht am Seitenanfang */
  body:not(.is-scrolling):not(.at-top) .site-header { transform: translateY(-100%); }
  /* Menü offen → Header bleibt sichtbar */
  body:has(.nav__list.is-open) .site-header,
  body[class*="is-drawer-"] .site-header { transform: none !important; }
  /* Untere Sprung-Leiste nur sichtbar beim Scrollen */
  .reise-anchor-nav { transition: transform .32s ease, opacity .32s ease; }
  body:not(.is-scrolling) .reise-anchor-nav { transform: translateY(160%); opacity: 0; pointer-events: none; }
  /* weniger reservierter Platz, da die Leiste jetzt nur transient erscheint */
  body.has-bottom-anchor { padding-bottom: 80px; }
}

/* ===== Volltextsuche (v5.53) ===== */
.search-toggle{ background:none; border:0; cursor:pointer; color:inherit; padding:6px; display:inline-flex; align-items:center; justify-content:center; line-height:0; }
.search-toggle svg{ width:22px; height:22px; }
.search-toggle:hover{ color:var(--coral); }
.search-overlay{ position:fixed; inset:0; z-index:200; display:none; }
.search-overlay.is-open{ display:block; }
.search-overlay__backdrop{ position:absolute; inset:0; background:rgba(22,65,147,0.28); -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px); }
.search-panel{ position:relative; max-width:680px; margin:10vh auto 0; background:#fff; border-radius:18px; box-shadow:0 30px 80px rgba(22,65,147,0.25); padding:18px; }
.search-field{ display:flex; align-items:center; gap:10px; border:1px solid var(--rule); border-radius:12px; padding:12px 14px; }
.search-field > svg{ width:22px; height:22px; color:var(--navy); flex:0 0 auto; }
.search-input{ flex:1; border:0; outline:0; font-size:17px; background:transparent; color:var(--navy); font-family:inherit; }
.search-close{ background:none; border:0; cursor:pointer; color:var(--text-dim); padding:4px; display:inline-flex; line-height:0; }
.search-close svg{ width:20px; height:20px; }
.search-close:hover{ color:var(--coral); }
.search-results{ margin-top:12px; max-height:54vh; overflow:auto; display:flex; flex-direction:column; gap:4px; }
.search-result{ display:block; text-decoration:none; padding:12px 14px; border-radius:10px; transition:background .15s ease; }
.search-result:hover{ background:var(--rosa-light,#fdeef3); }
.search-result__title{ display:block; font-weight:700; color:var(--navy); font-size:15px; }
.search-result__snip{ display:block; color:var(--text-dim); font-size:13px; margin-top:3px; line-height:1.45; }
.search-result__snip mark{ background:#ffe19a; color:inherit; padding:0 1px; border-radius:2px; }
.search-empty, .search-loading{ padding:16px 14px; color:var(--text-dim); font-size:14px; }
.search-hint{ margin:12px 6px 2px; color:var(--text-dim); font-size:12px; }
body.search-open{ overflow:hidden; }
body.theme-dark .search-panel{ background:#10142b; }
body.theme-dark .search-field{ border-color:rgba(255,255,255,0.16); }
body.theme-dark .search-input, body.theme-dark .search-result__title{ color:#fff; }
body.theme-dark .search-result:hover{ background:rgba(255,255,255,0.06); }
@media (max-width:600px){ .search-panel{ margin:0; border-radius:0; min-height:100%; } }

/* ===== Dark-Mode: weiße Karten -> dunkle Fläche (rosa-Pendant #181D34) + helle Texte — v5.54 ===== */
body.theme-dark h3, body.theme-dark h4 { color: var(--text); }
body.theme-dark .kv-service,
body.theme-dark .kv-bridge,
body.theme-dark .kv-participation,
body.theme-dark .kv-timeline__panel,
body.theme-dark .kv-switcher__step,
body.theme-dark .kv-switcher__tab,
body.theme-dark .kv-switcher__metric,
body.theme-dark .kv-quiz,
body.theme-dark .kv-quiz__mount,
body.theme-dark .kv-curve__chart,
body.theme-dark .kv-trend,
body.theme-dark .sw-service,
body.theme-dark .sw-bridge,
body.theme-dark .sw-participation,
body.theme-dark .sw-timeline__panel,
body.theme-dark .sw-switcher__step,
body.theme-dark .sw-switcher__tab,
body.theme-dark .sw-switcher__metric,
body.theme-dark .sw-quiz,
body.theme-dark .sw-quiz__mount,
body.theme-dark .sw-curve__chart,
body.theme-dark .sw-trend,
body.theme-dark .hs-service,
body.theme-dark .hs-bridge,
body.theme-dark .hs-participation,
body.theme-dark .hs-timeline__panel,
body.theme-dark .hs-switcher__step,
body.theme-dark .hs-switcher__tab,
body.theme-dark .hs-switcher__metric,
body.theme-dark .hs-quiz,
body.theme-dark .hs-quiz__mount,
body.theme-dark .hs-curve__chart,
body.theme-dark .hs-trend,
body.theme-dark .vh-service,
body.theme-dark .vh-bridge,
body.theme-dark .vh-participation,
body.theme-dark .vh-timeline__panel,
body.theme-dark .vh-switcher__step,
body.theme-dark .vh-switcher__tab,
body.theme-dark .vh-switcher__metric,
body.theme-dark .vh-quiz,
body.theme-dark .vh-quiz__mount,
body.theme-dark .vh-curve__chart,
body.theme-dark .vh-trend,
body.theme-dark .ju-service,
body.theme-dark .ju-bridge,
body.theme-dark .ju-participation,
body.theme-dark .ju-timeline__panel,
body.theme-dark .ju-switcher__step,
body.theme-dark .ju-switcher__tab,
body.theme-dark .ju-switcher__metric,
body.theme-dark .ju-quiz,
body.theme-dark .ju-quiz__mount,
body.theme-dark .ju-curve__chart,
body.theme-dark .ju-trend,
body.theme-dark .faq-item,
body.theme-dark .faq-filter,
body.theme-dark .faq-search-wrap,
body.theme-dark .feedback-card,
body.theme-dark .impressum-card,
body.theme-dark .karriere-card,
body.theme-dark .philo-card,
body.theme-dark .wege-card,
body.theme-dark .wissen-card,
body.theme-dark .voraussetzung,
body.theme-dark .shorts-card,
body.theme-dark .team-quicknav__item,
body.theme-dark .target-tile,
body.theme-dark .partner-contact-card,
body.theme-dark .hero-questions__bubble {
  background: #181D34;
  border-color: var(--rule);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
body.theme-dark .kv-service,
body.theme-dark .kv-service__title,
body.theme-dark .kv-service__text,
body.theme-dark .kv-bridge,
body.theme-dark .kv-bridge__title,
body.theme-dark .kv-participation,
body.theme-dark .kv-timeline__panel,
body.theme-dark .kv-timeline__panel-title,
body.theme-dark .kv-timeline__item-title,
body.theme-dark .kv-switcher__step,
body.theme-dark .kv-switcher__step-title,
body.theme-dark .kv-quiz,
body.theme-dark .sw-service,
body.theme-dark .sw-service__title,
body.theme-dark .sw-service__text,
body.theme-dark .sw-bridge,
body.theme-dark .sw-bridge__title,
body.theme-dark .sw-participation,
body.theme-dark .sw-timeline__panel,
body.theme-dark .sw-timeline__panel-title,
body.theme-dark .sw-timeline__item-title,
body.theme-dark .sw-switcher__step,
body.theme-dark .sw-switcher__step-title,
body.theme-dark .sw-quiz,
body.theme-dark .hs-service,
body.theme-dark .hs-service__title,
body.theme-dark .hs-service__text,
body.theme-dark .hs-bridge,
body.theme-dark .hs-bridge__title,
body.theme-dark .hs-participation,
body.theme-dark .hs-timeline__panel,
body.theme-dark .hs-timeline__panel-title,
body.theme-dark .hs-timeline__item-title,
body.theme-dark .hs-switcher__step,
body.theme-dark .hs-switcher__step-title,
body.theme-dark .hs-quiz,
body.theme-dark .vh-service,
body.theme-dark .vh-service__title,
body.theme-dark .vh-service__text,
body.theme-dark .vh-bridge,
body.theme-dark .vh-bridge__title,
body.theme-dark .vh-participation,
body.theme-dark .vh-timeline__panel,
body.theme-dark .vh-timeline__panel-title,
body.theme-dark .vh-timeline__item-title,
body.theme-dark .vh-switcher__step,
body.theme-dark .vh-switcher__step-title,
body.theme-dark .vh-quiz,
body.theme-dark .ju-service,
body.theme-dark .ju-service__title,
body.theme-dark .ju-service__text,
body.theme-dark .ju-bridge,
body.theme-dark .ju-bridge__title,
body.theme-dark .ju-participation,
body.theme-dark .ju-timeline__panel,
body.theme-dark .ju-timeline__panel-title,
body.theme-dark .ju-timeline__item-title,
body.theme-dark .ju-switcher__step,
body.theme-dark .ju-switcher__step-title,
body.theme-dark .ju-quiz,
body.theme-dark .faq-item,
body.theme-dark .feedback-card,
body.theme-dark .impressum-card,
body.theme-dark .karriere-card,
body.theme-dark .philo-card,
body.theme-dark .wege-card,
body.theme-dark .wissen-card,
body.theme-dark .voraussetzung,
body.theme-dark .partner-contact-card {
  color: var(--text);
}
body.theme-dark .kv-participation,
body.theme-dark .kv-bridge,
body.theme-dark .sw-participation,
body.theme-dark .sw-bridge,
body.theme-dark .hs-participation,
body.theme-dark .hs-bridge,
body.theme-dark .vh-participation,
body.theme-dark .vh-bridge,
body.theme-dark .ju-participation,
body.theme-dark .ju-bridge {
  background: #181D34;
}

/* ===== Dark-Mode v5.54: Variablen für Inline-Karten + restliche Klassen-Karten ===== */
body.theme-dark{ --card-bg:#181D34; --ink:#9DB8FF; }
body.theme-dark .kontakt-way,
body.theme-dark .reise-anchor-nav,
body.theme-dark .kv-stats,
body.theme-dark .wizard-modal__card,
body.theme-dark .quiz__option{ background:#181D34; border-color:var(--rule); color:var(--text); }
/* hero-search: Feld bleibt im Dark Mode hell mit dunklem Text (siehe v5.55-Block) */

/* ===== Dark-Mode v5.55: Eingabefelder hell + dunkler Text, Button-Icons weiß ===== */
body.theme-dark input[type="text"],
body.theme-dark input[type="search"],
body.theme-dark input[type="email"],
body.theme-dark input[type="tel"],
body.theme-dark input[type="number"],
body.theme-dark input[type="password"],
body.theme-dark input[type="date"],
body.theme-dark input:not([type]),
body.theme-dark textarea,
body.theme-dark select,
body.theme-dark .hero-search,
body.theme-dark .hero-search__input,
body.theme-dark .search-input,
body.theme-dark .faq-search-wrap input {
  background: #FFFFFF;
  color: #14213D;
  border-color: #d4d8e4;
  -webkit-text-fill-color: #14213D;   /* Safari: Textfarbe erzwingen */
}
body.theme-dark .hero-search{ box-shadow: 0 2px 14px rgba(0,0,0,0.35); }
body.theme-dark input::placeholder,
body.theme-dark textarea::placeholder,
body.theme-dark .hero-search__input::placeholder,
body.theme-dark .search-input::placeholder { color: #6B7280; -webkit-text-fill-color:#6B7280; opacity:1; }
/* native Such-Cancel-Cross ausblenden (Doppel-X-Bug) */
body.theme-dark input[type="search"]::-webkit-search-cancel-button{ -webkit-appearance:none; appearance:none; }
/* Action-Buttons in Feldern: Icon weiß, runde Fläche farbig */
body.theme-dark .hero-search__submit{ background:var(--coral); }
body.theme-dark .hero-search__submit svg,
body.theme-dark .faq-search-clear svg,
body.theme-dark .search-field .search-close svg{ color:#FFFFFF; stroke:#FFFFFF; }
/* Lupe im hellen Feld bleibt coral/navy sichtbar */
body.theme-dark .hero-search__icon,
body.theme-dark .faq-search-wrap .faq-search-icon{ color:var(--coral); }

/* ===== Dark-Mode v5.55: kontakt-Karten lesbar + featured mit Akzent ===== */
body.theme-dark .kontakt-way h3,
body.theme-dark .kontakt-way__big{ color:var(--ink); }
body.theme-dark .kontakt-way__sub{ color:var(--text-dim); }
body.theme-dark .kontakt-way--featured{
  background:linear-gradient(135deg,#23284a 0%,#181D34 100%);
  border:2px solid var(--coral);
}
body.theme-dark .kontakt-way__icon{ background:rgba(255,114,118,0.16); color:var(--coral); }
body.theme-dark .kontakt-way--featured .kontakt-way__icon{ background:var(--coral); color:#FFF; }

/* FAQ-Suchfeld: im Dark Mode helles Feld + dunkler Text (überschreibt v5.54-Box-Override) */
body.theme-dark .faq-search-wrap{ background:#FFFFFF; border-color:#d4d8e4; }
body.theme-dark #faq-search{ color:#14213D; -webkit-text-fill-color:#14213D; }
body.theme-dark #faq-search::placeholder{ color:#6B7280; -webkit-text-fill-color:#6B7280; opacity:1; }
body.theme-dark #faq-search-clear{ background:var(--rosa, #F7C8D8); }
body.theme-dark #faq-search-clear svg{ color:var(--coral); stroke:var(--coral); }

/* ===== Dark-Mode v5.57: navy-Texte auf dunklem Grund aufhellen (--ink) — Lesbarkeits-Audit ===== */
body.theme-dark .wizard__back,
body.theme-dark .wizard__close,
body.theme-dark .header-mega-head,
body.theme-dark .header-mega-head strong,
body.theme-dark .header-mega-head span,
body.theme-dark .faq-filter,
body.theme-dark .team-quicknav__item,
body.theme-dark .hs-curve__chart-title,
body.theme-dark .hs-curve__chart-sub,
body.theme-dark .hs-switcher__tab,
body.theme-dark .reise-anchor-nav__item,
body.theme-dark .reise-station__title,
body.theme-dark .reise-split__label,
body.theme-dark .kv-donut__big,
body.theme-dark .kv-participation__source,
body.theme-dark .kv-stage__row-label,
body.theme-dark .kv-stage__row-value,
body.theme-dark .vh-trend__chart-title,
body.theme-dark .vh-trend__chart-sub,
body.theme-dark .vh-trend__legend,
body.theme-dark .vh-trend__legend-item,
body.theme-dark .vh-trend__source,
body.theme-dark .vh-switcher__tab {
  color: var(--ink) !important;
}
/* FAQ-Clear-Icon im jetzt hellen Feld: dunkel/coral statt hell */
body.theme-dark .faq-search-wrap #faq-search-clear svg,
body.theme-dark .faq-search-wrap .faq-search-clear svg{ color:var(--coral) !important; stroke:var(--coral) !important; }

/* ===== Dark-Mode v5.58: Korrekturen Lesbarkeits-Audit ===== */
/* coral-Leiste + Primary-Button: weißer Text (NICHT --ink, da coral-Grund) */
body.theme-dark .wizard-bar{ background:transparent !important; border-bottom-color:rgba(255,255,255,0.12); }
body.theme-dark .wizard-bar,
body.theme-dark .wizard-bar strong,
body.theme-dark .wizard-bar span,
body.theme-dark .quiz__nav-button,
body.theme-dark .quiz__nav-button--primary{ color:#FFFFFF !important; }
/* restliche navy-auf-dunkel Diagrammteile (spirale) */
body.theme-dark .vh-trend__lines,
body.theme-dark .vh-trend__grid{ color:var(--ink) !important; }
/* FAQ-Clear «×» (span oder svg) im jetzt hellen Feld */
body.theme-dark .faq-search-wrap #faq-search-clear,
body.theme-dark .faq-search-wrap #faq-search-clear *{ color:var(--coral) !important; stroke:var(--coral) !important; }
/* navy externe Quellen-Links in dunklen Info-Sektionen aufhellen */
body.theme-dark .section a[href^="http"]:not([class]),
body.theme-dark .container a[href^="http"]:not([class]){ color:var(--ink) !important; }

/* ===== Dark-Mode v5.59: letzte Einzelfälle Lesbarkeit ===== */
/* hero-search Quicktags: helles Pill -> dunkler Text */
body.theme-dark .hero-search__quicktag{ color:#14213D !important; }
/* FAQ-Wrapper: geerbter Text dunkel; Clear-× coral */
body.theme-dark .faq-search-wrap{ color:#14213D; }
body.theme-dark #faq-search-clear{ color:var(--coral) !important; }
/* kv-Timeline-Punkt: dunkler Text auf hellem Punkt */
body.theme-dark .kv-timeline__dot{ color:#14213D !important; }
/* navy Quellen-/Referenz-Links + externe Links in dunklen Info-Sektionen -> --ink */
body.theme-dark [class*="__source"],
body.theme-dark [class*="-source"],
body.theme-dark [class^="kv-"] a[href^="http"]:not([class*="cta"]),
body.theme-dark [class^="vh-"] a[href^="http"]:not([class*="cta"]),
body.theme-dark [class^="hs-"] a[href^="http"]:not([class*="cta"]),
body.theme-dark [class^="sw-"] a[href^="http"]:not([class*="cta"]),
body.theme-dark [class^="ju-"] a[href^="http"]:not([class*="cta"]){ color:var(--ink) !important; }
/* navy Hervorhebungen (strong) in dunklen Info-Karten -> --ink */
body.theme-dark [class^="kv-"] strong,
body.theme-dark [class^="vh-"] strong,
body.theme-dark [class^="hs-"] strong,
body.theme-dark [class^="sw-"] strong,
body.theme-dark [class^="ju-"] strong{ color:var(--ink); }

/* ===== Dark-Mode v5.60: Korrektur — Themen-CTAs & Timeline-Punkt sind coral => weißer Text ===== */
body.theme-dark .hs-cta,
body.theme-dark .ju-cta,
body.theme-dark .kv-cta,
body.theme-dark .sw-cta,
body.theme-dark .vh-cta,
body.theme-dark .kv-timeline__dot{ color:#FFFFFF !important; }
/* GKV-Hinweis-Box: navy strong -> --ink */
body.theme-dark .gkv-notice strong{ color:var(--ink); }

/* Bild-Platzhalter-Badge + hero-image-strip Positionierung */
.hero-image-strip { position: relative; }
.img-ph { position: absolute; top: 12px; left: 12px; z-index: 3; background: rgba(22,65,147,0.86); color:#fff; font-size: 11px; font-weight: 700; letter-spacing: 0.02em; padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(2px); pointer-events: none; max-width: calc(100% - 24px); }

/* Statistik-Hover-Tooltip (statchart.js) */
.vh-trend__pt { cursor: pointer; opacity: 1 !important; pointer-events: all; }
.vh-trend__lines svg circle:not(.vh-trend__pt) { pointer-events: none; }
.vh-trend__pt:focus { outline: none; }
.stat-tip { position: absolute; transform: translate(-50%, calc(-100% - 14px)); background: #fff; color: var(--navy); font-size: 12px; font-weight: 600; line-height: 1.2; padding: 7px 11px; border-radius: 9px; white-space: nowrap; pointer-events: none; z-index: 20; box-shadow: 0 8px 22px rgba(0,0,0,.22); border: 1px solid rgba(22,65,147,.12); }
.stat-tip[hidden] { display: none; }
.stat-tip strong { font-weight: 800; font-size: 13px; }
.stat-tip::after { content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: #fff; }


/* ===== v5.80 — Dark-Mode: Akzent-Texte Rosa statt Hellblau ===== */
body.theme-dark .kontakt-way__big,
body.theme-dark .faq-item summary,
body.theme-dark .header-kontakt-way .header-kontakt-way__big { color: var(--rosa) !important; }

/* ===== v5.80 — Hero-Video-Karte (kompakt, zwischen Inhaberin & Team) ===== */
.hero-card--video { background: #000; }
.hero-card__caption--video {
  left: 10px; right: auto; bottom: 10px;
  padding: 4px 12px; background: rgba(22,65,147,0.82); color: #fff;
  border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.video-stage__consent--sm { font-size: 13px; padding: 8px 14px; gap: 6px; }
.hero-card--video .video-stage__hint { font-size: 12px; padding: 7px 12px; }

/* ===== Dark-Mode v5.88: Wizard-Overlay + Quiz durchgängig lesbar ===== */
/* Wizard: alle dunklen Texte (rgba(0,0,0), navy) im dunklen Overlay aufhellen */
body.theme-dark .wizard__result-title{ color:#FFFFFF !important; }
body.theme-dark .wizard__result-body,
body.theme-dark .wizard__intro{ color:var(--text) !important; }
body.theme-dark .wizard__trail,
body.theme-dark .wizard__footer-hint,
body.theme-dark .wizard__restart-btn{ color:var(--text-dim) !important; }
body.theme-dark .wizard__restart-btn:hover{ color:var(--text) !important; background:rgba(255,255,255,0.06) !important; }
body.theme-dark .wizard__cta--secondary,
body.theme-dark .wizard__cta--topic{ color:var(--ink) !important; border-color:rgba(157,184,255,0.35) !important; }
body.theme-dark .wizard__cta--secondary:hover,
body.theme-dark .wizard__cta--topic:hover{ border-color:var(--ink) !important; background:rgba(255,255,255,0.06) !important; }
/* Quiz: Frage + Ergebnistitel (navy) auf dunklem Grund aufhellen */
body.theme-dark .quiz__question,
body.theme-dark .quiz__result-title{ color:var(--text) !important; }
/* Weitere Nicht-Überschriften mit navy-Text, die im Dark Mode aufgehellt werden müssen */
body.theme-dark .form-field label,
body.theme-dark .form label,
body.theme-dark .quiz__title{ color:var(--text) !important; }
body.theme-dark .gkv-notice strong{ color:var(--ink) !important; }
/* Patientinnenreise: navy Titel/Labels (keine Headings) im Dark Mode aufhellen */
body.theme-dark .reise-station__title{ color:var(--text) !important; }
body.theme-dark .reise-split__col--wir .reise-split__label{ color:var(--ink) !important; }

/* ===== v5.90 — „Springe zu"-Nav nach ganz oben, wenn der Header eingeklappt ist =====
   Header blendet sich beim Runterscrollen aus (.site-header.is-hidden) → Anchor-Nav
   rückt von top:70px auf top:0, damit keine Lücke entsteht. Nur Desktop; mobil bleibt
   die Nav unten an der CTA-Bar. Gilt automatisch für alle Seiten/Sprachen, light+dark. */
.reise-anchor-nav { transition: top 0.3s ease; }
@media (min-width: 721px) {
  body:has(.site-header.is-hidden) .reise-anchor-nav { top: 0; }
}
