/* ============================================================================
   FUNNEL THEME — "Fire Light · Editorial"
   Universelle Marketingjoes-Funnel-Vorlage (Opt-in · Upsell · Danke)
   Erste Skin: Franzi Koppelmann — Find Your Fire Festival

   >>> WIEDERVERWENDEN FÜR ANDERE KUNDEN <<<
   Es reicht, den :root-SKIN-Block unten zu tauschen (Farben + Fonts).
   Der Rest (Struktur, Effekte, Responsive) bleibt unangetastet.
   Details: siehe README.md
   ============================================================================ */

/* ===========================================================================
   1) SKIN — pro Kunde anpassen (das ist die "universelle" Stellschraube)
   =========================================================================== */
:root {
  /* Flächen — Franzi-Brand: Sand */
  --bg:          #E6E3DF;   /* Sand — warmer, ruhiger Hintergrund (Brand) */
  --bg-warm:     #DCD7CF;   /* tieferer Sand — alternierende Sektion */
  --surface:     #FFFFFF;   /* Karten / helle Sektion */
  --ember:       #2C2B27;   /* warmes Dunkel-Stein — Kontrast-Sektion */
  --ember-2:     #3B3933;   /* dunkle Sektion, Verlauf-Partner */

  /* Akzent — Franzi-Brand: Feuer (Korall/Pfirsich) */
  --fire:        #FF9D7D;   /* Feuer — Brand-Akzent, CTA-Flächen, Highlights */
  --fire-deep:   #C75B34;   /* dunklere Schattierung des Feuers — Text/Links/Kontrast */
  --sun:         #FFC2A8;   /* helle Feuer-Tönung — Glow / Akzent auf Dunkel */
  --gold:        #D9613A;   /* warme Feuer-Tiefe — feine Akzente */

  /* Text (warm-neutral, lesbar auf Sand) */
  --text:        #2E2B27;   /* warmes Anthrazit */
  --text-soft:   #6E6A62;   /* gedämpft, lesbar */
  --text-faint:  #918C84;   /* leise */
  --on-dark:     #F4F1EC;   /* Text auf dunkler Sektion */
  --on-dark-soft:#C9C5BD;   /* gedämpft auf dunkel */

  /* Linien & Marker (Stein-basiert) */
  --marker:      rgba(255, 157, 125, 0.55);  /* Feuer-Highlighter */
  --line:        rgba(120, 112, 100, 0.20);  /* Stein-Linie */
  --line-strong: rgba(120, 112, 100, 0.30);
  --line-dark:   rgba(255, 255, 255, 0.12);

  /* Fonts — Franzi-Brand */
  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;

  /* System */
  --radius:    22px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --maxw: 1140px;
  --shadow-soft: 0 18px 50px rgba(74, 42, 20, 0.10);
  --shadow-card: 0 12px 36px rgba(74, 42, 20, 0.08);
  --shadow-fire: 0 16px 38px rgba(255, 157, 125, 0.42);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ===========================================================================
   2) Base
   =========================================================================== */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(1200px 560px at 82% -8%, rgba(242, 166, 90, 0.22) 0%, transparent 60%),
    radial-gradient(900px 540px at -8% 12%, rgba(232, 100, 47, 0.10) 0%, transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  font-weight: 600;
}
p { margin: 0 0 16px; }
a { color: var(--fire-deep); }
strong { font-weight: 700; }

.ic { width: 18px; height: 18px; flex: none; }

/* ===========================================================================
   3) Layout-Primitives
   =========================================================================== */
.section {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 24px;
}
.section.tight { padding-top: clamp(40px, 5vw, 64px); }

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--fire-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--fire);
  border-radius: 2px;
}
.kicker.center { justify-content: center; }

