/*
Theme Name: FRAUEN ÄRZTINNEN KONSTANZ
Theme URI: https://frauenaerztinnen-konstanz.de
Author: Praxis FRAUEN ÄRZTINNEN KONSTANZ (Jan Hansberg)
Description: SEO-optimiertes Theme für die gynäkologische Praxis FRAUEN ÄRZTINNEN KONSTANZ. Drei Schwerpunkte (Gynäkologie, Hormone, Longevity), hierarchische URL-Struktur, Block-Patterns für alle Sektionen, Schema.org Markup, Custom Post Types für Team/Angebote/Ratgeber/FAQ.
Version: 3.12.8
Tested up to: 6.5
Requires at least: 6.0
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: faekn
Tags: medical, healthcare, gynaecology, block-patterns, custom-colors, seo, schema-org
*/

/*
 * FRAUEN ÄRZTINNEN KONSTANZ
 * Globales CSS — verwendet auf allen Seiten
 *
 * Brand-CI:
 *   Blau    #164193  (CMYK 100/80/0/0)
 *   Neon    #FF7175  (Pantone 805C)
 *   Hellrosa #F7C8D8 (CMYK 0/30/5/0)
 *   Schrift  Avenir Book — Free-Alternative: Nunito
 */

:root {
  --navy: #164193;
  --navy-dark: #0E2F70;
  --coral: #FF7175;
  --coral-soft: #FFA8AB;
  --rosa: #F7C8D8;
  --rosa-light: #FDEEF3;
  --text: #1F2238;
  --text-dim: #6B7088;
  --rule: #EFE6E4;
  --bg-soft: #FAF7F6;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: 'Avenir', 'Avenir Next', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.65; color: var(--text);
  background: #FFFFFF; -webkit-font-smoothing: antialiased;
  min-height: 100vh; display: flex; flex-direction: column;
}
main { flex-grow: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral); }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  color: var(--navy); line-height: 1.15;
  letter-spacing: -0.015em; margin: 0 0 24px;
}
h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 300; }
h1 strong { font-weight: 700; }
h1 .accent { color: var(--coral); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 400; }
h2 strong { font-weight: 700; }
h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 24px; }
ul, ol { margin: 0 0 24px; padding-left: 1.5em; }
li { margin-bottom: 6px; }

/* CONTAINER */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }
.section { padding: 96px 0; }
.section--small { padding: 56px 0; }
.text-center { text-align: center; }

/* HEADER — NICHT sticky, scrollt mit */
.site-header {
  position: relative; z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
}
.site-header__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 24px; max-width: 1180px; margin: 0 auto; gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo--full .logo__svg {
  width: 220px; height: auto; max-height: 80px;
  display: block;
}
@media (max-width: 760px) {
  .logo--full .logo__svg { width: 160px; max-height: 56px; }
}
/* Lifecycle-Navigator nutzt noch das alte SVG-System */
.logo-svg { width: 36px; height: 56px; flex-shrink: 0; }
.logo-svg .shape { transition: opacity 0.5s ease; }
body[data-sector="gyn"] .logo-svg .shape-rosa,
body[data-sector="gyn"] .logo-svg .shape-coral { opacity: 0.25; }
body[data-sector="hormone"] .logo-svg .shape-punkt,
body[data-sector="hormone"] .logo-svg .shape-coral { opacity: 0.25; }
body[data-sector="longevity"] .logo-svg .shape-punkt,
body[data-sector="longevity"] .logo-svg .shape-rosa { opacity: 0.25; }

.logo-text { display: none; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; gap: 24px; list-style: none; padding: 0; margin: 0; }
.nav__list a {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--navy); text-transform: uppercase;
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav__list a:hover, .nav__list a.is-current { color: var(--coral); }
.nav__list a.is-current { border-bottom-color: var(--coral); }
body[data-sector="gyn"] .nav__list a[data-sector="gyn"] { border-bottom-color: var(--navy); }
body[data-sector="hormone"] .nav__list a[data-sector="hormone"] { border-bottom-color: var(--rosa); }
body[data-sector="longevity"] .nav__list a[data-sector="longevity"] { border-bottom-color: var(--coral); }

/* CTA BUTTON */
.cta-button {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #FFF;
  padding: 12px 22px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; transition: background 0.2s;
  border: 1px solid var(--navy); white-space: nowrap;
  font-family: inherit; cursor: pointer;
}
.cta-button:hover { background: var(--coral); border-color: var(--coral); color: #FFF; }
.cta-button--outline { background: transparent; color: var(--navy); }
.cta-button--outline:hover { background: var(--navy); color: #FFF; }
.cta-button--coral { background: var(--coral); border-color: var(--coral); }
.cta-button--coral:hover { background: var(--navy); border-color: var(--navy); }

/* MOBILE NAV */
.nav-toggle { display: none; background: none; border: none; padding: 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: transform 0.2s; }
@media (max-width: 950px) {
  .nav__list, .nav > .cta-button { display: none; }
  .nav-toggle { display: block; }
  .nav--open .nav__list, .nav--open > .cta-button {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #FFF; padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid var(--rule); align-items: stretch;
    box-shadow: 0 4px 20px rgba(22, 65, 147, 0.08);
  }
}

/* EYEBROW & SECTION HEADINGS */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.25em;
  color: var(--coral); text-transform: uppercase; margin-bottom: 20px;
}
.eyebrow--center { text-align: center; display: block; }
.section-title { text-align: center; margin-bottom: 12px; }
.section-lead {
  text-align: center; font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-dim); max-width: 640px; margin: 0 auto 56px;
}
.section-lead strong { color: var(--navy); font-weight: 600; }
.section-lead--left { text-align: left; margin-left: 0; }

/* HERO */
.hero { background: #FFF; padding: 80px 0 60px; }
.hero__inner {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 7fr 5fr; gap: 56px; }
}
.hero__lead {
  font-size: clamp(16px, 1.5vw, 19px); color: var(--text-dim);
  max-width: 480px; margin-bottom: 32px;
}
.hero__lead strong { color: var(--navy); }
.hero__visual { text-align: center; }
.hero__visual svg { max-width: 280px; margin: 0 auto; }
@media (max-width: 900px) { .hero__visual svg { max-width: 180px; } }

/* PAGE HERO (for sub-pages) */
.page-hero {
  background: var(--bg-soft);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero__breadcrumb {
  font-size: 12px; color: var(--text-dim);
  letter-spacing: 0.1em; margin-bottom: 20px;
  text-transform: uppercase;
}
.page-hero__breadcrumb a { color: var(--text-dim); }
.page-hero__breadcrumb a:hover { color: var(--coral); }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); }
.page-hero p.lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-dim);
  max-width: 700px; margin: 16px auto 0;
}

/* SEKTOR-CARDS */
.sektor-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .sektor-grid { grid-template-columns: repeat(3, 1fr); } }
.sektor-card {
  background: #FFF; border: 1px solid var(--rule);
  border-radius: 12px; padding: 48px 36px;
  position: relative; transition: transform 0.3s;
}
.sektor-card:hover { transform: translateY(-4px); }
.sektor-card__icon { width: 64px; height: 64px; margin-bottom: 24px; }
.sektor-card--gyn { border-top: 6px solid var(--navy); }
.sektor-card--hormone { border-top: 6px solid var(--rosa); }
.sektor-card--longevity { border-top: 6px solid var(--coral); }
.sektor-card h3 { margin-bottom: 12px; font-size: 24px; }
.sektor-card p { font-size: 15px; color: var(--text-dim); margin-bottom: 24px; }
.sektor-card__topics {
  font-size: 13px; color: var(--text-dim);
  border-top: 1px solid var(--rule);
  padding-top: 16px; margin-bottom: 20px;
}
.sektor-card__topics strong {
  color: var(--text); text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.15em;
  display: block; margin-bottom: 8px;
}
.sektor-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px;
  color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase;
}
.sektor-card__link:hover { color: var(--coral); }

/* LIFECYCLE TIMELINE */
.lifecycle { background: linear-gradient(180deg, var(--bg-soft) 0%, #FFF 100%); }
.lifecycle-timeline { margin-top: 56px; position: relative; }
.lifecycle-timeline::before {
  content: ""; position: absolute;
  left: 24px; top: 24px; bottom: 24px; width: 2px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--rosa) 50%, var(--coral) 100%);
}
@media (min-width: 900px) {
  .lifecycle-timeline::before { left: 50%; transform: translateX(-50%); }
}
.lifecycle-item { position: relative; margin-bottom: 40px; padding-left: 64px; }
@media (min-width: 900px) {
  .lifecycle-item { padding-left: 0; width: 50%; }
  .lifecycle-item:nth-child(even) { margin-left: 50%; padding-left: 56px; padding-right: 0; }
  .lifecycle-item:nth-child(odd) { padding-right: 56px; text-align: right; }
  .lifecycle-item:nth-child(odd) .lifecycle-item__tags { justify-content: flex-end; }
}
.lifecycle-item__dot {
  position: absolute; left: 16px; top: 8px;
  width: 18px; height: 18px; background: #FFF;
  border: 4px solid var(--coral); border-radius: 50%; z-index: 2;
}
@media (min-width: 900px) {
  .lifecycle-item__dot { left: auto; right: -9px; }
  .lifecycle-item:nth-child(even) .lifecycle-item__dot { left: -9px; right: auto; }
}
.lifecycle-item__age {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--coral); text-transform: uppercase; margin-bottom: 6px;
}
.lifecycle-item__title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.lifecycle-item__desc { font-size: 15px; color: var(--text); line-height: 1.65; margin-bottom: 14px; }
.lifecycle-item__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.lifecycle-tag {
  display: inline-block; padding: 4px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
}
.lifecycle-tag--gyn { background: rgba(22,65,147,0.1); color: var(--navy); }
.lifecycle-tag--gyn:hover { background: var(--navy); color: #FFF; }
.lifecycle-tag--hormone { background: rgba(247,200,216,0.4); color: #8B4D6C; }
.lifecycle-tag--hormone:hover { background: var(--rosa); color: #FFF; }
.lifecycle-tag--longevity { background: rgba(255,113,117,0.15); color: var(--coral); }
.lifecycle-tag--longevity:hover { background: var(--coral); color: #FFF; }

/* THEMEN-BIBLIOTHEK */
.themen-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .themen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .themen-grid { grid-template-columns: repeat(3, 1fr); } }
.thema-card {
  background: #FFF; border: 1px solid var(--rule);
  border-radius: 8px; padding: 24px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none; color: inherit;
}
.thema-card:hover { border-color: var(--coral); transform: translateY(-2px); color: inherit; }
.thema-card__title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.thema-card__desc { font-size: 14px; color: var(--text-dim); line-height: 1.55; margin-bottom: 16px; flex-grow: 1; }
.thema-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }

/* ANGEBOTE-CARDS */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: #FFF; border: 1px solid var(--rule);
  border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
  position: relative; transition: transform 0.25s, border-color 0.25s;
  text-decoration: none; color: inherit;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--coral); }
