/* ============================================================
   styles.css – werde-sturmfest.de
   Sturmfest-CI: Schieferblau · Waldgrün · Creme · Bernstein
   Fork-Basis: shared.css der Hauptsite (nilschristianwedtke.de)
   ============================================================ */

/* ========================================
   FONTS – self-hosted (kein Google-Request, DSGVO)
   Variable Fonts: Fraunces (opsz/wght/ital), Inter (wght)
   ======================================== */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/fraunces-latin-standard-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/fraunces-latin-standard-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin-wght-normal.woff2') format('woff2');
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: var(--bg);
  color-scheme: light;
}

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-family: var(--font-body);
  font-optical-sizing: auto;
}

/* Astra-Hover global neutralisieren: das Theme faerbt Links/Buttons beim
   Hover global um (gold). :where() haelt die Spezifitaet niedrig -> diese
   Regel schlaegt Astras generische a:hover/button:hover (gleiche Spezifitaet,
   laedt spaeter), verliert aber gegen jede eigene .klasse:hover unten.
   Dadurch bleiben gewollte Hover (Footer-/FAQ-Akzent, Button-BG) erhalten,
   ungewollter Gold-Bleed (vs-handle etc.) verschwindet ohne Einzel-Patch. */
:where(.sturmfest-lp-page) a:hover,
:where(.sturmfest-lp-page) a:focus,
:where(.sturmfest-lp-page) button:hover,
:where(.sturmfest-lp-page) button:focus {
  color: inherit;
  background-color: transparent;
}

/* ========================================
   CUSTOM PROPERTIES – STURMFEST CI
   ======================================== */
:root {
  /* Kernpalette */
  --primary:      #2E4A62;   /* Schieferblau – Tiefe, Ernst */
  --primary-hover:#263D52;
  --secondary:    #3D5C3A;   /* Waldgrün – Erdung */
  --bg:           #F2EDE3;   /* Creme – kein klinisches Weiß */
  --bg-card:      #FFFCF7;   /* Leicht heller als Creme (Cards) */
  --bg-warm:      #EBE4D5;   /* Creme Warm (Hover) */
  --accent:       #C8860A;   /* Bernstein – Licht im Sturm */
  --accent-hover: #B4770A;

  /* Text */
  --text:         #1C2C3A;   /* Ink – dunkler als Primär, besserer Kontrast */
  --text-muted:   #45525E;   /* dunkler & lesbarer (vorher #5C6A76) */
  --text-faint:   #6E7A85;

  /* Dark-Sektionen (Hero, finale CTA) */
  --storm:        #161E26;
  --storm-2:      #1E2B38;
  --on-dark:      #F2EDE3;
  --on-dark-muted:#B4BCC5;

  /* Borders */
  --border:       rgba(46, 74, 98, 0.14);
  --border-strong:rgba(46, 74, 98, 0.28);
  --border-dark:  rgba(242, 237, 227, 0.14);

  /* Typografie */
  --font-headline: 'Fraunces', 'Iowan Old Style', 'Palatino', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --content-max:     1200px;
}

/* ========================================
   NAV – statisch, schlicht, Creme-Pill
   ======================================== */
.site-nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2.5rem);
  max-width: 1100px;
  background: rgba(242, 237, 227, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(28, 44, 58, 0.08), 0 1px 4px rgba(28, 44, 58, 0.04);
}

.site-nav-inner {
  padding: 0.65rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-nav-brand {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.site-nav-brand:hover {
  color: var(--accent);
  background: rgba(46, 74, 98, 0.05);
}

.site-nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  align-items: center;
}

.site-nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.site-nav-links a:hover {
  color: var(--primary);
  background: rgba(46, 74, 98, 0.06);
}

.site-nav-links .nav-cta {
  background: var(--primary);
  color: var(--on-dark);
  padding: 0.55rem 1rem;
  margin-left: 0.4rem;
  letter-spacing: 0.04em;
}
.site-nav-links .nav-cta:hover {
  background: var(--primary-hover);
  color: var(--on-dark);
}

@media (max-width: 820px) {
  .site-nav-links li:not(:last-child) { display: none; }
  .site-nav-inner { padding: 0.55rem 0.9rem; }
}
@media (max-width: 480px) {
  .site-nav {
    top: 0.75rem;
    width: calc(100% - 1.5rem);
    border-radius: 12px;
  }
}

/* ========================================
   UTILITIES – Marker, Pinselstriche, Grain
   Farben: Bernstein bleibt der Akzent.
   ======================================== */

/* Bernsteiner Textmarker */
.marker {
  position: relative;
  display: inline;
  padding: 0;
  isolation: isolate;
}
.marker::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.34em;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18' preserveAspectRatio='none'%3E%3Cpath d='M2 12 C20 7, 35 15, 55 10 S90 5, 110 12 S145 16, 170 8 S190 13, 198 10' fill='none' stroke='%23C8860A' stroke-width='14' stroke-linecap='round' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Goldene Pinselstriche */
.brush-strokes {
  display: inline-block;
  width: 140px;
  height: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 48' preserveAspectRatio='none'%3E%3Cpath d='M5 14 C80 12, 200 17, 350 13 S550 18, 700 14 S850 17, 995 13' fill='none' stroke='%23C8860A' stroke-width='4' stroke-linecap='round' opacity='0.85'/%3E%3Cpath d='M3 24 C90 22, 220 27, 380 23 S580 28, 720 24 S870 27, 992 23' fill='none' stroke='%23C8860A' stroke-width='4.5' stroke-linecap='round' opacity='0.8'/%3E%3Cpath d='M15 34 C120 32, 250 37, 420 33 S600 38, 750 34 S900 37, 990 33' fill='none' stroke='%23C8860A' stroke-width='3.5' stroke-linecap='round' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.brush-divider {
  display: block;
  width: 100%;
  height: 48px;
  background: var(--bg);
  position: relative;
  z-index: 4;
}
.brush-divider .brush-strokes {
  width: 100%;
  height: 100%;
  display: block;
}

/* Film Grain / Papier-Textur auf Creme-Flächen */
.grain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.04' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)' opacity='.09'/%3E%3Crect width='250' height='250' filter='url(%23p)' opacity='.07'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  background-repeat: repeat;
}