.section-heading { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-heading.narrow { max-width: 640px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { color: var(--text-soft); font-size: 18px; }

h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  margin-bottom: 16px;
}
h3 { font-size: 21px; font-weight: 600; }

/* Marker-Highlight (multiline-robust) */
.marker {
  background: linear-gradient(180deg, transparent 58%, var(--marker) 58%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 2px;
  border-radius: 2px;
}
/* animierter Marker beim Reveal */
.reveal .marker { background: none; }
.reveal.in-view .marker {
  background: linear-gradient(90deg, var(--marker), var(--marker)) no-repeat;
  background-position: 0 88%;
  background-size: 100% 42%;
  transition: background-size 0.8s var(--ease) 0.3s;
  animation: marker-sweep 0.9s var(--ease) 0.3s both;
}
@keyframes marker-sweep {
  from { background-size: 0 42%; }
  to   { background-size: 100% 42%; }
}

/* Panels / Cards */
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.panel:hover {
  border-color: rgba(232, 100, 47, 0.40);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

/* ===========================================================================
   4) Scroll-Reveal + Sun-Glow Deko
   =========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.reveal-group > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-group > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-group > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-group > .reveal:nth-child(6) { transition-delay: 0.40s; }

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: glow-drift 16s ease-in-out infinite alternate;
}
.glow-1 { width: 460px; height: 460px; top: -130px; right: -90px; background: rgba(242, 166, 90, 0.35); }
.glow-2 { width: 380px; height: 380px; bottom: -150px; left: -120px; background: rgba(232, 100, 47, 0.18); animation-delay: 3s; }
.glow-3 { width: 420px; height: 420px; top: 8%; right: -160px; background: rgba(242, 166, 90, 0.20); }

@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(26px, 22px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.in-view .marker { animation: none; background: linear-gradient(180deg, transparent 58%, var(--marker) 58%); }
  .glow, .badge-float, .marquee-track, .pulse-dot { animation: none !important; }
}

/* ===========================================================================
   5) Buttons
   =========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border: 0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:active { transform: scale(0.985); }
.btn .ic { transition: transform 0.2s ease; }
.btn:hover .ic { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, #FFB59A 0%, var(--fire) 100%);
  color: var(--text);
  box-shadow: var(--shadow-fire);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(255, 157, 125, 0.55); }

.btn-ghost {
  background: transparent;
  color: var(--fire-deep);
  border: 1.6px solid var(--fire);
}
.btn-ghost:hover { background: var(--fire); color: #fff; }

.btn-light {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.btn-lg { padding: 19px 40px; font-size: 17px; }
.btn-block { width: 100%; }

:focus-visible {
  outline: 3px solid var(--fire);
  outline-offset: 2px;
  border-radius: 6px;
}

.cta-note {
  font-size: 14px;
  color: var(--text-faint);
  margin: 14px 0 0;
}
.cta-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.cta-stack.center { align-items: center; text-align: center; }

/* ===========================================================================
   6) Header
   =========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 34px);
  background: rgba(251, 246, 239, 0.78);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--fire), var(--fire-deep));
  color: #fff;
  font-size: 17px;
}
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a:not(.nav-cta) {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-soft);
  transition: color 0.2s ease;
}
.nav a:not(.nav-cta):hover { color: var(--text); }
.nav-cta {
  background: var(--fire);
  color: var(--text) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-fire); }

/* ===========================================================================
   7) Hero
   =========================================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(32px, 4vw, 56px);
  overflow: visible;
}
.hero-note { font-size: 14px; color: var(--text-soft); margin: 16px 0 0; font-weight: 600; }
.pre-headline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--fire-deep);
  margin-bottom: 18px;
  max-width: 46ch;
}
.hero-lead { font-size: 19px; line-height: 1.7; color: var(--text-soft); max-width: 54ch; margin-bottom: 18px; }
.hero-subheadline {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  max-width: 58ch;
  margin: 0 0 28px;
  font-weight: 500;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-card);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fire); }
.pulse-dot { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.7); } }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Portrait-Card (Foto Franzi) */
.portrait-card { position: relative; margin: 0; z-index: 1; }
.portrait-card img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px rgba(74, 42, 20, 0.20);
}
.img-fallback { display: none; }
.img-missing img { display: none; }
.img-missing .img-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  background:
    radial-gradient(400px 320px at 65% 25%, rgba(242, 166, 90, 0.30) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg-warm) 0%, #EBDAC6 100%);
  border: 1px dashed var(--line-strong);
  color: var(--text-soft);
  text-align: center;
  font-size: 15px;
  padding: 24px;
}
.img-fallback .ph-icon { font-size: 34px; }
.img-fallback small { color: var(--text-faint); }

.float-badge {
  position: absolute;
  bottom: 18px;
  left: -18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ember);
  color: var(--on-dark);
  border: 1px solid rgba(242, 166, 90, 0.45);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  animation: badge-float 5s ease-in-out infinite;
}
.float-badge .bf-icon { font-size: 22px; }
.float-badge strong { display: block; font-family: var(--font-head); color: var(--sun); font-size: 16px; line-height: 1.2; }
.float-badge span { color: var(--on-dark-soft); font-size: 12.5px; }
@keyframes badge-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Countdown */
.countdown { display: flex; gap: 10px; margin: 4px 0 26px; }
.cd-box {
  min-width: 66px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  padding: 10px 8px;
  box-shadow: var(--shadow-card);
}
.cd-box strong { display: block; font-family: var(--font-head); font-size: 26px; line-height: 1; color: var(--fire-deep); font-variant-numeric: tabular-nums; }
.cd-box span { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }

