/* ============================================================
   REISE ZUR FREIHEIT — Landingpage Stylesheet
   Mobile-first · CSS Custom Properties · BEM-artige Namen
   ============================================================ */

/* ---------- 1. Fonts (self-hosted, variable WOFF2) ---------- */
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../assets/fonts/sora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../assets/fonts/sora-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113;
}

/* ---------- 2. Design-Tokens ---------- */
:root {
  /* Marke */
  --brand-purple: #4b2153;
  --brand-berry: #9a1343;
  --brand-red: #c53041;
  --sun-1: #f9a26c;
  --sun-2: #e85d75;
  --sun-3: #7a2e6b;

  /* Neutrals */
  --ink: #1c1420;
  --paper: #fff9fb;
  --muted: #6b5a6e;
  --line: #efe4ec;

  /* Abgeleitete Töne */
  --paper-soft: #fdf1f5;          /* zart-rosa Sektionshintergrund */
  --ink-soft: #2a1b30;            /* dunkle Sektionen */
  --on-dark: #f6e9f2;             /* Text auf dunklen Flächen */
  --on-dark-muted: #cdb3cb;       /* gedämpfter Text auf dunkel (AA auf --ink-soft) */

  /* Verläufe */
  --grad-signature: linear-gradient(135deg, #c53041 0%, #9a1343 55%, #4b2153 100%);
  --grad-sunset: linear-gradient(160deg, #4b2153 0%, #7a2e6b 40%, #e85d75 75%, #f9a26c 100%);
  /* Heller Gold/Orange-Verlauf — hoher Kontrast auf dunklem Hero (Revision 1) */
  --grad-text: linear-gradient(120deg, #ffd9a0 0%, #f9a26c 48%, #ffd9a0 100%);

  /* Form & Feel */
  --r: 20px;
  --r-chip: 12px;
  --r-pill: 999px;
  --shadow-soft: 0 20px 60px -20px rgba(75, 33, 83, 0.35);
  --shadow-card: 0 12px 40px -18px rgba(75, 33, 83, 0.28);
  --shadow-glow: 0 10px 34px -8px rgba(197, 48, 65, 0.55);

  /* Typo */
  --font-display: "Sora", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --fs-h1: clamp(2.4rem, 5.4vw + 1rem, 4.2rem);
  --fs-h2: clamp(1.9rem, 3vw + 1rem, 3rem);
  --fs-h3: clamp(1.25rem, 1vw + 1rem, 1.6rem);
  --fs-body: clamp(1rem, 0.15vw + 0.97rem, 1.0625rem);
  --fs-lead: clamp(1.1rem, 0.6vw + 0.95rem, 1.35rem);

  /* Layout */
  --container: 1160px;
  /* Revision 5: noch mehr Seitenabstand auf Mobile (Minimum 1.75rem) */
  --gutter: clamp(2.1rem, 6vw, 2.5rem);
  --nav-h: 5rem;
}

/* ---------- 3. Reset / Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
p {
  margin: 0 0 1em;
}
a {
  color: var(--brand-berry);
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection {
  background: var(--brand-berry);
  color: #fff;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.6rem 1.2rem;
  background: var(--brand-purple);
  color: #fff;
  border-radius: 0 0 var(--r-chip) var(--r-chip);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus {
  top: 0;
}

/* ---------- 4. Layout-Helfer ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(4rem, 9vw, 7rem);
  position: relative;
}
/* Anker-Ziele nicht unter der fixen Nav verschwinden lassen */
[id] {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}
.section--soft {
  background: var(--paper-soft);
}
.section--dark {
  background:
    radial-gradient(60rem 40rem at 85% -10%, rgba(122, 46, 107, 0.5), transparent 60%),
    radial-gradient(40rem 30rem at -10% 110%, rgba(154, 19, 67, 0.35), transparent 60%),
    var(--ink-soft);
  color: var(--on-dark);
}
.section--dark .section-head p,
.section--dark .muted {
  color: var(--on-dark-muted);
}
/* Pain-Sektion schließt direkt an die Hero-Welle an: Der obere Rand ist
   garantiert einfarbig (--ink-soft), damit kein Farbsprung an der Welle
   entsteht — die Glows setzen erst weiter unten ein. */
#pain {
  background:
    linear-gradient(180deg, var(--ink-soft) 0, rgba(42, 27, 48, 0) 12rem),
    radial-gradient(60rem 40rem at 85% 55%, rgba(122, 46, 107, 0.5), transparent 60%),
    radial-gradient(40rem 30rem at -10% 110%, rgba(154, 19, 67, 0.35), transparent 60%),
    var(--ink-soft);
  padding-top: clamp(2.5rem, 6vw, 5rem); /* Welle übernimmt einen Teil des optischen Abstands */
}
.section-head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-head p {
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: 1.55;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-berry);
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  width: 2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-signature);
}
.section--dark .kicker {
  color: var(--sun-1);
}
.section--dark .kicker::before {
  background: linear-gradient(90deg, var(--sun-1), var(--sun-2));
}
.muted {
  color: var(--muted);
}

/* ---------- 5. Buttons ----------
   Revision 1: klare Pill, satter Signature-Gradient, Lift + Glow,
   Shine-Sweep bei Hover, Scale-down bei Active, Pfeil wandert mit. */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn__arrow {
  flex: none;
  display: inline-grid;
  place-items: center;
  transition: transform 0.25s ease;
}
.btn__arrow svg {
  width: 1.05em;
  height: 1.05em;
}
.btn:hover .btn__arrow,
.btn:focus-visible .btn__arrow {
  transform: translateX(4px);
}
.btn--primary {
  color: #fff;
  /* Revision 3: warmer Signal-Verlauf global — überall identisch wie im Hero */
  background: linear-gradient(135deg, #ff8a3d 0%, var(--brand-red) 58%, #e0344a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 34px -8px rgba(255, 122, 60, 0.55);
}
/* Shine/Sheen-Sweep: heller Streifen läuft einmal durch */
.btn--primary::before {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -70%;
  width: 45%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn--primary:hover::before,
.btn--primary:focus-visible::before,
.btn--primary.is-pinging::before {
  animation: btn-sheen 0.85s ease forwards;
}
@keyframes btn-sheen {
  to { left: 130%; }
}
/* Gelegentlicher Aufmerksamkeits-Ping (JS toggelt .is-pinging).
   Revision 3: nur Helligkeits-/Glow-Puls, KEIN transform — sonst
   springt der Hero-CTA (GSAP hält dort ein Inline-transform). */
.btn--primary.is-pinging {
  animation: btn-attn 0.85s ease;
}
@keyframes btn-attn {
  0%, 100% { filter: brightness(1); }
  40% { filter: brightness(1.13); }
}
.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 18px 46px -8px rgba(255, 122, 60, 0.72),
    0 6px 16px -6px rgba(197, 48, 65, 0.5);
}
.btn--primary:active {
  transform: translateY(0) scale(0.97);
}
.btn--ghost {
  color: var(--brand-purple);
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--brand-purple);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translateY(-3px);
  background: rgba(75, 33, 83, 0.06);
}
.btn--ghost-light {
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}
.btn--ghost-light:hover,
.btn--ghost-light:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 2px #fff;
}
.btn--lg {
  padding: 1.15rem 2.5rem;
  font-size: 1.0625rem;
}
.btn--block {
  width: 100%;
}
.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

/* ---------- 6. Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  /* Revision 2: Nav durchgehend mit hellem Hintergrund — auch über dem Hero.
     Kein Chip mehr nötig, CTA hebt sich klar ab, Logo immer lesbar. */
  background: rgba(255, 249, 251, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -18px rgba(75, 33, 83, 0.35);
  transition: box-shadow 0.3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--brand-purple);
  transition: color 0.3s ease;
}
.nav__logo-mark {
  width: 2.4rem;
  height: 2.4rem;
  flex: none;
  border-radius: 50%;
  box-shadow: 0 4px 14px -4px rgba(28, 20, 32, 0.4);
}
/* Bild-Logo in dezentem hellem Chip — bleibt über dem dunklen Hero lesbar */
.nav__logo-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.4rem;
  border-radius: 14px;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.nav__logo-img {
  height: 2.75rem; /* ~44px mobil */
  width: auto;
}
/* Gescrollte (weiße) Nav: Chip wird unsichtbar, Logo steht frei */
.nav--solid .nav__logo-chip,
.nav--page .nav__logo-chip {
  background: transparent;
  box-shadow: none;
}
.nav__links {
  display: none;
}
.nav__cta {
  display: none;
}
.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.6rem;
  border-radius: var(--r-chip);
}
.nav__toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  color: var(--brand-purple);
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}
/* Solider Zustand (nach Scroll oder auf Unterseiten) */
.nav--solid,
.nav--page {
  background: rgba(255, 249, 251, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -18px rgba(75, 33, 83, 0.35);
}
.nav--solid .nav__logo,
.nav--page .nav__logo {
  color: var(--brand-purple);
}
.nav--solid .nav__toggle span,
.nav--page .nav__toggle span {
  color: var(--brand-purple);
}
/* Toggle → X */
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobiles Fullscreen-Menü */
.nav__menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: calc(var(--nav-h) + 1rem) var(--gutter) 2.5rem;
  background:
    radial-gradient(50rem 34rem at 90% 0%, rgba(232, 93, 117, 0.35), transparent 60%),
    var(--brand-purple);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.nav__menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__menu a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  color: #fff;
  text-decoration: none;
  padding-block: 0.55rem;
}
.nav__menu a:not(.btn):hover {
  color: var(--sun-1);
}
.nav__menu .btn {
  margin-top: auto;
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}