.card.c-navy::before { background: var(--navy); }
.card.c-rosa::before { background: var(--rosa); }
.card.c-coral::before { background: var(--coral); }
.card:hover { transform: translateY(-2px); border-color: var(--coral); color: inherit; }
.card__head { padding: 32px 32px 16px; }
.card__step {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--coral); text-transform: uppercase; margin-bottom: 12px;
}
.card__name {
  font-size: 26px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.01em; line-height: 1.05; margin-bottom: 8px;
}
.card__price { font-size: 18px; color: var(--text-dim); }
.card__price em { font-style: normal; font-size: 14px; display: block; margin-top: 2px; }
.card__body { padding: 0 32px 32px; flex-grow: 1; display: flex; flex-direction: column; }
.card__desc { font-size: 15px; color: var(--text); line-height: 1.65; margin-bottom: 24px; }
.card__desc strong { font-weight: 700; color: var(--navy); }
.card__meta {
  font-size: 13px; color: var(--text-dim);
  border-top: 1px solid var(--rule);
  padding-top: 14px; margin-bottom: 16px;
}
.card__meta .ok { color: #2EAD55; font-weight: 600; }
.card__meta .sep { color: var(--rule); margin: 0 6px; }
.card__cta {
  display: inline-block; text-align: center;
  background: transparent; color: var(--navy);
  border: 1px solid var(--navy);
  padding: 12px 20px; border-radius: 4px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s; margin-top: auto;
  text-decoration: none;
}
.card__cta:hover { background: var(--navy); color: #FFF; }

/* QUOTE */
.quote {
  background: var(--rosa-light);
  border-left: 6px solid var(--coral);
  border-radius: 0 12px 12px 0;
  padding: 40px; max-width: 800px; margin: 0 auto;
}
.quote__text {
  font-size: clamp(18px, 2.5vw, 24px); font-weight: 500;
  font-style: italic; line-height: 1.5;
  color: var(--navy); margin-bottom: 16px;
}
.quote__sig { font-size: 14px; color: var(--text-dim); }
.quote__sig strong { color: var(--navy); font-weight: 700; }

/* INTERVIEW */
.interview { background: var(--rosa-light); padding: 96px 0; }
.interview__inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 900px) { .interview__inner { grid-template-columns: 5fr 7fr; gap: 64px; } }
.interview__photo {
  border-radius: 12px; overflow: hidden;
  position: sticky; top: calc(var(--header-h) + 24px);
}
.interview__photo img { width: 100%; display: block; }
.interview__caption {
  font-size: 13px; color: var(--text-dim);
  text-align: center; padding: 12px 8px 0; font-style: italic;
}
.interview__qa { margin-top: 32px; }
.qa-block { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(22,65,147,0.1); }
.qa-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.qa-block__q { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.4; }
.qa-block__q::before { content: "F:"; display: inline-block; font-weight: 800; color: var(--coral); margin-right: 10px; }
.qa-block__a { font-size: 16px; color: var(--text); line-height: 1.75; }
.qa-block__a p { margin-bottom: 14px; }
.qa-block__a p:last-child { margin-bottom: 0; }
.interview__disclaimer {
  margin-top: 48px; padding: 16px 20px;
  background: rgba(255,113,117,0.1);
  border-left: 3px solid var(--coral); border-radius: 4px;
  font-size: 13px; color: var(--coral); font-style: italic;
}

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item summary {
  cursor: pointer; font-size: 18px; font-weight: 700;
  color: var(--navy); list-style: none;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 28px; line-height: 1; color: var(--coral);
  flex-shrink: 0; transition: transform 0.3s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding-top: 16px; color: var(--text); line-height: 1.7;
}
.faq-item__body p:last-child { margin-bottom: 0; }

/* VIDEO */
.video-section { background: var(--navy); padding: 80px 0; }
.video-section h2 { color: #FFF; }
.video-section .eyebrow { color: var(--rosa); }
.video-wrap {
  max-width: 900px; margin: 32px auto 0;
  border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 9;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* TEAM */
.team-section { background: var(--bg-soft); }
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .team-grid { grid-template-columns: repeat(5, 1fr); } }
.team-member { text-align: center; }
.team-member__photo {
  aspect-ratio: 3 / 4; background: var(--rosa-light);
  border-radius: 8px; overflow: hidden; margin-bottom: 14px;
}
.team-member__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member__photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--rosa); font-size: 48px;
}
.team-member__name {
  font-size: 15px; font-weight: 700; color: var(--navy);
  margin-bottom: 2px; letter-spacing: -0.01em; line-height: 1.25;
}
.team-member__role { font-size: 12px; color: var(--text-dim); }
.team-section__group { margin-bottom: 64px; }
.team-section__group:last-child { margin-bottom: 0; }
.team-section__group-title {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 8px; text-align: center;
}