/* ===========================================================================
   8) Marquee
   =========================================================================== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
  padding: 16px 0;
}
.marquee-track { display: flex; align-items: center; gap: 30px; width: max-content; animation: marquee 34s linear infinite; }
.marquee span {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 17px;
  color: var(--text-soft);
  white-space: nowrap;
}
.marquee i { color: var(--fire-deep); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===========================================================================
   9) Generische Sektion-Hintergründe
   =========================================================================== */
.bg-warm { background: var(--bg-warm); }
.bg-surface { background: var(--surface); }
.band { /* volle Breite, eigener Hintergrund, innen .section */ position: relative; }
.band.warm { background: var(--bg-warm); }
.band.surface { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Dunkle Ember-Sektion (Kontrast) */
.band.ember {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(700px 380px at 50% -10%, rgba(242, 166, 90, 0.14) 0%, transparent 60%),
    linear-gradient(165deg, var(--ember-2) 0%, var(--ember) 100%);
  color: var(--on-dark);
}
.band.ember h1, .band.ember h2, .band.ember h3 { color: var(--on-dark); }
.band.ember .section-sub, .band.ember p { color: var(--on-dark-soft); }
.band.ember .kicker { color: var(--sun); }
.band.ember .kicker::before { background: var(--sun); }

/* ===========================================================================
   10) Pain-Liste (✗-Bullets)  +  Pattern-Interrupt
   =========================================================================== */
.pain-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--fire);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(28px, 4vw, 44px);
}
.pain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.pain-list li { position: relative; padding-left: 34px; color: var(--text); font-size: 16.5px; line-height: 1.6; }
.pain-list li::before {
  content: "✕";
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(194, 65, 12, 0.12);
  color: var(--fire-deep);
  border-radius: 50%;
  font-size: 12px; font-weight: 800;
}

