/* ═══════════════════════════════════════════════════════════════
   FlowCademy Masterclass — style.css
   Design: Flowcademy-Grün/Weiß-System (identisch zu flowcademy/)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── VARIABLEN ─────────────────────────────────────────────── */
:root {
  --green:        #4A7C59;
  --green-dark:   #3d6a4a;
  --green-pale:   #EFF5F1;
  --section-a:    #F8FAF9;
  --section-b:    #F2F7F4;
  --green-border: #C8E6D4;
  --white:        #FFFFFF;
  --text:         #1A1A1A;
  --text-mid:     #4A5568;
  --text-light:   #718096;
  --shadow:       0 4px 20px rgba(74,124,89,0.10);
  --shadow-lg:    0 8px 32px rgba(74,124,89,0.18);
  --radius:       16px;
  --radius-sm:    10px;
  --max:          1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; line-height: 1.12; }
h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 700; line-height: 1.2;  }
h3 { font-size: clamp(18px, 2.2vw, 26px); font-weight: 600; line-height: 1.3;  }

/* ── STICKY HEADER ─────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 14px 0;
  /* Standardmäßig nach oben versteckt – erscheint erst beim Scrollen */
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s,
              transform 0.35s ease, opacity 0.35s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--green-border);
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
}
.site-header-logo {
  font-size: 17px; font-weight: 700; color: #fff;
  text-decoration: none; letter-spacing: -0.02em;
  transition: color 0.3s;
}
.site-header.scrolled .site-header-logo { color: var(--green); }
.site-header-cta {
  display: inline-flex; align-items: center;
  background: #F5C842; color: #1a1a1a;
  text-decoration: none; padding: 10px 22px;
  border-radius: 50px; font-size: 14px; font-weight: 600;
  transition: background .2s, transform .2s;
}
.site-header-cta:hover { background: #e0b030; transform: translateY(-1px); }

/* ── HERO ───────────────────────────────────────────────────── */
.fc-hero {
  padding: 100px 0 80px;
  background:
    /* Radiale Vignette → fokussiert Blick hinter Textblock */
    radial-gradient(ellipse at 50% 45%, rgba(0,0,0,0.18) 0%, transparent 70%),
    /* Vertikaler Scrim in markenfarbenem Dunkelgrün statt Schwarz */
    linear-gradient(to bottom,
      rgba(24,40,32,0.62) 0%,
      rgba(24,40,32,0.38) 50%,
      rgba(24,40,32,0.68) 100%),
    url('hero.jpg') center center / cover no-repeat;
  position: relative; overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.fc-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative; z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.fc-hero-image { display: none; }

.fc-brand-label {
  display: inline-block;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
  color: #fff; font-size: 14px; font-weight: 600;
  padding: 8px 22px; border-radius: 50px; margin-bottom: 24px;
  letter-spacing: 0.01em;
  max-width: 560px; text-align: center; line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.fc-brand-break { display: none; }
.fc-headline {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800; line-height: 1.12;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.fc-headline em {
  font-style: normal; color: #a8d5b5;
}
.fc-nowrap { white-space: nowrap; }
.fc-subline {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.92); line-height: 1.75;
  max-width: 600px; margin: 0 auto 32px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.fc-subline strong {
  color: #fff; font-weight: 700;
}
.fc-subline-accent {
  color: #a8d5b5; font-weight: 600;
}
.fc-cta-group {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.fc-microcopy {
  font-size: 13px; color: rgba(255,255,255,0.70);
  letter-spacing: .02em;
}
.fc-hero .btn-disclaimer {
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.fc-hero-quotes {
  position: relative;
  width: 100%; max-width: 560px;
  min-height: 3.4em;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.fc-hero-quote {
  position: absolute; left: 0; right: 0;
  margin: 0; padding: 0; border: none;
  font-size: 14px; font-style: italic;
  color: rgba(255,255,255,0.9); line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.fc-hero-quote.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .fc-hero-quote { transition: none; }
}
.fc-hero-countdown {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px; margin-top: 4px;
}
.fc-countdown-label {
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.fc-countdown-timer {
  display: flex; gap: 14px;
}
.fc-countdown-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 72px; padding: 12px 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
}
.fc-countdown-num {
  font-size: 36px; font-weight: 800; color: #fff; line-height: 1.1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.fc-countdown-cap {
  font-size: 12px; color: rgba(255,255,255,0.65);
  letter-spacing: .02em; margin-top: 4px;
}
@media (max-width: 480px) {
  .fc-countdown-unit { min-width: 58px; padding: 9px 5px; }
  .fc-countdown-num { font-size: 27px; }
  .fc-countdown-cap { font-size: 10px; }
  .fc-countdown-timer { gap: 8px; }
}

/* ── HERO EINGANGS-ANIMATION ────────────────────────────────── */
@keyframes fc-hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
/* Alle direkten Kinder von fc-hero-inner blenden gestaffelt ein */
.fc-hero-inner > * {
  animation: fc-hero-in .8s ease both;
}
.fc-hero-inner > *:nth-child(1) { animation-delay: .05s; }  /* brand-label  */
.fc-hero-inner > *:nth-child(2) { animation-delay: .20s; }  /* headline     */
.fc-hero-inner > *:nth-child(3) { animation-delay: .35s; }  /* subline      */
.fc-hero-inner > *:nth-child(4) { animation-delay: .50s; }  /* cta-group    */
.fc-hero-inner > *:nth-child(5) { animation-delay: .62s; }  /* quotes       */
.fc-hero-inner > *:nth-child(6) { animation-delay: .74s; }  /* countdown    */

/* ── BUTTONS ────────────────────────────────────────────────── */
.fc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: #F5C842; color: #1a1a1a;
  text-decoration: none; padding: 20px 48px;
  border-radius: 50px; font-size: 19px; font-weight: 700;
  transition: background .2s, transform .2s;
  border: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(245,200,66,0.55), 0 4px 16px rgba(0,0,0,0.25);
  animation: fc-breathe 2.8s ease-in-out infinite;
}
.fc-btn:hover {
  background: #e0b030; transform: translateY(-2px);
  animation: none;
}
@keyframes fc-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
  .fc-btn { animation: none; }
  .fc-hero-inner > * { animation: none; }
}
.fc-btn-wide { display: block; width: 100%; text-align: center; max-width: 420px; }
.fc-btn.fc-btn-sm { padding: 14px 32px; font-size: 16px; }

/* ── SECTION BASE ───────────────────────────────────────────── */
.fc-section { padding: 88px 0; }
.fc-section-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 24px;
  display: flex; flex-direction: column; align-items: center; gap: 48px;
}

/* Section variants */
.fc-dark  { background: var(--section-a); }
.fc-light { background: var(--section-b); }
.fc-warm  { background: var(--section-a); }

/* Section label / eyebrow */
.fc-section-eyebrow {
  display: inline-block;
  background: var(--green-pale); border: 1px solid var(--green-border);
  color: var(--green); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 16px; border-radius: 50px;
}

.fc-header-group {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; text-align: center;
}

.fc-section-headline {
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 700;
  color: var(--text); text-align: center;
  line-height: 1.2;
}
.fc-section-intro {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75; text-align: center;
  max-width: 640px;
  color: var(--text-mid);
}

/* CTA wrap */
.fc-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.fc-cta-note { font-size: 14px; color: var(--text-light); text-align: center; }

/* ── PROBLEM / LÖSUNG KARTEN (2×2 Grid) ─────────────────────── */
.fc-card-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; width: 100%;
}

/* Problem-Karten (fc-dark Sektion) */
.fc-card {
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.fc-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
}
.fc-card-topic {
  font-size: 18px; font-weight: 700;
  color: var(--green);
}
.fc-card-body {
  font-size: 15px; line-height: 1.65;
  color: var(--text); font-weight: 500;
}

/* Lösung-Karten (fc-warm Sektion) */
.fc-card-warm {
  background: var(--white);
  border: 1px solid var(--green-border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.fc-card-warm:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-3px);
}
.fc-card-warm .fc-card-topic { color: var(--green); }
.fc-card-warm .fc-card-body  { color: var(--text); font-weight: 500; font-size: 15px; line-height: 1.65; }

/* ── STEPS (Heilreise-Ablauf) ───────────────────────────────── */
.fc-steps {
  display: flex; flex-direction: column; gap: 0; width: 100%;
  position: relative;
}
.fc-steps::before {
  content: ''; position: absolute;
  left: 27px; top: 28px; bottom: 28px; width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--green-dark), var(--green));
  opacity: .35;
}
.fc-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 24px 0; position: relative;
  border-bottom: 1px solid var(--green-border);
}
.fc-step:last-child { border-bottom: none; }
.fc-step-dot {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--green);
  border: 2px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  color: #fff; position: relative; z-index: 1;
}
.fc-step:last-child .fc-step-dot {
  background: var(--green-dark);
}
.fc-step-content { flex: 1; padding-top: 6px; }
.fc-step-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); border: 1px solid var(--green-border);
  background: var(--green-pale); border-radius: 50px;
  padding: 4px 12px; margin-bottom: 8px;
}
.fc-step-title {
  font-size: clamp(16px, 1.8vw, 20px); font-weight: 600;
  color: var(--text); margin-bottom: 8px; line-height: 1.3;
}
.fc-step-body {
  font-size: 15px; line-height: 1.75; color: var(--text-mid);
}