/* TEAM-DETAIL (Team-Mitglieder mit Bio) */
.team-detail {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.team-detail:last-of-type { border-bottom: none; }
@media (min-width: 768px) { .team-detail { grid-template-columns: 200px 1fr; gap: 40px; align-items: start; } }
.team-detail__photo {
  aspect-ratio: 3 / 4; background: var(--rosa-light);
  border-radius: 8px; overflow: hidden;
}
.team-detail__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-detail__name { font-size: 24px; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.team-detail__role { font-size: 13px; color: var(--coral); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.team-detail__bio { color: var(--text); line-height: 1.7; }

/* KONTAKT */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: #FFF; border: 1px solid var(--rule);
  border-radius: 8px; padding: 40px; text-align: center;
}
.contact-card__icon { font-size: 32px; margin-bottom: 16px; }
.contact-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--coral); text-transform: uppercase; margin-bottom: 8px;
}
.contact-card__value { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-card__meta { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }

/* SLOGAN */
.slogan {
  border-top: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  text-align: center; padding: 24px; margin: 56px 0;
}
.slogan__text {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--coral); font-weight: 700; font-style: italic;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* INFO BANNER */
.info-banner {
  background: var(--rosa-light);
  border-left: 4px solid var(--coral);
  padding: 16px 24px; border-radius: 4px;
}
.info-banner p { margin: 0; font-size: 14px; color: var(--navy); }
.info-banner strong { color: var(--coral); }

/* PROSE (für Long-Text-Seiten wie Impressum, Datenschutz) */
.prose {
  max-width: 760px; margin: 0 auto;
  color: var(--text); line-height: 1.75;
}
.prose h2 { font-size: 28px; margin-top: 48px; margin-bottom: 16px; text-align: left; }
.prose h3 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
.prose p { margin-bottom: 20px; }
.prose ul, .prose ol { margin-bottom: 20px; }
.prose strong { font-weight: 700; color: var(--navy); }
.prose a { font-weight: 600; }

/* FORMS */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  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: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,113,117,0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* CALL TO ACTION SECTION */
.cta-section {
  background: var(--navy); color: #FFF;
  padding: 80px 0; text-align: center;
}
.cta-section h2 { color: #FFF; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 600px; margin: 0 auto 32px; }
.cta-section .cta-button { background: var(--coral); border-color: var(--coral); }
.cta-section .cta-button:hover { background: #FFF; border-color: #FFF; color: var(--navy); }

/* RELATED-LINKS (Querverweise) */
.related-links {
  background: var(--bg-soft);
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.related-links h3 { text-align: center; font-size: 22px; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  background: #FFF; border: 1px solid var(--rule);
  border-radius: 8px; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover { border-color: var(--coral); transform: translateX(4px); color: inherit; }
.related-card__title { font-size: 15px; font-weight: 700; color: var(--navy); }
.related-card__arrow { color: var(--coral); font-size: 18px; flex-shrink: 0; margin-left: 16px; }

/* SOURCE NOTE */
.source-note {
  text-align: center; font-size: 12px;
  color: var(--text-dim); margin-top: 24px; font-style: italic;
}

/* FOOTER */
.site-footer { background: var(--navy); color: #FFF; padding: 64px 0 24px; margin-top: auto; }
.site-footer h4 {
  color: var(--rosa); font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 700;
}
.site-footer a { color: rgba(255,255,255,0.9); }
.site-footer a:hover { color: var(--rosa); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-grid p { font-size: 14px; line-height: 1.7; margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 16px; font-size: 13px; color: rgba(255,255,255,0.7);
}

/* UTILITIES */
.bg-soft { background: var(--bg-soft); }
.bg-rosa-light { background: var(--rosa-light); }
.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }

/* PREVIEW NOTICE */
.preview-notice {
  position: fixed; bottom: 16px; right: 16px;
  background: var(--coral); color: #FFF;
  padding: 8px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* =========================================
   SCROLL-ANIMATIONS (für AOS-ähnlichen Effekt)
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}
.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================
   CLARA-SEKTION (KI am Telefon)
   ========================================= */
.clara-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1F4FA8 100%);
  color: #FFF;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.clara-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(247,200,216,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.clara-section h2 { color: #FFF; }
.clara-section .eyebrow { color: var(--rosa); }
.clara-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: center; margin-top: 48px;
}
@media (min-width: 900px) { .clara-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }
.clara-avatar {
  width: 200px; height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rosa) 0%, var(--coral) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: #FFF; font-weight: 700;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: clara-pulse 3s ease-in-out infinite;
}
.clara-avatar::after {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  animation: clara-ring 3s ease-out infinite;
}
@keyframes clara-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes clara-ring {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.3); }
}
.clara-section h3 { color: #FFF; font-size: 22px; margin-bottom: 12px; }
.clara-section p { color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.7; }
.clara-features {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 32px;
}
@media (min-width: 640px) { .clara-features { grid-template-columns: 1fr 1fr; } }
.clara-feature {
  background: rgba(255,255,255,0.08);
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 3px solid var(--rosa);
}
.clara-feature strong { color: var(--rosa); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.clara-feature span { font-size: 14px; color: rgba(255,255,255,0.85); }

/* =========================================
   PROMINENTE TERMIN-SEKTION (für oben)
   ========================================= */
.termin-prominent {
  background: var(--rosa-light);
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}
.termin-prominent__inner {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .termin-prominent__inner { grid-template-columns: auto 1fr auto; gap: 32px; }
}
.termin-prominent__icon {
  font-size: 48px; line-height: 1;
}
.termin-prominent__text h2 {
  margin: 0 0 4px; font-size: 22px; line-height: 1.2; text-align: left;
}
.termin-prominent__text p {
  margin: 0; font-size: 14px; color: var(--text-dim);
}
.termin-prominent__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* =========================================
   FAQ-AKKORDEON (verfeinert)
   ========================================= */
.faq-section {
  background: var(--bg-soft);
  padding: 80px 0;
}
.faq-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  max-width: 800px; margin: 48px auto 0;
}
.faq-item {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--coral); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer; font-size: 16px; font-weight: 700;
  color: var(--navy); list-style: none;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; transition: background 0.2s;
}
.faq-item summary:hover { background: var(--rosa-light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 28px; line-height: 0.7; color: var(--coral);
  flex-shrink: 0; transition: transform 0.3s; font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 24px 20px; color: var(--text); line-height: 1.7;
}
.faq-item__body p:last-child { margin-bottom: 0; }

/* =========================================
   ANGEBOT-PREVIEW (von Instagram & Flyer)
   ========================================= */
.angebot-preview {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .angebot-preview { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .angebot-preview { grid-template-columns: repeat(4, 1fr); } }
.angebot-preview__card {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.angebot-preview__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(22,65,147,0.1);
  color: inherit;
}
.angebot-preview__card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--coral);
}
.angebot-preview__card.is-navy::before { background: var(--navy); }
.angebot-preview__card.is-rosa::before { background: var(--rosa); }
.angebot-preview__card.is-coral::before { background: var(--coral); }
.angebot-preview__icon {
  font-size: 32px; margin-bottom: 12px;
}
.angebot-preview__title {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px; line-height: 1.2;
}
.angebot-preview__price {
  font-size: 13px; color: var(--coral); font-weight: 700;
  letter-spacing: 0.05em; margin-bottom: 12px;
}
.angebot-preview__desc {
  font-size: 14px; color: var(--text-dim); line-height: 1.55;
  flex-grow: 1; margin-bottom: 16px;
}
.angebot-preview__link {
  font-size: 13px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* =========================================
   PRIVATPATIENTEN-BANNER
   ========================================= */
.privat-banner {
  background: linear-gradient(135deg, var(--rosa-light) 0%, #FFF 100%);
  border: 1px solid var(--rosa);
  border-radius: 12px;
  padding: 32px;
  display: grid; grid-template-columns: 1fr; gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .privat-banner { grid-template-columns: 1fr auto; gap: 32px; padding: 40px; }
}
.privat-banner h3 { color: var(--navy); margin: 0 0 8px; font-size: 22px; }
.privat-banner p { margin: 0; color: var(--text); font-size: 15px; }

/* =========================================
   HERO mit Termin-CTA (verstärkt)
   ========================================= */
.hero__cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px;
}
.hero__trust {
  margin-top: 24px; font-size: 13px; color: var(--text-dim);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hero__trust strong { color: var(--navy); }

/* =========================================
   RATGEBER / BLOG
   ========================================= */
.ratgeber-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .ratgeber-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ratgeber-grid { grid-template-columns: repeat(3, 1fr); } }
.ratgeber-card {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform 0.25s, border-color 0.25s;
}
.ratgeber-card:hover { transform: translateY(-2px); border-color: var(--coral); color: inherit; }
.ratgeber-card__image {
  aspect-ratio: 16 / 9;
  background: var(--rosa-light);
  overflow: hidden;
}
.ratgeber-card__image img { width: 100%; height: 100%; object-fit: cover; }
.ratgeber-card__body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.ratgeber-card__category {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--coral); text-transform: uppercase; margin-bottom: 8px;
}
.ratgeber-card__title {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px; line-height: 1.3;
}
.ratgeber-card__excerpt {
  font-size: 14px; color: var(--text-dim); line-height: 1.55;
  margin-bottom: 16px; flex-grow: 1;
}
.ratgeber-card__meta {
  font-size: 12px; color: var(--text-dim);
  display: flex; gap: 12px;
}

/* =========================================
   SCHEMA.ORG / BREADCRUMB
   ========================================= */
.breadcrumb {
  font-size: 12px; letter-spacing: 0.05em;
  color: var(--text-dim); text-transform: uppercase;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb .sep { margin: 0 8px; color: var(--rule); }

/* =========================================
   SEO/UX: Skip-Link, sr-only
   ========================================= */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--coral); color: #FFF;
  padding: 12px 16px; z-index: 9999;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 16px; top: 16px; color: #FFF; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* =========================================
   PERFORMANCE: layout-shift Verhinderung
   ========================================= */
img { aspect-ratio: attr(width) / attr(height); }
img[loading="lazy"] { content-visibility: auto; }

/* =========================================
   LIFECYCLE-NAVIGATOR (Logo rechts mit %)
   ========================================= */
.lifecycle-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 90px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 56px;
  padding: 20px 12px 16px;
  box-shadow: 0 8px 32px rgba(22, 65, 147, 0.08);
  border: 1px solid var(--rule);
  display: none;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.lifecycle-nav.is-active {
  display: block;
  opacity: 1;
  transform: translateY(-50%);
}
@media (min-width: 1100px) {
  .lifecycle-nav { display: block; }
}
@media (max-width: 768px) {
  .lifecycle-nav { display: none !important; }
}

.lifecycle-nav__logo {
  width: 56px; height: 88px;
  margin: 0 auto 12px;
  position: relative;
}
.lifecycle-nav__logo svg {
  width: 100%; height: 100%; display: block;
}
.lifecycle-nav__logo .shape {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s;
  transform-origin: center;
  opacity: 0.25;
}
.lifecycle-nav[data-phase="teenager"] .shape-punkt { opacity: 1; transform: scale(1.15); }
.lifecycle-nav[data-phase="verhuetung"] .shape-punkt { opacity: 1; }
.lifecycle-nav[data-phase="verhuetung"] .shape-rosa { opacity: 0.6; }
.lifecycle-nav[data-phase="kinderwunsch"] .shape-rosa,
.lifecycle-nav[data-phase="schwangerschaft"] .shape-rosa,
.lifecycle-nav[data-phase="vorsorge"] .shape-rosa { opacity: 1; transform: scale(1.05); }
.lifecycle-nav[data-phase="perimenopause"] .shape-rosa,
.lifecycle-nav[data-phase="postmenopause"] .shape-rosa { opacity: 0.6; }
.lifecycle-nav[data-phase="perimenopause"] .shape-coral { opacity: 0.8; transform: scale(1.05); }
.lifecycle-nav[data-phase="postmenopause"] .shape-coral,
.lifecycle-nav[data-phase="akut"] .shape-coral { opacity: 1; transform: scale(1.15); }

.lifecycle-nav__progress {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.lifecycle-nav__progress strong { font-size: 18px; color: var(--coral); display: block; line-height: 1; margin-bottom: 2px; }

.lifecycle-nav__bar {
  height: 4px;
  background: var(--rule);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}
.lifecycle-nav__bar-fill {
  height: 100%;
  background: linear-gradient(180deg, var(--navy) 0%, var(--rosa) 50%, var(--coral) 100%);
  background-size: 100% 200%;
  background-position: 0 0;
  width: 0%;
  transition: width 0.3s ease-out;
}

.lifecycle-nav__phase {
  font-size: 9px;
  font-weight: 700;
  color: var(--coral);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  min-height: 24px;
}

.lifecycle-nav__dots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.lifecycle-nav__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rule);
  margin: 0 auto;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  position: relative;
}
.lifecycle-nav__dot:hover { transform: scale(1.4); }
.lifecycle-nav__dot.is-active { background: var(--coral); transform: scale(1.4); }
.lifecycle-nav__dot::after {
  content: attr(data-label);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 12px;
  background: var(--navy);
  color: #FFF;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.lifecycle-nav__dot:hover::after { opacity: 1; }

/* Lifecycle-Phase Sektionen mit FAQ */
.lifecycle-phase {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.lifecycle-phase:nth-child(even) { background: var(--bg-soft); }
.lifecycle-phase__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.lifecycle-phase__header {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-bottom: 40px;
  align-items: baseline;
}
@media (min-width: 768px) {
  .lifecycle-phase__header { grid-template-columns: auto 1fr; gap: 32px; }
}
.lifecycle-phase__age {
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lifecycle-phase__title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}
.lifecycle-phase__intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 32px;
}
.lifecycle-phase__tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}

/* =========================================
   DARK MODE
   ========================================= */