/* Dunkle Sektionen: feiner Grain als bespoke-Schicht.
   Auf den dunklen Hero/Erstattung/Module/Final-CTA-Gradients liegt sonst
   nur Farbe – Crawford Premium-Baustein 1: subtiles Detail, das das Auge
   nicht bewusst registriert, aber das Tot-Statisch-Gefühl bricht.
   Niedrigere Opacity als auf Cream, damit der Sturm-Look erhalten bleibt. */
.hero::before,
.erstattung::before,
.module-section::before,
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.35;
  z-index: 1;
}
.hero, .erstattung, .module-section, .final-cta { position: relative; }
.hero > *, .erstattung > *, .module-section > *, .final-cta > * { position: relative; z-index: 2; }

/* Lens Flare auf Porträts */
.photo-flare::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(255, 200, 60, 0.55) 0%, rgba(230, 160, 30, 0.3) 35%, transparent 65%),
    linear-gradient(340deg, rgba(200, 50, 20, 0.4) 0%, rgba(180, 40, 15, 0.2) 30%, transparent 60%),
    linear-gradient(to bottom, rgba(255, 220, 120, 0.2) 0%, rgba(200, 130, 10, 0.12) 50%, rgba(180, 50, 20, 0.15) 100%);
  mix-blend-mode: screen;
}

/* ========================================
   SHARED HELPERS
   ======================================== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.section-pad { padding: 100px 0; }
.container { max-width: var(--content-max); margin: 0 auto; padding: 0 3rem; }

/* ========================================
   HERO – Dark, Sturm-Gradient
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--storm) 0%, var(--storm-2) 50%, var(--primary) 100%);
  /* So hoch, dass Hero + Kassenleiste den Viewport füllen und nur die
     Rechner-Überschrift als Scroll-Anker darunter hervorlugt. */
  min-height: calc(100svh - 230px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 116px 3rem 60px;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-inner { max-width: 640px; position: relative; z-index: 2; }
.hero-media { position: relative; z-index: 2; }
/* Bunny-Stream-Embed (ersetzt später .hero-video-ph) */
.hero-video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  background: #000;
}
.hero-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Hochwertiger stummer Loop als Poster (Facade – Klick lädt Bunny-Player) */
.hero-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none !important;
  background: #000 !important;
  box-shadow: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-poster .hero-loop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-poster .play-mini {
  position: relative;
  z-index: 2;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  color: var(--storm);
  background: rgba(200, 134, 10, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, background 0.18s ease;
}
.hero-video-poster:hover .play-mini {
  transform: scale(1.07);
  background: var(--accent);
}
.hero-video-poster .play-mini svg { display: block; }
.hero-video-ph {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  border: 1px solid rgba(242, 237, 227, 0.22);
  background:
    radial-gradient(120% 120% at 50% 40%, rgba(200,134,10,0.16) 0%, rgba(0,0,0,0) 60%),
    rgba(242, 237, 227, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.hero-video-play {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--storm);
  font-size: 1.4rem;
  padding-left: 4px;
  box-shadow: 0 6px 20px rgba(200,134,10,0.4);
}
.hero-video-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(242, 237, 227, 0.6);
  line-height: 1.5;
}
.hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--on-dark);
  line-height: 1.08;
  margin-bottom: 22px;
  text-wrap: balance;
}

/* Pointe-Unterton: kursiv + leicht zurückgenommen, aber klar lesbar.
   Wird in Hero-h1 und Final-CTA-h2 verwendet. Vorher inline 0.55/0.45
   – zu kontrastschwach auf dunklem Gradient (WCAG-grenzwertig). */
.undertone {
  font-style: italic;
  color: rgba(242, 237, 227, 0.82);
}
.hero-sub {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  color: rgba(242, 237, 227, 0.55);
  margin-bottom: 22px;
  line-height: 1.3;
}
.hero-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(242, 237, 227, 0.7);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 0 40px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--storm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 2.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  letter-spacing: 0.02em;
}
.hero-cta:hover {
  background: var(--accent-hover);
  color: var(--storm);
  transform: translateY(-1px);
}

/* ========================================
   ERSTATTUNGSRECHNER – Creme-Card
   ======================================== */