/* Revision 3: Auf Mobile scrollt die Nav einfach mit weg (nicht sticky) —
   die Sticky-CTA-Bar unten übernimmt die Conversion. */
@media (max-width: 879px) {
  .nav {
    position: absolute;
  }
}

@media (min-width: 880px) {
  .nav__toggle,
  .nav__menu {
    display: none;
  }
  .nav__links {
    display: flex;
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
  }
  .nav__links a {
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--ink);
    transition: color 0.25s ease;
  }
  .nav__links a:hover {
    color: var(--brand-berry);
  }
  .nav--solid .nav__links a,
  .nav--page .nav__links a {
    color: var(--ink);
  }
  .nav--solid .nav__links a:hover,
  .nav--page .nav__links a:hover {
    color: var(--brand-berry);
  }
  .nav__cta {
    display: inline-flex;
    padding: 0.7rem 1.5rem;
    font-size: 0.92rem;
  }
  .nav__logo-img {
    height: 3.25rem; /* ~52px desktop */
  }
}

/* Textvarianten nach Breite (Revision 6): auf schmalen Schirmen sind die
   deutschen Langfassungen schlicht zu breit — sie stapeln sich dann statt
   nebeneinander zu stehen. Es ist immer genau eine Variante im DOM sichtbar,
   Screenreader lesen also keine Dopplung. */
.only-wide {
  display: none;
}
.only-narrow {
  display: inline;
}
@media (min-width: 780px) {
  .only-wide {
    display: inline;
  }
  .only-narrow {
    display: none;
  }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  overflow: clip;
  color: #fff;
  /* Revision 6: Abstand über dem Inhalt und Wellenhöhe als Tokens, damit die
     Above-the-fold-Rechnung (Hero + Welle = genau 100vh) an einer Stelle steht. */
  --hero-gap-top: clamp(1.25rem, 3vw, 2.25rem);
  --hero-wave-h: clamp(3rem, 8vw, 6rem);
  /* Höhe, die dem Hero-Inhalt im ersten Viewport bleibt: Bildschirm minus
     Nav und Kopfabstand. Die Welle ist bewusst NICHT abgezogen — sie soll
     erst unterhalb der Bildschirmkante beginnen (Revision 6). */
  --hero-fit-h: calc(100vh - var(--nav-h) - var(--hero-gap-top));
  /* Revision 1: kräftiger/dunkler — mehr Lila-Tiefe im Textbereich,
     das warme Sunset-Licht bleibt unten rechts hinter Lena. */
  background: linear-gradient(155deg, #35123d 0%, var(--brand-purple) 34%, #6b2a60 62%, #93315f 82%, #c04f68 100%);
  padding-top: calc(var(--nav-h) + var(--hero-gap-top));
}
/* Sonnen-Glow + feine Körnung für Tiefe */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(34rem 34rem at 80% 78%, rgba(255, 214, 165, 0.5), transparent 60%),
    radial-gradient(64rem 48rem at 8% 0%, rgba(40, 14, 46, 0.65), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffddbd;
  background: rgba(28, 20, 32, 0.4);
  border: 1px solid rgba(255, 217, 184, 0.45);
  border-radius: var(--r-pill);
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.4rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero h1 {
  /* Etwas kompakter als die globale H1-Skala — die Headline ist lang,
     so bleiben CTA + Trust-Zeile auf Desktop im ersten Viewport. */
  font-size: clamp(2.3rem, 2.9vw + 0.85rem, 3.55rem);
  /* Revision 6: Luft über der Headline. Wächst nur der Textblock, nicht die
     Grid-Spur — solange .hero__copy niedriger als --hero-fit-h bleibt, rührt
     sich das mittig gesetzte Hero-Bild dadurch nicht. */
  margin-top: clamp(1rem, 3vh, 2.5rem);
  margin-bottom: 0.5em;
  text-shadow: 0 2px 30px rgba(28, 20, 32, 0.35);
}
.hero__highlight {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.hero__sub {
  font-size: var(--fs-lead);
  line-height: 1.55;
  max-width: 34rem;
  color: rgba(255, 249, 251, 0.94);
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.1rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  /* Revision 6: Abstand und Grad leicht reduziert — die Textspalte ist für
     das größere Hero-Bild schmaler geworden, sonst kippt der dritte Punkt
     in eine zweite Zeile. */
  gap: 0.4rem 1rem;
  margin-top: 2.2rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 249, 251, 0.92);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.hero__trust svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
  color: var(--sun-1);
}

/* Trust-Element (Avatare + Sterne + Nutzerzahl), sitzt zwischen Subline
   und CTA. Revision 6: als transluzente Pille gesetzt — nimmt die Optik der
   Proof-Chips am Hero-Bild auf und liest sich als eigenständiges Element
   statt als loser Text. */
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  padding: 0.5rem 1.1rem 0.5rem 0.6rem;
  background: rgba(28, 20, 32, 0.36);
  border: 1px solid rgba(255, 217, 184, 0.32);
  border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero__avatars {
  display: flex;
  flex: none;
}
.hero__avatars img {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.92);
  margin-left: -0.7rem;
  box-shadow: 0 4px 12px rgba(28, 20, 32, 0.35);
}
.hero__avatars img:first-child {
  margin-left: 0;
}
.hero__stars {
  display: flex;
  gap: 2px;
  color: var(--sun-1);
}
.hero__stars svg {
  width: 1.05rem;
  height: 1.05rem;
}
.hero__rating-info p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 249, 251, 0.92);
}
.hero__rating-info strong {
  color: #fff;
  font-weight: 800;
}

/* Revision 6: auf Mobile deutlich kompakter — in voller Desktop-Größe
   sprengt die Pille die schmale Spalte und wird dreizeilig. */
@media (max-width: 779px) {
  .hero__rating {
    gap: 0.6rem;
    padding: 0.4rem 0.9rem 0.4rem 0.45rem;
    /* Ohne nowrap springen die Avatare auf eine eigene Zeile, statt dass der
       Text umbricht — das machte die Pille dreizeilig und halb leer. */
    flex-wrap: nowrap;
  }
  /* Sterne und Zahl nebeneinander statt gestapelt — zusammen mit der
     Kurzfassung des Textes wird die Pille dadurch einzeilig. */
  .hero__rating-info {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .hero__rating-info p {
    margin: 0;
  }
  /* Trust-Punkte nebeneinander in einer Zeile (Kurztexte via .only-narrow) */
  .hero__trust {
    flex-wrap: nowrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .hero__trust svg {
    width: 0.9rem;
    height: 0.9rem;
  }
  .hero__trust li {
    gap: 0.3rem;
  }
  .hero__avatars img {
    width: 1.9rem;
    height: 1.9rem;
    margin-left: -0.5rem;
    border-width: 1.5px;
  }
  .hero__stars svg {
    width: 0.85rem;
    height: 0.85rem;
  }
  .hero__rating-info p {
    font-size: 0.75rem;
  }
}

/* Sehr schmale Geräte (iPhone SE & Co., < 360px): dort reicht der Platz
   auch mit Kurztexten nicht für eine Zeile — lieber sauber umbrechen als
   am Rand abschneiden (body hat overflow-x: hidden, der Schnitt wäre
   unsichtbar). */
@media (max-width: 359px) {
  .hero__rating-info {
    display: block;
  }
  .hero__rating-info p {
    margin-top: 0.1rem;
  }
  .hero__trust {
    flex-wrap: wrap;
    white-space: normal;
  }
}

/* Hero-Media: Cutout + Platzhalter + Proof-Chips
   Revision 1: unten verankert, Fußlinie bündig mit dem Wellen-Übergang. */
.hero__media {
  position: relative;
  align-self: end;
  justify-self: center;
  width: min(100%, 30rem);
  margin-bottom: -1px; /* schließt an Wave an */
}
.hero__stage {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
/* <picture> darf keine eigene Box bilden, sonst ist es das Flex-Kind statt
   des <img> — dessen width/height: 100% liefe dann ins Leere. */
.hero__stage picture {
  display: contents;
}
/* Sonnenscheibe hinter Lena */
.hero__stage::before {
  content: "";
  position: absolute;
  inset: auto 8% 6%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #ffe3c2 0%, var(--sun-1) 42%, rgba(232, 93, 117, 0.55) 72%, transparent 76%);
  filter: blur(2px);
}
.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 40px rgba(28, 20, 32, 0.45));
}
/* Eleganter Fallback, falls hero-lena.png (noch) fehlt */
.hero__ph {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
}
.hero__media.is-missing .hero__ph {
  display: flex;
}
.hero__ph svg {
  width: 42%;
  height: auto;
  color: rgba(75, 33, 83, 0.8);
}
.hero__badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(28, 20, 32, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__badge .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #62d98a;
  box-shadow: 0 0 0 4px rgba(98, 217, 138, 0.25);
}

/* Schwebende Proof-Chips */
.chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 249, 251, 0.95);
  color: var(--ink);
  border-radius: var(--r-chip);
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  box-shadow: var(--shadow-card);
}
.chip__icon {
  width: 2rem;
  height: 2rem;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--grad-signature);
  color: #fff;
}
.chip__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}
.chip small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--muted);
}
.chip--1 { top: 8%; left: -4%; }
.chip--2 { top: 34%; right: -6%; }
.chip--3 { bottom: 18%; left: -8%; }