.interrupt {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.interrupt .big {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.interrupt .stamp {
  display: inline-block;
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--sun);
  margin-bottom: 8px;
}
.interrupt .lead-lines p { font-size: 20px; margin: 0 0 6px; }

/* ===========================================================================
   11) Outcome-Cards (✅) / Benefits-Grid
   =========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.feature-card { padding: 30px 28px; }
.feature-card .fc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.feature-card .check {
  flex: none;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: rgba(232, 100, 47, 0.12);
  color: var(--fire-deep);
  font-weight: 800;
}
.feature-card h3 { margin: 0; font-size: 19px; }
.feature-card p { margin: 0; color: var(--text-soft); font-size: 15.5px; }

/* ===========================================================================
   12) Agenda / 2-Tage-Timeline
   =========================================================================== */
.agenda { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.day-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.day-head {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #FFB59A 0%, var(--fire) 100%);
  color: var(--text);
}
.day-head .day-tag { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }
.day-head h3 { color: var(--text); margin: 2px 0 0; font-size: 22px; }
.day-head .flame { font-size: 24px; }
.modules { list-style: none; margin: 0; padding: 14px 26px 26px; display: grid; gap: 6px; }
.module { padding: 16px 0; border-bottom: 1px solid var(--line); }
.module:last-child { border-bottom: 0; }
.module .m-top { display: flex; align-items: baseline; gap: 12px; }
.module .m-num {
  flex: none;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700;
  color: #fff;
  background: var(--ember);
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.module h4 { margin: 0; font-family: var(--font-head); font-size: 17px; }
.module ul { list-style: none; margin: 8px 0 0; padding: 0 0 0 42px; display: grid; gap: 5px; }
.module ul li { position: relative; padding-left: 18px; color: var(--text-soft); font-size: 14.5px; line-height: 1.55; }
.module ul li::before { content: "→"; position: absolute; left: 0; color: var(--fire); font-weight: 700; }

/* ===========================================================================
   13) Zwei-Spalten Gut/Schlecht  (Für wen / Nicht für wen) + Transformation
   =========================================================================== */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.split-card { border-radius: var(--radius); padding: 32px 30px; }
.split-card.good {
  background:
    radial-gradient(420px 260px at 80% 0%, rgba(242, 166, 90, 0.18) 0%, transparent 60%),
    var(--surface);
  border: 2px solid rgba(232, 100, 47, 0.55);
  box-shadow: var(--shadow-soft);
}
.split-card.bad { background: var(--surface); border: 1px solid var(--line); opacity: 0.96; }
.split-label { font-family: var(--font-head); font-weight: 600; font-size: 19px; margin-bottom: 18px; }
.split-card.good .split-label { color: var(--fire-deep); }
.split-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.split-list li { position: relative; padding-left: 32px; color: var(--text-soft); font-size: 15.5px; line-height: 1.6; }
.split-list li::before { position: absolute; left: 0; top: 0; font-weight: 800; }
.split-card.good li { color: var(--text); }
.split-card.good li::before { content: "✓"; color: var(--fire); }
.split-card.bad li::before { content: "✕"; color: #B0654E; }

/* Transformation (Vorher/Nachher) */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.ba-card { border-radius: var(--radius); padding: 32px 30px; }
.ba-card.before { background: var(--surface); border: 1px solid var(--line); }
.ba-card.after {
  background:
    radial-gradient(420px 280px at 70% 0%, rgba(242, 166, 90, 0.22) 0%, transparent 60%),
    linear-gradient(165deg, var(--ember-2) 0%, var(--ember) 100%);
  border: 1px solid rgba(242, 166, 90, 0.4);
  color: var(--on-dark);
}
.ba-card h3 { font-size: 22px; margin-bottom: 18px; }
.ba-card.after h3 { color: var(--sun); }
.ba-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.ba-list li { position: relative; padding-left: 30px; font-size: 15.5px; line-height: 1.55; }
.ba-card.before li { color: var(--text-soft); }
.ba-card.before li::before { content: "•"; position: absolute; left: 4px; color: var(--text-faint); font-size: 20px; line-height: 1; top: 0; }
.ba-card.after li { color: var(--on-dark); }
.ba-card.after li::before { content: "🔥"; position: absolute; left: 0; font-size: 14px; }

/* ===========================================================================
   14) Bio
   =========================================================================== */
.bio { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.bio-photo { margin: 0; }
.bio-photo img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 24px; border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}
.bio-photo.img-missing .img-fallback { aspect-ratio: 4/5; }
.bio-oneliner { font-family: var(--font-head); font-size: clamp(20px, 2.4vw, 26px); color: var(--text); font-style: italic; margin-bottom: 18px; }
.bio p { color: var(--text-soft); font-size: 16.5px; }
.bio .signature { font-family: var(--font-head); font-size: 24px; color: var(--fire-deep); margin-top: 6px; }

/* ===========================================================================
   15) FAQ
   =========================================================================== */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq details[open] { box-shadow: var(--shadow-card); border-color: rgba(232,100,47,0.35); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; cursor: pointer;
  padding: 18px 0;
  font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex: none; width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(232,100,47,0.12); color: var(--fire-deep);
  font-size: 22px; line-height: 1; transition: transform 0.3s var(--ease);
}
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .answer { padding: 0 0 20px; color: var(--text-soft); font-size: 15.5px; line-height: 1.65; }

/* ===========================================================================
   16) Final-CTA
   =========================================================================== */
.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding: clamp(88px, 12vw, 144px) 24px;
  background:
    radial-gradient(720px 400px at 50% 0%, rgba(242, 166, 90, 0.18) 0%, transparent 62%),
    linear-gradient(165deg, var(--ember-2) 0%, var(--ember) 100%);
  color: var(--on-dark);
}
.final-cta .dots {
  position: absolute; inset: 0; opacity: 0.10; pointer-events: none; z-index: -1;
  background-image: radial-gradient(var(--sun) 1px, transparent 1px);
  background-size: 26px 26px;
}
.final-inner { position: relative; max-width: 720px; margin: 0 auto; z-index: 1; }
.final-cta h2 { color: var(--on-dark); font-size: clamp(38px, 6vw, 64px); line-height: 1.05; }
.final-cta .kicker { color: var(--sun); justify-content: center; }
.final-cta p { color: var(--on-dark-soft); font-size: 18px; max-width: 54ch; margin: 0 auto 30px; }
.final-cta .cta-note { color: rgba(255,255,255,0.5); }

/* ===========================================================================
   17) Inline-Form (Opt-in → n8n)
   =========================================================================== */
.form-band { scroll-margin-top: 80px; }
.form-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 6px solid var(--fire);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 4vw, 40px);
}
.form-card h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 8px; }
.form-card .form-sub { color: var(--text-soft); margin-bottom: 24px; }
.field { display: block; margin-bottom: 16px; text-align: left; }
.field span { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.field input {
  width: 100%;
  font-family: var(--font-body); font-size: 16px;
  color: var(--text);
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xs);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus { outline: none; border-color: var(--fire); box-shadow: 0 0 0 3px rgba(232,100,47,0.16); }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; overflow: hidden; }
.form-consent { font-size: 12.5px; color: var(--text-faint); margin: 12px 0 0; }
.form-consent a { color: var(--fire-deep); }
.form-error { display: none; color: var(--fire-deep); font-size: 14px; margin-top: 12px; }
.form-error.show { display: block; }
.btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