.rechner-section {
  background: var(--bg);
  padding: 90px 0 60px;
  border-bottom: 1px solid var(--border);
}
/* Zweiter Rechner (finaler Push) – warm abgesetzt + oben getrennt */
.rechner-section-2 {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}
.rechner-frame-text {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}
.rechner-frame-text h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.rechner-frame-text p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}
.sf-rechner {
  font-family: var(--font-body);
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(46, 74, 98, 0.12);
  border: 1px solid var(--border);
}
.sf-rechner h3 {
  font-family: var(--font-headline);
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 8px;
  text-align: center;
  line-height: 1.2;
}
.sf-rechner .subtitle {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  text-align: center;
  margin: 0 0 28px;
  line-height: 1.5;
}
.sf-rechner label {
  display: block;
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Typeahead */
.sf-combobox { position: relative; }
.sf-combobox input {
  width: 100%;
  padding: 14px 42px 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
.sf-combobox input::placeholder { color: rgba(46, 74, 98, 0.45); }
.sf-combobox input:focus { border-color: var(--accent); }
/* Andeutungs-Puls: das ganze Feld leuchtet beim Reinscrollen kurz auf ("hier eintragen") */
@keyframes sfInputPulse {
  0%, 100% {
    background: #fff; border-color: var(--primary);
    box-shadow: 0 0 0 0 rgba(200, 134, 10, 0);
  }
  50% {
    background: #FCEFD3; border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(200, 134, 10, 0.30),
                0 0 18px 2px rgba(200, 134, 10, 0.45),
                inset 0 0 14px rgba(200, 134, 10, 0.35);
  }
}
.sf-combobox.sf-hint input { animation: sfInputPulse 1.1s ease-in-out 2; }
@media (prefers-reduced-motion: reduce) {
  .sf-combobox.sf-hint input { animation: none; }
}
.sf-combobox-clear {
  position: absolute; top: 50%; right: 14px;
  transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  background: rgba(46, 74, 98, 0.1);
  color: var(--primary);
  font-size: 0.95rem; cursor: pointer; user-select: none;
  transition: background 0.2s;
}
.sf-combobox-clear:hover { background: rgba(46, 74, 98, 0.2); }
.sf-combobox.has-value .sf-combobox-clear { display: flex; }

.sf-kk-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1px solid rgba(46, 74, 98, 0.25);
  border-radius: 6px; max-height: 260px; overflow-y: auto;
  z-index: 20; margin: 0; padding: 4px 0;
  list-style: none;
  box-shadow: 0 8px 24px rgba(46, 74, 98, 0.15);
}
.sf-kk-list[hidden] { display: none; }
.sf-kk-list li {
  padding: 10px 16px; font-family: var(--font-body);
  font-size: 0.95rem; color: var(--primary); cursor: pointer;
  transition: background 0.15s;
}
.sf-kk-list li:hover,
.sf-kk-list li.active { background: rgba(200, 134, 10, 0.14); color: var(--text); }
.sf-kk-list li.no-match {
  color: rgba(46, 74, 98, 0.5); cursor: default; font-style: italic;
}
.sf-kk-list li.no-match:hover { background: transparent; color: rgba(46, 74, 98, 0.5); }

.sf-result {
  margin-top: 24px; padding: 28px 24px;
  background: var(--primary); border-radius: 8px;
  text-align: center; display: none;
}
.sf-result.visible,
.sf-result-unbekannt.visible,
.sf-result-privat.visible { display: block; animation: sfFadeIn 0.4s ease; }
@keyframes sfFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sf-result .erstattung-label {
  font-family: var(--font-body); color: rgba(242, 237, 227, 0.95);
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.14em; margin: 0 0 8px;
}
.sf-result .erstattung-betrag {
  font-family: var(--font-headline); color: var(--accent);
  font-size: 3.4rem; font-weight: 400; line-height: 1; margin: 0 0 6px;
}
.sf-result .erstattung-von {
  font-family: var(--font-body); color: rgba(242, 237, 227, 0.8);
  font-size: 0.88rem; margin: 0 0 18px;
}
.sf-result .eigenanteil {
  font-family: var(--font-body); color: var(--on-dark);
  font-size: 1rem; margin: 0; line-height: 1.4;
}
.sf-result .eigenanteil strong {
  color: var(--on-dark); font-size: 1.25rem; font-weight: 600;
}
.sf-result .hinweis {
  font-family: var(--font-body); color: rgba(242, 237, 227, 0.75);
  font-size: 0.75rem; font-weight: 300;
  margin: 14px 0 0; line-height: 1.6;
}
.sf-geschenkt {
  display: none; margin: 14px 0 0;
  font-family: var(--font-headline);
  color: var(--accent); font-size: 1.15rem;
  line-height: 1.3; font-style: italic;
  animation: sfPulse 2.4s ease-in-out infinite;
}
.sf-geschenkt.visible { display: block; }
@keyframes sfPulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}
.sf-result.is-free .erstattung-betrag { animation: sfBloom 0.8s ease; }
@keyframes sfBloom {
  0%   { transform: scale(0.8); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
.sf-result-unbekannt {
  margin-top: 24px; padding: 22px 24px;
  background: #fff; border: 2px solid var(--primary);
  border-radius: 8px; text-align: center; display: none;
}
.sf-result-unbekannt p {
  font-family: var(--font-body); color: var(--primary);
  font-size: 0.95rem; font-weight: 300; line-height: 1.65; margin: 0;
}
.sf-result-privat {
  margin-top: 24px; padding: 22px 24px;
  background: #fff; border: 2px solid var(--accent);
  border-radius: 8px; text-align: center; display: none;
}
.sf-result-privat p {
  font-family: var(--font-body); color: var(--text);
  font-size: 0.95rem; font-weight: 300; line-height: 1.65; margin: 0;
}

/* Warteliste-Form im Rechner */
.sf-warteliste {
  margin-top: 20px; padding: 26px 24px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 8px; text-align: center;
  display: none;
}
.sf-warteliste.visible { display: block; animation: sfFadeIn 0.4s ease 0.15s both; }
.sf-warteliste-headline {
  font-family: var(--font-headline);
  font-size: 1.35rem; font-weight: 400;
  color: var(--text); line-height: 1.25;
  margin: 0 0 8px;
}
.sf-warteliste-text {
  font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6; margin: 0 0 18px;
}
.sf-warteliste-form {
  display: flex; width: 100%; margin: 0 0 12px;
}
.sf-warteliste-form input[type="email"] {
  flex: 1; min-width: 0;
  background: #fff;
  border: 1px solid rgba(46, 74, 98, 0.25); border-right: none;
  border-radius: 999px 0 0 999px;
  color: var(--text); font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 300;
  padding: 0.8em 1.2em; outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.sf-warteliste-form input::placeholder { color: rgba(28, 44, 58, 0.8); }
.sf-warteliste-form input:focus { border-color: var(--accent); }
.sf-warteliste-form button {
  flex: 0 0 auto;
  background: var(--accent); color: var(--storm); border: none;
  border-radius: 0 999px 999px 0 !important;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  padding: 0.8em 1.4em; cursor: pointer; white-space: nowrap;
  transition: background 0.3s;
}
.sf-warteliste-form button:hover { background: var(--accent-hover); color: var(--storm); }
.sf-warteliste-footnote {
  font-family: var(--font-body);
  font-size: 0.72rem; color: var(--text-faint);
  line-height: 1.5; margin: 0;
}

/* ========================================
   PAIN POINTS
   ======================================== */
.pain { background: var(--bg); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pain-item {
  background: var(--bg-card);
  padding: 52px 40px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
}
.pain-item:hover { border-top-color: var(--accent); }
/* Touch-Geräte: Border permanent zeigen (hover funktioniert nicht). */
@media (hover: none) {
  .pain-item { border-top-color: rgba(200, 134, 10, 0.4); }
}
.pain-icon {
  display: block; margin-bottom: 24px; color: var(--accent);
  width: 32px; height: 32px;
}
.pain-icon svg {
  width: 100%; height: 100%; display: block;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.pain-item h3 {
  font-family: var(--font-headline); font-size: 1.25rem; font-weight: 400;
  color: var(--text); line-height: 1.25; margin-bottom: 10px;
}
.pain-item p {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.75;
}

/* ========================================
   WAS IST STURMFEST + STATS
   ======================================== */
.what { background: var(--bg); border-top: 1px solid var(--border); }
.what h2 {
  font-family: var(--font-headline); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--text); text-align: center;
  margin-bottom: 28px; line-height: 1.2; text-wrap: balance;
}
.what-text {
  max-width: 680px; margin: 0 auto;
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.85; text-align: center;
}
.what-text a {
  color: var(--text); border-bottom: 1px solid var(--accent);
  text-decoration: none; transition: color 0.2s;
}
.what-text a:hover { color: var(--accent); }

.what-kasse {
  max-width: 680px; margin: 20px auto 0;
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 500;
  color: var(--text); line-height: 1.6; text-align: center;
}
.what-kasse a {
  color: var(--accent); font-weight: 600; text-decoration: none;
  white-space: nowrap; margin-left: 0.4rem;
  border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.what-kasse a:hover { border-bottom-color: var(--accent); }

.stats {
  display: flex; justify-content: center; gap: 5rem;
  margin-top: 56px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-headline); font-size: 3.5rem; font-weight: 400;
  color: var(--accent); line-height: 1; display: block;
}
.stat-label {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-faint); margin-top: 8px; display: block;
}

/* Produktbild – Multi-Device-Mockup */
.product-shot { max-width: 860px; margin: 64px auto 0; text-align: center; }
.product-shot img {
  width: 100%; height: auto; display: block;
}
.product-shot-caption {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 400;
  color: var(--text-faint); margin-top: 16px;
}
/* Platzhalter, solange kein PNG hinterlegt ist */
.product-shot.is-empty::before {
  content: "Produktbild folgt\A images/sturmfest-produktmockup.png\A Multi-Device-Mockup: Laptop · Tablet · Smartphone · Workbook";
  white-space: pre-line;
  display: flex; align-items: center; justify-content: center;
  text-align: center; aspect-ratio: 16 / 9;
  border: 2px dashed var(--border-strong); border-radius: 14px;
  background: var(--bg-warm);
  font-family: var(--font-body); font-size: 0.85rem; line-height: 2;
  color: var(--text-faint); padding: 2rem;
}
.product-shot.is-empty .product-shot-caption { display: none; }

/* ========================================
   ERSTATTUNG (4 Schritte) – Dark
   ======================================== */
.erstattung {
  background: linear-gradient(135deg, var(--storm) 0%, var(--storm-2) 50%, var(--primary) 100%);
}
.erstattung h2 {
  font-family: var(--font-headline); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--on-dark); text-align: center;
  margin-bottom: 64px; line-height: 1.2; text-wrap: balance;
}
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.step {
  background: rgba(242, 237, 227, 0.04); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  background: rgba(200, 134, 10, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -26px rgba(0, 0, 0, 0.6),
              inset 0 0 0 1px rgba(200, 134, 10, 0.35);
  z-index: 1;
}
.step-number {
  font-family: var(--font-headline); font-size: 3rem; font-weight: 400;
  color: rgba(200, 134, 10, 0.35); line-height: 1;
  transition: color 0.3s ease;
}
.step:hover .step-number { color: var(--accent); }
.step-icon {
  display: block; color: var(--accent); width: 28px; height: 28px;
  transition: transform 0.3s ease;
}
.step:hover .step-icon { transform: scale(1.12); }
/* Stagger: Schritte beim Reinscrollen nacheinander einblenden */
@keyframes sfStepIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.steps-grid.sf-stagger .step { opacity: 0; animation: sfStepIn 0.55s ease forwards; }
.steps-grid.sf-stagger .step:nth-child(1) { animation-delay: 0s; }
.steps-grid.sf-stagger .step:nth-child(2) { animation-delay: 0.12s; }
.steps-grid.sf-stagger .step:nth-child(3) { animation-delay: 0.24s; }
.steps-grid.sf-stagger .step:nth-child(4) { animation-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .steps-grid.sf-stagger .step { opacity: 1; animation: none; }
}
.step-icon svg {
  width: 100%; height: 100%; display: block;
  stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.step h3 {
  font-family: var(--font-headline); font-size: 1.2rem; font-weight: 400;
  color: var(--on-dark); line-height: 1.2;
}
.step p {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 300;
  color: var(--on-dark-muted); line-height: 1.7;
}
.erstattung-note {
  text-align: center; margin-top: 40px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 300;
  color: rgba(242, 237, 227, 0.55); line-height: 1.6;
}
.erstattung-note a {
  color: rgba(242, 237, 227, 0.8);
  border-bottom: 1px solid rgba(200, 134, 10, 0.45);
  text-decoration: none;
}
.erstattung-note a:hover { color: var(--accent); }

/* ========================================
   MODULE – Dark Gradient, 8 Kacheln
   ======================================== */
.module-section {
  background: linear-gradient(135deg, var(--storm) 0%, var(--storm-2) 60%, var(--primary) 100%);
  border-top: 1px solid var(--border-dark);
}
.module-section h2 {
  font-family: var(--font-headline); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--on-dark); margin-bottom: 12px;
}
.module-section .sub {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  color: rgba(242, 237, 227, 0.55); margin-bottom: 56px;
}
.modules-accordion {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  align-items: start;
}
.module-item {
  background: rgba(242, 237, 227, 0.03);
  transition: background 0.3s;
}
.module-item[open] { background: rgba(242, 237, 227, 0.06); }
.module-summary {
  list-style: none; cursor: pointer;
  display: flex; gap: 1.25rem; align-items: center;
  padding: 22px 28px;
  transition: background 0.3s;
}
.module-summary::-webkit-details-marker { display: none; }
.module-summary:hover { background: rgba(242, 237, 227, 0.05); }
.module-icon {
  display: block; color: var(--accent);
  width: 26px; height: 26px;
  flex-shrink: 0;
}
.module-icon svg {
  width: 100%; height: 100%; display: block;
  stroke: currentColor; fill: none;
  stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
}
.module-name {
  flex: 1;
  font-family: var(--font-headline); font-size: 1.15rem; font-weight: 400;
  color: var(--on-dark); line-height: 1.2;
}
.module-name span { color: var(--accent); font-style: normal; }
.module-chevron {
  flex-shrink: 0; width: 12px; height: 12px;
  border-right: 1.6px solid rgba(242, 237, 227, 0.5);
  border-bottom: 1.6px solid rgba(242, 237, 227, 0.5);
  transform: rotate(45deg); margin-top: -4px;
  transition: transform 0.3s, border-color 0.3s;
}
.module-item[open] .module-chevron {
  transform: rotate(-135deg); margin-top: 4px;
  border-color: var(--accent);
}
/* Animiertes Auf-/Zuklappen: grid-rows 0fr -> 1fr. display:grid erzwingen,
   damit der Body auch bei geschlossenem <details> gerendert bleibt (Animation). */
.module-body {
  display: grid !important;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.module-item[open] .module-body { grid-template-rows: 1fr; }
.module-desc {
  overflow: hidden; min-height: 0;
  padding: 0 28px 0 calc(28px + 26px + 1.25rem);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  color: rgba(242, 237, 227, 0.6); line-height: 1.65;
}
.module-item[open] .module-desc { padding-bottom: 26px; }
@media (prefers-reduced-motion: reduce) {
  .module-body { transition: none; }
}

/* ========================================
   ÜBER NILS
   ======================================== */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-image {
  aspect-ratio: 3/4; overflow: hidden;
  background: var(--bg-warm);
  position: relative;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(46, 74, 98, 0.12);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about h2 {
  font-family: var(--font-headline); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--text); margin-bottom: 8px;
}
.about-title {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; color: var(--text-faint);
  margin-bottom: 28px; text-transform: uppercase;
}
.about p {
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.85;
}
.about p + p { margin-top: 1rem; }

/* ========================================
   FAQ
   ======================================== */
.faq { background: var(--bg); border-top: 1px solid var(--border); }
.faq h2 {
  font-family: var(--font-headline); font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400; color: var(--text); margin-bottom: 48px; text-align: center;
  text-wrap: balance;
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; text-align: left;
  -webkit-appearance: none; appearance: none; color: inherit; box-shadow: none;
}
/* Astra-Button-Defaults im WP neutralisieren + eigener Akzent-Hover */
.faq-question:hover,
.faq-question:focus,
.faq-question:active {
  background: none; box-shadow: none; outline: none;
}
.faq-question:hover span { color: var(--accent); }
.faq-question:hover .faq-icon,
.faq-question:focus-visible .faq-icon {
  border-color: var(--accent); color: var(--accent);
}
.faq-question span {
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--text); line-height: 1.4;
  transition: color 0.2s;
}
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1px solid rgba(46, 74, 98, 0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-muted);
  transition: transform 0.3s, border-color 0.3s, color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg); border-color: var(--accent); color: var(--accent);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer p {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.8;
  padding-bottom: 24px;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer a {
  color: var(--secondary); font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.faq-answer a:hover { color: var(--accent); }

/* ========================================
   FINALE CTA (Warteliste)
   ======================================== */
.final-cta {
  background: linear-gradient(135deg, var(--storm) 0%, var(--storm-2) 50%, var(--primary) 100%);
  text-align: center; padding: 120px 3rem;
}
.final-cta h2 {
  font-family: var(--font-headline); font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400; color: var(--on-dark); line-height: 1.15; margin-bottom: 20px;
  text-wrap: balance;
}
.final-cta p {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  color: rgba(242, 237, 227, 0.65); line-height: 1.75;
  max-width: 520px; margin: 0 auto 48px;
}
.final-form { display: flex; max-width: 440px; margin: 0 auto 16px; }
.final-form input[type="email"] {
  flex: 1; background: rgba(242, 237, 227, 0.08);
  border: 1px solid rgba(242, 237, 227, 0.18); border-right: none;
  border-radius: 999px 0 0 999px;
  color: var(--on-dark); font-family: var(--font-body); font-size: 0.92rem;
  font-weight: 300; padding: 0.9em 1.4em; outline: none;
  transition: border-color 0.3s;
}
.final-form input::placeholder { color: rgba(242, 237, 227, 0.8); }
.final-form input:focus { border-color: rgba(200, 134, 10, 0.55); }
.final-form button {
  background: var(--accent); color: var(--storm); border: none;
  border-radius: 0 999px 999px 0 !important;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  padding: 0.9em 1.6em; cursor: pointer; transition: background 0.3s;
  white-space: nowrap;
}
.final-form button:hover { background: var(--accent-hover); color: var(--storm); }
.final-footnote {
  font-family: var(--font-body); font-size: 0.75rem;
  color: rgba(242, 237, 227, 0.35); line-height: 1.6;
}

/* ========================================
   FORM-STATES (Success / Error)
   ======================================== */
.mc-success {
  font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 400; color: var(--accent);
  padding: 0.75rem 0; line-height: 1.5;
}
.mc-success-light {
  color: var(--secondary);
}
.mc-error {
  font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 400; color: #8C3A2E;
  margin-top: 0.5rem; line-height: 1.5;
}

/* ========================================
   FOOTER – schlicht, Creme
   ======================================== */
.site-footer {
  background: var(--primary);
  border-top: 1px solid var(--border-dark);
  padding: 48px 3rem 32px;
}
.site-footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.site-footer-brand {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.site-footer-links {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
}
.site-footer-links a {
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer-links a:hover { color: var(--accent); }
.site-footer-copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(242, 237, 227, 0.5);
}

/* ========================================
   LEGAL-Seiten (Impressum, Datenschutz)
   ======================================== */
.legal-hero {
  background: var(--bg);
  padding: 160px 3rem 60px;
  border-bottom: 1px solid var(--border);
}
.legal-hero-inner { max-width: 720px; margin: 0 auto; }
.legal-eyebrow {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.25rem;
}
.legal-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--text); line-height: 1.15;
  margin: 0 0 1rem;
}
.legal-sub {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.6; margin: 0;
}

.legal-toc {
  background: var(--bg);
  padding: 0 3rem 24px;
}
.legal-toc-inner {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
}
.legal-toc p {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted);
  margin: 0 0 0.75rem;
}
.legal-toc ol {
  margin: 0; padding-left: 1.25rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 300;
  column-count: 2; column-gap: 2rem;
}
.legal-toc li { margin-bottom: 0.35rem; break-inside: avoid; }
.legal-toc a {
  color: var(--text); text-decoration: none;
  transition: color 0.2s;
}
.legal-toc a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .legal-toc ol { column-count: 1; }
}

.legal-body { background: var(--bg); padding: 56px 3rem 100px; }
.legal-body-inner { max-width: 720px; margin: 0 auto; }

.legal-body h2 {
  font-family: var(--font-headline); font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 400; color: var(--text); line-height: 1.25;
  margin: 3.5rem 0 1rem;
  scroll-margin-top: 100px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--text); letter-spacing: 0.02em;
  margin: 1.75rem 0 0.75rem;
}
.legal-body p, .legal-body li {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  color: var(--text); line-height: 1.8;
}
.legal-body p { margin: 0 0 1.1rem; }
.legal-body ul {
  margin: 0 0 1.1rem; padding-left: 1.2rem;
}
.legal-body li { margin-bottom: 0.35rem; }
.legal-body a {
  color: var(--text); text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px; text-decoration-thickness: 1.5px;
  transition: color 0.2s;
}
.legal-body a:hover { color: var(--accent); }
.legal-body strong { font-weight: 600; color: var(--text); }

