/* ============================================================
   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;
  --gutter: clamp(1.25rem, 4vw, 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;
  background: var(--grad-signature);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 24px -8px rgba(154, 19, 67, 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) */
.btn--primary.is-pinging {
  animation: btn-attn 0.85s ease;
}
@keyframes btn-attn {
  0%, 100% { transform: translateY(0); }
  35% { transform: translateY(-3px) scale(1.015); }
}
.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 40px -10px rgba(197, 48, 65, 0.65),
    0 6px 16px -6px rgba(75, 33, 83, 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;
}

@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 */
  }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  overflow: clip;
  color: #fff;
  /* 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) + clamp(2rem, 6vw, 4.5rem));
}
/* 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);
  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.8rem;
}
/* Revision 2: Hero-CTA hebt sich klar vom lila Hero ab — warmer,
   heller Signal-Verlauf statt des lila-endenden Signature-Gradients. */
.hero__cta-row .btn--primary {
  background: linear-gradient(135deg, #ff8a3d 0%, var(--brand-red) 58%, #e0344a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 14px 38px -8px rgba(255, 122, 60, 0.6);
}
.hero__cta-row .btn--primary:hover,
.hero__cta-row .btn--primary:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 18px 46px -8px rgba(255, 122, 60, 0.75),
    0 6px 16px -6px rgba(197, 48, 65, 0.5);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin-top: 2.2rem;
  font-size: 0.92rem;
  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);
}

/* 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;
}
/* 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%; }

/* 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: clamp(3rem, 8vw, 6rem);
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
  margin-bottom: -1px; /* kein Subpixel-Gap zur Folgesektion */
}

@media (min-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr 1.02fr;
    align-items: end;
    gap: clamp(2rem, 5vw, 4rem);
  }
  .hero__copy {
    padding-bottom: clamp(2.5rem, 6vw, 5rem);
  }
  .hero__media {
    width: 100%;
    max-width: 34rem;
    justify-self: end; /* unten rechts verankert */
  }
  .chip--1 { left: -14%; }
  .chip--3 { left: -16%; }
}

/* ---------- 8. Pain-Sektion ---------- */
.pain__grid {
  display: grid;
  gap: 1rem;
}
.pain-item {
  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;
}
.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);
}
.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);
}

/* 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;
}
.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;
}

/* Mobile: 3 Schritte als horizontales Snap-Karussell mit Scale/Fade */
@media (max-width: 779px) {
  .steps {
    grid-auto-flow: column;
    grid-auto-columns: min(80%, 20rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem var(--gutter) 1.5rem;
    margin-inline: calc(-1 * var(--gutter));
    scrollbar-width: none;
  }
  .steps::-webkit-scrollbar {
    display: none;
  }
  .steps .step-card {
    scroll-snap-align: center;
    transform: scale(0.94);
    opacity: 0.6;
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.3s ease;
  }
  .steps .step-card.is-active {
    transform: scale(1);
    opacity: 1;
    box-shadow: var(--shadow-soft);
  }
}

/* ---------- 10. Zahlen / Stats ---------- */
.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);
}

/* ---------- 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);
}
.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);
  }
}

/* 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;
}
.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;
  padding: 0.5rem var(--gutter) 1.75rem;
  margin-inline: calc(-1 * var(--gutter));
  scrollbar-width: thin;
  scrollbar-color: var(--brand-berry) var(--line);
}
.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;
}
.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;
  }
}

/* ---------- 16. Presse (Revision 1: Endlos-Marquee) ----------
   Basis: horizontal scrollbare Reihe (funktioniert ohne JS und unter
   reduced-motion). Mit Motion übernimmt JS ein endloses, gleichmäßiges
   Marquee mit Hover-Pause und Drag/Swipe. */
.press-marquee {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.press-marquee::-webkit-scrollbar {
  display: none;
}
.press-marquee.is-marquee {
  overflow: hidden;
  touch-action: pan-y; /* horizontales Draggen, vertikales Scrollen bleibt nativ */
}
.press-marquee.is-dragging {
  cursor: grabbing;
}
.press-marquee__track {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  width: max-content;
  /* großzügiges vertikales Padding, damit der Karten-Schatten nicht vom
     overflow-clip der Marquee abgeschnitten wird (Revision 2) */
  padding: 1.9rem var(--gutter);
  will-change: transform;
}
.press-slide {
  flex: none;
  width: min(72vw, 21rem);
}
.press-slide img {
  -webkit-user-drag: none;
  user-select: none;
}
.img-frame--press {
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
}
.press__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 1.25rem 0 0;
}