:root[data-theme="dark"] {
  --navy: #4A7BD8;
  --navy-dark: #2A5BB8;
  --coral: #FF8B8F;
  --rosa: #F7C8D8;
  --rosa-light: #2A1F26;
  --bg-soft: #1A1D2E;
  --text: #E8E6F0;
  --text-dim: #9DA0B5;
  --rule: #2D3148;
  --white: #14172A;
}
:root[data-theme="dark"] body { background: #0F1220; color: var(--text); }
:root[data-theme="dark"] .site-header { background: var(--bg); border-bottom-color: var(--rule); }
:root[data-theme="dark"] .nav__list a { color: var(--text); }
:root[data-theme="dark"] .logo-text { color: var(--text); }
:root[data-theme="dark"] .hero { background: linear-gradient(180deg, #1A1D2E 0%, #0F1220 100%); }
:root[data-theme="dark"] .info-banner { background: rgba(247, 200, 216, 0.1); color: var(--rosa); border-color: var(--coral); }
:root[data-theme="dark"] .section.bg-soft { background: #181B2E; }
:root[data-theme="dark"] .section.bg-rosa-light { background: #221829; }
:root[data-theme="dark"] .sektor-card, :root[data-theme="dark"] .card, :root[data-theme="dark"] .team-member, :root[data-theme="dark"] .contact-card, :root[data-theme="dark"] .faq-item, :root[data-theme="dark"] .angebot-preview__card, :root[data-theme="dark"] .ratgeber-card { background: #181B2E; border-color: #2D3148; }
:root[data-theme="dark"] .faq-item summary { color: var(--rosa); }
:root[data-theme="dark"] .faq-item summary:hover { background: rgba(247, 200, 216, 0.05); }
:root[data-theme="dark"] .clara-section { background: linear-gradient(135deg, #0A1330 0%, #142255 100%); }
:root[data-theme="dark"] .termin-prominent { background: #2A1829; border-color: #FF8B8F; }
:root[data-theme="dark"] .lifecycle-nav { background: rgba(20, 23, 42, 0.95); border-color: #2D3148; }
:root[data-theme="dark"] .lifecycle-phase:nth-child(even) { background: #181B2E; }
:root[data-theme="dark"] .privat-banner { background: linear-gradient(135deg, #221829 0%, #181B2E 100%); border-color: var(--coral); }
:root[data-theme="dark"] .site-footer { background: #0A0E1F; }
:root[data-theme="dark"] .page-hero { background: #181B2E; }
:root[data-theme="dark"] .cta-section { background: linear-gradient(135deg, #1A2855 0%, #0A1330 100%); }
:root[data-theme="dark"] .breadcrumb a { color: var(--text-dim); }

/* Theme-Toggle-Button */
.theme-toggle {
  background: transparent; border: 1px solid var(--rule); cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-left: 8px; transition: border-color 0.2s, transform 0.2s;
  color: var(--navy);
}
.theme-toggle:hover { transform: scale(1.1); border-color: var(--coral); }
.theme-toggle__icon { width: 18px; height: 18px; }
.theme-toggle__sun { display: none; }
:root[data-theme="dark"] .theme-toggle__sun { display: block; }
:root[data-theme="dark"] .theme-toggle__moon { display: none; }
:root[data-theme="dark"] .theme-toggle { color: var(--rosa); }

/* Lang-Switcher */
.lang-switcher {
  display: inline-flex; gap: 4px; font-size: 11px;
  font-weight: 700; letter-spacing: 0.1em; margin-left: 12px;
}
.lang-switcher a {
  padding: 4px 8px; border-radius: 4px; color: var(--text-dim);
  text-decoration: none; transition: all 0.2s;
}
.lang-switcher a:hover, .lang-switcher a.is-active {
  background: var(--coral); color: #FFF;
}

/* =========================================
   STICKY MOBILE CTA-BAR (Conversion)
   ========================================= */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); color: #FFF;
  padding: 12px 16px; z-index: 99;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  grid-template-columns: 1fr 1fr; gap: 8px;
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--coral); color: #FFF;
  text-decoration: none; padding: 12px 8px; border-radius: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
}
.mobile-cta-bar a.is-outline {
  background: transparent; border: 1px solid rgba(255,255,255,0.4);
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: grid; }
  body { padding-bottom: 70px; }
}

/* =========================================
   TRUST-SECTION
   ========================================= */
.trust-section {
  padding: 56px 0; background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  text-align: center;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item__icon { font-size: 36px; margin-bottom: 8px; }
.trust-item__big {
  font-size: 36px; font-weight: 700; color: var(--coral);
  line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em;
}
.trust-item__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-dim); text-transform: uppercase;
}

/* =========================================
   TESTIMONIAL-Block (Patientinnenstimmen)
   ========================================= */
.testimonial-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: #FFF; border: 1px solid var(--rule);
  border-radius: 12px; padding: 32px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(22, 65, 147, 0.08); }
:root[data-theme="dark"] .testimonial { background: #181B2E; }
.testimonial__stars { color: var(--coral); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial__quote {
  font-size: 16px; line-height: 1.65; color: var(--text);
  margin-bottom: 20px; font-style: italic;
}
.testimonial__quote::before { content: "„"; font-size: 32px; color: var(--coral); line-height: 0; vertical-align: -8px; margin-right: 2px; }
.testimonial__quote::after { content: """; color: var(--coral); }
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--text-dim);
}
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rosa) 0%, var(--coral) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #FFF; font-weight: 700; font-size: 14px;
}
.testimonial__name { font-weight: 700; color: var(--navy); font-size: 14px; }
.testimonial__source { font-size: 11px; }

/* =========================================
   COMPARISON-TABLE (Kasse vs Privat)
   ========================================= */
.comparison {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .comparison { grid-template-columns: 1fr 1fr 1fr; gap: 0; } }
.comparison__col {
  background: #FFF; border: 1px solid var(--rule);
  padding: 32px 28px; position: relative;
}
:root[data-theme="dark"] .comparison__col { background: #181B2E; }
@media (min-width: 768px) {
  .comparison__col { border-radius: 0; }
  .comparison__col:first-child { border-radius: 12px 0 0 12px; }
  .comparison__col:last-child { border-radius: 0 12px 12px 0; }
  .comparison__col + .comparison__col { border-left: none; }
}
.comparison__col--featured {
  border-color: var(--coral) !important;
  border-width: 2px !important;
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 12px 40px rgba(255, 113, 117, 0.15);
}
.comparison__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #FFF;
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
}
.comparison__head { text-align: center; padding-bottom: 24px; border-bottom: 1px solid var(--rule); margin-bottom: 24px; }
.comparison__name { font-size: 13px; letter-spacing: 0.18em; color: var(--coral); text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.comparison__price { font-size: 36px; color: var(--navy); font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.comparison__price em { font-size: 12px; color: var(--text-dim); display: block; font-style: normal; margin-top: 4px; letter-spacing: 0.05em; }
.comparison__list { list-style: none; padding: 0; margin: 0; }
.comparison__list li {
  padding: 10px 0; border-bottom: 1px solid var(--rule);
  font-size: 14px; line-height: 1.45; color: var(--text);
  display: flex; align-items: flex-start; gap: 10px;
}
.comparison__list li:last-child { border-bottom: none; }
.comparison__check { color: #2BB04A; flex-shrink: 0; font-weight: 700; }
.comparison__cross { color: #C25; flex-shrink: 0; font-weight: 700; }
.comparison__cta { margin-top: 24px; }

/* =========================================
   NEWSLETTER-Block
   ========================================= */
.newsletter-section {
  padding: 64px 0; background: linear-gradient(135deg, var(--rosa-light) 0%, #FFF 100%);
  text-align: center;
}
:root[data-theme="dark"] .newsletter-section { background: linear-gradient(135deg, #221829 0%, #181B2E 100%); }
.newsletter-form {
  display: flex; gap: 8px; max-width: 480px; margin: 24px auto 0;
  flex-wrap: wrap; justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 14px 20px; font-size: 15px;
  border: 1px solid var(--rule); border-radius: 6px;
  background: #FFF; color: var(--text);
}
:root[data-theme="dark"] .newsletter-form input[type="email"] { background: #181B2E; color: var(--text); }
.newsletter-form button {
  background: var(--coral); color: #FFF;
  padding: 14px 24px; border: none; border-radius: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--navy); }
.newsletter-disclaimer { font-size: 12px; color: var(--text-dim); margin-top: 12px; }

/* =========================================
   QUIZ-Section (qualifizierende Lead-Erfassung)
   ========================================= */
.quiz-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1F4FA8 100%);
  color: #FFF; padding: 40px;
  border-radius: 16px; text-align: center;
  position: relative; overflow: hidden;
}
.quiz-card::before {
  content: ""; position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,113,117,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.quiz-card h3 { color: #FFF; font-size: 24px; margin-bottom: 8px; }
.quiz-card p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.quiz-card .cta-button { background: var(--coral); border-color: var(--coral); }

/* =========================================
   LEGAL-PAGES (Impressum/Datenschutz mit Icons)
   ========================================= */
.legal-toc {
  background: var(--bg-soft); border: 1px solid var(--rule);
  border-radius: 12px; padding: 24px 28px; margin: 32px 0 48px;
}
.legal-toc h3 {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coral); margin: 0 0 16px;
}
.legal-toc ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 700px) { .legal-toc ul { grid-template-columns: 1fr 1fr; } }
.legal-toc li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.legal-toc li a {
  color: var(--text); text-decoration: none;
  padding: 4px 0; transition: color 0.2s;
}
.legal-toc li a:hover { color: var(--coral); }
.legal-toc .icon-tiny {
  width: 16px; height: 16px; color: var(--coral); flex-shrink: 0;
}

.legal-section {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin: 48px 0;
  scroll-margin-top: 100px;
}
@media (min-width: 768px) { .legal-section { grid-template-columns: 56px 1fr; gap: 24px; } }
.legal-section__icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, var(--rosa) 0%, var(--coral) 100%);
  color: #FFF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.legal-section__icon svg { width: 28px; height: 28px; }
.legal-section__body h2 { margin-top: 0; color: var(--navy); }
.legal-section__body h3 { color: var(--navy); margin: 24px 0 8px; font-size: 17px; }
.legal-section__body p { color: var(--text); line-height: 1.7; margin-bottom: 12px; font-size: 15px; }
.legal-section__body ul, .legal-section__body ol { margin: 12px 0 16px 24px; color: var(--text); }
.legal-section__body li { line-height: 1.6; margin-bottom: 6px; font-size: 15px; }
.legal-section__body address { font-style: normal; line-height: 1.8; font-size: 15px; }
.legal-section__body a { color: var(--navy); border-bottom: 1px solid var(--rosa); }
.legal-section__body a:hover { color: var(--coral); }

.legal-card {
  background: rgba(247, 200, 216, 0.12);
  border-left: 3px solid var(--coral);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 24px 0;
}
:root[data-theme="dark"] .legal-card { background: rgba(247, 200, 216, 0.08); }
.legal-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--coral); text-transform: uppercase; margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px; color: var(--text-dim);
  margin-top: 8px; padding-top: 8px;
}

/* SVG-Größen-Fix für Legal-Pages */
.legal-toc svg, .legal-toc .icon-tiny {
  width: 18px !important; height: 18px !important;
  display: inline-block; flex-shrink: 0;
  color: var(--coral);
}
.legal-section__icon svg {
  width: 28px !important; height: 28px !important;
  display: block;
}
.legal-toc ul { list-style: none !important; }
.legal-toc li {
  display: flex !important; align-items: center; gap: 10px;
  list-style: none;
}
.legal-toc li::marker { content: none !important; }

/* === Bullet-Removal für Legal-TOC (final) === */
.legal-toc, .legal-toc * { list-style: none !important; list-style-type: none !important; }
.legal-toc ul { padding-left: 0 !important; margin-left: 0 !important; list-style: none !important; }
.legal-toc ul li { padding-left: 0 !important; margin-left: 0 !important; display: flex !important; gap: 10px; align-items: center; }
.legal-toc ul li::before, .legal-toc ul li::marker { content: '' !important; display: none !important; }

/* Section-Icon-Fix */
.legal-section { display: grid !important; grid-template-columns: minmax(56px, auto) 1fr !important; gap: 24px !important; }
@media (max-width: 600px) { .legal-section { grid-template-columns: 1fr !important; gap: 12px !important; } }
.legal-section__icon { background: linear-gradient(135deg, #F7C8D8 0%, #FF7276 100%) !important; color: #FFF !important; }

/* SVG-Icons in Angebote-Cards (statt Emojis) */
.angebot-preview__icon--svg {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255, 113, 117, 0.1);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background 0.25s, transform 0.25s;
}
.angebot-preview__card.is-navy .angebot-preview__icon--svg {
  background: rgba(22, 65, 147, 0.1); color: var(--navy);
}
.angebot-preview__card.is-rosa .angebot-preview__icon--svg {
  background: rgba(247, 200, 216, 0.4); color: var(--coral);
}
.angebot-preview__card.is-coral .angebot-preview__icon--svg {
  background: rgba(255, 113, 117, 0.15); color: var(--coral);
}
.angebot-preview__card:hover .angebot-preview__icon--svg {
  transform: scale(1.08);
}
.angebot-preview__card.is-rosa:hover .angebot-preview__icon--svg {
  background: rgba(255, 113, 117, 0.18);
}

/* Preise-Footer-Hinweis */
.price-disclaimer {
  font-size: 12px; color: var(--text-dim);
  font-style: italic; margin-top: 12px;
  display: block;
}

.mobile-cta-bar a { display: inline-flex; align-items: center; gap: 8px; }
.mobile-cta-bar a svg { flex-shrink: 0; }

/* Page-Hero mit Stockfoto-Hintergrund */
.page-hero--with-image {
  position: relative; overflow: hidden;
  min-height: 360px; padding: 56px 0;
  color: #FFF;
}
.page-hero--with-image .page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.page-hero--with-image .page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,65,147,0.7) 0%, rgba(255,113,117,0.5) 100%);
}
.page-hero--with-image .breadcrumb,
.page-hero--with-image .breadcrumb a,
.page-hero--with-image .breadcrumb span,
.page-hero--with-image .lead { color: rgba(255,255,255,0.95) !important; }
.page-hero--with-image h1 { color: #FFF !important; }
.page-hero--with-image [style*="color: var(--navy)"] { color: #FFF !important; }

/* Team-Grid Varianten: Ärztinnen prominent, Praxisteam kleiner */
.team-grid--aerztinnen {
  grid-template-columns: 1fr !important;
  gap: 24px;
}
@media (min-width: 600px) { .team-grid--aerztinnen { grid-template-columns: repeat(2, 1fr) !important; } }
@media (min-width: 900px) { .team-grid--aerztinnen { grid-template-columns: repeat(3, 1fr) !important; } }
@media (min-width: 1280px) { .team-grid--aerztinnen { grid-template-columns: repeat(5, 1fr) !important; } }

.team-grid--aerztinnen .team-member__photo {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(22,65,147,0.08);
}
.team-grid--aerztinnen .team-member__name {
  font-size: 16px; font-weight: 600; margin-top: 14px;
  color: var(--navy);
}
.team-grid--aerztinnen .team-member__role {
  font-size: 12px; color: var(--coral); letter-spacing: 0.05em;
  margin-top: 4px;
}

.team-grid--praxisteam {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 18px;
}
@media (min-width: 600px) { .team-grid--praxisteam { grid-template-columns: repeat(3, 1fr) !important; } }
@media (min-width: 900px) { .team-grid--praxisteam { grid-template-columns: repeat(4, 1fr) !important; } }
@media (min-width: 1280px) { .team-grid--praxisteam { grid-template-columns: repeat(6, 1fr) !important; } }

.team-grid--praxisteam .team-member__photo {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}
.team-grid--praxisteam .team-member__name {
  font-size: 14px; font-weight: 600; margin-top: 10px;
  color: var(--navy);
}
.team-grid--praxisteam .team-member__role {
  font-size: 11px; color: var(--text-dim);
  margin-top: 2px;
}

/* Hover-Effect */
.team-member { transition: transform 0.25s; }
.team-member:hover { transform: translateY(-4px); }
.team-member:hover .team-member__photo { box-shadow: 0 14px 32px rgba(255,113,117,0.15); }

/* Du-Frame Notice */
.du-frame {
  padding: 0;
  margin: -8px 0 16px;
  position: relative; z-index: 5;
}
.du-frame__inner {
  background: linear-gradient(135deg, rgba(247,200,216,0.35) 0%, rgba(255,113,117,0.12) 100%);
  border-left: 3px solid var(--coral);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
:root[data-theme="dark"] .du-frame__inner {
  background: linear-gradient(135deg, rgba(247,200,216,0.12) 0%, rgba(255,113,117,0.08) 100%);
}
.du-frame__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--coral);
  color: #FFF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.du-frame__text {
  font-size: 14px; line-height: 1.55; color: var(--text);
}
.du-frame__text strong { color: var(--navy); }
:root[data-theme="dark"] .du-frame__text strong { color: var(--rosa); }
@media (max-width: 600px) {
  .du-frame__inner { flex-direction: column; text-align: center; gap: 12px; padding: 18px; }
  .du-frame__text { font-size: 13px; }
}

/* =========================================
   v3.12.5 — LOADER OVERLAY (sequentielle Logo-Aufbau-Animation)
   Reihenfolge: Punkt → Brust (rosa) → Vulva (coral)
   → FRAUEN → ÄRZTINNEN → KONSTANZ
   Leichter Zoom-out für Bewegung. Keine Drehungen.
   ========================================= */
.loader-overlay {
  position: fixed; inset: 0;
  background: #FFFFFF;
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; visibility: visible;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}
.loader-overlay.is-loaded {
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s ease, visibility 0s linear 0.6s;
  pointer-events: none;
}
.loader-overlay__inner {
  width: min(420px, 70vw);
  /* leichter Zoom-out während der Animation */
  animation: faekn-loader-zoom 2.6s ease-out forwards;
}
@keyframes faekn-loader-zoom {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Inline-SVG: jedes Step-Element startet unsichtbar, kein Layout-Shift */
#faekn-loader-svg {
  width: 100%; height: auto; display: block;
}
#faekn-loader-svg .faekn-step {
  opacity: 0;
  transform-origin: center;
  /* GPU-Hint */
  will-change: opacity, transform;
}

/* Sequentielle Fade-Ins mit gestaffelten Delays */
#faekn-loader-svg .faekn-step--1 {
  animation: faekn-step-in 0.32s ease-out 0.10s forwards;
}
#faekn-loader-svg .faekn-step--2 {
  animation: faekn-step-in 0.32s ease-out 0.42s forwards;
}
#faekn-loader-svg .faekn-step--3 {
  animation: faekn-step-in 0.32s ease-out 0.74s forwards;
}
#faekn-loader-svg .faekn-step--4 {
  animation: faekn-step-in 0.36s ease-out 1.10s forwards;
}
#faekn-loader-svg .faekn-step--5 {
  animation: faekn-step-in 0.36s ease-out 1.50s forwards;
}
#faekn-loader-svg .faekn-step--6 {
  animation: faekn-step-in 0.36s ease-out 1.90s forwards;
}

@keyframes faekn-step-in {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* Reduced-Motion: alles direkt sichtbar, kein Zoom */
@media (prefers-reduced-motion: reduce) {
  .loader-overlay__inner { animation: none; transform: none; }
  #faekn-loader-svg .faekn-step { opacity: 1; animation: none; }
}

/* =========================================
   v3.12 — STICKY HEADER (mit .is-scrolled State)
   ========================================= */
.site-header {
  position: sticky; top: 0;
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  background: rgba(255, 255, 255, 0.92);
  transition: padding 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 16px rgba(22, 65, 147, 0.08);
}
.site-header.is-scrolled .logo--full .logo__svg {
  max-height: 56px; transition: max-height 0.2s ease;
}

/* =========================================
   v3.12 — SCROLL-BACKGROUND-EFFEKT
   Subtile fixed radial-gradients als Atmosphäre
   ========================================= */
body {
  background-color: #FFFFFF;
  background-image:
    radial-gradient(at 12% 10%, rgba(247,200,216,0.16) 0%, transparent 38%),
    radial-gradient(at 88% 18%, rgba(255,113,117,0.07) 0%, transparent 36%),
    radial-gradient(at 50% 95%, rgba(22,65,147,0.05)  0%, transparent 40%);
  background-attachment: fixed;
}
:root[data-theme="dark"] body {
  background-image:
    radial-gradient(at 12% 10%, rgba(247,200,216,0.06) 0%, transparent 38%),
    radial-gradient(at 88% 18%, rgba(255,113,117,0.04) 0%, transparent 36%),
    radial-gradient(at 50% 95%, rgba(22,65,147,0.10)  0%, transparent 40%);
}

/* =========================================
   v3.12 — MEGA-MENU (Untermenüs, klarer Cluster)
   4 Top-Level statt 7 → kompakter Header
   ========================================= */
.nav__list { position: relative; }
.nav__list .menu-item-has-children > a {
  display: inline-flex; align-items: center; gap: 6px;
}
.nav__list .menu-item-has-children > a::after {
  content: ""; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}
.nav__list .menu-item-has-children:hover > a::after,
.nav__list .menu-item-has-children:focus-within > a::after {
  transform: translateY(0) rotate(225deg);
}

/* Sub-Menu Dropdown */
.nav__list .sub-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(22, 65, 147, 0.12);
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 200;
}
.nav__list .menu-item-has-children:hover > .sub-menu,
.nav__list .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav__list .sub-menu li { margin: 0; }
.nav__list .sub-menu a {
  display: block; padding: 8px 12px;
  text-transform: none; letter-spacing: 0;
  font-size: 13px; font-weight: 500;
  border-bottom: none; border-radius: 4px;
  color: var(--text);
}
.nav__list .sub-menu a:hover {
  background: var(--rosa-light); color: var(--navy);
}
:root[data-theme="dark"] .nav__list .sub-menu {
  background: #1F2238; border-color: rgba(255,255,255,0.08);
}
:root[data-theme="dark"] .nav__list .sub-menu a { color: #FFF; }
:root[data-theme="dark"] .nav__list .sub-menu a:hover { background: rgba(255,113,117,0.15); }

/* Mobile: Sub-Menu inline ausklappen */
@media (max-width: 950px) {
  .nav__list .sub-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    padding: 8px 0 8px 16px; min-width: 0;
    background: transparent;
  }
  .nav__list .menu-item-has-children > a::after { display: none; }
}

/* =========================================
   v3.12 — 4-SPRACHIGER LANG-SWITCHER
   ========================================= */
.lang-switcher {
  display: inline-flex; gap: 2px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  margin-left: 8px; padding: 2px;
  background: var(--rosa-light); border-radius: 6px;
}
.lang-switcher a {
  padding: 4px 7px; border-radius: 4px;
  color: var(--text-dim); text-decoration: none;
  transition: all 0.2s;
}
.lang-switcher a:hover { color: var(--navy); background: rgba(255,255,255,0.6); }
.lang-switcher a.is-active { background: var(--coral); color: #FFF; }

/* =========================================
   v3.12 — IMAGE-VIDEO HERO-SECTION (prominent)
   Click-to-Play YouTube (DSGVO-freundlich)
   ========================================= */
.image-video {
  position: relative;
  padding: 0 0 64px;
  background: linear-gradient(180deg, transparent 0%, var(--rosa-light) 100%);
}
.image-video__inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.image-video__head {
  text-align: center; margin-bottom: 32px;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.image-video__head .eyebrow { display: inline-block; margin-bottom: 12px; }
.image-video__head h2 { margin-bottom: 12px; }
.image-video__head p {
  font-size: 17px; color: var(--text-dim); margin: 0;
}

.image-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px; overflow: hidden;
  background: var(--navy);
  box-shadow: 0 20px 60px rgba(22, 65, 147, 0.18);
}
.image-video__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.6s ease, filter 0.3s ease;
}
.image-video__frame:hover .image-video__poster {
  transform: scale(1.02); filter: brightness(0.92);
}
.image-video__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,65,147,0.15) 0%, rgba(255,113,117,0.18) 100%);
  pointer-events: none;
}
.image-video__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--coral); color: #FFF;
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(255,113,117,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 2;
}
.image-video__play::before {
  content: "";
  width: 0; height: 0; margin-left: 6px;
  border-style: solid; border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent #FFF;
}
.image-video__play::after {
  content: ""; position: absolute; inset: -12px;
  border-radius: 50%; border: 2px solid var(--coral);
  opacity: 0.4;
  animation: faekn-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes faekn-ping {
  0%   { transform: scale(1);   opacity: 0.6; }
  80%, 100% { transform: scale(1.5); opacity: 0; }
}
.image-video__frame:hover .image-video__play {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 16px 50px rgba(255,113,117,0.55);
}
.image-video__caption {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  color: #FFF; z-index: 2; pointer-events: none;
}
.image-video__caption strong {
  display: block; font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.image-video__caption span {
  font-size: 13px; font-weight: 500; opacity: 0.92;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.image-video__frame.is-playing .image-video__poster,
.image-video__frame.is-playing .image-video__play,
.image-video__frame.is-playing .image-video__overlay,
.image-video__frame.is-playing .image-video__caption {
  display: none;
}
.image-video__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  .image-video__play::after { animation: none; }
}
@media (max-width: 760px) {
  .image-video__play { width: 72px; height: 72px; }
  .image-video__play::before { border-width: 12px 0 12px 20px; }
  .image-video__caption strong { font-size: 17px; }
}

/* =========================================
   v3.12 — SPRECHBLASEN-QUERVERWEISE
   Dialogische Übergänge im Stil janthomasotte.eu
   Provokation/Antwort als Brücke zwischen Sektionen
   ========================================= */
.crossref-bubbles {
  padding: 64px 0;
  position: relative;
}
.crossref-bubbles__inner {
  max-width: 880px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; gap: 24px;
}
.bubble {
  display: flex; align-items: flex-start; gap: 16px;
  max-width: 78%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.bubble.is-visible {
  opacity: 1; transform: translateY(0);
}
.bubble--question {
  align-self: flex-start;
  transition-delay: 0s;
}
.bubble--answer {
  align-self: flex-end; flex-direction: row-reverse;
  transition-delay: 0.35s;
}
.bubble__avatar {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #FFF;
}
.bubble--question .bubble__avatar {
  background: var(--rosa); color: var(--navy);
}
.bubble--answer .bubble__avatar {
  background: var(--coral);
}
.bubble__body {
  position: relative;
  padding: 14px 20px;
  border-radius: 18px;
  font-size: 16px; line-height: 1.5;
  box-shadow: 0 4px 16px rgba(22, 65, 147, 0.06);
}
.bubble--question .bubble__body {
  background: var(--rosa-light); color: var(--text);
  border-bottom-left-radius: 4px;
}
.bubble--question .bubble__body::before {
  content: ""; position: absolute; left: -8px; bottom: 8px;
  width: 0; height: 0;
  border-style: solid; border-width: 0 12px 10px 0;
  border-color: transparent var(--rosa-light) transparent transparent;
}
.bubble--answer .bubble__body {
  background: var(--navy); color: #FFF;
  border-bottom-right-radius: 4px;
}
.bubble--answer .bubble__body::before {
  content: ""; position: absolute; right: -8px; bottom: 8px;
  width: 0; height: 0;
  border-style: solid; border-width: 0 0 10px 12px;
  border-color: transparent transparent var(--navy) transparent;
}
.bubble__link {
  display: inline-block; margin-top: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral); text-decoration: none;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.bubble--answer .bubble__link {
  color: var(--rosa); border-color: var(--rosa);
}
.bubble__link:hover { color: #FFF; border-color: #FFF; }
.bubble--question .bubble__link:hover { color: var(--navy); border-color: var(--navy); }

/* Typing-Indicator: drei pulsierende Punkte vor der Antwort */
.bubble--answer.is-typing .bubble__body { padding: 16px 22px; }
.bubble--answer.is-typing .bubble__body span {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: rgba(255,255,255,0.7);
  margin: 0 2px;
  animation: faekn-typing 1.4s infinite ease-in-out;
}
.bubble--answer.is-typing .bubble__body span:nth-child(1) { animation-delay: 0s; }
.bubble--answer.is-typing .bubble__body span:nth-child(2) { animation-delay: 0.2s; }
.bubble--answer.is-typing .bubble__body span:nth-child(3) { animation-delay: 0.4s; }
@keyframes faekn-typing {
  0%, 60%, 100% { transform: translateY(0);   opacity: 0.4; }
  30%           { transform: translateY(-6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .bubble { opacity: 1; transform: none; }
  .bubble--answer.is-typing .bubble__body span { animation: none; }
}
@media (max-width: 640px) {
  .bubble { max-width: 94%; }
  .bubble__body { font-size: 15px; }
}

/* Optionaler Section-Header für die Crossref */
.crossref-bubbles__head {
  text-align: center; margin-bottom: 32px;
}
.crossref-bubbles__head .eyebrow { margin-bottom: 12px; display: inline-block; }
.crossref-bubbles__head h2 { margin-bottom: 8px; }
.crossref-bubbles__head p { color: var(--text-dim); max-width: 520px; margin: 0 auto; }


/* =========================================
   v3.10 — VITA / VORSTELLUNGS-SEITE
   ========================================= */
.vita {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
  margin: 64px 0;
}
.vita--reverse { grid-template-columns: 1fr 360px; }
.vita--reverse .vita__photo { order: 2; }
.vita--reverse .vita__body  { order: 1; }
.vita__photo {
  width: 360px; height: 360px; max-width: 100%;
  border-radius: 16px;
  background: var(--rosa-light);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(22, 65, 147, 0.12);
}
.vita__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.vita__body { padding-top: 8px; }
.vita__role {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 8px;
}
.vita__name {
  font-size: 32px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.02em; margin: 0 0 16px;
}
.vita__meta {
  margin: 16px 0;
}
.vita__meta strong {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 4px;
}
.vita__meta p { margin: 0 0 12px; font-size: 14px; }
.vita__languages {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--coral); color: #FFF;
  padding: 6px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  margin: 8px 0 16px;
}
.vita__bio { font-size: 16px; line-height: 1.65; }
.vita__bio p { margin: 0 0 16px; }
@media (max-width: 860px) {
  .vita, .vita--reverse {
    grid-template-columns: 1fr;
    gap: 24px; margin: 40px 0;
  }
  .vita--reverse .vita__photo { order: 1; }
  .vita--reverse .vita__body  { order: 2; }
  .vita__photo { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .vita__name { font-size: 24px; }
}

.vita-group-label {
  display: block; text-align: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--coral);
  padding: 48px 0 0;
}
.vita-group-label + .vita { margin-top: 24px; }

.praxisteam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; margin: 48px 0;
}
.praxisteam-card {
  background: #FFF; border: 1px solid var(--rule);
  border-radius: 12px; padding: 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.praxisteam-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 65, 147, 0.08);
}
.praxisteam-card img {
  width: 88px; height: 88px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 12px;
  background: var(--rosa-light);
}
.praxisteam-card__name {
  font-weight: 700; color: var(--navy); font-size: 15px;
  margin: 0 0 4px;
}
.praxisteam-card__role {
  font-size: 12px; color: var(--text-dim);
}

/* =========================================
   v3.11 — CH-BANNER auf Front-Page
   ========================================= */
.ch-banner {
  margin: 24px auto;
  max-width: 1180px;
  padding: 0 24px;
}
.ch-banner a {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #FFF 0%, var(--rosa-light) 100%);
  border: 1px solid var(--rosa);
  border-left: 4px solid #DA291C; /* CH-Rot */
  border-radius: 8px;
  text-decoration: none; color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ch-banner a:hover {
  transform: translateX(2px);
  box-shadow: 0 8px 24px rgba(218, 41, 28, 0.10);
}
.ch-banner__flag {
  flex-shrink: 0; font-size: 28px;
}
.ch-banner__text { flex: 1; font-size: 15px; line-height: 1.45; }
.ch-banner__text strong { color: var(--navy); }
.ch-banner__arrow { color: var(--coral); font-weight: 700; font-size: 20px; }

/* =========================================
   v3.11 — SCHWEIZER-PATIENTINNEN PAGE-TEMPLATE
   ========================================= */
.ch-hero {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(22,65,147,0.92) 0%, rgba(22,65,147,0.78) 100%),
    radial-gradient(at 80% 20%, rgba(255,113,117,0.3) 0%, transparent 50%);
  color: #FFF;
}
.ch-hero__grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: center;
}
.ch-hero__text h1 { color: #FFF; margin-bottom: 24px; }
.ch-hero__distance {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 32px;
}
.ch-hero__distance-title {
  color: #FFF; font-size: 20px; margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.ch-distance-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.ch-distance-list li {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 16px; color: #FFF;
}
.ch-distance-list li:last-child { border-bottom: 0; }
.ch-distance-list li strong { font-weight: 600; }
.ch-distance-list li span {
  font-family: 'Courier New', monospace;
  color: var(--rosa); font-weight: 700;
}
.ch-distance-foot {
  margin-top: 16px; font-size: 13px;
  color: rgba(255,255,255,0.7); text-align: center;
}
@media (max-width: 860px) {
  .ch-hero { padding: 56px 0; }
  .ch-hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

.ch-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 40px;
}
.ch-reason-card {
  background: #FFF; border: 1px solid var(--rule);
  border-top: 3px solid var(--coral);
  border-radius: 12px; padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ch-reason-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 65, 147, 0.08);
}
.ch-reason-card__icon {
  color: var(--coral); margin-bottom: 16px;
}
.ch-reason-card h3 {
  font-size: 18px; margin: 0 0 8px;
}
.ch-reason-card p { margin: 0; font-size: 15px; color: var(--text-dim); }

.ch-timeline {
  list-style: none; padding: 0; margin: 48px 0 0;
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
}
.ch-timeline::before {
  content: ""; position: absolute;
  left: 60px; top: 12px; bottom: 12px;
  width: 2px; background: var(--rosa);
}
.ch-timeline li {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 24px; align-items: start;
  position: relative;
}
.ch-timeline__time {
  font-family: 'Courier New', monospace;
  font-size: 14px; font-weight: 700;
  color: var(--navy); background: var(--rosa-light);
  padding: 8px 12px; border-radius: 8px;
  text-align: center; align-self: start;
  position: relative; z-index: 2;
  border: 2px solid var(--rosa);
}
.ch-timeline__body { padding-top: 6px; }
.ch-timeline__body h3 {
  font-size: 17px; margin: 0 0 6px;
}
.ch-timeline__body p { margin: 0; font-size: 15px; }
@media (max-width: 640px) {
  .ch-timeline::before { left: 36px; }
  .ch-timeline li { grid-template-columns: 60px 1fr; gap: 16px; }
  .ch-timeline__time { font-size: 12px; padding: 6px 8px; }
}


/* =========================================
   v3.12.3 — HERO-PORTRAIT (Marion prominent)
   Großes quadratisches Foto mit Caption-Card,
   sanfte Anhebung beim Hover.
   ========================================= */
.hero__portrait {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(22, 65, 147, 0.18);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.5s ease;
}
.hero__portrait:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(22, 65, 147, 0.24);
}
.hero__portrait img {
  width: 100%; height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.hero__portrait-caption {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-radius: 10px;
  padding: 14px 18px;
  text-align: left;
}
.hero__portrait-eyebrow {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 4px;
}
.hero__portrait-caption strong {
  display: block;
  font-size: 18px; font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 2px;
}
.hero__portrait-role {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.3;
}
:root[data-theme="dark"] .hero__portrait-caption {
  background: rgba(31, 34, 56, 0.92);
}
:root[data-theme="dark"] .hero__portrait-caption strong { color: #FFF; }
:root[data-theme="dark"] .hero__portrait-role { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .hero__portrait { max-width: 360px; }
  .hero__portrait-caption { left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; }
  .hero__portrait-caption strong { font-size: 16px; }
}


/* =========================================
   v3.12.4 — VORSTELLUNGS-SEITE (Hero + Fallbacks)
   ========================================= */
.aerztinnen-hero {
  padding: 80px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, #FFF 0%, var(--rosa-light) 100%);
}
.aerztinnen-hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 300; line-height: 1.1;
  color: var(--navy); letter-spacing: -0.02em;
  margin: 16px 0 28px;
}
.aerztinnen-hero h1 .accent { font-weight: 700; }
.aerztinnen-hero__lead {
  font-size: 19px; line-height: 1.6;
  color: var(--text); margin: 0 0 16px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.aerztinnen-hero__sub {
  font-size: 16px; color: var(--text-dim);
  max-width: 600px; margin: 0 auto;
}

/* Initial-Fallback wenn kein Foto da ist (z.B. Kathrin bis Foto kommt) */
.vita__photo-fallback,
.praxisteam-card__fallback {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-family: inherit; font-weight: 300;
  color: var(--coral);
  background: linear-gradient(135deg, var(--rosa-light) 0%, var(--rosa) 100%);
}
.vita__photo-fallback { font-size: 110px; letter-spacing: -0.04em; }
.praxisteam-card__fallback {
  width: 88px; height: 88px; border-radius: 50%;
  font-size: 36px; margin: 0 auto 12px;
}

/* Praxisteam-Card: Photo-Wrapper für konsistentes Layout mit oder ohne Foto */
.praxisteam-card__photo {
  width: 88px; height: 88px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 12px;
  background: var(--rosa-light);
}
.praxisteam-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; margin: 0;
}


/* =========================================
   v3.12.5 — ONLINE-REZEPTION BUTTON im Header
   Sekundäre CTA-Variante: outline rosa, hebt sich
   visuell von der primären Termin-CTA ab
   ========================================= */
.cta-button--rezeption {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
  display: inline-flex; align-items: center; gap: 8px;
}
.cta-button--rezeption svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.cta-button--rezeption:hover {
  background: var(--coral);
  color: #FFF;
  border-color: var(--coral);
}
.cta-button--rezeption:hover svg {
  transform: translateX(2px);
}
@media (max-width: 1100px) {
  .cta-button--rezeption span { display: none; }
  .cta-button--rezeption { padding: 12px; }
}
:root[data-theme="dark"] .cta-button--rezeption {
  color: var(--rosa); border-color: var(--rosa);
}
:root[data-theme="dark"] .cta-button--rezeption:hover {
  background: var(--rosa); color: var(--navy);
}

/* =========================================
   v3.12.5 — CROSSREF CARDS (Auto-Append auf Sub-Seiten)
   Drei Cards mit Themen-Querverweisen am Ende jedes Single-Views.
   ========================================= */
.crossref-cards {
  margin: 80px auto 0;
  padding: 56px 24px 64px;
  background: linear-gradient(180deg, transparent 0%, var(--rosa-light) 100%);
}
.crossref-cards__inner {
  max-width: 1180px; margin: 0 auto;
  text-align: center;
}
.crossref-cards__title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300; color: var(--navy);
  letter-spacing: -0.015em; line-height: 1.2;
  margin: 8px 0 40px;
}
.crossref-cards__grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .crossref-cards__grid { grid-template-columns: repeat(3, 1fr); }
}
.crossref-card {
  display: flex; flex-direction: column;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.crossref-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(22, 65, 147, 0.10);
  border-color: var(--coral);
}
.crossref-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.crossref-card p {
  flex-grow: 1;
  font-size: 14px; line-height: 1.55;
  color: var(--text-dim); margin: 0 0 16px;
}
.crossref-card__cta {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral);
  margin-top: auto;
}
:root[data-theme="dark"] .crossref-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
:root[data-theme="dark"] .crossref-card h3 { color: #FFF; }
:root[data-theme="dark"] .crossref-card p { color: rgba(255,255,255,0.7); }

/* =========================================
   v3.12.6 — ÄRZTINNEN-GALERIE (Crossfade auf Startseite)
   ========================================= */
.aerztinnen-galerie {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, var(--rosa-light) 50%, transparent 100%);
}
.aerztinnen-galerie__inner {
  display: grid; gap: 56px;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
@media (max-width: 860px) {
  .aerztinnen-galerie__inner { grid-template-columns: 1fr; gap: 32px; }
}
.aerztinnen-galerie__text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 12px 0 16px;
}
.aerztinnen-galerie__text p {
  font-size: 16px; line-height: 1.6;
  color: var(--text-dim); margin: 0 0 24px;
  max-width: 360px;
}
.aerztinnen-galerie__cta {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral); text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--coral);
  transition: gap 0.2s ease;
}
.aerztinnen-galerie__cta:hover { transform: translateX(3px); }

/* Stage: Stack-Layout für Crossfade */
.aerztinnen-galerie__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(22, 65, 147, 0.16);
  background: var(--rosa-light);
}
.aerztinnen-galerie__slide {
  position: absolute; inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.aerztinnen-galerie__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.aerztinnen-galerie__slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.aerztinnen-galerie__slide figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 56px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-radius: 10px;
  padding: 12px 16px;
}
.aerztinnen-galerie__slide figcaption strong {
  display: block;
  color: var(--navy);
  font-size: 16px; font-weight: 700;
  margin-bottom: 2px;
}
.aerztinnen-galerie__slide figcaption span {
  color: var(--text-dim);
  font-size: 12px;
}

/* Dots */
.aerztinnen-galerie__dots {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  display: flex; justify-content: center; gap: 8px;
  z-index: 5;
}
.aerztinnen-galerie__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.65);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.aerztinnen-galerie__dot:hover { background: #FFF; transform: scale(1.15); }
.aerztinnen-galerie__dot.is-active {
  background: var(--coral);
  width: 24px;
  border-radius: 5px;
}

:root[data-theme="dark"] .aerztinnen-galerie__slide figcaption {
  background: rgba(31, 34, 56, 0.92);
}
:root[data-theme="dark"] .aerztinnen-galerie__slide figcaption strong { color: #FFF; }
:root[data-theme="dark"] .aerztinnen-galerie__slide figcaption span { color: rgba(255,255,255,0.7); }

/* =========================================
   v3.12.6 — REZEPT-PAGE (medikamendo-Integration)
   ========================================= */
.rezept-hero {
  padding: 80px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, #FFF 0%, var(--rosa-light) 100%);
}
.rezept-hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 300; line-height: 1.1;
  color: var(--navy); letter-spacing: -0.02em;
  margin: 16px 0 28px;
}
.rezept-hero__lead {
  font-size: 18px; line-height: 1.6;
  max-width: 660px; margin: 0 auto 20px;
}
.rezept-hero__note {
  display: inline-block;
  background: rgba(255,113,118,0.10);
  border: 1px solid rgba(255,113,118,0.3);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--coral);
}
.rezept-hero__note strong { color: var(--coral); }

.rezept-cta-section { padding: 56px 0; }
.rezept-cta {
  display: grid; grid-template-columns: auto 1fr;
  gap: 32px; align-items: center;
  background: linear-gradient(135deg, var(--rosa-light) 0%, #FFF 100%);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 40px;
  max-width: 980px; margin: 0 auto;
  box-shadow: 0 16px 50px rgba(22, 65, 147, 0.08);
}
.rezept-cta__icon {
  color: var(--coral);
  flex-shrink: 0;
}
.rezept-cta__body h2 {
  font-size: 28px; font-weight: 700;
  color: var(--navy); margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.rezept-cta__body p {
  font-size: 16px; line-height: 1.55;
  color: var(--text-dim); margin: 0 0 20px;
}
.rezept-cta__sub { margin-top: 12px; }
.rezept-cta__sub small { font-size: 12px; color: var(--text-dim); }

@media (max-width: 680px) {
  .rezept-cta { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .rezept-cta__icon { margin: 0 auto; }
}

.rezept-vorteile {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 48px;
}
.rezept-vorteil {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.rezept-vorteil:hover {
  transform: translateY(-3px);
  border-color: var(--coral);
  box-shadow: 0 16px 40px rgba(22, 65, 147, 0.08);
}
.rezept-vorteil__num {
  font-size: 32px; font-weight: 300;
  color: var(--coral); margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.rezept-vorteil h3 {
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.rezept-vorteil p {
  font-size: 14px; line-height: 1.6;
  color: var(--text-dim); margin: 0;
}

.rezept-steps {
  display: grid; gap: 20px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  margin-top: 48px;
}
.rezept-step {
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.rezept-step__num {
  width: 44px; height: 44px;
  background: var(--coral); color: #FFF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  margin: 0 auto 16px;
}
.rezept-step h3 {
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin: 0 0 8px;
}
.rezept-step p {
  font-size: 14px; line-height: 1.55;
  color: var(--text-dim); margin: 0;
}
.rezept-step__arrow {
  display: flex; align-items: center;
  font-size: 28px; color: var(--coral);
  font-weight: 300;
}
@media (max-width: 860px) {
  .rezept-steps { grid-template-columns: 1fr; }
  .rezept-step__arrow { transform: rotate(90deg); justify-content: center; padding: 4px 0; }
}

:root[data-theme="dark"] .rezept-vorteil,
:root[data-theme="dark"] .rezept-step {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
:root[data-theme="dark"] .rezept-cta {
  background: linear-gradient(135deg, rgba(247,200,216,0.08) 0%, rgba(255,255,255,0.02) 100%);
}

/* =========================================
   v3.12.7 — REISE: Logo-Progress-Bar + Foto-Slots
   Sticky-Bar oben mit Mini-Logo + Progress-Fill,
   Steps als Punkte auf dem Strang.
   ========================================= */
.reise-progress {
  position: sticky; top: 72px; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.reise-progress__inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 24px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 20px; align-items: center;
}
.reise-progress__logo {
  width: 96px; flex-shrink: 0;
  opacity: 0.92;
  transition: transform 0.3s ease;
}
.reise-progress__logo svg { width: 100%; height: auto; display: block; }
/* Im Progress-Logo sind die Step-Animation-Klassen irrelevant, daher overriden */
.reise-progress__logo svg .faekn-step { opacity: 1 !important; animation: none !important; }
@media (max-width: 720px) {
  .reise-progress__logo { width: 64px; }
  .reise-progress__inner { gap: 12px; padding: 0 16px; }
}

.reise-progress__track {
  position: relative;
  padding: 6px 0 22px;
}
.reise-progress__rail {
  position: relative;
  height: 3px;
  background: var(--rule);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}
.reise-progress__fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--rosa) 0%, var(--coral) 100%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(255, 113, 117, 0.35);
}

.reise-progress__steps {
  display: flex; justify-content: space-between;
  list-style: none; margin: 0; padding: 0;
  position: relative;
}
.reise-progress__steps li {
  flex: 1;
  text-align: center;
}
.reise-progress__steps a {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 11px; font-weight: 600;
  transition: color 0.2s ease;
}
.reise-progress__steps a span {
  width: 22px; height: 22px;
  background: #FFF;
  border: 2px solid var(--rule);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--text-dim);
  transition: all 0.25s ease;
}
.reise-progress__steps a em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .reise-progress__steps a em { display: none; }
}
.reise-progress__steps a:hover span {
  border-color: var(--coral); color: var(--coral);
}
.reise-progress__steps a.is-done span {
  background: var(--rosa); border-color: var(--rosa); color: var(--navy);
}
.reise-progress__steps a.is-active span {
  background: var(--coral); border-color: var(--coral); color: #FFF;
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(255,113,117,0.15);
}
.reise-progress__steps a.is-active { color: var(--coral); }
.reise-progress__steps a.is-active em { font-weight: 700; }

/* Einzelne Station — Layout-Anpassungen für Foto-Slot */
.reise-station {
  padding: 96px 0;
  scroll-margin-top: 180px; /* damit sticky progress nicht überlappt */
}
.reise-station--alt {
  background: linear-gradient(180deg, var(--rosa-light) 0%, transparent 100%);
}
.reise-station__grid {
  display: grid; gap: 56px;
  grid-template-columns: 6fr 6fr;
  align-items: start;
  max-width: 1180px; margin: 0 auto;
}
.reise-station--alt .reise-station__visual { order: 2; }
.reise-station--alt .reise-station__body   { order: 1; }
@media (max-width: 860px) {
  .reise-station__grid { grid-template-columns: 1fr; gap: 32px; }
  .reise-station--alt .reise-station__visual { order: 0; }
  .reise-station--alt .reise-station__body { order: 1; }
}

/* Foto-Card (mit Bild) */
.reise-station__photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(22, 65, 147, 0.18);
  background: var(--rosa-light);
  aspect-ratio: 4 / 3;
}
.reise-station__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.reise-station__photo-note {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.55);
  color: #FFF;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.reise-station__photo-tag {
  position: absolute; left: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-radius: 10px;
  padding: 8px 14px;
}
.reise-station__photo-num {
  font-size: 28px; font-weight: 200;
  color: var(--coral); line-height: 1;
  letter-spacing: -0.03em;
}
.reise-station__photo-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy);
}

/* Number-Card (ohne Bild) — Foto folgt */
.reise-station__numcard {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, #2856B5 100%);
  border-radius: 18px;
  color: #FFF;
  aspect-ratio: 4 / 3;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 24px 60px rgba(22, 65, 147, 0.18);
  position: relative;
}
.reise-station__num {
  font-size: clamp(80px, 12vw, 130px);
  font-weight: 200; line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: var(--rosa);
}
.reise-station__tag {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.reise-station__photo-soon {
  position: absolute; bottom: 16px; left: 0; right: 0;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Reise-Body bleibt wie gehabt */
.reise-station__body h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 0 0 20px;
}
.reise-station__lead {
  font-size: 18px; line-height: 1.65;
  color: var(--text); margin: 0 0 32px;
}

/* Reise-CTA-Links unten in Station */
.reise-station__links {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 16px; align-items: flex-start;
}
.reise-station__cta {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--coral); text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--coral);
}

:root[data-theme="dark"] .reise-progress {
  background: rgba(15,17,32,0.92);
  border-bottom-color: rgba(255,255,255,0.08);
}
:root[data-theme="dark"] .reise-progress__steps a span {
  background: #1F2238; border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}
:root[data-theme="dark"] .reise-progress__steps a.is-done span {
  background: var(--rosa); border-color: var(--rosa); color: var(--navy);
}
:root[data-theme="dark"] .reise-station__photo-tag {
  background: rgba(31,34,56,0.94);
}
:root[data-theme="dark"] .reise-station__photo-label { color: #FFF; }

.reise-comparison {
  display: grid; gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .reise-comparison { grid-template-columns: 1fr; }
}
.reise-comparison__col {
  padding: 20px 22px;
  border-radius: 12px;
}
.reise-comparison__col--before {
  background: rgba(0,0,0,0.04);
}
.reise-comparison__col--after {
  background: rgba(255,113,118,0.10);
  border: 1px solid rgba(255,113,118,0.25);
}
.reise-comparison__label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 8px;
}
.reise-comparison__col--before .reise-comparison__label { color: var(--text-dim); }
.reise-comparison__col--after .reise-comparison__label  { color: var(--coral); }
.reise-comparison__col p {
  font-size: 14px; line-height: 1.6;
  margin: 0;
}
.reise-comparison__col--before p { color: var(--text-dim); }

.reise-station__cta {
  display: inline-block; margin-top: 16px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--coral); text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--coral);
}

.reise-final {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--rosa-light) 0%, #FFF 100%);
}
.reise-final h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.2;
  margin-top: 12px;
}

:root[data-theme="dark"] .reise-stepper {
  background: rgba(15,17,32,0.88);
  border-bottom-color: rgba(255,255,255,0.08);
}
:root[data-theme="dark"] .reise-stepper__item span {
  background: rgba(255,255,255,0.08); color: #FFF;
}
:root[data-theme="dark"] .reise-comparison__col--before {
  background: rgba(255,255,255,0.04);
}
:root[data-theme="dark"] .reise-comparison__col--before p { color: rgba(255,255,255,0.6); }

/* =========================================
   v3.12.7 — TWIN-BANNER (Privat + Schweiz)
   Prominente Rubrik weit oben auf der Startseite.
   Beide Bereiche gehören zusammen: CH-Patientinnen sind bei uns privat.
   ========================================= */
.twin-banner {
  padding: 32px 0 8px;
}
.twin-banner__grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr 1fr;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 760px) {
  .twin-banner__grid { grid-template-columns: 1fr; }
}
.twin-banner__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 14px;
  background: #FFF;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.twin-banner__card:hover {
  transform: translateY(-2px);
  border-color: var(--coral);
  box-shadow: 0 16px 40px rgba(22, 65, 147, 0.10);
}
.twin-banner__card--privat {
  background: linear-gradient(135deg, var(--rosa-light) 0%, #FFF 60%);
}
.twin-banner__card--ch {
  background: linear-gradient(135deg, #FFF 0%, var(--rosa-light) 100%);
}
.twin-banner__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--coral); color: #FFF;
  border-radius: 12px;
  flex-shrink: 0;
}
.twin-banner__icon--flag {
  background: transparent; font-size: 32px;
}
.twin-banner__eyebrow {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 2px;
}
.twin-banner__body strong {
  display: block;
  color: var(--navy);
  font-size: 16px; line-height: 1.3;
  margin-bottom: 4px;
}
.twin-banner__sub {
  display: block;
  font-size: 13px; line-height: 1.45;
  color: var(--text-dim);
}
.twin-banner__arrow {
  color: var(--coral);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.twin-banner__card:hover .twin-banner__arrow {
  transform: translateX(4px);
}
:root[data-theme="dark"] .twin-banner__card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
:root[data-theme="dark"] .twin-banner__card--privat,
:root[data-theme="dark"] .twin-banner__card--ch {
  background: linear-gradient(135deg, rgba(247,200,216,0.08) 0%, rgba(255,255,255,0.02) 100%);
}
:root[data-theme="dark"] .twin-banner__body strong { color: #FFF; }

/* =========================================
   v3.12.7 — LIFECYCLE-PHASE PHOTO (sparsam)
   Schmaler Inline-Photo-Header über bestimmten Phasen.
   ========================================= */
.lifecycle-phase__photo {
  margin: 0 0 32px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--rosa-light);
  box-shadow: 0 12px 36px rgba(22, 65, 147, 0.08);
}
.lifecycle-phase__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 720px) {
  .lifecycle-phase__photo { aspect-ratio: 16 / 9; }
}

/* =========================================
   v3.12.8 — QUIZ-ENGINE (Hormonkompass + Verhütungs-Check)
   ========================================= */
.faekn-quiz {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, var(--rosa-light) 50%, transparent 100%);
}
.faekn-quiz__header {
  text-align: center;
  max-width: 640px; margin: 0 auto 40px;
}
.faekn-quiz__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300; color: var(--navy);
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 12px 0 16px;
}
.faekn-quiz__title .accent { color: var(--coral); font-weight: 700; }
.faekn-quiz__intro {
  font-size: 16px; line-height: 1.6;
  color: var(--text-dim); margin: 0;
}

/* Cards (Start/Question/Result) */
.faekn-quiz__card {
  display: none;
  background: #FFF;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(22, 65, 147, 0.08);
}
.faekn-quiz__card.is-visible {
  display: block;
  animation: faekn-quiz-fade 0.4s ease-out;
}
@keyframes faekn-quiz-fade {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Start-Card */
.faekn-quiz__start {
  text-align: center;
}
.faekn-quiz__start-icon {
  color: var(--coral);
  margin-bottom: 20px;
  display: inline-block;
}
.faekn-quiz__start p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 24px;
  letter-spacing: 0.04em;
}

/* Progress */
.faekn-quiz__progress {
  margin-bottom: 28px;
}
.faekn-quiz__progress-info {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.faekn-quiz__step-num {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral);
}
.faekn-quiz__progress-rail {
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.faekn-quiz__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rosa) 0%, var(--coral) 100%);
  border-radius: 2px;
  width: 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(255, 113, 117, 0.35);
}

/* Question */
.faekn-quiz__question-title {
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  line-height: 1.35;
}

/* Options-Grid */
.faekn-quiz__options {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
}
@media (max-width: 520px) {
  .faekn-quiz__options { grid-template-columns: 1fr; }
}

.faekn-quiz__option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: #FFF;
  border: 2px solid var(--rule);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px; font-weight: 600;
  color: var(--text);
  transition: all 0.2s ease;
}
.faekn-quiz__option:hover {
  border-color: var(--coral);
  background: var(--rosa-light);
  transform: translateY(-1px);
}
.faekn-quiz__option.is-selected {
  border-color: var(--coral);
  background: var(--coral);
  color: #FFF;
}
.faekn-quiz__option-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--rosa-light);
  border-radius: 50%;
  color: var(--coral);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.faekn-quiz__option.is-selected .faekn-quiz__option-icon {
  background: rgba(255,255,255,0.25);
  color: #FFF;
}
.faekn-quiz__option-label {
  flex: 1; line-height: 1.3;
}

/* Nav */
.faekn-quiz__nav {
  display: flex; justify-content: flex-start;
}
.faekn-quiz__back {
  background: transparent; border: none;
  color: var(--text-dim);
  font-family: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.faekn-quiz__back:hover { color: var(--coral); }

/* Result-Card */
.faekn-quiz__result {
  text-align: center;
}
.faekn-quiz__result-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 88px; height: 88px;
  background: var(--rosa-light);
  border-radius: 50%;
  color: var(--coral);
  margin-bottom: 20px;
}
.faekn-quiz[data-quiz-tone="urgent"] .faekn-quiz__result-icon {
  background: var(--coral); color: #FFF;
  box-shadow: 0 0 0 8px rgba(255,113,117,0.15);
}
.faekn-quiz[data-quiz-tone="calm"] .faekn-quiz__result-icon {
  background: #E8F1E8; color: #2D7A3E;
}
.faekn-quiz__result h3 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700; color: var(--navy);
  letter-spacing: -0.015em; line-height: 1.2;
  margin: 8px 0 16px;
}
.faekn-quiz__result p {
  font-size: 16px; line-height: 1.65;
  color: var(--text); max-width: 520px; margin: 0 auto 28px;
}
.faekn-quiz__result-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.faekn-quiz__restart {
  background: transparent; border: none;
  color: var(--text-dim);
  font-family: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s ease;
}
.faekn-quiz__restart:hover { color: var(--coral); }

@media (max-width: 600px) {
  .faekn-quiz__card { padding: 28px 22px; }
  .faekn-quiz__question-title { font-size: 19px; }
}

:root[data-theme="dark"] .faekn-quiz__card {
  background: #1A1D2E;
  border-color: rgba(255,255,255,0.08);
}
:root[data-theme="dark"] .faekn-quiz__option {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}
:root[data-theme="dark"] .faekn-quiz__option-icon {
  background: rgba(255,255,255,0.06);
}
:root[data-theme="dark"] .faekn-quiz__progress-rail {
  background: rgba(255,255,255,0.08);
}