/* ── LÖSUNG-QUOTE ───────────────────────────────────────────── */
.fc-solution-quote {
  font-size: clamp(17px, 1.8vw, 21px); font-weight: 500;
  line-height: 1.5; color: var(--green-dark); text-align: center;
  padding: 24px 28px; border-radius: var(--radius);
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  width: 100%; max-width: 720px;
}

/* ── VERGLEICHS-GRID (Sektion 5) ───────────────────────────── */
.fc-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.fc-compare-card {
  background: var(--white);
  border: 2px solid var(--green-border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.fc-compare-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}
.fc-compare-badge {
  position: absolute; top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 20px; border-radius: 50px;
  white-space: nowrap;
}
.fc-compare-icon {
  font-size: 36px; display: block; margin-bottom: 14px;
}
.fc-compare-title {
  font-size: 17px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.fc-compare-desc {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.55; min-height: 56px; margin-bottom: 20px;
}
.fc-compare-price {
  font-size: 46px; font-weight: 800;
  color: var(--text-light); line-height: 1;
}
.fc-compare-price sup {
  font-size: 20px; font-weight: 700;
  vertical-align: super; line-height: 1;
}
.fc-compare-price.highlight { color: var(--green); }
.fc-compare-price-note {
  font-size: 13px; color: var(--text-light); margin-top: 4px;
}

/* ══════════════════════════════════════════════════════
   ANGEBOT-SEKTION (fc-offer) — Entscheidungs-Moment
   ══════════════════════════════════════════════════════ */

/* 1. Warmer Goldschein (Fortführung aus Sektion 4) */
.fc-offer { position: relative; overflow: hidden; }
.fc-offer::before {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 50% -5%,  rgba(214,178,110,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 110%, rgba(74,124,89,0.07)   0%, transparent 55%);
}
.fc-offer .fc-section-inner { position: relative; z-index: 1; }

/* 2. Grid-Reveal übersteuern – Karten animieren selbst gestaffelt */
.fc-offer .fc-compare-grid.reveal { opacity: 1; transform: none; transition: none; }

/* 3. Karten – Startzustand für gestaffelte Einblendung */
.fc-offer .fc-compare-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .25s ease;
}

/* 4. Einblendung + Delays */
.fc-offer .fc-compare-grid.visible .fc-compare-card              { opacity: 1; transform: none; }
.fc-offer .fc-compare-grid.visible .fc-compare-card:nth-child(1) { transition-delay: 0s; }
.fc-offer .fc-compare-grid.visible .fc-compare-card:nth-child(2) { transition-delay: .12s; }
.fc-offer .fc-compare-grid.visible .fc-compare-card:nth-child(3) { transition-delay: .24s; }

/* 5. Hover-Lift (nur featured-Karte betont) */
.fc-offer .fc-compare-grid.visible .fc-compare-card.featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(74,124,89,0.22);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #111; color: rgba(255,255,255,.55);
  padding: 40px 0; text-align: center;
}
.site-footer .footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.footer-brand { font-size: 13px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  color: rgba(255,255,255,.55); text-decoration: none;
  font-size: 14px; transition: color .2s;
}
.footer-links a:hover { color: #fff; }
.footer-disclaimer {
  max-width: var(--max); margin: 12px auto 0; padding: 0 24px;
  font-size: 12px; color: rgba(255,255,255,.30);
  text-align: center; line-height: 1.5;
}

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════
   PROBLEM-SEKTION (fc-problem) — Der Schmerz-Moment
   ══════════════════════════════════════════════════════ */

/* 1. Atmosphärischer Hintergrund: Vignette + zarter Lichtschein */
.fc-problem { position: relative; overflow: hidden; }
.fc-problem::before {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  /* Weiche Randvignette: erdet die Sektion, macht sie schwerer */
  background: radial-gradient(ellipse at center, transparent 40%, rgba(55,65,60,0.06) 100%);
}
.fc-problem::after {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  /* Dezenter Lichtschein oben-mitte: Headline wirkt „getragen" */
  background: radial-gradient(ellipse at 50% -10%, rgba(74,124,89,0.08) 0%, transparent 60%);
}
.fc-problem .fc-section-inner { position: relative; z-index: 1; }

/* 2. Headline-Akzent (für hellen Sektions-Hintergrund, nicht Hero) */
.fc-problem .fc-section-headline em { color: var(--green); font-style: normal; }

/* 3. Grid-Reveal übersteuern – Karten animieren selbst gestaffelt */
.fc-problem .fc-card-grid.reveal { opacity: 1; transform: none; transition: none; }

/* 4. Gedämpfte Karten – entsättigter Salbei-Ton, schwerer als green-pale */
.fc-problem .fc-card {
  background: #E8ECEB;
  border-color: #C3CFCA;
  gap: 16px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .2s;
}
.fc-problem .fc-card-topic {
  color: var(--green-dark);
  letter-spacing: 0.03em;
}
.fc-problem .fc-card:hover {
  box-shadow: 0 8px 28px rgba(40,60,50,0.14);
}

/* 5. Gestaffelte Einblendung beim Scrollen */
.fc-problem .fc-card-grid.visible .fc-card              { opacity: 1; transform: none; }
.fc-problem .fc-card-grid.visible .fc-card:nth-child(1) { transition-delay: 0s; }
.fc-problem .fc-card-grid.visible .fc-card:nth-child(2) { transition-delay: .12s; }
.fc-problem .fc-card-grid.visible .fc-card:nth-child(3) { transition-delay: .24s; }
.fc-problem .fc-card-grid.visible .fc-card:nth-child(4) { transition-delay: .36s; }
.fc-problem .fc-card-grid.visible .fc-card:hover        { transform: translateY(-3px); }

/* 6. Icon-Träger & Karten-Kopfzeile */
.fc-card-head {
  display: flex; align-items: center; gap: 14px;
}
.fc-card-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(74,124,89,0.10);
  border: 1px solid rgba(74,124,89,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
}
.fc-card-icon svg { width: 22px; height: 22px; }

/* 7. Brückensatz – leiser innerer Gedanke, leitet zur Lösung über */
.fc-bridge {
  font-size: clamp(17px, 1.8vw, 20px); font-style: italic;
  color: var(--green-dark); text-align: center;
  max-width: 580px; line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   HEILREISE-SEKTION (fc-journey) — Reise-Inszenierung
   ══════════════════════════════════════════════════════ */

/* 1. Atmosphärischer Lichtschein von oben */
.fc-journey { position: relative; overflow: hidden; }
.fc-journey::before {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 50% 0%,   rgba(74,124,89,0.07)  0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(245,200,66,0.06) 0%, transparent 50%);
}
.fc-journey .fc-section-inner { position: relative; z-index: 1; }

/* 2. Steps-Container-Reveal übersteuern – Schritte animieren selbst */
.fc-journey .fc-steps.reveal { opacity: 1; transform: none; transition: none; }

/* 3. Gestaffeltes Einblenden der Schritte */
.fc-journey .fc-step {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fc-journey .fc-steps.visible .fc-step              { opacity: 1; transform: none; }
.fc-journey .fc-steps.visible .fc-step:nth-child(1) { transition-delay: 0s; }
.fc-journey .fc-steps.visible .fc-step:nth-child(2) { transition-delay: .14s; }
.fc-journey .fc-steps.visible .fc-step:nth-child(3) { transition-delay: .28s; }
.fc-journey .fc-steps.visible .fc-step:nth-child(4) { transition-delay: .42s; }

/* 4. Scroll-gefüllte Zeitachse (Füll-Linie via CSS-Variable --journey-p) */
.fc-journey .fc-steps::after {
  content: ''; position: absolute;
  left: 27px; top: 28px; width: 2px;
  height: calc((100% - 56px) * var(--journey-p, 0));
  background: linear-gradient(to bottom, #8BAAA0, var(--green), var(--green-dark), #B8922A);
  opacity: .90;
  transition: height .25s ease-out;
}

/* 5. Punkte – Grund-Glow */
.fc-journey .fc-step-dot {
  transition: box-shadow .4s ease, transform .4s ease, background .4s ease;
  box-shadow: 0 0 0 5px rgba(74,124,89,0.08), 0 4px 14px rgba(74,124,89,0.18);
}

/* 6. Punkte aktivieren sich – eskalierender Energie-Glow pro Schritt */
.fc-journey .fc-step.reached .fc-step-dot { transform: scale(1.06); }
.fc-journey .fc-step:nth-child(1).reached .fc-step-dot {
  box-shadow: 0 0 0 5px rgba(74,124,89,0.12), 0 0 14px rgba(74,124,89,0.30);
}
.fc-journey .fc-step:nth-child(2).reached .fc-step-dot {
  box-shadow: 0 0 0 6px rgba(74,124,89,0.18), 0 0 20px rgba(74,124,89,0.42);
}
/* Schritt 3: Höhepunkt — gold-getönter Halo */
.fc-journey .fc-step:nth-child(3).reached .fc-step-dot {
  background: linear-gradient(135deg, var(--green) 0%, #8B6A10 100%);
  box-shadow: 0 0 0 7px rgba(192,144,48,0.22), 0 0 30px rgba(245,200,66,0.55);
}
/* Schritt 4: Integration — warm-grüner Abschluss */
.fc-journey .fc-step:nth-child(4).reached .fc-step-dot {
  box-shadow: 0 0 0 8px rgba(74,124,89,0.18), 0 0 24px rgba(74,124,89,0.50);
}

/* ══════════════════════════════════════════════════════
   LÖSUNG-SEKTION (fc-solution) — Das Aufatmen
   ══════════════════════════════════════════════════════ */

/* 1. Atmosphäre: heller Grün- + warmer Goldschein */
.fc-solution { position: relative; overflow: hidden; }
.fc-solution::before {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(74,124,89,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% -5%,  rgba(214,178,110,0.10) 0%, transparent 50%);
}
.fc-solution .fc-section-inner { position: relative; z-index: 1; }

/* 2. Leuchtende Icons (Spiegelung zu fc-problem – gleiche Motive, geöffnet) */
.fc-solution .fc-card-icon {
  background: rgba(74,124,89,0.14);
  border-color: rgba(74,124,89,0.28);
  color: var(--green);
  box-shadow: 0 0 16px rgba(74,124,89,0.18);
}

/* 3. Grid-Reveal übersteuern – Karten animieren selbst */
.fc-solution .fc-card-grid.reveal { opacity: 1; transform: none; transition: none; }

/* 4. Karten – Lift/Glow + Startzustand */
.fc-solution .fc-card-warm {
  gap: 16px;
  opacity: 0;
  transform: translateY(18px);
  box-shadow: 0 10px 30px rgba(74,124,89,0.12);
  transition: opacity .6s ease, transform .6s ease, box-shadow .25s ease;
}

/* 5. Gestaffelte Einblendung */
.fc-solution .fc-card-grid.visible .fc-card-warm              { opacity: 1; transform: none; }
.fc-solution .fc-card-grid.visible .fc-card-warm:nth-child(1) { transition-delay: 0s; }
.fc-solution .fc-card-grid.visible .fc-card-warm:nth-child(2) { transition-delay: .12s; }
.fc-solution .fc-card-grid.visible .fc-card-warm:nth-child(3) { transition-delay: .24s; }
.fc-solution .fc-card-grid.visible .fc-card-warm:nth-child(4) { transition-delay: .36s; }
.fc-solution .fc-card-grid.visible .fc-card-warm:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(74,124,89,0.22);
}

/* 6. Schluss-Zitat als Höhepunkt */
.fc-solution .fc-solution-quote {
  padding: 36px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  background: linear-gradient(to bottom, var(--white), var(--green-pale));
  border-color: rgba(214,178,110,0.40);
  box-shadow: 0 8px 40px rgba(74,124,89,0.14);
}
.fc-solution .fc-solution-quote::before {
  content: '✦';
  display: block;
  color: var(--green);
  font-size: 22px;
  opacity: .75;
  margin-bottom: 16px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .fc-section { padding: 60px 0; }
  .fc-section-inner { gap: 32px; }
  .fc-hero {
    padding: 80px 0 60px; min-height: 500px;
    background-image:
      radial-gradient(ellipse at 50% 45%, rgba(0,0,0,0.18) 0%, transparent 70%),
      linear-gradient(to bottom,
        rgba(24,40,32,0.62) 0%,
        rgba(24,40,32,0.38) 50%,
        rgba(24,40,32,0.68) 100%),
      url('hero-mobile.jpg');
  }
  .fc-final {
    background-image:
      radial-gradient(ellipse at 50% 45%, rgba(0,0,0,0.22) 0%, transparent 70%),
      linear-gradient(to bottom,
        rgba(24,40,32,0.72) 0%,
        rgba(24,40,32,0.50) 45%,
        rgba(24,40,32,0.78) 100%),
      url('hero-mobile.jpg');
  }
  .fc-headline { font-size: clamp(28px, 7vw, 40px); }
  .fc-brand-break { display: inline; }
  .fc-card-grid { grid-template-columns: 1fr; }
  .site-header-cta { display: none; }
  .fc-btn { font-size: 17px; padding: 18px 36px; }
  .fc-btn-wide { max-width: 100%; }
  .fc-compare-grid { grid-template-columns: 1fr; }
  .fc-steps::before { display: none; }
  .fc-journey .fc-steps::after { display: none; }
}

@media (max-width: 480px) {
  .fc-btn { font-size: 15px; padding: 16px 28px; }
  .fc-headline { font-size: clamp(24px, 7.5vw, 40px); }
}

/* ══════════════════════════════════════════════════════
   SEKTION 2: NEED-KARTEN (Erkennst du dich wieder?)
   ══════════════════════════════════════════════════════ */

.need-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}
.need-card {
  background: var(--white);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-sm);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.need-icon  { font-size: 32px; display: block; margin-bottom: 10px; }
.need-area  { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.need-outer { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.need-inner {
  font-size: 14px; font-weight: 500; color: var(--green); line-height: 1.6;
  border-top: 1px solid var(--green-border); padding-top: 12px;
}
.need-bridge {
  max-width: 680px; margin: 0 auto;
  background: var(--green-pale); border: 1px solid var(--green-border);
  border-radius: var(--radius); padding: 32px 36px; text-align: center;
}
.need-bridge p { font-size: 16px; color: var(--text); line-height: 1.75; margin-bottom: 0; }
.need-bridge p + p { margin-top: 14px; }

/* ── Gold-CTA Button (Sektion 2) ── */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--pulse-color); }
  50%       { box-shadow: 0 0 0 15px transparent; }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff;
  text-decoration: none; padding: 20px 48px;
  border-radius: 50px; font-size: 19px; font-weight: 700;
  transition: background .2s, transform .2s;
  border: none; cursor: pointer;
}
.btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-sm { padding: 14px 32px; font-size: 16px; }
.btn-pulse       { animation: breathe 2.8s ease-in-out infinite; }
.btn-pulse:hover { animation: none; transform: scale(1.08); }
.btn-gold { background: #F5C842; color: #1a1a1a; box-shadow: 0 0 20px rgba(245,200,66,0.55), 0 4px 16px rgba(0,0,0,0.25); }
.btn-gold:hover { background: #e0b030; }
.btn-group   { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-group-v { flex-direction: column; align-items: center; gap: 10px; }
.btn-disclaimer { font-size: 14px; color: var(--text-light); font-weight: 500; }

@media (max-width: 480px) {
  .need-bridge { padding: 24px 20px; }
}

/* ══════════════════════════════════════════════════════
   ENERGIE-SEKTION (fc-energy) — Mechanismus / Reframe
   ══════════════════════════════════════════════════════ */

/* 1. Atmosphäre: warmer Goldschein rechts, kühler Grünton links */
.fc-energy { position: relative; overflow: hidden; }
.fc-energy::before {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(214,178,110,0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 50%, rgba(74,124,89,0.05)   0%, transparent 50%);
}
.fc-energy .fc-section-inner { position: relative; z-index: 1; }

/* 2. Headline-Akzent */
.fc-energy .fc-section-headline em { color: var(--green); font-style: normal; }

/* 3. Grid-Reveal übersteuern – Karten animieren selbst gestaffelt */
.fc-energy .fc-temp-grid.reveal { opacity: 1; transform: none; transition: none; }

/* ── Temperatur-Vergleich ───────────────────────────────── */
.fc-temp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

/* Karten-Basis */
.fc-temp-card {
  display: flex;
  gap: 18px;
  align-items: stretch;
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.fc-temp-grid.visible .fc-temp-card              { opacity: 1; transform: none; }
.fc-temp-grid.visible .fc-temp-card:nth-child(1) { transition-delay: 0s; }
.fc-temp-grid.visible .fc-temp-card:nth-child(2) { transition-delay: .15s; }

/* Kalt-Variante */
.fc-temp-card.cold {
  background: #EEF0EF;
  border: 1px solid #C8D4CF;
}

/* Heiß-Variante */
.fc-temp-card.hot {
  background: linear-gradient(135deg, #fffdf5 0%, #fff8e8 100%);
  border: 1px solid rgba(245,200,66,0.35);
  box-shadow: 0 0 24px rgba(245,200,66,0.15), var(--shadow);
  animation: fc-glow-pulse 3s ease-in-out infinite;
}
@keyframes fc-glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(245,200,66,0.15), var(--shadow); }
  50%       { box-shadow: 0 0 40px rgba(245,200,66,0.38), var(--shadow-lg); }
}

/* Thermometer-Leiste */
.fc-temp-thermometer {
  width: 10px;
  flex-shrink: 0;
  position: relative;
  background: rgba(0,0,0,0.10);
  border-radius: 50px;
  overflow: hidden;
  min-height: 140px;
  align-self: stretch;
}
.fc-temp-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  border-radius: 50px;
  transition: height 1.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.cold .fc-temp-bar { background: #8BAAA0; transition-delay: .5s; }
.hot  .fc-temp-bar {
  background: linear-gradient(to top, #F5C842, #e07020);
  transition-delay: .7s;
}
.fc-temp-grid.visible .cold .fc-temp-bar { height: 28%; }
.fc-temp-grid.visible .hot  .fc-temp-bar { height: 88%; }

/* Karten-Inhalte */
.fc-temp-content  { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.fc-temp-icon     { font-size: 30px; line-height: 1; }
.fc-temp-label    {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-mid);
}
.fc-temp-value    { font-size: clamp(24px, 3vw, 36px); font-weight: 800; line-height: 1.1; }
.cold .fc-temp-value { color: #5A7870; }
.hot  .fc-temp-value { color: #C07020; }
.fc-temp-body     { font-size: 14px; line-height: 1.65; color: var(--text-mid); flex: 1; }
.fc-temp-tagline  {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 14px; border-radius: 50px;
}
.cold .fc-temp-tagline { background: #DAE4E1; color: #4A6B62; }
.hot  .fc-temp-tagline { background: rgba(245,200,66,0.22); color: #9A6010; }


/* ── Pointe ─────────────────────────────────────────────── */
.fc-energy-pointe {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55; text-align: center;
  color: var(--text); max-width: 620px;
}
.fc-energy-pointe strong { color: var(--green-dark); }

/* ── Denkfehler-Callout ─────────────────────────────────── */
.fc-energy-callout {
  max-width: 720px; width: 100%;
  background: var(--white);
  border: 1px solid var(--green-border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}
.fc-energy-callout p { font-size: 16px; line-height: 1.75; color: var(--text); }
.fc-energy-callout p + p { margin-top: 12px; }
.fc-energy-callout strong { color: var(--green-dark); }

/* ── Benefit-Block ──────────────────────────────────────── */
.fc-energy-benefit {
  max-width: 780px; width: 100%;
  display: flex; flex-direction: column; gap: 28px;
}
.fc-energy-benefit-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8; color: var(--text-mid);
  text-align: center;
}
.fc-energy-points { display: flex; flex-direction: column; gap: 12px; }
.fc-energy-point {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.fc-energy-point-icon  { font-size: 22px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.fc-energy-point-title { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.fc-energy-point-body  { font-size: 14px; line-height: 1.6; color: var(--text-mid); }

/* ── Brücken-Block ──────────────────────────────────────── */
.fc-energy-bridge {
  width: 100%; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.fc-energy-bridge .fc-bridge { margin: 0; font-style: italic; }
.fc-energy-question {
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 600; line-height: 1.5;
  color: var(--text); max-width: 620px;
}

/* ── Scroll-Hinweis ↓ ───────────────────────────────────── */
.fc-scroll-hint {
  display: block; font-size: 22px;
  color: var(--text-light); opacity: 0.45;
  animation: fc-bounce-down 1.8s ease-in-out infinite;
  margin-top: 4px;
  user-select: none;
}
@keyframes fc-bounce-down {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50%       { transform: translateY(8px); opacity: 0.75; }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .fc-temp-grid { grid-template-columns: 1fr; }
  .fc-temp-thermometer { display: none; }
  .fc-energy-callout { padding: 22px 18px; }
}

/* ── Reduced-motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fc-temp-card.hot  { animation: none; box-shadow: 0 0 24px rgba(245,200,66,0.15), var(--shadow); }
  .fc-scroll-hint    { animation: none; opacity: 0.45; }
  .fc-temp-bar       { transition: height .6s ease; }
}

/* ══════════════════════════════════════════════════════
   HEILREISE-SEKTION: NEUE KOMPONENTEN (Sektion 4)
   ══════════════════════════════════════════════════════ */

/* ── Reframe: Meditation vs. Heilreise ─────────────────── */
.fc-reframe {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  width: 100%; max-width: 820px;
  gap: 0;
}
.fc-reframe-panel {
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.fc-reframe-panel.muted {
  background: #EEF0EF;
  border: 1px solid #C8D4CF;
}
.fc-reframe-panel.bright {
  background: linear-gradient(135deg, #f0f7f2 0%, #e8f4ed 100%);
  border: 1px solid var(--green-border);
  box-shadow: var(--shadow);
}
.fc-reframe-label { font-size: 17px; font-weight: 700; }
.muted  .fc-reframe-label { color: #5A7870; }
.bright .fc-reframe-label { color: var(--green-dark); }
.fc-reframe-tag {
  display: inline-block; align-self: flex-start;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 50px;
}
.muted  .fc-reframe-tag { background: #DAE4E1; color: #4A6B62; }
.bright .fc-reframe-tag { background: var(--green-pale); border: 1px solid var(--green-border); color: var(--green); }
.fc-reframe-body { font-size: 15px; line-height: 1.7; }
.muted  .fc-reframe-body { color: var(--text-mid); }
.bright .fc-reframe-body { color: var(--text); }

.fc-reframe-sep {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--green); font-size: 18px; font-weight: 600;
}
.fc-reframe-sep-line { width: 1px; height: 36px; background: var(--green-border); }

.fc-reframe-bridge {
  font-size: 14px; font-weight: 600; text-align: center;
  color: var(--green); letter-spacing: .02em;
  opacity: 0.8;
}

/* ── Sub-Überschrift Timeline ───────────────────────────── */
.fc-journey-subhead {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--text-light);
  width: 100%;
}

/* ── Fakten-Leiste ──────────────────────────────────────── */
.fc-stat-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  width: 100%; max-width: 760px;
  background: var(--white);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow);
}
.fc-stat { text-align: center; flex: 1; min-width: 110px; padding: 8px 12px; }
.fc-stat-value {
  font-size: clamp(28px, 3vw, 42px); font-weight: 800;
  color: var(--green-dark); line-height: 1;
}
.fc-stat-label { font-size: 13px; color: var(--text-mid); margin-top: 6px; line-height: 1.4; }
.fc-stat-divider { width: 1px; height: 48px; background: var(--green-border); flex-shrink: 0; }

/* ── Maharishi-Feld: Wrapper ────────────────────────────── */
.fc-field-section {
  width: 100%; max-width: 880px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.fc-field-heading {
  font-size: clamp(19px, 2.2vw, 26px); font-weight: 700;
  text-align: center; color: var(--text);
}
.fc-field-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75; text-align: center; color: var(--text-mid); max-width: 620px;
}

/* ── Feld-Visual: Allein vs. Gruppe ─────────────────────── */
.fc-field-visual {
  display: flex; align-items: center; justify-content: center; gap: 20px; width: 100%;
}
.fc-field-side {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  flex: 1; max-width: 240px;
}
.fc-field-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-light);
}
.fc-field-svg { width: 120px; height: 120px; }
.fc-field-svg-group { filter: drop-shadow(0 0 14px rgba(74,124,89,0.40)); }
.fc-field-desc { font-size: 13px; color: var(--text-light); text-align: center; line-height: 1.5; }

/* Pulsierender Mittelpunkt */
.fc-field-center {
  transform-origin: 60px 60px;
  animation: fc-field-pulse 2.6s ease-in-out infinite;
}
@keyframes fc-field-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.85; }
  50%       { transform: scale(1.45); opacity: 1;    }
}

.fc-field-vs {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.fc-maharishi-badge {
  display: inline-block;
  background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 7px 18px; border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(74,124,89,0.35);
}

/* ── Maharishi-Callout ──────────────────────────────────── */
.fc-field-callout {
  max-width: 660px; width: 100%;
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
}
.fc-field-callout p { font-size: 15px; line-height: 1.75; color: var(--text); }
.fc-field-callout strong { color: var(--green-dark); }

/* ── Crescendo ──────────────────────────────────────────── */
.fc-crescendo {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  width: 100%; max-width: 640px; text-align: center;
}
.fc-crescendo-lead {
  font-size: clamp(14px, 1.5vw, 16px); line-height: 1.8; color: var(--text-mid);
}
.fc-crescendo-lines {
  display: flex; flex-direction: column; gap: 8px; width: 100%;
}
.fc-crescendo-line {
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; color: var(--text);
  opacity: 0; transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
}
.fc-crescendo.visible .fc-crescendo-line              { opacity: 1; transform: none; }
.fc-crescendo.visible .fc-crescendo-line:nth-child(1) { transition-delay: .2s; }
.fc-crescendo.visible .fc-crescendo-line:nth-child(2) { transition-delay: .45s; }
.fc-crescendo.visible .fc-crescendo-line:nth-child(3) { transition-delay: .7s; }
.fc-crescendo-line.accent {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--green-dark); font-style: italic;
}
.fc-crescendo .fc-bridge { font-style: italic; margin: 0; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .fc-reframe { grid-template-columns: 1fr; }
  .fc-reframe-sep { flex-direction: row; padding: 4px 0; }
  .fc-reframe-sep-line { width: 36px; height: 1px; }
  .fc-stat-strip { padding: 20px 16px; }
  .fc-stat-divider { display: none; }
  .fc-stat { min-width: 44%; }
  .fc-field-visual { flex-direction: column; gap: 16px; }
  .fc-field-side { max-width: 100%; }
}

/* ── Reduced-motion (neue Animationen) ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  .fc-field-center { animation: none; }
}

/* ══════════════════════════════════════════════════════
   SEKTION 6: LEISTUNGS-STACK ("Das bekommst du")
   ══════════════════════════════════════════════════════ */

/* Stack-Wrapper */
.fc-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

/* Hero-Karte: 56 Live-Heilreisen */
.fc-stack-hero {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 40px 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Pill-Badge oben (wie fc-compare-badge) */
.fc-stack-hero-badge {
  position: absolute;
  top: -16px; left: 32px;
  background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 20px; border-radius: 50px;
  white-space: nowrap;
}

/* Titelzeile: Häkchen + Text */
.fc-stack-hero-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.fc-stack-hero-head h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin: 0;
}

/* Grünes Häkchen-Badge */
.fc-stack-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}
/* Kleines Häkchen für die 4er-Grid-Karten */
.fc-stack-check.sm {
  width: 22px; height: 22px;
  font-size: 12px;
}

/* 2-Spalten-Grid Morgens / Abends */
.fc-stack-hero-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.fc-stack-slot {
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.fc-stack-slot-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--green);
  margin-bottom: 6px;
}
.fc-stack-slot p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}

/* Abschlusszeile Hero */
.fc-stack-hero-close {
  font-size: 14px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.6;
  border-top: 1px solid var(--green-border);
  padding-top: 14px;
  margin-top: 2px;
}

/* 2-Spalten-Grid der 4 weiteren Leistungen */
.fc-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.fc-stack-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.fc-stack-item-body {}
.fc-stack-item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.3;
}
.fc-stack-item-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}

/* Wert-Überleitung: "Welchen Wert hat diese Begleitung?" */
.fc-value-bridge {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.fc-value-bridge h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.fc-value-bridge p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  color: var(--text-mid);
}

/* Preis-Auflösung */
.fc-price-reveal {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  color: var(--text-mid);
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 28px 36px;
}
.fc-price-reveal strong {
  color: var(--green);
  font-weight: 800;
}

/* Framing-Absatz über dem CTA-Button */
.fc-cta-frame {
  max-width: 580px;
  text-align: center;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
  color: var(--text-mid);
}

/* Responsive: Stack auf mobile */
@media (max-width: 768px) {
  .fc-stack-hero-detail { grid-template-columns: 1fr; }
  .fc-stack-grid        { grid-template-columns: 1fr; }
  .fc-stack-hero        { padding: 36px 24px 28px; }
  .fc-price-reveal      { padding: 22px 24px; }
}

/* ══════════════════════════════════════════════════════
   SEKTION 7: VIDEO-TESTIMONIALS (Erfahrungsberichte)
   ══════════════════════════════════════════════════════ */

/* Trust-Leiste über den Videos */
.fc-testi-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 28px;
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  border-radius: 50px;
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 500;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.6;
}
.fc-testi-trust .fc-trust-dot {
  color: var(--green);
  font-size: 18px;
  line-height: 1;
  vertical-align: middle;
  opacity: 0.7;
}

/* Responsives Video-Grid */
.fc-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
}

/* Einzelne Video-Karte */
.fc-video-card {
  background: var(--white);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .25s ease, transform .25s ease;
}
.fc-video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Namen-Streifen */
.fc-video-name {
  padding: 14px 18px 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--green);
  text-align: center;
  margin: 0;
}

/* 16:9-Aspekt-Wrapper */
.fc-video-embed {
  position: relative;
  padding-top: 56.25%;
}
.fc-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Staggered Reveal der Karten (analog fc-offer) */
.fc-testimonials .fc-video-grid.reveal { opacity: 1; transform: none; transition: none; }
.fc-testimonials .fc-video-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .25s ease, -webkit-transform .25s ease;
}
.fc-testimonials .fc-video-grid.visible .fc-video-card                { opacity: 1; transform: none; }
.fc-testimonials .fc-video-grid.visible .fc-video-card:nth-child(1)   { transition-delay: .00s; }
.fc-testimonials .fc-video-grid.visible .fc-video-card:nth-child(2)   { transition-delay: .08s; }
.fc-testimonials .fc-video-grid.visible .fc-video-card:nth-child(3)   { transition-delay: .16s; }
.fc-testimonials .fc-video-grid.visible .fc-video-card:nth-child(4)   { transition-delay: .24s; }
.fc-testimonials .fc-video-grid.visible .fc-video-card:nth-child(5)   { transition-delay: .32s; }
.fc-testimonials .fc-video-grid.visible .fc-video-card:nth-child(6)   { transition-delay: .40s; }
.fc-testimonials .fc-video-grid.visible .fc-video-card:nth-child(7)   { transition-delay: .48s; }
.fc-testimonials .fc-video-grid.visible .fc-video-card:nth-child(8)   { transition-delay: .56s; }
.fc-testimonials .fc-video-grid.visible .fc-video-card:nth-child(9)   { transition-delay: .64s; }

/* Responsive */
@media (max-width: 768px) {
  .fc-testi-trust { border-radius: var(--radius); padding: 14px 20px; }
}

/* ══════════════════════════════════════════════════════
   SEKTION 8: TEAM
   ══════════════════════════════════════════════════════ */

.fc-team-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.8;
  color: var(--text-mid);
}
.fc-team-intro p + p { margin-top: 16px; }
.fc-team-intro strong { color: var(--text); font-weight: 600; }