/* ===========================================================================
   18) Trust-Badges-Leiste (unter CTA)
   =========================================================================== */
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 26px; justify-content: center; margin-top: 18px; }
.trust-row.left { justify-content: flex-start; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-soft); }
.trust-item .ti { color: var(--fire); }
.band.ember .trust-item, .final-cta .trust-item { color: var(--on-dark-soft); }
.band.ember .trust-item .ti, .final-cta .trust-item .ti { color: var(--sun); }

/* ===========================================================================
   19) UPSELL-spezifisch
   =========================================================================== */
.once-banner {
  text-align: center;
  background: rgba(194, 65, 12, 0.10);
  border-bottom: 1px solid rgba(194, 65, 12, 0.20);
  color: var(--fire-deep);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 11px 18px;
}
.video-slot {
  width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius);
  border: 1px solid rgba(232, 100, 47, 0.35);
  background:
    radial-gradient(500px 300px at 50% 0%, rgba(242,166,90,0.18) 0%, transparent 60%),
    linear-gradient(165deg, var(--bg-warm) 0%, #EBDAC6 100%);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-soft);
}
.video-slot iframe, .video-slot video { width: 100%; height: 100%; border: 0; display: block; object-fit: cover; }
.video-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--text-soft); text-align: center; }
.video-ph .play {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--fire); color: #fff; font-size: 24px;
  box-shadow: var(--shadow-fire);
}
.video-ph small { color: var(--text-faint); }