.contact-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  margin: 1rem 0 1.5rem;
}
.contact-block p { margin: 0; line-height: 1.7; }
.contact-block p + p { margin-top: 0.75rem; }

.legal-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* ========================================
   KASSEN-TRUST-LEISTE
   ======================================== */
.kassen-bar {
  background: var(--bg);
  padding: 34px 0 30px;
  border-bottom: 1px solid var(--border);
}
.kassen-bar-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 22px;
}
.kassen-logos {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 0;
}
.kassen-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  margin: 0;
  padding: 4px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.kassen-logo:hover {
  background: transparent !important;
  box-shadow: none !important;
  transform: translateY(-2px);
  opacity: 0.7;
}
.kassen-logo:focus-visible {
  outline: 2px solid var(--accent, #C8860A);
  outline-offset: 2px;
}
.kassen-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ========================================
   RECHNER – ALS HAUPT-CTA HERAUSGEHOBEN
   ======================================== */
.rechner-section {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(200, 134, 10, 0.10) 0%, rgba(200, 134, 10, 0) 60%),
    var(--bg);
  border-top: 3px solid var(--accent);
  scroll-margin-top: 72px;
}
.rechner-anchor-badge {
  position: absolute;
  top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 18px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(200, 134, 10, 0.35);
  z-index: 3;
}
.sf-rechner {
  border: 2px solid var(--accent) !important;
  box-shadow:
    0 0 0 8px rgba(200, 134, 10, 0.10),
    0 18px 48px rgba(46, 74, 98, 0.20) !important;
}