/* Revision 7 (Mobile): Lena steht angeschnitten über der Headline — die zwei
   stärksten Chips flankieren ihren Kopf, „Neuer Abschluss“ entfällt.
   Muss NACH der .chip-Basisregel stehen: gleiche Spezifität, es gewinnt die
   spätere Regel. */
@media (max-width: 779px) {
  .chip--2 {
    display: none;
  }
  /* Das Bild ist mittig und schmal — die Chips sitzen an den Aussenkanten
     der (voll breiten) Box und flankieren Kopf bzw. Schulter, ohne das
     Gesicht zu treffen. */
  .chip--1 {
    top: 2%;
    left: 0;
  }
  /* Von oben ankern, nicht von unten: .hero__media enthält auch das Badge,
     bottom: 0 läge damit unter dem Bild auf dem Badge. Das Bild ist über
     max-width fix 153px hoch, ein rem-Wert sitzt also stabil. */
  .chip--3 {
    top: 6rem;
    bottom: auto;
    left: auto;
    right: 0;
  }
  .chip {
    font-size: 0.68rem;
    padding: 0.4rem 0.6rem;
    gap: 0.4rem;
    max-width: 42%;
  }
  .chip small {
    font-size: 0.64rem;
  }
  .chip__icon {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 8px;
  }
  .chip__icon svg {
    width: 0.8rem;
    height: 0.8rem;
  }
}

/* Wellen-Abschluss — Füllung = Farbe der Pain-Sektion, damit die
   geschwungene Welle nahtlos in die dunkle Sektion übergeht (Revision 1). */
.hero__wave {
  display: block;
  width: 100%;
  height: var(--hero-wave-h);
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
  margin-bottom: -1px; /* kein Subpixel-Gap zur Folgesektion */
}

/* ---- Revision 7: eigener Hero-Aufbau für Mobile ----
   Header und Social-Proof-Pille entfallen (zusammen ~140px), dafür steht
   Lena angeschnitten ÜBER der Headline und läuft unten per Maske in den
   Hintergrund aus. Die Nav-Links sind auf einer Landingpage ohnehin nur
   Ausstiegspfade; der CTA bleibt über die Sticky-Leiste jederzeit
   erreichbar. */
@media (max-width: 779px) {
  .nav {
    display: none;
  }
  .hero {
    /* Ohne Nav entfällt --nav-h aus dem Kopfabstand. */
    padding-top: clamp(1.5rem, 6vw, 2.5rem);
  }
  .hero__inner {
    gap: 0;
    /* Luft zwischen Trust-Zeile und Welle. Muss am __inner hängen: die Welle
       liegt INNERHALB von .hero, ein padding-bottom am .hero schöbe einen
       lila Streifen unter die Welle. */
    padding-bottom: clamp(2rem, 7vw, 3rem);
  }
  /* Bild vor den Text ziehen — DOM-Reihenfolge bleibt fürs Vorlesen sinnvoll.
     Bewusst klein: auf einem iPhone X sind beim ersten Laden nur ~635px
     sichtbar (URL-Leiste), der CTA muss da rein. */
  /* Die Box bleibt voll breit — an ihr hängen die absolut positionierten
     Chips. Verkleinert wird nur das Bild darin, sonst rücken die Chips
     mit und legen sich Lena aufs Gesicht. */
  .hero__media {
    order: -1;
    width: 100%;
    max-width: none;
    margin-bottom: 0.25rem;
  }
  /* Kompaktere Typo auf Mobile — schafft den Platz für den CTA im Fold */
  .hero h1 {
    font-size: clamp(1.75rem, 6.6vw, 2.15rem);
    margin-top: 1.1rem; /* Luft zum Badge darüber */
  }
  .hero__sub {
    font-size: 1rem;
  }
  /* Button etwas höher, dafür mehr Luft zur Trust-Zeile darunter */
  .hero__cta-row {
    margin-top: 0.6rem;
  }
  .hero__trust {
    margin-top: 2.25rem;
  }
  .hero__stage {
    /* display: block statt flex — als Flex-Kind zog das <img> seine Breite
       aus dem Seitenverhältnis der width/height-Attribute (800x1000) und
       blieb dadurch schmaler als die Spalte. Höhe ergibt sich aus dem Bild,
       sonst bleibt unten leere Box stehen und drückt den CTA aus dem Fold. */
    display: block;
    aspect-ratio: auto;
    height: auto;
  }
  .hero__img {
    height: auto;
    max-width: 12.5rem; /* deutlich kleiner — der CTA muss in den Fold */
    margin-inline: auto;
    object-fit: contain;
    object-position: top center;
    /* Weicher Übergang in den Hintergrund statt harter Freisteller-Kante */
    -webkit-mask-image: linear-gradient(to bottom, #000 58%, rgba(0, 0, 0, 0.45) 82%, transparent 99%);
    mask-image: linear-gradient(to bottom, #000 58%, rgba(0, 0, 0, 0.45) 82%, transparent 99%);
    filter: none; /* der Drop-Shadow würde die Maske sichtbar umranden */
  }
  /* Sonnen-Glow hinter Kopf/Schultern statt hinter den Füßen. Enger gezogen
     (etwa Bildbreite) und unten ausmaskiert wie das Bild selbst — sonst
     leuchtet er in den Headline-Bereich und der Text verschwimmt darin. */
  .hero__stage::before {
    inset: -10% 20% auto;
    -webkit-mask-image: linear-gradient(to bottom, #000 42%, rgba(0, 0, 0, 0.35) 70%, transparent 92%);
    mask-image: linear-gradient(to bottom, #000 42%, rgba(0, 0, 0, 0.35) 70%, transparent 92%);
  }
  /* Social Proof: die Pille entfällt, die zwei stärksten Chips bleiben
     (Chip-Positionen stehen weiter unten, nach der .chip-Basisregel) */
  .hero__rating {
    display: none;
  }
  /* Kompakter und mit mehr Luft zur Headline */
  .hero__badge {
    position: static;
    transform: none;
    margin: 0.4rem auto 0;
    display: flex;
    width: max-content;
    max-width: 100%;
    font-size: 0.72rem;
    padding: 0.35rem 0.8rem;
    gap: 0.4rem;
  }
  .hero__badge .dot {
    width: 0.4rem;
    height: 0.4rem;
    box-shadow: 0 0 0 3px rgba(98, 217, 138, 0.25);
  }
}


@media (min-width: 880px) {
  .hero__inner {
    /* Revision 6: Bildspalte etwas breiter — die Spalte, nicht max-width,
       hat die Figur bisher gedeckelt. */
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    gap: clamp(3rem, 6vw, 6rem); /* Revision 4: mehr Abstand Text ↔ Bild */
    /* Revision 6: Hero + Welle sollen zusammen genau eine Bildschirmhöhe
       ergeben — Lena steht komplett sichtbar auf der Welle, die Welle bleibt
       im ersten Viewport, nichts wird unten abgeschnitten. */
    min-height: var(--hero-fit-h);
    /* Revision 8: Inhalt 25px höher. Die Welle hängt am selben Fluss und
       würde mit hochrutschen — sie bekommt denselben Betrag als margin-top
       zurück und startet dadurch weiterhin exakt an der Bildschirmkante. */
    margin-top: -25px;
  }
  .hero__wave {
    margin-top: 25px;
  }
  .hero__copy {
    /* Kein padding-bottom mehr: das hielt den Text von der Welle weg, als er
       noch unten am Grid klebte. Zentriert bräuchte es nur zusätzliche Höhe
       und drückt den Hero über den Viewport hinaus. */
    align-self: center; /* Text vertikal mittig statt unten geklebt */
  }
  .hero__media {
    width: 100%;
    /* Die Figur ist 4:5 hoch — bei Breite b ist sie b × 1.25 hoch. Damit sie
       nie über die Fläche hinausläuft, wird die Breite auf 80 % der
       verfügbaren Höhe gedeckelt (0.8 = 1 / 1.25). */
    max-width: min(34rem, calc(var(--hero-fit-h) * 0.8));
    justify-self: end; /* rechts verankert */
    /* Revision 6: vertikal mittig statt unten am Grid geklebt — auf Mobile
       bleibt sie über align-self: end weiter auf der Welle stehen. */
    align-self: center;
  }
  /* Chips näher am Bild halten, damit sie nicht in den Text ragen */
  .chip--1 { left: -6%; }
  .chip--3 { left: -8%; }
}

/* ---------- 8. Pain-Sektion ---------- */
.pain__grid {
  display: grid;
  gap: 1rem;
}
.pain-item {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 249, 251, 0.05);
  border: 1px solid rgba(246, 233, 242, 0.12);
  border-radius: var(--r);
  padding: 1.25rem 1.4rem;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.5s ease,
    border-color 0.5s ease, box-shadow 0.5s ease;
}
/* Revision 7: Akzentkante links, die beim Aktivieren hochwächst */
.pain-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-signature);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pain-item__icon {
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 93, 117, 0.25), rgba(122, 46, 107, 0.4));
  color: var(--sun-1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.5s ease,
    color 0.5s ease, box-shadow 0.5s ease;
}
.pain-item__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.pain-item p {
  margin: 0;
  font-weight: 500;
  align-self: center;
}
.pain__closer {
  max-width: 42rem;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  text-align: center;
  font-size: var(--fs-lead);
  line-height: 1.55;
}
.pain__closer strong {
  background: linear-gradient(120deg, var(--sun-1), var(--sun-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 720px) {
  .pain__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* ---------- 9. Karten-Raster (Methode, Steps, Warum du) ---------- */
.cards {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 780px) {
  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.card__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--grad-signature);
  color: #fff;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px -8px rgba(154, 19, 67, 0.55);
}
.card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.card h3 {
  margin-bottom: 0.4em;
}
.card p {
  margin: 0;
  color: var(--muted);
}

/* Methode-Säulen (Revision 1): animierter Gradient-Glow am Rand,
   Icon-Mikroanimation, 3D-Tilt via JS (nur pointer:fine + Motion). */
.card--pillar {
  position: relative;
  transform-style: preserve-3d;
  /* Kein transform in der Transition: das 3D-Tilt (GSAP) steuert
     transform frame-genau — eine CSS-Transition würde dagegen kämpfen. */
  transition: box-shadow 0.3s ease;
}
.card--pillar:hover {
  transform: none; /* Lift übernimmt das Tilt-Script */
}
.card--pillar::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r) + 2px);
  padding: 2px;
  background: linear-gradient(120deg, var(--sun-1), var(--brand-red), var(--brand-purple), var(--sun-2), var(--sun-1));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  animation: pillar-glow 4s linear infinite;
  pointer-events: none;
}
.card--pillar:hover::after,
.card--pillar:focus-within::after {
  opacity: 1;
}
@keyframes pillar-glow {
  to { background-position: 300% 50%; }
}
.card--pillar .card__icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.card--pillar:hover .card__icon {
  transform: translateY(-4px) rotate(-5deg) scale(1.08);
  box-shadow: 0 14px 28px -10px rgba(154, 19, 67, 0.65);
}
/* Revision 3: auf Mobile die Methode-Kacheln zentrieren */
@media (max-width: 779px) {
  .card--pillar {
    text-align: center;
  }
  .card--pillar .card__icon {
    margin-inline: auto;
  }
}

