/* =========================================================
   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: 'Nunito', -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); }
.section { padding: 72px 0; }
.section--tight { padding: 48px 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;
}
.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;
}
.nav__submenu a:hover { background: var(--rosa-light); color: var(--navy); padding-left: 18px; }

.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: '★ 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);
}
.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: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.team-card {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.28s ease;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(22,65,147,0.08); }
.team-card__img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  background: var(--rosa-light);
}
.team-card__info { padding: 18px 18px 22px; }
.team-card__name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.team-card__role { font-size: 12px; color: var(--text-dim); line-height: 1.4; }
.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;
}

/* ---------- 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; gap: 16px; max-width: 560px; margin: 0 auto; }
.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 {
  background: var(--navy);
  color: #FFF;
  padding: 56px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 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: 0.85; }
.footer-bottom__logo svg { width: 140px !important; height: auto !important; max-height: 70px !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 {
  flex: 1;
  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 { 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(3, 1fr);
  gap: 20px;
  max-width: 980px; margin: 0 auto;
}
@media (max-width: 860px) { .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. 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; }
}

/* ---------- 18. Page-Loader (Splash beim ersten Page-Load) ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: #FFF;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader img {
  width: 220px;
  max-width: 60vw;
  height: auto;
  animation: loader-pulse 1.6s ease-in-out infinite;
}
.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader.is-skipped {
  display: none;
}
@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; }
}