/* Modul-Text lesbarer bei längerer Copy */
.module-desc { font-size: 0.92rem; color: rgba(242, 237, 227, 0.68); }
.module-desc strong { color: var(--accent); font-weight: 500; }

/* ========================================
   VORHER / NACHHER
   ======================================== */
.vs { background: var(--bg); border-top: 1px solid var(--border); }
.vs h2 {
  font-family: var(--font-headline); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--text); text-align: center;
  margin-bottom: 14px; line-height: 1.2; text-wrap: balance;
}
.vs-sub {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 300;
  color: var(--text-muted); text-align: center; line-height: 1.7;
  max-width: 560px; margin: 0 auto 40px;
}
/* Vorher/Nachher – ziehbarer Vergleichs-Slider (Wipe).
   Beide Ebenen liegen deckungsgleich; die "before"-Ebene wird per
   clip-path nach --vs-pos beschnitten. Der Griff verschiebt --vs-pos. */
.vs-compare {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  user-select: none;
  touch-action: pan-y;
  /* overflow sichtbar, damit der Griff über den Rand ragen darf */
}
.vs-canvas {
  border-radius: 16px;
  overflow: hidden;                    /* clippt nur die Ebenen, nicht den Griff */
  border: 1px solid var(--border-strong);
  box-shadow: 0 18px 50px -30px rgba(0,0,0,0.4);
  display: grid;                       /* beide Ebenen stapeln, höhere gibt Höhe vor */
}
.vs-layer {
  grid-area: 1 / 1;
  padding: 30px 34px;
}
.vs-after {
  background: #EEF3EC;                 /* ruhiges Waldgrün-Creme */
}
.vs-before {
  background: #F0E4E1;                 /* unruhiges Sturm-Rot-Grau */
  /* rechts ab --vs-pos abschneiden → links "Im Sturm", rechts "Sturmfest" */
  clip-path: inset(0 calc(100% - var(--vs-pos, 50%)) 0 0);
}
.vs-compare.vs-animating .vs-before { transition: clip-path 0.5s ease; }
.vs-badge {
  display: inline-block;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 30px; margin-bottom: 14px; color: var(--on-dark);
}
.vs-badge-before { background: #C0392B; }
.vs-badge-after  { background: var(--secondary); }
.vs-layer ul { list-style: none; margin: 0; }
.vs-layer li {
  position: relative; font-family: var(--font-body);
  font-size: 1.02rem; font-weight: 300; color: var(--text);
  line-height: 1.6; padding: 15px 0 15px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.vs-layer li:last-child { border-bottom: none; }
.vs-layer li::before { position: absolute; left: 0; top: 15px; font-size: 1.1rem; }
.vs-before li::before { content: '✕'; color: #C0392B; }
.vs-after  li::before { content: '✓'; color: var(--secondary); }
/* Griff / Trennlinie */
.vs-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--vs-pos, 50%); transform: translateX(-50%);
  width: 44px; padding: 0; border: 0; background: transparent;
  cursor: ew-resize; touch-action: none; z-index: 3;
  display: flex; align-items: center; justify-content: center;
}
.vs-compare.vs-animating .vs-handle { transition: left 0.5s ease; }
.vs-handle::before {                   /* vertikale Linie */
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; transform: translateX(-50%); background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
}
.vs-handle-grip {
  position: relative; z-index: 1;
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--primary, #2E4A62);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700; letter-spacing: -1px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
}
.vs-handle:focus-visible { outline: none; }
.vs-handle:focus-visible .vs-handle-grip {
  outline: 2px solid var(--accent, #C8860A); outline-offset: 3px;
}

/* ========================================
   SELBST-CHECK
   ======================================== */
.selfcheck { background: var(--bg); border-top: 1px solid var(--border); }
.selfcheck h2 {
  font-family: var(--font-headline); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--text); text-align: center;
  margin-bottom: 40px; line-height: 1.2; text-wrap: balance;
}
.selfcheck-card {
  max-width: 640px; margin: 0 auto; background: var(--bg-card);
  border: 1px solid var(--border); border-top: 3px solid var(--accent);
  border-radius: 12px; padding: 40px;
  box-shadow: 0 4px 32px rgba(46, 74, 98, 0.10);
}
.selfcheck-list { list-style: none; }
.selfcheck-list li {
  position: relative; font-family: var(--font-body);
  font-size: 1rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.6; padding: 14px 0 14px 38px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: color 0.2s;
}
.selfcheck-list li:hover { color: var(--text); }
.selfcheck-list li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 20px; height: 20px; border: 2px solid var(--accent); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; line-height: 1;
  transition: background 0.2s;
}
.selfcheck-list li.checked { color: var(--text); }
.selfcheck-list li.checked::before { content: '✓'; background: var(--accent); }
/* Andeutungs-Hint: Boxen ticken beim Reinscrollen kurz gestaffelt an */
@keyframes sfCheckHint {
  0%, 100% { transform: scale(1); background: transparent; box-shadow: 0 0 0 0 rgba(200,134,10,0); }
  40%      { transform: scale(1.2); background: rgba(200,134,10,0.28); box-shadow: 0 0 0 4px rgba(200,134,10,0.18); }
}
.selfcheck-list.sf-hint-check li:not(.checked)::before {
  animation: sfCheckHint 0.85s ease both;
}
.selfcheck-list.sf-hint-check li:nth-child(2)::before { animation-delay: 0.1s; }
.selfcheck-list.sf-hint-check li:nth-child(3)::before { animation-delay: 0.2s; }
.selfcheck-list.sf-hint-check li:nth-child(4)::before { animation-delay: 0.3s; }
.selfcheck-list.sf-hint-check li:nth-child(5)::before { animation-delay: 0.4s; }
.selfcheck-list.sf-hint-check li:nth-child(6)::before { animation-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .selfcheck-list.sf-hint-check li::before { animation: none; }
}
.selfcheck-note {
  font-family: var(--font-headline); font-size: 1.2rem; font-style: italic;
  color: var(--text); text-align: center; margin: 28px 0 0; line-height: 1.4;
}
.selfcheck-cta {
  display: none; width: fit-content; margin: 24px auto 0;
  align-items: center; gap: 0.5rem;
  background: var(--accent); color: var(--storm);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  padding: 0.9rem 2rem; border-radius: 6px; text-decoration: none;
  letter-spacing: 0.02em; transition: background 0.25s, transform 0.2s;
}
.selfcheck-cta:hover { background: var(--accent-hover); color: var(--storm); transform: translateY(-1px); }
.selfcheck-cta.visible { display: flex; animation: sfFadeIn 0.35s ease; }