/* Nummerierte Steps (Revision 1):
   Nummern standardmäßig neutral, farbig erst bei Hover (Desktop)
   bzw. für die aktive Kachel im Mobile-Karussell. */
.step-card {
  position: relative;
  counter-increment: steps;
  overflow: hidden;
}
.step-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1;
  color: #d9c8de; /* blasses Lila — neutraler Grundzustand */
  margin-bottom: 0.75rem;
  transition: transform 0.35s ease, color 0.35s ease;
  transform-origin: left bottom;
}
/* Revision 6: Schritt 01 ist von Haus aus markiert — die Sektion zeigt so
   sofort, wo sie anfängt. Sobald der Zeiger über einer beliebigen Karte
   liegt, gibt 01 die Markierung ab (:not(:hover) am Container) und nur die
   angesteuerte Karte leuchtet. Kein JS nötig. */
.step-card:hover .step-card__num,
.step-card.is-active .step-card__num {
  background: var(--grad-signature);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: scale(1.06);
}
.step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad-signature);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.step-card:hover::after,
.step-card.is-active::after {
  opacity: 1;
}
/* Revision 6: Schritt 01 ist von Haus aus markiert — die Sektion zeigt so
   sofort, wo sie anfängt. Sobald der Zeiger über einer beliebigen Karte
   liegt, gibt 01 die Markierung ab (:not(:hover) am Container) und nur die
   angesteuerte Karte leuchtet.
   Revision 8: nur noch Desktop. Auf Touch trifft :not(:hover) dauerhaft zu —
   01 leuchtete dort neben der gewischten Karte permanent mit. Mobil
   markiert stattdessen JS die mittige Karte per .is-active. */
@media (min-width: 780px) {
  .steps:not(:hover) .step-card:first-child .step-card__num {
    background: var(--grad-signature);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: scale(1.06);
  }
  .steps:not(:hover) .step-card:first-child::after {
    opacity: 1;
  }
}

/* Mobile: 3 Schritte als horizontales Snap-Karussell */
@media (max-width: 779px) {
  .steps {
    grid-auto-flow: column;
    grid-auto-columns: min(80%, 20rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* overflow-x: auto macht den Track auch vertikal zum Scroll-Container —
       er schneidet den Karten-Schatten also oben und unten ab. Die aktive
       Karte trägt --shadow-soft mit 60px Blur, dessen Verlauf weiter reicht
       als 2rem; das ergab eine sichtbare harte Kante. Padding schafft Raum,
       das negative margin-bottom hält den Abstand zur Leiste unverändert. */
    padding: 1.5rem var(--gutter) 4rem;
    margin-bottom: -2rem;
    margin-inline: calc(-1 * var(--gutter));
    /* verhindert, dass die Wisch-Geste am Rand die ganze Seite verschiebt */
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .steps::-webkit-scrollbar {
    display: none;
  }
  /* Revision 7: keine Scale-/Fade-Animation der Karte selbst beim Wischen —
     man sieht ohnehin eine Karte zur Zeit, Dimmen beim Durchziehen bringt
     nichts.
     Revision 8: die Markierung (Balken + farbige Zahl) trägt aber weiterhin
     nur die mittig gewischte Karte, nicht alle. Die setzt JS als .is-active,
     die Basisregeln oben greifen. */
  .steps .step-card {
    scroll-snap-align: center;
    transform: none;
    opacity: 1;
    transition: none;
  }
}

/* ---------- 10a. Kompakter Zahlen-Streifen (Revision 3) ----------
   Direkt unter dem Hero, dunkel (setzt den nahtlosen Wellen-Übergang
   fort), bewusst klein/dezent. Mobilsicher (kein horizontaler Overflow). */
.stat-strip {
  background: var(--ink-soft);
  color: var(--on-dark);
  padding-block: clamp(1.25rem, 3.5vw, 2rem);
  margin-top: -1px; /* nahtlos an die Hero-Welle (kein Farbstreifen) */
  position: relative;
  z-index: 1;
}
.stat-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.9rem 1.75rem;
  text-align: center;
}
.stat-strip__list li {
  position: relative;
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0 0.25rem;
}
.stat-strip__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, #ffd9a0, var(--sun-1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.stat-strip__label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--on-dark-muted);
}
@media (min-width: 680px) {
  .stat-strip__list {
    flex-wrap: nowrap;
    gap: 0 2.75rem;
  }
  .stat-strip__list li + li::before {
    content: "";
    position: absolute;
    left: -1.375rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 2.4rem;
    background: rgba(246, 233, 242, 0.18);
  }
}