.price-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 24px; align-items: stretch; }
.price-card { border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; }
.price-card.standard { background: var(--surface); border: 1px solid var(--line); }
.price-card.vip {
  position: relative;
  background:
    radial-gradient(420px 280px at 75% 0%, rgba(242,166,90,0.20) 0%, transparent 60%),
    linear-gradient(165deg, var(--ember-2) 0%, var(--ember) 100%);
  border: 2px solid rgba(242, 166, 90, 0.55);
  box-shadow: var(--shadow-soft);
  color: var(--on-dark);
}
.price-card .pc-tag { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 6px; }
.price-card.vip .pc-tag { color: var(--sun); }
.price-card h3 { font-size: 24px; margin-bottom: 4px; }
.price-card.vip h3 { color: var(--on-dark); }
.price-amount { font-family: var(--font-head); font-size: 44px; line-height: 1; margin-bottom: 18px; color: var(--fire-deep); }
.price-card.vip .price-amount { color: var(--sun); }
.price-amount small { font-size: 16px; color: var(--text-faint); font-family: var(--font-body); }
.vip-ribbon {
  position: absolute; top: 18px; right: 18px;
  background: var(--fire); color: var(--text);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 999px;
}
.price-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; flex: 1; }
.price-list li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.5; }
.price-card.standard li { color: var(--text-soft); }
.price-card.vip li { color: var(--on-dark); }
.price-list li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; }
.price-card.standard li::before { color: var(--fire); }
.price-card.vip li::before { color: var(--sun); }
.price-list li.off { opacity: 0.5; }
.price-list li.off::before { content: "✕"; color: #B0654E; }

.decline-link { display: inline-block; margin-top: 16px; color: var(--text-faint); font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }
.decline-link:hover { color: var(--text-soft); }

/* Vergleichstabelle als Cards-Reihe (kein Markdown-Tabellen-KI-Tell) */
.compare { max-width: 760px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: center; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-row.head { background: var(--bg-warm); font-family: var(--font-head); }
.compare-row.head .col { font-size: 15px; font-weight: 700; }
.compare-row .feat { font-size: 15px; color: var(--text); font-weight: 600; }
.compare-row .col { text-align: center; font-weight: 700; }
.compare .yes { color: var(--fire); }
.compare .no { color: #C0876F; }
.compare .col.vip { color: var(--fire-deep); }

/* ===========================================================================
   20) DANKE-spezifisch
   =========================================================================== */
.steps { display: grid; gap: 18px; max-width: 720px; margin: 0 auto; }
.step-card { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 24px 26px; }
.step-card .s-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #FFB59A, var(--fire)); color: var(--text); font-family: var(--font-head); font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-card h3 { margin: 4px 0 6px; }
.step-card p { margin: 0; color: var(--text-soft); font-size: 15.5px; }
.step-card .btn { margin-top: 14px; }

.next-card { max-width: 620px; margin: 0 auto; text-align: center; }
.tg-card {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: linear-gradient(165deg, var(--ember-2) 0%, var(--ember) 100%);
  color: var(--on-dark);
  border: 1px solid rgba(242,166,90,0.35);
  border-radius: var(--radius);
  padding: clamp(28px,4vw,40px);
  box-shadow: var(--shadow-soft);
}
.tg-card h3 { color: var(--sun); }
.tg-card p { color: var(--on-dark-soft); }

/* ===========================================================================
   21) Footer
   =========================================================================== */
.site-footer {
  background: var(--ember);
  color: var(--on-dark-soft);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.site-footer .brand { color: var(--on-dark); }
.site-footer p { margin: 0; font-size: 14px; }
.site-footer nav { display: flex; gap: 22px; }
.site-footer nav a { color: var(--on-dark-soft); font-size: 14px; text-decoration: none; }
.site-footer nav a:hover { color: var(--sun); }
.footer-disclaimer { text-align: center; font-size: 12px; color: rgba(255,255,255,0.35); padding: 0 24px 28px; max-width: 820px; margin: 0 auto; }

/* ===========================================================================
   22) Sticky CTA
   =========================================================================== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--ember);
  border-top: 2px solid var(--fire);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-inner { max-width: var(--maxw); margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-inner .s-text strong { color: var(--on-dark); font-family: var(--font-head); font-size: 16px; }
.sticky-inner .s-text span { color: var(--on-dark-soft); font-size: 13.5px; }

/* ===========================================================================
   23) Responsive
   =========================================================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .portrait-card { max-width: 440px; }
  .bio { grid-template-columns: 1fr; }
  .bio-photo { max-width: 440px; }
}
@media (max-width: 768px) {
  .nav a:not(.nav-cta) { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .agenda { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.3fr 0.7fr 0.7fr; padding: 14px 16px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .sticky-inner .s-text span { display: none; }
  .step-card { grid-template-columns: 1fr; }
  .step-card .s-num { margin-bottom: -6px; }
}
@media (max-width: 480px) {
  .section { padding-left: 18px; padding-right: 18px; }
  .hero-actions .btn {
    width: 100%;
    white-space: nowrap;
  }
  .hero-actions .btn-lg {
    font-size: clamp(14px, 3.75vw, 15px);
    padding: 17px 18px;
    gap: 7px;
  }
  .hero-actions .btn .ic { width: 17px; height: 17px; }
  .countdown { justify-content: space-between; }
  .cd-box { min-width: 0; flex: 1; }
  .float-badge { left: 8px; }
  .glow { filter: blur(70px); }
}

/* ===========================================================================
   24) Recall (Problem links + Zweifel/Stopp rechts)
   =========================================================================== */
.recall { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.recall-pain {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--fire);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(26px, 3vw, 38px);
}
.recall-doubt {
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
  background: linear-gradient(165deg, rgba(255, 157, 125, 0.16) 0%, rgba(255, 157, 125, 0.05) 100%);
  border: 1px solid rgba(255, 157, 125, 0.40);
}
.doubt-intro { color: var(--text-soft); font-weight: 600; margin-bottom: 12px; }
.doubt-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.doubt-list li { font-family: var(--font-head); font-style: italic; color: var(--text); font-size: 17px; padding-left: 18px; position: relative; }
.doubt-list li::before { content: "„"; position: absolute; left: 0; color: var(--fire-deep); font-weight: 700; }
.recall-doubt .stopp { font-family: var(--font-head); font-weight: 700; font-size: clamp(28px, 3.4vw, 40px); color: var(--fire-deep); margin: 0 0 8px; }
.recall-doubt .stopp-lead { color: var(--text); font-size: 16.5px; margin-bottom: 12px; }
.recall-doubt .stopp-strong { color: var(--text); font-size: 17px; font-weight: 700; margin: 0; }

/* ===========================================================================
   25) Timeline (Agenda, MJ-Style vertikal)
   =========================================================================== */
.tl { position: relative; max-width: 720px; margin: 0 auto; }
.tl::before {
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(180deg, var(--fire) 0%, var(--line-strong) 100%);
}
.tl-day { display: flex; align-items: center; gap: 14px; padding-left: 76px; margin: 34px 0 16px; position: relative; }
.tl-day:first-child { margin-top: 0; }
.tl-day .flame { font-size: 26px; }
.tl-day .tl-day-title { font-family: var(--font-head); font-weight: 700; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.15; }
.tl-day .tl-day-title small { display: block; font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fire-deep); margin-bottom: 2px; }
.tl-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding-bottom: 24px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #FFB59A, var(--fire)); color: var(--text);
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center; z-index: 1;
  box-shadow: var(--shadow-card);
}
.tl-body { padding-top: 4px; }
.tl-body h4 { font-family: var(--font-head); font-size: 19px; margin: 0 0 8px; }
.tl-body ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.tl-body li { position: relative; padding-left: 20px; color: var(--text-soft); font-size: 15px; line-height: 1.55; }
.tl-body li::before { content: "→"; position: absolute; left: 0; color: var(--fire); font-weight: 700; }

/* ===========================================================================
   26) Modal (Opt-in Popup)
   =========================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 20px; overflow-y: auto;
  background: rgba(44, 43, 39, 0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.modal.open { display: flex; }
.modal-card {
  position: relative; width: 100%; max-width: 460px; margin: auto;
  background: var(--surface);
  border-radius: var(--radius); border-top: 6px solid var(--fire);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  padding: clamp(26px, 4vw, 38px);
  animation: modal-in 0.3s var(--ease);
}
@keyframes modal-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 12px; right: 12px; width: 38px; height: 38px;
  border: 0; border-radius: 50%; background: var(--bg-warm); color: var(--text);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s ease;
}
.modal-close:hover { background: #D8D2C9; }
.modal-card h2 { font-size: clamp(23px, 3vw, 30px); margin-bottom: 6px; }
.modal-sub { color: var(--text-soft); margin-bottom: 22px; font-size: 15px; }

/* ===========================================================================
   27) Legal Pages (Impressum / Datenschutz)
   =========================================================================== */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: clamp(48px, 7vw, 88px) 24px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; color: var(--fire-deep); text-decoration: none; font-weight: 600; font-size: 15px; }
.legal-back:hover { text-decoration: underline; }
.legal-wrap h1 { font-size: clamp(30px, 4.4vw, 44px); margin-bottom: 10px; }
.legal-lead { color: var(--text-soft); font-size: 17px; margin-bottom: 34px; }
.legal-wrap h2 { font-size: 20px; margin: 36px 0 10px; }
.legal-wrap p { color: var(--text-soft); font-size: 15.5px; line-height: 1.75; }
.legal-wrap a { color: var(--fire-deep); }
.legal-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px 24px; margin: 16px 0 8px;
}
.legal-card p { margin: 0; color: var(--text); line-height: 1.85; }

@media (max-width: 768px) {
  .recall { grid-template-columns: 1fr; }
  .tl-day { padding-left: 0; }
}

/* ===========================================================================
   28) Upsell-Hero (Video-Reihenfolge: auf Mobile direkt unter die Headline)
   =========================================================================== */
.upsell-hero {
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-areas: "head media" "rest media";
  align-items: center;
  row-gap: 0;
}
.upsell-hero .uh-head { grid-area: head; }
.upsell-hero .uh-media { grid-area: media; }
.upsell-hero .uh-rest { grid-area: rest; margin-top: 22px; }
.upsell-hero .uh-head h1 { margin-bottom: 0; font-size: clamp(28px, 3vw, 44px); line-height: 1.16; }
@media (max-width: 768px) {
  .upsell-hero { grid-template-columns: 1fr; grid-template-areas: "head" "media" "rest"; }
  .upsell-hero .uh-media { margin: 20px 0; }
  .upsell-hero .uh-rest { margin-top: 4px; }
}