/* ── CTA-Glanz-Sweep (alle Action-Buttons außer Hero) ── */
.sf-warteliste-form button,
.selfcheck-cta,
.final-form button,
.sos-download {
  position: relative;
  overflow: hidden;
}
.sf-warteliste-form button::after,
.selfcheck-cta::after,
.final-form button::after,
.sos-download::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.5) 50%, transparent 80%);
  transform: translateX(-180%) skewX(-20deg);
  animation: sfShine 6s ease-in-out 2s infinite;
  pointer-events: none;
}
@keyframes sfShine {
  0% { transform: translateX(-180%) skewX(-20deg); }
  22% { transform: translateX(320%) skewX(-20deg); }
  100% { transform: translateX(320%) skewX(-20deg); }
}
@media (prefers-reduced-motion: reduce) {
  .sf-warteliste-form button::after,
  .selfcheck-cta::after,
  .final-form button::after,
  .sos-download::after { animation: none; }
}

/* ========================================
   SONG-PLAYER (Über Nils)
   ======================================== */
.song-video { margin-top: 32px; }
.song-video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(46, 74, 98, 0.12);
  background: #000;
}
.song-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.song-video-ph {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 120% at 50% 40%, rgba(200,134,10,0.10) 0%, rgba(0,0,0,0) 60%),
    var(--bg-card);
  box-shadow: 0 12px 32px rgba(46, 74, 98, 0.12);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.9rem;
  text-align: center; cursor: pointer;
  transition: box-shadow 0.25s;
}
.song-video-ph:hover { box-shadow: 0 16px 40px rgba(46, 74, 98, 0.18); }
.song-video-play {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--accent); color: var(--storm);
  font-size: 1.2rem; padding-left: 4px;
  box-shadow: 0 6px 18px rgba(200,134,10,0.35);
}
.song-video-label {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 400;
  color: var(--text-muted); line-height: 1.5;
}