/* ---------- 10. Zahlen / Stats (Legacy, nicht mehr im Markup) ---------- */
.stats {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Inhalt vertikal mittig — Karten mit langem Label bleiben ausgerichtet */
  min-height: 9.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.9rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.stat-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  background: var(--grad-signature);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  animation: stat-shimmer 6s ease-in-out infinite;
}
/* dezenter Gradient-Unterstrich als visueller Anker */
.stat-card__num::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 3px;
  margin: 0.7rem auto 0;
  border-radius: 3px;
  background: var(--grad-signature);
  opacity: 0.85;
}
@keyframes stat-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.stat-card__label {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.stats-note {
  margin: 1.75rem auto 0;
  max-width: 44rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}
@media (min-width: 880px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- 11. Warum du (Split mit Bild) ---------- */
.fit {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.fit__points {
  display: grid;
  gap: 1.5rem;
}
.fit-point {
  display: flex;
  gap: 1.1rem;
}
.fit-point__icon {
  flex: none;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--grad-signature);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(154, 19, 67, 0.55);
}
.fit-point__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}
.fit-point h3 {
  margin-bottom: 0.25em;
}
.fit-point p {
  margin: 0;
  color: var(--muted);
}
@media (min-width: 880px) {
  .fit {
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
  }
}

/* ---------- 12. Bild-Frames mit Platzhalter ---------- */
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background:
    radial-gradient(24rem 18rem at 80% 90%, rgba(249, 162, 108, 0.65), transparent 65%),
    var(--grad-sunset);
  box-shadow: var(--shadow-soft);
}
.img-frame::before {
  /* Platzhalter-Ikone, sichtbar wenn Bild fehlt */
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,249,251,0.85)' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
}
.img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-frame--portrait {
  aspect-ratio: 3 / 4;
}
.img-frame--landscape {
  aspect-ratio: 16 / 10;
}
/* „Dein Vorteil": Querformat-Foto (Lena am Cabrio), Revision 1 */
.img-frame--fit {
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--r) + 4px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* Revision 4: dezente Hover-Animation (Zoom + Lift + Glanz-Sweep) */
.img-frame--fit img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.img-frame--fit:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 74px -26px rgba(75, 33, 83, 0.55);
}
.img-frame--fit:hover img {
  transform: scale(1.06);
}
.img-frame--fit::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-120%);
  pointer-events: none;
}
.img-frame--fit:hover::after {
  animation: fit-sheen 0.9s ease forwards;
}
@keyframes fit-sheen {
  to { transform: translateX(120%); }
}

/* ---------- 13. Verdienst + Rechner ---------- */
.earn-cards {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}
.earn-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.earn-card h3 {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0;
  margin-bottom: 0.35rem;
}
.earn-card__range {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.earn-card__provision {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  background: var(--grad-signature);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.earn-card__provision small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--muted);
  margin-bottom: 0.15rem;
}
@media (min-width: 780px) {
  .earn-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Revision 7: Auf Desktop nur die erste Reihe — eine zweite Reihe macht
     die Sektion schwer. Auf Mobile bleiben alle sechs im Wisch-Karussell,
     dort kosten sie keine Höhe. */
  .earn-card:nth-child(n + 4) {
    display: none;
  }
}
/* Revision 3: auf Mobile horizontales Snap-Karussell wie Steps/Testimonials */
@media (max-width: 779px) {
  .earn-cards {
    grid-auto-flow: column;
    grid-auto-columns: min(78%, 19rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1.5rem var(--gutter) 3rem;
    margin-inline: calc(-1 * var(--gutter));
    /* Die Basisregel bringt margin-bottom mit — auf Desktop hält das den
       Abstand zum Rechner, auf Mobile schob es aber die Wisch-Leiste 40px
       von den Karten weg. Hier trägt .earn-cards + .carousel-nav den
       Abstand nach unten, die Leiste rückt direkt unter die Karten. */
    margin-bottom: -1rem;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .earn-cards::-webkit-scrollbar {
    display: none;
  }
  .earn-card {
    scroll-snap-align: center;
  }
}

/* Karussell-Steuerung (Revision 6) — wird per JS erzeugt und nur dort
   eingeblendet, wo tatsächlich horizontal gescrollt werden kann. */
.carousel-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.25rem;
}
.carousel-nav.is-visible {
  display: flex;
}
.carousel-nav__btn {
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--brand-purple);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}
.carousel-nav__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.carousel-nav__btn:active {
  transform: scale(0.92);
}
.carousel-nav__btn:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
}
.carousel-nav__hint {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}
/* Der Abstand zum Rechner lag vorher am Karussell selbst — jetzt steht die
   Leiste dazwischen und trägt ihn. */
.earn-cards + .carousel-nav {
  margin-bottom: clamp(2.5rem, 7vw, 3.5rem);
}

/* Rechner */
.calc {
  background:
    radial-gradient(30rem 20rem at 90% -20%, rgba(232, 93, 117, 0.4), transparent 65%),
    var(--brand-purple);
  color: var(--on-dark);
  border-radius: calc(var(--r) + 6px);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-soft);
}
.calc h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin-bottom: 0.35em;
}
.calc__hint {
  color: var(--on-dark-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.calc__row {
  display: grid;
  gap: 2rem;
}
.calc__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.calc__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--sun-1);
}
input[type="range"].calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sun-1) var(--fill, 30%), rgba(255, 255, 255, 0.2) var(--fill, 30%));
  outline-offset: 6px;
}
input[type="range"].calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--sun-2);
  box-shadow: 0 4px 14px rgba(28, 20, 32, 0.4);
  cursor: grab;
}
input[type="range"].calc__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--sun-2);
  box-shadow: 0 4px 14px rgba(28, 20, 32, 0.4);
  cursor: grab;
}
.calc__scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--on-dark-muted);
  margin-top: 0.5rem;
}
.calc__result {
  text-align: center;
  background: rgba(255, 249, 251, 0.07);
  border: 1px solid rgba(246, 233, 242, 0.15);
  border-radius: var(--r);
  padding: 1.75rem 1.25rem;
}
.calc__result-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: 0.35rem;
}
.calc__result-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  background: linear-gradient(120deg, var(--sun-1), var(--sun-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.calc__disclaimer {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--on-dark-muted);
}
@media (min-width: 820px) {
  .calc__row {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

/* ---------- 14. Über Lena ---------- */
.about {
  display: grid;
  gap: 2.5rem;
}
.about__media {
  position: relative;
  max-width: 26rem;
  justify-self: center;
  width: 100%;
}
/* Revision 1: Bild-Collage statt Einzelbild — überlappende, leicht
   gedrehte Cards, per Scroll gestaffelt eingeblendet (JS). */
.about-collage {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about-collage__item {
  position: absolute;
  border-radius: var(--r);
}
.about-collage__item--main {
  top: 0;
  left: 0;
  width: 70%;
  aspect-ratio: 3 / 4;
  transform: rotate(-2.5deg);
  z-index: 1;
}
.about-collage__item--top {
  top: 5%;
  right: 0;
  width: 42%;
  aspect-ratio: 4 / 5;
  transform: rotate(3deg);
  z-index: 2;
}
.about-collage__item--bottom {
  bottom: 0;
  left: 8%;
  width: 54%;
  aspect-ratio: 4 / 3;
  transform: rotate(-2deg);
  z-index: 3;
}
.about-collage__item--accent {
  bottom: 6%;
  right: 3%;
  width: 38%;
  aspect-ratio: 1;
  transform: rotate(2.5deg);
  z-index: 2;
}
.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.about__stats li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-purple);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.45rem 1rem;
}
/* Revision 3: auf Mobile die gestapelten Stat-Pills ausblenden
   (wirkten „übereinandergestapelt/billig") — Collage + Text bleiben. */
@media (max-width: 879px) {
  .about__stats {
    display: none;
  }
}
.about__body p {
  color: var(--muted);
}
.about__body p strong {
  color: var(--ink);
}
.about__signature {
  margin-top: 1.75rem;
  font-family: var(--font-display);
}
.about__signature .name {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-signature);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__signature .role {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--muted);
}
@media (min-width: 880px) {
  .about {
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(3rem, 7vw, 6rem);
    align-items: center;
  }
}

/* ---------- 15. Testimonials ---------- */
.testis {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82%, 21rem);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  /* wie bei .steps: der Scroll-Container clippt auch vertikal, der
     Karten-Schatten braucht deshalb Padding statt einer harten Kante */
  padding: 1.5rem var(--gutter) 3rem;
  margin-bottom: -1rem;
  margin-inline: calc(-1 * var(--gutter));
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.testis::-webkit-scrollbar {
  display: none;
}
.testi-card {
  scroll-snap-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Revision 6: dezenter Hover auf den weißen Kacheln — Karte hebt sich an,
   Schatten wird tiefer, Kante nimmt einen Hauch Markenfarbe an.
   Nur auf Geräten mit echtem Zeiger, sonst würde der Zustand auf Mobile
   nach dem Antippen kleben bleiben. */
@media (hover: hover) and (pointer: fine) {
  .earn-card:hover,
  .testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(154, 19, 67, 0.28);
  }
}
@media (prefers-reduced-motion: reduce) {
  .earn-card,
  .testi-card {
    transition: none;
  }
}
.testi-card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testi-card__avatar {
  flex: none;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--grad-signature);
  display: grid;
  place-items: center;
}
.testi-card__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-card__avatar span {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.testi-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}
.testi-card__meta {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}
.testi-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
}
.testi-card__stars {
  display: flex;
  gap: 2px;
  color: var(--sun-1);
}
.testi-card__stars svg {
  width: 1rem;
  height: 1rem;
}
/* Revision 2: Ergebnis als prominenter „Money-Strip" mit Euro-Chip */
.testi-card__result {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.2;
  color: var(--brand-berry);
  background: linear-gradient(120deg, rgba(197, 48, 65, 0.1), rgba(75, 33, 83, 0.07));
  border: 1px solid rgba(197, 48, 65, 0.2);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
}
.testi-card__result::before {
  content: "€";
  flex: none;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: var(--grad-signature);
  border-radius: 9px;
  box-shadow: 0 6px 16px -6px rgba(154, 19, 67, 0.6);
}
@media (min-width: 900px) {
  .testis {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-columns: unset;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    margin-inline: 0;
    /* overflow ist hier visible — der Schatten braucht kein Padding mehr,
       also auch den Ausgleich dafür zurücknehmen. */
    margin-bottom: 0;
  }
}