/* ---------- 17. Auszeichnungen ---------- */
/* Revision 2: hervorgehobenes Haupt-Siegel über den 4 Badges */
.award-feature {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 4vw, 2.25rem);
  border-radius: calc(var(--r) + 6px);
  background: linear-gradient(120deg, rgba(249, 162, 108, 0.16), rgba(232, 93, 117, 0.1));
  border: 1px solid rgba(249, 162, 108, 0.4);
  box-shadow: var(--shadow-soft);
}
.award-feature__seal {
  flex: none;
  width: clamp(3.75rem, 12vw, 4.75rem);
  height: clamp(3.75rem, 12vw, 4.75rem);
  color: var(--sun-1);
  filter: drop-shadow(0 6px 16px rgba(249, 162, 108, 0.45));
  animation: seal-pulse 4.5s ease-in-out infinite;
}
.award-feature__seal svg {
  width: 100%;
  height: 100%;
}
@keyframes seal-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(-2deg); }
}
.award-feature__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun-1);
}
.award-feature__title {
  margin: 0.15rem 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  line-height: 1.05;
  color: #fff;
}
.award-feature__sub {
  margin: 0;
  font-size: 0.85rem;
  color: var(--on-dark-muted);
}
.awards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}
.award-badge {
  text-align: center;
  background: rgba(255, 249, 251, 0.05);
  border: 1px solid rgba(246, 233, 242, 0.14);
  border-radius: var(--r);
  padding: 1.75rem 1.25rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.award-badge:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 162, 108, 0.5);
}
.award-badge svg {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  color: var(--sun-1);
}
.award-badge h3 {
  font-size: 1rem;
  margin: 0;
}
@media (min-width: 880px) {
  .awards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- 18. Team ----------
   Revision 2: Name + Rolle direkt aufs Foto gelegt (Scrim), Hover-Zoom,
   Lift und versetzte Anordnung — deutlich hochwertiger als Bild + Text. */
.team {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}
.team-card {
  transition: transform 0.35s ease;
}
.team-card__photo {
  position: relative;
  transition: box-shadow 0.35s ease;
}
.team-card__photo img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover {
  transform: translateY(-6px);
}
.team-card:hover .team-card__photo {
  box-shadow: var(--shadow-soft);
}
.team-card:hover .team-card__photo img {
  transform: scale(1.07);
}
.team-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 2.25rem 1.15rem 1rem;
  background: linear-gradient(to top, rgba(28, 20, 32, 0.92) 0%, rgba(28, 20, 32, 0.55) 42%, transparent 100%);
}
.team-card__overlay::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  width: 1.75rem;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-signature);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.team-card:hover .team-card__overlay::before {
  transform: scaleX(1);
}
.team-card__overlay h3 {
  margin: 0 0 0.1em;
  font-size: 1.05rem;
  color: #fff;
}
.team-card__overlay p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 249, 251, 0.85);
}
@media (min-width: 880px) {
  .team {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  /* versetzte Anordnung für einen dynamischeren Rhythmus */
  .team-card:nth-child(even) {
    margin-top: 2.25rem;
  }
}

/* ---------- 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;
}
.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 ---------- */
.footer {
  background: var(--ink);
  color: var(--on-dark-muted);
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
  font-size: 0.9rem;
}
.footer__top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(246, 233, 242, 0.12);
}
.footer__brand .nav__logo {
  color: #fff;
  margin-bottom: 0.9rem;
}
/* Revision 2: echtes Logo auf hellem Chip, damit es sich sauber vom
   dunklen Footer abhebt und nicht „auffällt". */
.footer__logo {
  display: inline-block;
  margin-bottom: 1.1rem;
}
.footer__logo-chip {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 0.5rem 0.85rem;
  box-shadow: 0 12px 32px -14px rgba(0, 0, 0, 0.5);
}
.footer__logo-chip img {
  height: 3rem;
  width: auto;
}
.footer__brand p {
  margin: 0;
  max-width: 22rem;
}
.footer h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: 1rem;
}
.footer__links li + li {
  margin-top: 0.6rem;
}
.footer__links a {
  color: var(--on-dark-muted);
  text-decoration: none;
}
.footer__links a:hover {
  color: var(--sun-1);
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(246, 233, 242, 0.2);
  color: var(--on-dark);
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.footer__social a:hover {
  background: var(--grad-signature);
  border-color: transparent;
  transform: translateY(-3px);
}
.footer__social svg {
  width: 1.2rem;
  height: 1.2rem;
}
.footer__disclaimer {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(246, 233, 242, 0.14);
  border-radius: var(--r);
  font-size: 0.8rem;
  line-height: 1.6;
}
.footer__disclaimer strong {
  color: var(--on-dark);
}
.footer__copy {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.78rem;
}
@media (min-width: 780px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

/* ---------- 23. Mobile Sticky-CTA-Bar ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 0.75rem var(--gutter) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 249, 251, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 -10px 30px -14px rgba(75, 33, 83, 0.4);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.sticky-cta.is-visible {
  transform: none;
}
.sticky-cta .btn {
  width: 100%;
  padding-block: 0.9rem;
}
@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.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;
  }
}