/* ── Gründer-Block ──────────────────────────────────────────── */
.fc-founder {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.fc-founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}
.fc-founder-content {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; text-align: left;
}
.fc-founder-name {
  font-size: clamp(24px, 3vw, 34px); font-weight: 700;
  color: var(--text); line-height: 1.2;
}
.fc-founder-content p {
  font-size: clamp(15px, 1.5vw, 16px); line-height: 1.8; color: var(--text-mid);
}
.fc-founder-content strong { color: var(--green-dark); font-weight: 700; }
.fc-founder-stats {
  display: flex; flex-wrap: wrap; gap: 22px 36px; margin-top: 10px;
}
.fc-founder-stat { display: flex; flex-direction: column; }
.fc-founder-stat-value {
  font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; color: var(--green); line-height: 1;
}
.fc-founder-stat-label { font-size: 13px; color: var(--text-light); margin-top: 4px; }

@media (max-width: 768px) {
  .fc-founder { grid-template-columns: 1fr; gap: 28px; }
  .fc-founder-photo { max-width: 280px; margin: 0 auto; }
  .fc-founder-content { align-items: center; text-align: center; }
  .fc-founder-stats { justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   SEKTION 9: QUALIFIZIERUNG (fc-fit)
   ══════════════════════════════════════════════════════ */

/* Atmosphäre */
.fc-fit { position: relative; overflow: hidden; }
.fc-fit::before {
  content: ''; position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 0%,   rgba(74,124,89,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 110%, rgba(74,124,89,0.05) 0%, transparent 50%);
}
.fc-fit .fc-section-inner { position: relative; z-index: 1; }

/* Zwei-Spalten-Grid */
.fc-qualify-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Panel-Basis */
.fc-qualify-panel {
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* „Für dich"-Panel: hell/grün */
.fc-qualify-panel.fit {
  background: linear-gradient(135deg, #f0f7f2 0%, #e8f4ed 100%);
  border: 1px solid var(--green-border);
  box-shadow: var(--shadow);
}

/* „Nicht für dich"-Panel: gedämpft/grau */
.fc-qualify-panel.unfit {
  background: #EEF0EF;
  border: 1px solid #C8D4CF;
}

/* Label / Pill */
.fc-qualify-label {
  display: inline-block;
  align-self: flex-start;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 6px 16px; border-radius: 50px;
}
.fc-qualify-label.fit {
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  color: var(--green);
}
.fc-qualify-label.unfit {
  background: #DAE4E1;
  color: #4A6B62;
}

/* Listen: kein list-style, Marker per ::before */
.fc-qualify-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0; padding: 0;
}
.fc-qualify-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.65;
}
.fc-qualify-list.fit li   { color: var(--text); }
.fc-qualify-list.unfit li { color: var(--text-mid); }

/* Marker */
.fc-qualify-list.fit li::before {
  content: '✓';
  position: absolute; left: 0; top: 1px;
  font-size: 14px; font-weight: 700;
  color: var(--green);
  line-height: 1.65;
}
.fc-qualify-list.unfit li::before {
  content: '—';
  position: absolute; left: 0; top: 1px;
  font-size: 14px; font-weight: 400;
  color: var(--text-light);
  line-height: 1.65;
}

/* Soft-CTA-Block */
.fc-fit-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.fc-fit-cta .fc-bridge { margin: 0; font-style: italic; }

/* Ehrliches-Wort-Callout */
.fc-honest {
  max-width: 720px; width: 100%;
  background: var(--white);
  border: 1px solid var(--green-border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 12px;
}
.fc-honest-label {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--green);
}
.fc-honest p {
  font-size: 15px; line-height: 1.75;
  color: var(--text-mid); margin: 0;
}

/* Staggered Reveal der Panel-Karten */
.fc-qualify-grid.reveal { opacity: 1; transform: none; transition: none; }
.fc-qualify-panel {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.fc-qualify-grid.visible .fc-qualify-panel              { opacity: 1; transform: none; }
.fc-qualify-grid.visible .fc-qualify-panel:nth-child(1) { transition-delay: 0s; }
.fc-qualify-grid.visible .fc-qualify-panel:nth-child(2) { transition-delay: .14s; }

/* Responsive */
@media (max-width: 768px) {
  .fc-qualify-grid { grid-template-columns: 1fr; }
  .fc-honest       { padding: 22px 18px; }
}

/* ══════════════════════════════════════════════════════
   SEKTION 10: RHYTHMUS (fc-rhythm)
   ══════════════════════════════════════════════════════ */

/* Drei-Kacheln-Grid */
.fc-rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

/* Einzelne Kachel – Basis */
.fc-rhythm-card {
  background: var(--white);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-rhythm-icon  { font-size: 34px; display: block; line-height: 1; }
.fc-rhythm-title { font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.3; }
.fc-rhythm-body  { font-size: 15px; line-height: 1.7; color: var(--text-mid); margin: 0; }

/* Staggered Reveal — scoped auf .fc-rhythm um Kaskade zu isolieren */
.fc-rhythm-grid.reveal { opacity: 1; transform: none; transition: none; }
.fc-rhythm .fc-rhythm-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .25s ease;
}
.fc-rhythm .fc-rhythm-grid.visible .fc-rhythm-card              { opacity: 1; transform: none; }
.fc-rhythm .fc-rhythm-grid.visible .fc-rhythm-card:nth-child(1) { transition-delay: 0s; }
.fc-rhythm .fc-rhythm-grid.visible .fc-rhythm-card:nth-child(2) { transition-delay: .12s; }
.fc-rhythm .fc-rhythm-grid.visible .fc-rhythm-card:nth-child(3) { transition-delay: .24s; }
.fc-rhythm .fc-rhythm-grid.visible .fc-rhythm-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Verknappungs-Box — gold-getönt für Dringlichkeit */
.fc-scarcity {
  max-width: 720px; width: 100%;
  background: linear-gradient(135deg, #fffdf5 0%, #fff8e8 100%);
  border: 1px solid rgba(245,200,66,0.40);
  border-left: 4px solid #F5C842;
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  box-shadow: 0 0 20px rgba(245,200,66,0.15), var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.fc-scarcity-icon { font-size: 26px; flex-shrink: 0; line-height: 1.55; }
.fc-scarcity p    { font-size: 16px; line-height: 1.75; color: var(--text); margin: 0; }
.fc-scarcity strong { color: #9A6010; }

/* Responsive */
@media (max-width: 768px) {
  .fc-rhythm-grid { grid-template-columns: 1fr; }
  .fc-scarcity    { padding: 20px 18px; }
}

/* ══════════════════════════════════════════════════════
   SEKTION 11: FAQ (fc-faq)
   ══════════════════════════════════════════════════════ */

/* Accordion-Container */
.fc-faq {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Einzelne FAQ-Karte */
.fc-faq-item {
  background: var(--white);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.fc-faq-item[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}

/* Summary / Frage-Zeile */
.fc-faq-q {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  transition: background .2s ease;
  user-select: none;
}
.fc-faq-q:hover { background: var(--green-pale); }

/* Standard-Dreieck entfernen */
.fc-faq-q::-webkit-details-marker { display: none; }
.fc-faq-q::marker { display: none; }

/* Rotierender Chevron via ::after */
.fc-faq-q::after {
  content: '▾';
  flex-shrink: 0;
  font-size: 20px;
  color: var(--green);
  line-height: 1;
  display: inline-block;
  transition: transform .3s ease;
}
.fc-faq-item[open] .fc-faq-q::after {
  transform: rotate(180deg);
}

/* Antwort-Bereich */
.fc-faq-a {
  padding: 0 24px 22px;
  border-top: 1px solid var(--green-border);
}
.fc-faq-a p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-mid);
  margin: 16px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .fc-faq-q { padding: 16px 18px; }
  .fc-faq-a { padding: 0 18px 18px; }
}

/* ══════════════════════════════════════════════════════
   SEKTION 12: FINALER CTA (fc-final)
   ══════════════════════════════════════════════════════ */

.fc-final {
  padding: clamp(80px, 10vw, 140px) 0;
  background:
    /* Vignette — etwas stärker als Hero für mehr Dramatik */
    radial-gradient(ellipse at 50% 45%, rgba(0,0,0,0.22) 0%, transparent 70%),
    /* Dunkelgrüner Scrim — leicht dunkler als Hero */
    linear-gradient(to bottom,
      rgba(24,40,32,0.72) 0%,
      rgba(24,40,32,0.50) 45%,
      rgba(24,40,32,0.78) 100%),
    url('hero.jpg') center center / cover no-repeat;
  position: relative; overflow: hidden;
  text-align: center;
}

.fc-final-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.fc-final-headline {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.fc-final-headline em {
  font-style: normal;
  color: #a8d5b5;
}

.fc-final-body {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 580px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.fc-final-urgency {
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 560px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.fc-final-urgency strong { color: #fff; }

.fc-final-note {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: .02em;
}

/* Responsive */
@media (max-width: 768px) {
  .fc-final { padding: 70px 0 80px; }
}

/* ── COACH-KARTEN GRID (Sektion 8) ─────────────────────────── */
.fc-coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 240px));
  justify-content: center;
  align-items: start;   /* Verhindert, dass Karten leer mitwachsen */
  gap: 24px;
  width: 100%;
  max-width: 960px;
  margin: 48px auto 0;
}

.fc-coach-card {
  background: var(--white);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.fc-coach-card.is-active,
.fc-coach-card.is-open {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
}

/* Button = sichtbare Karte */
.fc-coach-head {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  width: 100%;
  border: 0;
  background: none;
  font: inherit;
  text-align: left;
  user-select: none;
}

/* Foto */
.fc-coach-photo {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.fc-coach-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .35s ease;
}
.fc-coach-card:hover .fc-coach-photo img,
.fc-coach-card.is-active .fc-coach-photo img {
  transform: scale(1.03);
}

/* Name */
.fc-coach-name {
  display: block;
  width: 100%;
  padding: 16px 20px 4px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* Toggle-Zeile */
.fc-coach-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 20px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .01em;
}
.fc-coach-toggle::after {
  content: '▾';
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  transition: transform .3s ease;
  color: var(--green);
}
.fc-coach-card.is-active .fc-coach-toggle::after,
.fc-coach-card.is-open   .fc-coach-toggle::after {
  transform: rotate(180deg);
}

/* ── COACH MOBILE AKKORDEON (≤ 768px) ─────────────────────── */
@media (max-width: 768px) {
  /* Bio inline einblendbar – überschreibt das HTML-hidden-Attribut */
  .fc-coach-card .fc-coach-bio-src {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transition: max-height .35s ease, padding .35s ease, opacity .3s ease;
  }
  .fc-coach-card.is-open .fc-coach-bio-src {
    max-height: 1500px;
    padding: 0 20px 20px;
    opacity: 1;
  }
}

/* ── COACH MODAL / LIGHTBOX ──────────────────────────────── */
body.fc-modal-open {
  overflow: hidden;
}

/* Wrapper: füllt den Viewport */
.fc-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  /* Ein-/Ausblenden */
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.fc-modal.is-open {
  opacity: 1;
  visibility: visible;
}

/* Halbtransparenter Hintergrund */
.fc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  cursor: pointer;
}

/* Dialog-Box */
.fc-modal-dialog {
  position: relative;
  width: min(92vw, 780px);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  /* Leichte Scale-Animation */
  transform: scale(.96) translateY(10px);
  transition: transform .28s ease;
}
.fc-modal.is-open .fc-modal-dialog {
  transform: scale(1) translateY(0);
}

/* Schließen-Button (oben rechts) */
.fc-modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 14px 14px 0 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--green-border);
  border-radius: 50%;
  background: var(--white);
  font-size: 16px;
  line-height: 1;
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  z-index: 2;
}
.fc-modal-close:hover {
  background: var(--green-border);
  color: var(--text);
}

/* Inneres Layout: Foto links, Bio rechts */
.fc-modal-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 0 36px 32px 32px;
  align-items: start;
  clear: both;
}
.fc-modal-photo {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
}
.fc-modal-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.fc-modal-body {
  display: flex;
  flex-direction: column;
}
.fc-modal-name {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.25;
}
.fc-modal-bio p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0 0 12px;
}
.fc-modal-bio p:last-child { margin-bottom: 0; }

/* Navigation: Zurück / Weiter */
.fc-modal-nav {
  display: flex;
  gap: 12px;
  padding: 20px 32px 28px;
  border-top: 1px solid var(--green-border);
}
.fc-modal-nav button {
  border: 1px solid var(--green-border);
  background: none;
  border-radius: 6px;
  padding: 8px 20px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.fc-modal-nav button:hover:not(:disabled) {
  background: #f0f6f2;
  border-color: var(--green);
}
.fc-modal-nav button:disabled {
  opacity: .35;
  cursor: default;
}

/* Responsive: unter 640px einspaltig */
@media (max-width: 640px) {
  .fc-modal-inner {
    grid-template-columns: 1fr;
    padding: 0 20px 24px;
    gap: 20px;
  }
  .fc-modal-photo {
    max-width: 140px;
  }
  .fc-modal-nav {
    padding: 16px 20px 24px;
  }
}