/* ---------- 16. Presse (Revision 3: echte Artikel als verlinkte Karten) ----------
   Ersetzt das frühere Mockup-Marquee. Drei Karten mit Screenshot des
   Originalartikels, Medium + Datum, Headline und Anriss; die ganze Karte ist
   ein Link zum Beitrag. */
.press-grid {
  display: grid;
  /* minmax(0, 1fr) statt auto/1fr: die Screenshots sind 1400px breit und
     würden die Spalte sonst über den Viewport hinaus aufziehen. */
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.press-grid > li,
.press-card,
.press-card__shot,
.press-card__body {
  min-width: 0;
}
@media (min-width: 780px) {
  .press-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.press-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.press-card:hover,
.press-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.press-card__shot {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}
.press-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.press-card:hover .press-card__shot img {
  transform: scale(1.04);
}
.press-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 1.4rem 1.4rem;
  flex: 1;
}
.press-card__source {
  /* Medium und Datum stehen immer untereinander — sonst bricht die Zeile je
     nach Namenslänge unterschiedlich um und die Karten sitzen versetzt. */
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-berry);
}
.press-card__date {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
}
.press-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}
.press-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}
.press-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.9rem;
  font-weight: 700;
  color: var(--brand-red);
}
.press-card__arrow svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  transition: transform 0.3s ease;
}
.press-card:hover .press-card__arrow svg,
.press-card:focus-visible .press-card__arrow svg {
  transform: translateX(4px);
}
/* ---------- 18. Team ----------
   Revision 6: zweispaltig — links Einleitung, rechts eine Liste schmaler
   Zeilen. Die Portraits laufen als kleine runde Avatare mit, das aktive
   Mitglied wird hervorgehoben und rotiert automatisch durch (main.js). */
.team-layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.team-intro__text {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: 1.6;
  max-width: 32rem;
}
.team-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-row {
  /* --tx = dekorativer Versatz des Bogens. Läuft über transform statt über
     margin, damit alle Zeilen exakt gleich breit bleiben. */
  --tx: 0rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.4rem 0.7rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: #fff;
  transform: translateX(var(--tx));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease,
    box-shadow 0.45s ease, border-color 0.45s ease;
}
.team-row__avatar {
  width: 3.25rem;
  height: 3.25rem;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface-2, #f3eef2);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-row__text h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}
.team-row__text p {
  margin: 0.1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Aktives Mitglied: tritt heraus, wird leicht getönt und der Avatar wächst.
   Die Klasse wandert per JS durch die Liste. */
.team-row.is-active {
  background: var(--grad-signature);
  border-color: transparent;
  box-shadow: 0 18px 40px -18px rgba(154, 19, 67, 0.55);
  transform: translateX(var(--tx)) scale(1.04);
}
.team-row.is-active .team-row__avatar {
  transform: scale(1.12);
}
.team-row.is-active .team-row__text h3 {
  color: #fff;
}
.team-row.is-active .team-row__text p {
  color: rgba(255, 249, 251, 0.85);
}

@media (min-width: 880px) {
  .team-layout {
    grid-template-columns: 1fr 1fr;
  }
  /* Leichter Bogen: die mittleren Zeilen ragen weiter nach links heraus.
     Rein dekorativ — der aktive Zustand wandert unabhängig davon. */
  .team-row:nth-child(2),
  .team-row:nth-child(3) {
    --tx: -1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-row,
  .team-row__avatar {
    transition: none;
  }
}

/* ---------- Hover-Effekte per Scroll (Touch-Geräte) ----------
   Auf Geräten ohne echten Hover (Handy/Tablet) triggert JS die
   Hover-Optik, sobald das Element mittig im Viewport steht
   (Klasse .hover-active via IntersectionObserver in main.js).
   Damit „leben" die Kacheln beim Scrollen, statt erst bei Tap. */
@media (hover: none) {
  .card--pillar.hover-active::after { opacity: 1; }
  .card--pillar.hover-active .card__icon {
    transform: translateY(-4px) rotate(-5deg) scale(1.08);
    box-shadow: 0 14px 28px -10px rgba(154, 19, 67, 0.65);
  }
  .img-frame--fit.hover-active {
    transform: translateY(-5px);
    box-shadow: 0 34px 74px -26px rgba(75, 33, 83, 0.55);
  }
  .img-frame--fit.hover-active img { transform: scale(1.06); }
  .img-frame--fit.hover-active::after { animation: fit-sheen 0.9s ease forwards; }
}

/* „Kennst du das?“ — auf Mobile passiert beim Scrollen sonst nichts.
   Jeder Punkt leuchtet auf, sobald er mittig im Viewport steht: Akzentkante
   wächst hoch, Icon nimmt die Markenfarbe an, die Kachel hebt sich leicht.
   Auf Desktop hängt derselbe Zustand am Hover. */
.pain-item.hover-active,
.pain-item:hover {
  background: rgba(255, 249, 251, 0.11);
  border-color: rgba(232, 93, 117, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -24px rgba(0, 0, 0, 0.75);
}
.pain-item.hover-active::before,
.pain-item:hover::before {
  transform: scaleY(1);
}
.pain-item.hover-active .pain-item__icon,
.pain-item:hover .pain-item__icon {
  background: var(--grad-signature);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 24px -10px rgba(154, 19, 67, 0.7);
}

@media (prefers-reduced-motion: reduce) {
  .pain-item,
  .pain-item::before,
  .pain-item__icon {
    transition: none;
  }
}

/* ---------- 19. Fahrplan / Timeline ----------
   Revision 1: pro Etappe Text + Bild (Desktop alternierend),
   Bilder werden beim Scrollen sanft eingeblendet (JS). */
.roadmap {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  padding-left: 3.25rem;
}
.roadmap__line {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 1.05rem;
  width: 3px;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden;
}
.roadmap__progress {
  position: absolute;
  inset: 0;
  background: var(--grad-signature);
  transform-origin: top;
  transform: scaleY(0);
}
.roadmap-step {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.roadmap-step:last-child {
  padding-bottom: 0;
}
.roadmap-step__media {
  aspect-ratio: 4 / 3;
  max-width: 26rem;
}
@media (min-width: 880px) {
  .roadmap-step {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
  }
  .roadmap-step__media {
    max-width: none;
  }
  /* Alternierend: Bild links / rechts */
  .roadmap-step--flip .roadmap-step__media {
    order: -1;
  }
}
.roadmap-step::before {
  content: "";
  position: absolute;
  left: -3.25rem;
  top: 0.2rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--brand-berry);
  box-shadow: 0 0 0 5px var(--paper);
}
.roadmap-step::after {
  content: "";
  position: absolute;
  left: -2.62rem;
  top: 0.83rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--grad-signature);
  transform: scale(0.6);
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.roadmap-step.is-active::after {
  transform: scale(1);
  opacity: 1;
}
.roadmap-step__phase {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-berry);
  margin-bottom: 0.4rem;
}
.roadmap-step h3 {
  margin-bottom: 0.3em;
}
.roadmap-step p {
  margin: 0;
  color: var(--muted);
}

/* ---------- 20. FAQ ---------- */
/* Revision 1: FAQ klar von der (rosa-soften) Fahrplan-Sektion absetzen —
   kühler Lavendel-Ton statt Papierweiß. Außerdem kompakterer Abstand
   zum folgenden CTA-Banner. */
#faq {
  background:
    radial-gradient(42rem 26rem at 92% 0%, rgba(232, 93, 117, 0.09), transparent 60%),
    radial-gradient(38rem 24rem at 0% 100%, rgba(75, 33, 83, 0.08), transparent 60%),
    #f2e7f3;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
#cta {
  padding-top: clamp(2rem, 4vw, 3rem);
}
.faq {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item.is-open {
  box-shadow: var(--shadow-card);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.35;
}
.faq-item__chevron {
  flex: none;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--brand-berry);
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}
.faq-item__chevron svg {
  width: 1rem;
  height: 1rem;
}
.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
  background: var(--grad-signature);
  color: #fff;
}
.faq-item__a {
  height: 0;
  overflow: hidden;
}
.faq-item__a > p {
  margin: 0;
  padding: 0 1.4rem 1.4rem;
  color: var(--muted);
}

/* ---------- 21. Finaler CTA-Banner ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--r) + 8px);
  color: #fff;
  background: var(--grad-sunset);
  box-shadow: var(--shadow-soft);
}
.cta-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Revision 6: Lena steht bei ~76 % der Bildbreite. Auf dem breiten
     Desktop-Banner ist sie ohnehin im Bild; auf Mobile wird der Ausschnitt
     so schmal, dass der mittige Standard-Crop nur Strand zeigt — deshalb
     dort weiter nach rechts in die Bildmitte der Figur greifen. */
  object-position: 62% center;
}
@media (max-width: 779px) {
  .cta-banner__img {
    object-position: 86% center;
  }
}
.cta-banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(43, 16, 50, 0.88) 0%, rgba(75, 33, 83, 0.72) 45%, rgba(122, 46, 107, 0.3) 100%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  padding: clamp(2.75rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 38rem;
}
.cta-banner h2 {
  text-shadow: 0 2px 24px rgba(28, 20, 32, 0.4);
}
.cta-banner__sub {
  font-size: var(--fs-lead);
  color: rgba(255, 249, 251, 0.92);
}
.cta-banner__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}
.cta-banner__pills li {
  font-size: 0.83rem;
  font-weight: 600;
  border: 1px solid rgba(255, 249, 251, 0.4);
  background: rgba(28, 20, 32, 0.25);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: var(--r-pill);
  padding: 0.5rem 1.05rem;
}