/* ========================================
   TRUST / ZERTIFIZIERUNG
   ======================================== */
.trust { background: var(--bg); border-top: 1px solid var(--border); }
.trust h2 {
  font-family: var(--font-headline); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--text); text-align: center;
  margin-bottom: 48px; line-height: 1.2; text-wrap: balance;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.trust-badge {
  text-align: center; padding: 36px 28px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 12px;
}
.trust-badge-ph {
  display: flex; align-items: center; justify-content: center;
  height: 96px; margin-bottom: 20px;
  border: 1px dashed var(--border-strong); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-faint); background: var(--bg);
}
.trust-badge p {
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.6; margin: 0;
}

/* ========================================
   EIN KURS = EIN BAUM
   ======================================== */
.baum {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center; padding: 90px 3rem;
}
.baum .eyebrow, .baum-eyebrow { margin-bottom: 16px; }
.baum-logo {
  display: inline-block; margin: 0 auto 18px;
  transition: transform 0.25s ease;
}
.baum-logo img { width: 72px; height: auto; display: block; }
.baum-logo:hover { transform: translateY(-3px); }
.baum h2 {
  font-family: var(--font-headline); font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 400; color: var(--text); line-height: 1.2;
  margin-bottom: 16px; text-wrap: balance;
}
.baum p {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.7;
  max-width: 520px; margin: 0 auto;
}
.baum-image { max-width: 620px; margin: 40px auto 0; }
.baum-image img {
  width: 100%; height: auto; display: block; border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
.baum-image.is-empty::before {
  content: "Bild folgt\A images/sturmfest-baum.jpg\A z. B. gepflanzter Baum / Setzling in der Hand";
  white-space: pre-line;
  display: flex; align-items: center; justify-content: center; text-align: center;
  aspect-ratio: 16 / 9; padding: 2rem;
  border: 2px dashed var(--border); border-radius: 14px;
  background: var(--bg-warm);
  font-family: var(--font-body); font-size: 0.85rem; line-height: 2;
  color: var(--text-muted);
}

/* ========================================
   BODY-COPY LESBARKEIT
   Fließtext war zu fein (300) – auf 400 anheben.
   ======================================== */
.hero-text, .rechner-frame-text p, .pain-item p, .what-text, .about p,
.vs-sub, .vs-layer li, .selfcheck-list li, .faq-answer p, .trust-badge p,
.module-desc, .baum p, .step p, .final-cta p, .sf-rechner .subtitle,
.sf-warteliste-text, .sf-result-unbekannt p, .sf-result-privat p {
  font-weight: 400;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .trust-grid { grid-template-columns: 1fr; }
  .baum { padding: 70px 1.5rem; }
  .kassen-logos { grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 20px 20px; }
  /* Mobil/Tablet: nur die Top 4 (mittlere Positionen 3–6) zeigen */
  .kassen-logo:nth-child(1),
  .kassen-logo:nth-child(2),
  .kassen-logo:nth-child(7),
  .kassen-logo:nth-child(8) { display: none; }
  .container { padding: 0 1.5rem; }
  .section-pad { padding: 72px 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-accordion { grid-template-columns: 1fr; }
  .module-summary { padding: 18px 20px; gap: 1rem; }
  .module-name { font-size: 1.05rem; }
  .module-desc { padding: 0 20px 0 20px; }
  .module-item[open] .module-desc { padding-bottom: 22px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { aspect-ratio: 4/5; }
  .stats { gap: 3rem; }
  .final-cta { padding: 80px 1.5rem; }
  .hero { padding: 110px 1.5rem 60px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-inner { max-width: 640px; margin: 0 auto; }
  .hero-text { margin: 0 auto 40px; }
  .hero-media { max-width: 520px; margin: 0 auto; width: 100%; }
}
@media (max-width: 640px) {
  .stat-hide-mobile { display: none; }   /* nur Handys: 3 Facts passen in die Breite */
  .legal-hero { padding: 130px 1.5rem 48px; }
  .legal-toc { padding: 0 1.5rem 24px; }
  .legal-toc-inner { padding: 1.25rem 1.25rem; }
  .legal-body { padding: 48px 1.5rem 80px; }
  .site-footer { padding: 40px 1.5rem 28px; }
}
@media (max-width: 520px) {
  .kassen-logos { gap: 0.65rem; padding: 16px 12px; }
  .kassen-logo { height: 38px; }
  .selfcheck-card { padding: 28px 22px; }
  .vs-layer { padding: 24px 20px; }
  .vs-layer li { font-size: 0.95rem; padding: 13px 0 13px 32px; }
  .vs-layer li::before { top: 13px; }
  .stats { gap: 1.5rem; }
  .rechner-anchor-badge { font-size: 0.68rem; padding: 5px 14px; }
  .sf-rechner { padding: 28px 20px; }
  .sf-warteliste { padding: 22px 18px 18px; }
  .sf-warteliste-form button { padding: 0.8em 1.1em; }

  /* Portrait-Handy: E-Mail-Feld + Button untereinander, volle Breite –
     sonst quetscht der Button das Eingabefeld zu schmal. */
  .sf-warteliste-form,
  .final-form { flex-direction: column; gap: 8px; }
  .sf-warteliste-form input[type="email"] {
    width: 100%; border-right: 1px solid rgba(46, 74, 98, 0.25);
    border-radius: 999px;
  }
  .final-form input[type="email"] {
    width: 100%; border-right: 1px solid rgba(242, 237, 227, 0.18);
    border-radius: 999px;
  }
  .sf-warteliste-form button,
  .final-form button { width: 100%; border-radius: 999px !important; }
}

/* ============================================================
   SOS-Seite (template-sturmfest-sos.php) – schlank, LP-CI
   ============================================================ */
.sos-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem clamp(3rem, 6vw, 5rem);
}
.sos-hero { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.sos-wordmark {
  display: block;
  font-family: var(--font-headline);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.sos-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.sos-hero h1 {
  font-family: var(--font-headline);
  color: var(--primary);
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}
.sos-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 34rem;
  margin: 0 auto;
}
.sos-lead strong { color: var(--text); }

/* Player-Card */
.sos-player-card {
  display: flex;
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  box-shadow: 0 10px 30px rgba(46, 74, 98, 0.08);
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}
.sos-cover {
  width: 40%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.sos-player-body { flex: 1; min-width: 0; }
.sos-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.3rem;
}
.sos-player-body h2 {
  font-family: var(--font-headline);
  color: var(--primary);
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  margin: 0 0 0.15rem;
}
.sos-sub { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 1rem; }
.sos-audio { width: 100%; height: 40px; margin-bottom: 0.9rem; }
.sos-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--accent);
  color: var(--storm);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.7em 1.2em;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.sos-download:hover { background: var(--accent-hover); }
.sos-hint {
  color: var(--text-faint);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0.9rem 0 0;
}

/* How-to */
.sos-howto { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 3.5rem); }
.sos-howto h2,
.sos-next + * h2 {
  font-family: var(--font-headline);
  color: var(--primary);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  margin: 0 0 0.9rem;
}
.sos-howto-intro { color: var(--text-muted); font-size: 1.02rem; margin: 0 0 1.5rem; }
.sos-howto-intro strong { color: var(--accent); }
.sos-steps {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  padding: 0;
  margin: 0 0 1.5rem;
  flex-wrap: wrap;
}
.sos-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.sos-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--on-dark);
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 600;
}
.sos-howto-note {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 34rem;
  margin: 0 auto;
}

/* Next / Signatur */
.sos-next {
  background: var(--bg-warm);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.sos-next p { color: var(--text-muted); font-size: 1rem; line-height: 1.65; margin: 0 0 1rem; }
.sos-next p:last-child { margin-bottom: 0; }
.sos-sign {
  font-family: var(--font-headline);
  color: var(--primary);
}
.sos-sign span { font-size: 1.15rem; }

/* Footer */
.sos-footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-faint);
}
.sos-footer a { color: var(--text-muted); text-decoration: none; }
.sos-footer a:hover { color: var(--accent); }
.sos-footer-sep { margin: 0 0.5em; opacity: 0.5; }

@media (max-width: 560px) {
  .sos-player-card { flex-direction: column; text-align: center; }
  .sos-cover { width: 55%; }
  .sos-player-body { width: 100%; }
}