/* ---------- 22. Footer (Revision 3) ----------
   Heller „Bubble"-Container mit Logo + Text, außen der dunkelviolette
   Footer-Grund (hebt sich klar von der vorherigen Sektion ab). */
.footer {
  background: var(--ink);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  font-size: 0.9rem;
}
.footer__card {
  background: #fff;
  color: var(--ink);
  border-radius: calc(var(--r) + 8px);
  padding: clamp(1.75rem, 5vw, 3rem);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
}
.footer__top {
  display: grid;
  gap: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__logo img {
  height: 3rem;
  width: auto;
}
.footer__brand p {
  margin: 0;
  max-width: 22rem;
  color: var(--muted);
}
.footer__card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 1rem;
}
.footer__links li + li {
  margin-top: 0.6rem;
}
.footer__links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: var(--brand-berry);
}
.footer__copy {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}
@media (min-width: 780px) {
  .footer__top {
    grid-template-columns: 1.6fr 1fr;
  }
}

/* ---------- 23. Mobile Sticky-CTA-Bar ---------- */
/* Revision 3: kein weißer Balken mehr — der Button schwebt frei mit
   kräftigem Schatten (wirkt „gehovered", hebt sich klar vom Inhalt ab). */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 0.75rem var(--gutter) calc(0.85rem + env(safe-area-inset-bottom));
  background: transparent;
  transform: translateY(130%);
  transition: transform 0.35s ease;
}
.sticky-cta.is-visible {
  transform: none;
}
.sticky-cta .btn {
  width: 100%;
  padding-block: 0.95rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 14px 32px -6px rgba(255, 122, 60, 0.65),
    0 8px 22px -6px rgba(28, 20, 32, 0.55);
}
@media (min-width: 880px) {
  .sticky-cta {
    display: none;
  }
}

/* ---------- 24. Modal / Lead-Formular ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.modal.is-open {
  visibility: visible;
  opacity: 1;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 32, 0);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, -webkit-backdrop-filter 0.4s ease, backdrop-filter 0.4s ease;
}
.modal.is-open .modal__overlay {
  background: rgba(28, 20, 32, 0.65);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.modal__dialog {
  position: relative;
  width: min(100%, 30rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  background: var(--paper);
  border-radius: calc(var(--r) + 4px);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.75rem, 5vw, 2.5rem);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
}
.modal.is-open .modal__dialog {
  transform: none;
}
.modal__dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--grad-signature);
}
.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--brand-purple);
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.modal__close:hover {
  background: var(--line);
  transform: rotate(90deg);
}
.modal__close svg {
  width: 1.1rem;
  height: 1.1rem;
}
.modal__title {
  font-size: 1.5rem;
  margin-bottom: 0.3em;
  padding-right: 2rem;
}
.modal__sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.lead-form {
  display: grid;
  gap: 1.1rem;
}
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand-berry);
  box-shadow: 0 0 0 4px rgba(154, 19, 67, 0.12);
}
.form-field input[aria-invalid="true"] {
  border-color: var(--brand-red);
}
.form-field__error {
  display: none;
  font-size: 0.78rem;
  color: var(--brand-red);
  margin-top: 0.3rem;
}
.form-field.has-error .form-field__error {
  display: block;
}
.form-field--phone {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.6rem;
}
.form-field--phone > label {
  grid-column: 1 / -1;
}
.form-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: #eafaf0;
  border: 1px solid #bfe8cd;
  color: #1d5a34;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.45;
}
.form-hint svg {
  flex: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}
.form-check input {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  accent-color: var(--brand-berry);
  cursor: pointer;
}
.lead-form__submit {
  margin-top: 0.25rem;
}
/* Erfolgs-State */
.modal__success {
  display: none;
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}
.modal.is-success .lead-form,
.modal.is-success .modal__sub,
.modal.is-success .modal__title {
  display: none;
}
.modal.is-success .modal__success {
  display: block;
}
.modal__success-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-signature);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.modal__success-icon svg {
  width: 2rem;
  height: 2rem;
}
.modal__success h2 {
  font-size: 1.5rem;
}
.modal__success p {
  color: var(--muted);
  margin: 0;
}

/* ---------- 25. Rechtsseiten ---------- */
.legal {
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(4rem, 8vw, 6rem);
}
.legal .container {
  max-width: 46rem;
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.legal h2 {
  font-size: 1.35rem;
  margin-top: 2.25em;
}
.legal p,
.legal li {
  color: var(--muted);
}
.legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1em;
}
.legal-note {
  background: var(--paper-soft);
  border: 1.5px dashed var(--brand-berry);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  color: var(--brand-purple);
  font-weight: 500;
  margin: 1.5rem 0 2.5rem;
}

/* ---------- 26. Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .roadmap__progress {
    transform: none;
  }
  .faq-item__a {
    height: auto;
  }
  .faq-item:not(.is-open) .faq-item__a {
    height: 0;
  }
}


/* ---------- 20. Video-Testimonials (Erfolge) ----------
   Hochkant-Poster mit echtem Standbild, Play-Button, „Kundenstimme“-
   Badge, Name, Zitat und hervorgehobener Ergebnis-Aussage. Klick öffnet
   den 16:9-Player in einer Lightbox. Vor dem Klick lädt nichts von Vimeo
   (kein Cookie, kein Consent-Banner). */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 3vw, 1.75rem);
}
.video-testi {
  margin: 0;
}
.video-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--r);
  background: #1b0a20;
  box-shadow: var(--shadow-card);
  color: #fff;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-facade__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  /* Stills sind bereits gut belichtet — nur ein Hauch mehr Sättigung. */
  filter: saturate(1.04);
}
/* Abdunkelung unten für Lesbarkeit von Name/Zitat */
.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 4, 12, 0.92) 6%, rgba(10, 4, 12, 0.72) 32%, rgba(10, 4, 12, 0) 62%);
}
.video-facade__play {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  transition: transform 0.25s ease, background 0.25s ease;
}
.video-facade__play svg {
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 0.15rem;
}
.video-facade__tag {
  position: absolute;
  top: 1.15rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.video-facade__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.15rem 1.15rem 1.25rem;
}
.video-facade__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.1;
}
.video-facade__name span {
  font-weight: 400;
  opacity: 0.8;
}
.video-facade__quote {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}
.video-facade__result {
  align-self: flex-start;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--grad-signature);
  color: #fff;
  box-shadow: 0 6px 18px -8px rgba(154, 19, 67, 0.7);
}
@media (hover: hover) and (pointer: fine) {
  .video-facade:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
  }
  .video-facade:hover .video-facade__play {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.32);
  }
}
.video-facade:focus-visible {
  outline: 3px solid var(--brand-purple);
  outline-offset: 3px;
}
@media (min-width: 780px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}
/* Mobile: horizontales Wisch-Karussell wie Steps/Verdienst. Der
   „Wischen oder tippen“-Balken kommt per JS über [data-carousel]. */
@media (max-width: 779px) {
  .video-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(80%, 17rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* oben/unten Platz für den Karten-Schatten, seitlich randlos */
    padding: 0.75rem var(--gutter) 2.5rem;
    margin-inline: calc(-1 * var(--gutter));
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .video-grid::-webkit-scrollbar {
    display: none;
  }
  .video-testi {
    scroll-snap-align: center;
  }
  .video-grid + .carousel-nav {
    margin-bottom: clamp(1rem, 4vw, 2rem);
  }
}

/* ---------- 20a. Video-Lightbox ---------- */
.video-lightbox[hidden] {
  display: none;
}
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}
.video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 3, 10, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.video-lightbox__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 68rem);
}
.video-lightbox__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--r);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);
}
.video-lightbox__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-lightbox__close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transition: background 0.2s ease;
}
.video-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.video-lightbox__close svg {
  width: 1.3rem;
  height: 1.3rem;
}
@media (max-width: 600px) {
  .video-lightbox__close {
    top: -2.75rem;
  }
}

/* ================================================================
   21. Funnel-Seiten (Danke 1 = /termin, Danke 2 = /danke)
   Schlanke, ablenkungsfreie Post-Opt-in-Seiten im Seiten-Design.
   ================================================================ */
.funnel-head {
  display: flex;
  justify-content: center;
  padding: clamp(0.9rem, 3vw, 1.4rem) var(--gutter);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.funnel-head img {
  height: clamp(2.3rem, 7vw, 2.9rem);
  width: auto;
}

/* Kompakter dunkler Kopf mit Marken-Verlauf + Wellenabschluss */
.funnel-hero {
  position: relative;
  color: #fff;
  overflow: clip;
  background: linear-gradient(155deg, #35123d 0%, var(--brand-purple) 40%, #6b2a60 72%, #93315f 100%);
  padding-top: clamp(2rem, 7vw, 3.5rem);
}
.funnel-hero > .container {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  text-align: center;
}
.funnel-hero .hero__badge {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  margin: 0 auto;
}
.funnel-hero h1 {
  font-size: clamp(1.9rem, 6.2vw, 3rem);
  line-height: 1.08;
  margin: 1.1rem 0 0;
}
.funnel-hero__sub {
  margin: 1rem auto 0;
  max-width: 38rem;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.funnel-hero__wave {
  display: block;
  width: 100%;
  height: clamp(2.5rem, 6vw, 4rem);
  color: var(--paper); /* Farbe der Folgesektion */
  margin-top: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: -1px;
}

/* 3-Schritte-Fortschritt */
.funnel-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.funnel-steps li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem 0.4rem 0.45rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}
.funnel-steps__n {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
}
.funnel-steps__n svg {
  width: 0.8rem;
  height: 0.8rem;
}
.funnel-steps li.is-done {
  color: #fff;
}
.funnel-steps li.is-done .funnel-steps__n {
  background: #46c07a;
  color: #fff;
}
.funnel-steps li.is-active {
  background: var(--grad-signature);
  border-color: transparent;
  color: #fff;
}
.funnel-steps li.is-active .funnel-steps__n {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Inline-Video (Klick-zum-Laden, 16:9, ohne Lightbox) */
.video-inline {
  position: relative;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--r);
  background: #1b0a20;
  box-shadow: var(--shadow-soft);
}
.video-inline__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-inline::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.34));
}
/* Beim Abspielen kein Overlay mehr über dem Player */
.video-inline.is-playing::after {
  content: none;
}
.video-inline__btn {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.video-inline__play {
  width: clamp(3.75rem, 12vw, 5rem);
  height: clamp(3.75rem, 12vw, 5rem);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-purple);
  box-shadow: 0 12px 34px -10px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease, background 0.25s ease;
}
.video-inline__play svg {
  width: 40%;
  height: 40%;
  margin-left: 6%;
}
.video-inline__label {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-pill);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.video-inline iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (hover: hover) and (pointer: fine) {
  .video-inline__btn:hover .video-inline__play {
    transform: scale(1.08);
    background: #fff;
  }
}
.video-inline__btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -6px;
  border-radius: var(--r);
}

/* Calendly-Einbettung */
/* Video-First-Kopf auf /termin: Logo, Erfolgs-Badge, kurze Headline, dann
   direkt das Video — möglichst wenig über der Fold. */
.funnel-top {
  padding-top: clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}
.funnel-top__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1f7a46;
  background: rgba(70, 192, 122, 0.12);
  border: 1px solid rgba(70, 192, 122, 0.35);
  border-radius: var(--r-pill);
  padding: 0.4rem 0.9rem;
}
.funnel-top__badge svg {
  width: 1rem;
  height: 1rem;
}
.funnel-top__title {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  line-height: 1.12;
  margin: 0.9rem auto 1.2rem;
  max-width: 40rem;
}
.funnel-top__lead {
  margin: 0.4rem auto 1.2rem;
  max-width: 36rem;
  font-size: var(--fs-lead);
  color: var(--muted);
}

/* Kompakte Termin-Karte (Nebending auf /danke) */
.event-card--slim {
  max-width: 30rem;
  text-align: center;
}
.event-card__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.event-card__when {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
  line-height: 1.3;
}
.event-card__when strong {
  font-family: var(--font-display);
}
.event-card__when span {
  color: var(--muted);
}
.event-card__with {
  margin: 0.55rem 0 0;
  font-weight: 700;
  color: var(--brand-purple);
}
.event-card--slim .event-card__note {
  margin-top: 0.5rem;
}
.event-card--slim .event-card__actions {
  justify-content: center;
}
.event-fallback-note {
  text-align: center;
  color: var(--muted);
}

/* Calendly: schmaler (Detailspalte ist ausgeblendet → einspaltig), höher,
   damit kein Doppel-Scroll im Iframe entsteht, und auf Mobile randnah. */
.calendly-wrap {
  max-width: 46rem;
  margin: 0 auto;
}
.calendly-wrap .calendly-embed {
  height: 1000px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
/* Mobile: iframe deutlich höher setzen, damit Calendly möglichst ohne
   internen Scroll passt — man scrollt dann einfach die Seite. Calendly
   meldet keine Inhaltshöhe, daher ein großzügiger Festwert. */
@media (max-width: 779px) {
  .calendly-wrap .calendly-embed {
    height: 1400px;
  }
}

/* Scroll-Hinweis unter dem Video (/termin) */
.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.scroll-cue:hover {
  color: var(--brand-purple);
}
.scroll-cue__arrow {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-purple);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue__arrow { animation: none; }
}

/* "Zum Videokurs"-Button above the fold (/danke) */
.funnel-top__cta {
  margin-top: 1.4rem;
}

/* Icon-Badge auf der kompakten Termin-Karte (/danke) */
.event-card__badge {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: var(--grad-signature);
  color: #fff;
}
.event-card__badge svg {
  width: 1.5rem;
  height: 1.5rem;
}
.calendly-loading {
  display: grid;
  place-items: center;
  height: 1000px;
  color: var(--muted);
  font-size: 0.95rem;
}
.calendly-fallback {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Termin-Detailkarte (/danke) */
.event-card {
  max-width: 32rem;
  margin: 1.75rem auto 0;
  padding: clamp(1.1rem, 4vw, 1.6rem);
  text-align: left;
  background: #fff;
  color: var(--ink);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
}
.event-card__row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem 0;
}
.event-card__row + .event-card__row {
  border-top: 1px solid var(--line);
}
.event-card__icon {
  flex: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--grad-signature);
  color: #fff;
}
.event-card__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}
.event-card__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.event-card__val {
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.25;
}
.event-card__note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.event-card__actions .btn {
  flex: 1 1 10rem;
  justify-content: center;
}
