/* ============================================================
   Fix Media Solutions — Landing Page
   Design System / Tokens
   ============================================================ */
:root {
  /* Brand colors */
  --primary:      #0A0D2D;   /* Primärblau (dunkler Hintergrund) */
  --secondary:    #0c1039;   /* Sekundärblau */
  --accent:       #2cee91;   /* Akzentgrün */
  --bg-light:     #F5F5FF;   /* heller Hintergrund */
  --text-dark:    #0A0D2D;   /* Text auf hell */
  --text-light:   #F5F5FF;   /* Text auf dunkel */
  --muted-light:  rgba(245,245,255,0.72); /* gedämpfter Text auf dunkel */
  --muted-dark:   rgba(10,13,45,0.66);     /* gedämpfter Text auf hell */

  /* Glow-Kreis-Farben (dunkle Sections aufhellen) */
  --glow-blue:    #5789D9;
  --glow-purple:  #883395;
  --glow-cream:   #FFFBF4;
  --glow-gold:    #F4B942;

  /* Raster-Linienfarbe (dunkle Seite = helle Linien) */
  --grid-line: rgba(245,245,255,0.05);

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --gap: clamp(1rem, 2vw, 1.75rem);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "League Spartan", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.55;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }

/* ---------- Section themes ---------- */
.section { position: relative; padding-block: clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.section--dark  { background: var(--primary); color: var(--text-light); }
.section--light { background: var(--bg-light); color: var(--text-dark); }

/* Glow circles for dark sections */
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.42; pointer-events: none; z-index: 0; }
.glow--blue   { background: var(--glow-blue); }
.glow--purple { background: var(--glow-purple); }
.glow--cream  { background: var(--glow-cream); opacity: 0.18; }
.glow--gold   { background: var(--glow-gold); opacity: 0.30; }
.section--dark > .container { position: relative; z-index: 1; }

/* Clip-Container für Glows in Cards/Sections mit runden Ecken
   (clip-path clippt auf iOS zuverlässig die geblurrten Kreise, ohne den Card-Schatten zu beschneiden) */
.card-glows { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.guarantee__card .card-glows { clip-path: inset(0 round 24px); }
.fullstop__card .card-glows { clip-path: inset(0 round 28px); }
.journey-sec .card-glows { clip-path: inset(0); }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
h1 { font-size: clamp(1.7rem, 5.4vw, 4.4rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.015em; }
h2 { font-size: clamp(2rem, 3.4vw, 2.6rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.01em; }
.hl { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: inherit; font-weight: 800; font-size: 0.98rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 1.08rem 1.7rem 0.92rem; border: none; border-radius: var(--radius-sm); cursor: pointer;
  background: var(--accent); color: var(--primary);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow: 0 8px 24px rgba(44,238,145,0.28);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 12px 30px rgba(44,238,145,0.38); }
.btn--ghost { background: transparent; color: var(--text-light); border: 1.5px solid rgba(245,245,255,0.3); box-shadow: none; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding-block: 0.8rem; padding-inline: clamp(1rem, 4vw, 2rem); transition: padding .3s ease; }
.site-header .container {
  padding-inline: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border: 1px solid transparent;
  transition: max-width .3s ease, background .3s ease, padding .3s ease, border-color .3s ease, box-shadow .3s ease, border-radius .3s ease;
}
.brand__long { transition: opacity .3s ease; }
.brand__icon { display: none; }   /* Desktop: kein Icon */
.brand img.brand__icon { height: 30px; }
.btn__short { display: none; }
.site-header.scrolled { padding-block: 0.45rem; }
.site-header.scrolled .container {
  max-width: 820px; border-radius: 999px;
  background: rgba(12,16,57,0.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-color: rgba(245,245,255,0.12); box-shadow: 0 12px 34px rgba(0,0,0,0.28);
  padding: 0.5rem 0.6rem 0.5rem 1.4rem;
}
body.theme-light .site-header.scrolled .container {
  background: rgba(255,255,255,0.86); border-color: rgba(10,13,45,0.10); box-shadow: 0 12px 34px rgba(10,13,45,0.12);
}
.brand { position: relative; display: inline-flex; align-items: center; gap: 0.6rem; }
.brand img { height: 26px; width: auto; display: block; }
.site-header .btn { padding: 0.78rem 1.2rem 0.62rem; font-size: 0.82rem; white-space: nowrap; flex: 0 0 auto; }
.site-header.scrolled .btn { border-radius: 999px; }   /* Button wird mit der Pill-Navbar rund */

/* ---------- Hero (Section 1) ---------- */
.hero { position: relative; min-height: 100svh; min-height: 100dvh; display: flex; align-items: center; padding-block: clamp(5rem, 11vh, 8rem) clamp(6.5rem, 15vh, 10.5rem); }
.hero .container { width: 100%; position: relative; z-index: 1; }

/* Raster im Hintergrund, fadet zu allen Seiten weich aus */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 42%, #000 28%, transparent 82%);
          mask-image: radial-gradient(ellipse 78% 78% at 50% 42%, #000 28%, transparent 82%);
}
.hero__inner { max-width: 880px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }

/* Pill-Eyebrow mit pulsierendem Punkt */
.pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(245,245,255,0.08); border: 1px solid rgba(245,245,255,0.2);
  border-radius: 999px; padding: 0.68rem 1.25rem 0.52rem; margin-bottom: 1.4rem;
  font-size: 0.84rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light);
}
.pill__dot { width: 10px; height: 10px; border-radius: 50%; background: #ff4d4d; flex: 0 0 auto; box-shadow: 0 0 0 0 rgba(255,77,77,0.55); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,77,77,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}
/* Eyebrow-Badge in Akzentfarbe (grün) */
.pill--accent { color: var(--accent); background: rgba(44,238,145,0.1); border-color: rgba(44,238,145,0.42); }

.hero h1 { margin-bottom: 0.95rem; }
.hero__bullets { list-style: none; display: grid; gap: 0.7rem; margin: 1.5rem 0 2rem; }
.hero__bullets--row { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.6rem; }
.hero__bullets li { display: flex; align-items: center; gap: 0.55rem; font-size: 16px; color: var(--muted-light); }

/* Mikro-Social-Proof unter dem CTA */
.hero__proof { margin-top: 1.1rem; display: flex; align-items: center; justify-content: center; gap: 0.55rem; font-size: 0.9rem; color: var(--muted-light); }
.hero__proof .stars { color: var(--glow-gold); letter-spacing: 0.06em; }
.hero__proof .lock { width: 14px; height: 14px; flex: 0 0 auto; opacity: 0.85; }
.section--light .hero__proof { color: var(--muted-dark); }
.hero__bullets li::before {
  content: ""; flex: 0 0 auto; width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%232cee91'/%3E%3Cpath d='M7.5 12.4 10.6 15.6 16.6 9' fill='none' stroke='%230A0D2D' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Subheadline (deutlich größer als Bullets, ~gleiche Breite wie Headline) */
.hero__sub { max-width: 44ch; margin: 0 auto; font-size: 18px; font-weight: 500; line-height: 1.45; color: var(--muted-light); }

/* Variante mit langer Original-Headline: kleinere Schrift, damit alles auf einen Screen passt */
.hero--long h1 { font-size: clamp(1.45rem, 3.4vw, 2.85rem); line-height: 1.1; }
.hero--long .hero__inner { max-width: 940px; }

.hero__visual {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(87,137,217,0.18), rgba(136,51,149,0.16));
  border: 1px solid rgba(245,245,255,0.12);
  display: grid; place-items: center; color: var(--muted-light); font-size: 0.9rem; text-align: center; padding: 1.5rem;
}

/* ---------- Trust bar (Section 2) ---------- */
.trustbar { padding-block: clamp(1.6rem, 3vw, 2.2rem); border-bottom: 1px solid rgba(10,13,45,0.07); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.2rem, 5vw, 3.5rem); text-align: center; }
.trust-item { display: flex; flex-direction: column; gap: 0.15rem; }
.trust-item b { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--primary); line-height: 1; }
.trust-item span { font-size: 0.86rem; color: var(--muted-dark); }
.trust-stars { color: var(--glow-gold); }

/* Trust-Card als Brücke: sitzt auf der Grenze, peekt über die Falz, wächst beim Scrollen */
.section--bridge { display: flow-root; overflow: visible; position: relative; z-index: 6; padding-block: 0 clamp(3rem, 6vw, 5rem); }
.trust-card {
  position: relative; margin-top: -70px;
  width: fit-content; max-width: calc(100% - 2rem); margin-inline: auto;
  background: #fff; border: 1px solid rgba(10,13,45,0.06); border-radius: 20px;
  box-shadow: 0 26px 60px rgba(10,13,45,0.18);
  padding: clamp(1.2rem, 2.4vw, 1.7rem) clamp(1.8rem, 4.5vw, 3rem);
  display: flex; align-items: stretch; justify-content: center; gap: clamp(1.2rem, 3.2vw, 2.8rem);
  transform: scale(0.88); transform-origin: center center; will-change: transform;
  transition: box-shadow .4s ease;
}
.trust-card .trust-item { align-items: center; text-align: center; justify-content: center; }
.trust-card .trust-item b { color: var(--primary); font-size: clamp(1.7rem, 3.4vw, 2.35rem); }
.trust-card .trust-item b.trust-stars { color: var(--glow-gold); }
.trust-card .trust-item span { font-size: 0.92rem; }
.trust-div { width: 1px; align-self: stretch; background: rgba(10,13,45,0.12); flex: 0 0 auto; }
/* "Google" in Google-Farben */
.g-google { font-weight: 700; }
.g-google span:nth-child(1){ color:#4285F4 } .g-google span:nth-child(2){ color:#EA4335 }
.g-google span:nth-child(3){ color:#FBBC05 } .g-google span:nth-child(4){ color:#4285F4 }
.g-google span:nth-child(5){ color:#34A853 } .g-google span:nth-child(6){ color:#EA4335 }

/* Highlight-Chip auch in einzelnen hellen Sections (Seite hat dunkles Theme) */
.section--light .hl {
  color: var(--primary); background: var(--accent);
  padding: 0.06em 0.3em; border-radius: 9px; line-height: 1;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* ---------- Lead Panel (Section 3) ---------- */
.lead { padding-top: clamp(0.5rem, 2vw, 1.25rem); }
.lead__inner { max-width: 600px; text-align: center; }
.lead__title { margin-bottom: 1.7rem; }
.lead__checks {
  list-style: none; display: inline-flex; flex-direction: column;
  gap: 0.95rem; text-align: left; margin: 0 auto 1.9rem;
}
.lead__checks li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 1.08rem; font-weight: 600; color: var(--text-dark); }
.lead__checks li::before {
  content: ""; flex: 0 0 auto; width: 24px; height: 24px; margin-top: 1px;
  background: url("../assets/emoji/thinking-apple.png") center/contain no-repeat;
}
.lead__punch { font-size: clamp(1.18rem, 2.4vw, 1.5rem); font-style: italic; font-weight: 400; line-height: 1.32; margin-bottom: 2.3rem; }
.lead__body { max-width: 600px; margin-inline: auto; text-align: justify; text-justify: inter-word; }
.lead__body p { font-size: 18px; font-weight: 500; line-height: 1.35; color: var(--text-dark); }
.lead__body p + p { margin-top: 1.25rem; }

/* ---------- System-Journey (Section 4, 3D-Phone Scrollytelling) ---------- */
/* overflow: clip statt hidden -> Glows werden gekappt, aber KEIN Scroll-Container
   (sonst funktioniert position: sticky des Phones nicht) */
.journey-sec { overflow: clip; }
.journey-head { max-width: 600px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); text-align: center; }
.journey-head h2 { margin-bottom: 1rem; }
.journey-intro { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--muted-light); }
.journey-intro strong { color: var(--accent); }

.journey { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }

/* Sticky-Spalte mit 3D-Perspektive */
.journey__viz {
  position: sticky; top: 0; height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  perspective: 1300px;
}

/* Phone */
.phone {
  position: relative; width: clamp(220px, 21vw, 290px); aspect-ratio: 1 / 2.05;
  border-radius: 38px; background: #05071c;
  border: 1px solid rgba(245,245,255,0.14);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 0 6px #0a0d2d;
  transform-style: preserve-3d; will-change: transform;
}
.phone::before {   /* Akzent-Glow hinter dem Phone */
  content: ""; position: absolute; inset: -14%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,238,145,0.28), transparent 65%);
  filter: blur(36px);
}
.phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 22px; background: #05071c; border-radius: 0 0 14px 14px; z-index: 3;
}
.phone__screens { position: absolute; inset: 8px; border-radius: 30px; overflow: hidden; background: #0c1039; }
.phone__screen {
  position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease;
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 1.2rem;
  background: linear-gradient(160deg, #1a1f4d, #0c1039);
}
.phone__screen.is-active { opacity: 1; }
.phone__screen img, .phone__screen video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-slot { font-size: 0.82rem; line-height: 1.6; color: var(--muted-light); }
.ph-slot b { color: var(--text-light); font-size: 1rem; }
.ph-slot small { color: rgba(245,245,255,0.5); font-size: 0.72rem; }

/* Closed-Loop-Overlay auf dem Phone (letzter Schritt) */
.phone__loop {
  position: absolute; inset: 8px; border-radius: 30px; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,7,28,0.55); color: var(--accent);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.phone__loop.is-on { opacity: 1; }
.phone__loop span { font-size: 4.5rem; line-height: 1; display: inline-block; }
.phone__loop.is-on span { animation: spin 2.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.jstep__num--loop { font-size: 1.6rem; }

/* Steps */
.journey__steps { list-style: none; }
.jstep {
  min-height: 78vh; display: flex; flex-direction: column; justify-content: center;
  max-width: 460px; opacity: 0.32; transition: opacity .45s ease;
}
.jstep.is-active { opacity: 1; }
.jstep__num { font-size: 0.95rem; font-weight: 800; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.6rem; }
.jstep h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; line-height: 1.1; margin-bottom: 0.8rem; }
.jstep p { font-size: 18px; line-height: 1.5; color: var(--muted-light); }

/* ---------- System-Journey als vertikaler Stepper (Section 4, ohne Phone) ---------- */
.stepper { position: relative; list-style: none; max-width: 820px; margin-inline: auto; display: none; }   /* nur Mobile (Desktop = Phone) */
/* durchgehende Verbindungslinie hinter den Nummern-Badges */
.stepper::before {
  content: ""; position: absolute; top: 24px; bottom: 24px; left: 23px; width: 2px;
  background: rgba(245,245,255,0.14);
}
.step { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: clamp(1rem, 2.5vw, 1.8rem); padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.step:last-of-type { padding-bottom: 0; }
.step__rail { position: relative; }
.step__num {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; padding-top: 3px;
  font-weight: 800; font-size: 1.05rem; color: var(--primary); background: var(--accent);
  position: relative; z-index: 2; box-shadow: 0 0 0 6px rgba(44,238,145,0.12);
}
.step__card {
  display: grid; grid-template-columns: 210px 1fr; gap: clamp(1rem, 2.5vw, 1.6rem); align-items: center;
  background: rgba(245,245,255,0.04); border: 1px solid rgba(245,245,255,0.08);
  border-radius: 18px; padding: clamp(1rem, 2vw, 1.4rem);
}
.step__media {
  aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
  background: linear-gradient(160deg, #1a1f4d, #0c1039); border: 1px solid rgba(245,245,255,0.08);
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 0.8rem;
}
.step__media img, .step__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.step__text h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 800; line-height: 1.12; margin-bottom: 0.5rem; }
.step__text p { font-size: 17px; line-height: 1.5; color: var(--muted-light); }

/* Closed-Loop-Knoten am Ende des Steppers (zurück zu Schritt 02) */
.step--loop { align-items: center; }
.step__num--loop { background: transparent; color: var(--accent); border: 2px dashed var(--accent); box-shadow: none; font-size: 1.5rem; }
.step__loop-text { align-self: center; max-width: 460px; font-size: 15px; line-height: 1.5; font-weight: 600; color: var(--accent); opacity: 0.92; }

/* CTA am Ende einer Section (zentriert) */
.journey-cta, .section-cta { text-align: center; margin-top: clamp(2.2rem, 5vw, 3.5rem); }

/* Proof-Zeile unter jedem CTA (wie Above the Fold) — gilt für alle CTAs außer Navbar */
.cta-proof { margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.55rem; font-size: 0.9rem; color: var(--muted-light); }
.cta-proof .lock { width: 14px; height: 14px; flex: 0 0 auto; opacity: 0.85; }
.section--light .cta-proof { color: var(--muted-dark); }

/* ---------- How It Works (Section 5) ---------- */
.howto__head { max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3.2rem); text-align: center; }
.howto__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.2rem, 3vw, 2rem); }
.howto__card {
  background: #fff; border: 1px solid rgba(10,13,45,0.07); border-radius: 18px;
  padding: clamp(1.5rem, 2.5vw, 2rem); box-shadow: 0 16px 40px rgba(10,13,45,0.06);
}
.howto__num {
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; padding-top: 3px;
  background: var(--accent); color: var(--primary); font-weight: 800; font-size: 1.05rem; margin-bottom: 1.1rem;
}
.howto__card h3 { font-size: 1.25rem; font-weight: 800; line-height: 1.15; margin-bottom: 0.6rem; }
.howto__card p { font-size: 16px; line-height: 1.55; color: var(--muted-dark); }

/* ---------- Social Proof / Testimonials (Section 6) ---------- */
.proof__head { max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; }
.proof__featured {
  max-width: 760px; margin: 0 auto clamp(1.2rem, 3vw, 1.8rem); text-align: center;
  background: rgba(245,245,255,0.05); border: 1px solid rgba(245,245,255,0.1);
  border-radius: 20px; padding: clamp(1.6rem, 3vw, 2.4rem);
}
.proof__featured .proof__title { font-size: clamp(1.1rem, 1.8vw, 1.3rem); }
.proof__featured blockquote { font-size: clamp(1.05rem, 1.8vw, 1.22rem); line-height: 1.5; color: var(--text-light); }
.proof__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1rem, 2.5vw, 1.5rem); max-width: 1000px; margin-inline: auto; }
.proof__card {
  background: rgba(245,245,255,0.04); border: 1px solid rgba(245,245,255,0.08);
  border-radius: 16px; padding: clamp(1.3rem, 2vw, 1.7rem);
  display: flex; flex-direction: column;
}
.proof__card .proof__title { font-size: 1rem; }
.proof__card blockquote { font-size: 15px; line-height: 1.55; color: var(--muted-light); }
.proof__title { color: var(--accent); font-weight: 800; line-height: 1.2; margin-bottom: 0.8rem; }
.proof figcaption { margin-top: 1.1rem; }
.proof__card figcaption { margin-top: auto; padding-top: 1.1rem; }
.proof__name { font-weight: 800; color: var(--text-light); }
.proof__co { font-weight: 500; color: var(--muted-light); }
.proof__src { display: block; margin-top: 0.2rem; font-size: 0.82rem; color: var(--muted-light); }
.proof .stars { color: var(--glow-gold); letter-spacing: 0.04em; }

/* ---------- Who We Serve (Section 7) — Split „Für dich / Nicht für dich" ---------- */
.serve__head { max-width: 660px; margin: 0 auto clamp(2rem, 5vw, 3rem); text-align: center; }
.serve-split {
  display: grid; grid-template-columns: 1.15fr 0.85fr; max-width: 920px; margin-inline: auto;
  background: #fff; border: 1px solid rgba(10,13,45,0.08); border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(10,13,45,0.08);
}
.serve-split__col { padding: clamp(1.6rem, 3vw, 2.4rem); }
.serve-split__col--yes { background: rgba(44,238,145,0.09); display: flex; flex-direction: column; justify-content: center; }
.serve-split__col--no { border-left: 1px solid rgba(10,13,45,0.08); }
.serve-split__label { display: block; font-weight: 800; font-size: 1.18rem; margin-bottom: 1.3rem; color: var(--muted-dark); }
.serve-split ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.serve-split li { position: relative; padding-left: 34px; font-size: 17px; line-height: 1.45; }
.serve-split__col--yes li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 24px; height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%232cee91'/%3E%3Cpath d='M7.5 12.4 10.6 15.6 16.6 9' fill='none' stroke='%230A0D2D' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.serve-split__col--no li { color: var(--muted-dark); }
.serve-split__col--no li::before { content: "✕"; position: absolute; left: 3px; top: 0; font-weight: 800; font-size: 1.05rem; color: #e5484d; }

/* ---------- Offer Stack (Section 8) — max. 550px, Zeilen-Bars ---------- */
.offer__inner { max-width: 550px; margin-inline: auto; }
.offer__head { text-align: center; margin-bottom: clamp(1.6rem, 4vw, 2.4rem); }
.offer__visual {
  aspect-ratio: 16 / 5; border-radius: 16px; overflow: hidden;
  background: linear-gradient(160deg, #1a1f4d, #0c1039); border: 1px solid rgba(245,245,255,0.1);
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}
.offer__visual img, .offer__visual video { width: 100%; height: 100%; object-fit: cover; }
.offer__sub { text-align: center; font-size: clamp(1rem, 1.6vw, 1.12rem); color: var(--muted-light); margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.offer__list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.offer__list li {
  display: flex; align-items: center; gap: 0.8rem; font-size: 17px; font-weight: 600; line-height: 1.3;
  background: rgba(245,245,255,0.045); border: 1px solid rgba(245,245,255,0.09);
  border-radius: 12px; padding: 0.95rem 1.15rem;
}
.offer-ico { width: 24px; height: 24px; flex: 0 0 auto; color: var(--accent); }
.offer__list-bonus { background: rgba(44,238,145,0.08); border-color: rgba(44,238,145,0.32); }
.offer__badge {
  flex: 0 0 auto; background: rgba(44,238,145,0.15); border: 1px solid var(--accent); color: var(--accent);
  font-weight: 800; font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
}
/* CTA über volle Breite (550px) */
.offer .section-cta .btn { width: 100%; }

/* ---------- Guarantee Panel (Section 10) — Glas-Cards ---------- */
.section.guarantee { overflow: visible; position: relative; z-index: 2; }   /* Schatten läuft sichtbar über die nächste Section (sonst überdeckt deren Hintergrund ihn) */
.guarantee__card {
  position: relative; overflow: hidden; max-width: 850px; margin-inline: auto; text-align: center;
  color: var(--text-light); background: linear-gradient(165deg, #11163f, #0a0d2d);
  border: 1px solid rgba(245,245,255,0.1); border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.2rem); box-shadow: 0 40px 90px 0 rgba(6,8,30,0.3);
}
.guarantee__card .glow { opacity: 0.3; filter: blur(75px); }
.guarantee__inner { position: relative; z-index: 1; }
.guarantee__tag {
  display: inline-block; background: rgba(44,238,145,0.12); border: 1px solid rgba(44,238,145,0.4);
  color: var(--accent); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 800; padding: 6px 14px; border-radius: 999px; margin-bottom: 1.2rem;
}
.guarantee__title { color: var(--text-light); margin-bottom: 1.2rem; }
.guarantee__title .acc { color: var(--accent); }
.guarantee__lead { max-width: 620px; margin: 0 auto clamp(1.8rem, 3.5vw, 2.6rem); font-size: 18px; line-height: 1.5; color: var(--muted-light); }
.guarantee__lead .w { color: #fff; font-weight: 700; }
.guarantee__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 1.4rem); text-align: left; }
.guarantee__item {
  display: flex; flex-direction: column;
  background: rgba(245,245,255,0.06); border: 1px solid rgba(245,245,255,0.14); border-radius: 20px;
  padding: clamp(1.5rem, 2.5vw, 2rem); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.guarantee__no {
  display: inline-block; align-self: flex-start; background: rgba(44,238,145,0.12); border: 1px solid rgba(44,238,145,0.4);
  color: var(--accent); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 800;
  padding: 5px 12px; border-radius: 999px; margin-bottom: clamp(1rem, 2.2vw, 1.4rem);
}
.guarantee__stat { display: flex; align-items: baseline; gap: 0.45rem; margin-bottom: 0.2rem; }
.guarantee__stat-num { font-size: clamp(2.6rem, 6vw, 3.5rem); font-weight: 800; line-height: 1; color: var(--text-light); }
.guarantee__stat-unit { font-size: 1.05rem; font-weight: 600; color: var(--muted-light); }
.guarantee__item h3 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); font-weight: 800; color: var(--accent); margin-bottom: 0.6rem; }
.guarantee__item p { font-size: 15.5px; line-height: 1.55; color: var(--muted-light); margin-bottom: clamp(1.2rem, 2.5vw, 1.6rem); }
.guarantee__check { margin-top: auto; display: flex; align-items: center; gap: 0.6rem; background: rgba(44,238,145,0.13); border-radius: 12px; padding: 0.75rem 0.95rem; font-size: 14.5px; font-weight: 700; color: var(--accent); }
.g-check-ico { width: 22px; height: 22px; flex: 0 0 auto; }
.guarantee__ps {
  display: flex; align-items: flex-start; gap: 0.7rem; text-align: left;
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem); background: rgba(245,245,255,0.04);
  border: 1px solid rgba(245,245,255,0.1); border-radius: 16px; padding: clamp(1.1rem, 2vw, 1.4rem);
  font-size: 15px; line-height: 1.55; color: var(--muted-light);
}
.guarantee__ps .lock { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; opacity: 0.7; }
.guarantee__ps b { color: var(--text-light); font-weight: 800; }
.guarantee__ps i { font-style: italic; }
.guarantee__card .section-cta { margin-top: clamp(1.6rem, 3.5vw, 2.4rem); }
.guarantee__card .cta-proof { color: var(--muted-light); }

/* ---------- FAQ (Section 11) ---------- */
.faq__inner { max-width: 720px; }
.faq__head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.faq__list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq__item { background: #fff; border: 1px solid rgba(10,13,45,0.08); border-radius: 14px; padding: 0 clamp(1.1rem, 2vw, 1.5rem); box-shadow: 0 10px 30px rgba(10,13,45,0.04); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: clamp(1.1rem, 2vw, 1.35rem) 0; font-size: 1.08rem; font-weight: 700; color: var(--primary); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; font-size: 1.5rem; line-height: 1; color: var(--accent); transition: transform .25s ease; }
.faq__item[open] .faq__chev { transform: rotate(45deg); }
.faq__a { padding: 0 0 clamp(1.1rem, 2vw, 1.35rem); }
.faq__a p { font-size: 16px; line-height: 1.6; color: var(--muted-dark); }


/* ---------- Page Full Stop (Section 12) — dunkle Card mit Portrait ---------- */
.section.fullstop { padding-inline: clamp(20px, 5vw, 60px); }
.fullstop__card {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 0.85fr;
  max-width: 1200px; margin-inline: auto; color: var(--text-light);
  background: linear-gradient(165deg, #11163f, #0a0d2d);
  border: 1px solid rgba(245,245,255,0.1); border-radius: 28px;
  box-shadow: 0 40px 90px 0 rgba(6,8,30,0.45);
}
.fullstop__card .glow { opacity: 0.3; filter: blur(75px); }
.fullstop__content { position: relative; z-index: 1; padding: clamp(2rem, 4vw, 3.6rem); text-align: left; }
.fullstop__photo { position: relative; z-index: 1; background: #0c1039; }
.fullstop__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.urgency-pill {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.4rem;
  background: rgba(229,72,77,0.15); border: 1px solid rgba(229,72,77,0.45); color: #ff8a8d;
  border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
}
.urgency-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff5a5e; flex: 0 0 auto; box-shadow: 0 0 0 0 rgba(255,90,94,0.5); animation: pulse-red 1.8s infinite; }
@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(255,90,94,0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(255,90,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,94,0); }
}
.fullstop h2 { color: var(--text-light); margin-bottom: 1rem; }
.fullstop__sub { font-size: 18px; line-height: 1.6; color: var(--muted-light); margin-bottom: 1.8rem; }
.fullstop__benefits { list-style: none; margin-bottom: 1.8rem; }
.fullstop__benefits li { position: relative; padding-left: 32px; font-size: 16px; font-weight: 500; line-height: 1.4; }
.fullstop__benefits li + li { margin-top: 0.75rem; }
.fullstop__benefits li::before {
  content: ""; position: absolute; left: 0; top: 0; width: 23px; height: 23px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%232cee91'/%3E%3Cpath d='M7.5 12.4 10.6 15.6 16.6 9' fill='none' stroke='%230A0D2D' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.fullstop .section-cta { display: inline-block; text-align: left; margin-top: 0; }
.fullstop .cta-proof { justify-content: center; color: var(--muted-light); }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary); color: var(--muted-light); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(245,245,255,0.1); }
.footer__brand img { height: 26px; width: auto; display: block; }
.footer__nav { display: flex; gap: clamp(1rem, 3vw, 2rem); flex-wrap: wrap; }
.footer__nav a { font-size: 0.95rem; color: var(--muted-light); transition: color .2s ease; }
.footer__nav a:hover { color: var(--accent); }
.footer__bottom { padding-top: 1.3rem; font-size: 0.85rem; color: rgba(245,245,255,0.5); }

/* ---------- Lead-Formular (Popup / Multi-Step) ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: flex-start; justify-content: center; padding: clamp(0.8rem, 4vh, 2.5rem) 1rem; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6,8,30,0.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal__dialog { position: relative; z-index: 1; width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto; background: #fff; color: var(--text-dark); border-radius: 20px; padding: clamp(1.5rem, 3.5vw, 2.4rem); box-shadow: 0 40px 90px rgba(6,8,30,0.5); scrollbar-width: thin; scrollbar-color: rgba(10,13,45,0.25) transparent; }
.modal__dialog::-webkit-scrollbar { width: 8px; }
.modal__dialog::-webkit-scrollbar-track { background: transparent; }
.modal__dialog::-webkit-scrollbar-thumb { background: rgba(10,13,45,0.2); border-radius: 999px; }
.modal__dialog::-webkit-scrollbar-thumb:hover { background: rgba(10,13,45,0.35); }
.modal__close { position: absolute; top: 0.9rem; right: 1rem; width: 36px; height: 36px; border: none; background: rgba(10,13,45,0.06); border-radius: 50%; font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--primary); }
.modal__close:hover { background: rgba(10,13,45,0.12); }
.modal__head { margin-bottom: 1.1rem; padding-right: 2rem; }
.modal__head h3 { font-size: 1.4rem; font-weight: 800; line-height: 1.15; }
.modal__head p { font-size: 0.95rem; color: var(--muted-dark); margin-top: 0.3rem; }
.modal__progress { height: 6px; background: rgba(10,13,45,0.08); border-radius: 999px; overflow: hidden; margin-bottom: 1.5rem; }
.modal__bar { display: block; height: 100%; width: 20%; background: var(--accent); border-radius: 999px; transition: width .3s ease; }
.lf__step { border: none; padding: 0; margin: 0; min-inline-size: 0; }
.lf__step:not(.is-active) { display: none; }
.lf__q { font-size: 1.12rem; font-weight: 800; line-height: 1.25; margin-bottom: 1rem; }
.lf__opts { display: flex; flex-direction: column; gap: 0.6rem; }
.lf__opt { display: flex; align-items: center; gap: 0.7rem; padding: 0.85rem 1rem; border: 1px solid rgba(10,13,45,0.14); border-radius: 12px; cursor: pointer; font-size: 0.98rem; transition: border-color .15s ease, background .15s ease; }
.lf__opt input { accent-color: #1a9d63; width: 18px; height: 18px; flex: 0 0 auto; }
.lf__opt:has(input:checked) { border-color: var(--accent); background: rgba(44,238,145,0.1); }
.lf__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.lf__field { margin-bottom: 1rem; }
.lf__field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.35rem; }
.lf__field input { width: 100%; padding: 0.8rem 1rem; border: 1px solid rgba(10,13,45,0.18); border-radius: 10px; font: inherit; color: var(--text-dark); }
.lf__field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(44,238,145,0.18); }
.lf--err { border-color: #e5484d !important; }
.lf__micro { font-size: 0.8rem; color: var(--muted-dark); margin-top: 0.7rem; }
.lf__errmsg { display: none; font-size: 0.85rem; color: #e5484d; margin-top: 0.7rem; font-weight: 600; }
.lf__errmsg.is-show { display: block; }
.lf__nav { display: flex; justify-content: space-between; gap: 0.8rem; margin-top: 1.3rem; }
.lf__nav--end { justify-content: flex-end; }
.lf__nav--start { justify-content: flex-start; }
.lf__back { background: transparent; border: 1px solid rgba(10,13,45,0.18); border-radius: var(--radius-sm); padding: 0.9rem 1.3rem; font: inherit; font-weight: 800; font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-dark); cursor: pointer; }
.lf__back:hover { border-color: var(--primary); color: var(--primary); }
/* Eigener Slot-Picker */
.lf-cal__loading, .lf-cal__empty { text-align: center; color: var(--muted-dark); font-size: 0.9rem; padding: 1.5rem 0; }
.lf-cal__days { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.4rem; }
.lf-cal__day { flex: 0 0 auto; padding: 0.6rem 0.9rem; border: 1px solid rgba(10,13,45,0.14); border-radius: 12px; background: #fff; cursor: pointer; font: inherit; font-weight: 700; font-size: 0.85rem; white-space: nowrap; color: var(--text-dark); }
.lf-cal__day.is-active { border-color: var(--accent); background: rgba(44,238,145,0.12); }
.lf-cal__times { display: grid; grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); gap: 0.5rem; margin-top: 1rem; }
.lf-cal__time { padding: 0.6rem 0.4rem; border: 1px solid rgba(10,13,45,0.16); border-radius: 10px; background: #fff; cursor: pointer; font: inherit; font-weight: 700; color: var(--text-dark); }
.lf-cal__time.is-active { border-color: var(--accent); background: var(--accent); color: var(--primary); }
.lf-cal__confirm { margin-top: 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(10,13,45,0.1); padding-top: 1.1rem; }
.lf-cal__sel { font-weight: 800; }
.lf__consent { display: flex; align-items: flex-start; gap: 0.6rem; margin-top: 1rem; font-size: 0.85rem; line-height: 1.45; color: var(--muted-dark); cursor: pointer; }
.lf__consent input { margin-top: 2px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: #1a9d63; }
.lf__consent a { color: var(--primary); text-decoration: underline; }
.lf__tel { display: flex; gap: 0.5rem; }
.lf__cc { flex: 0 0 auto; padding: 0.8rem 0.6rem; border: 1px solid rgba(10,13,45,0.18); border-radius: 10px; font: inherit; background: #fff; color: var(--text-dark); cursor: pointer; }
.lf__cc:focus { outline: none; border-color: var(--accent); }
.lf__tel input { flex: 1 1 auto; }
.lf__done { text-align: center; padding: 1.5rem 0; }
.lf__done h4 { font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.lf__done p { color: var(--muted-dark); }

/* ---------- Thank-You-Page ---------- */
.btn--ghost-dark { background: transparent; color: var(--primary); border: 1.5px solid rgba(10,13,45,0.25); box-shadow: none; }
.btn--ghost-dark:hover { border-color: var(--accent); color: var(--primary); background: rgba(44,238,145,0.08); transform: translateY(-2px); }

.ty-brand { display: inline-block; margin-bottom: clamp(1.4rem, 4vw, 2.4rem); }
.ty-brand img { height: 28px; width: auto; }
.ty-hero__inner { max-width: 880px; margin-inline: auto; text-align: center; }
.ty-meme { display: block; width: 100%; max-width: 245px; border-radius: 16px; margin: 0 auto 1.5rem; }
.ty-hero h1 { margin-bottom: 1rem; }
.ty-hero__sub { max-width: 560px; margin-inline: auto; font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--muted-light); }

.ty-narrow { max-width: 720px; margin-inline: auto; }
.ty-head { text-align: center; margin-bottom: clamp(1.5rem, 4vw, 2.4rem); }
.ty-head p { margin-top: 0.6rem; font-size: 1.05rem; color: var(--muted-dark); }
.ty-head--light h2 { color: var(--text-light); }

.ty-video { aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: linear-gradient(160deg, #1a1f4d, #0c1039); border: 1px solid rgba(10,13,45,0.1); display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem; }
.ty-video img, .ty-video video, .ty-video iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }

.ty-steps-sec { padding-top: 0; }
.ty-steps { display: flex; flex-direction: column; gap: 1rem; }
.ty-step { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid rgba(10,13,45,0.08); border-radius: 16px; padding: clamp(1.2rem, 2.2vw, 1.6rem); box-shadow: 0 12px 32px rgba(10,13,45,0.05); }
.ty-step__num { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; padding-top: 2px; background: var(--accent); color: var(--primary); font-weight: 800; display: grid; place-items: center; }
.ty-step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.35rem; }
.ty-step p { font-size: 15.5px; line-height: 1.55; color: var(--muted-dark); }
.ty-step p + p { margin-top: 0.6rem; }
.ty-appt { margin-top: 1rem; background: rgba(10,13,45,0.03); border: 1px solid rgba(10,13,45,0.1); border-radius: 14px; padding: clamp(1rem, 2vw, 1.4rem); }
.ty-appt__row { font-size: 15px; margin-bottom: 0.45rem; color: var(--muted-dark); }
.ty-appt__row b { color: var(--primary); }
.ty-appt__row a { color: var(--primary); text-decoration: underline; }
.btn--sm { padding: 0.7rem 1.2rem 0.58rem; font-size: 0.85rem; margin-top: 0.9rem; }

.ty-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 1.5rem); max-width: 880px; margin-inline: auto; }
.ty-quote { background: rgba(245,245,255,0.05); border: 1px solid rgba(245,245,255,0.1); border-radius: 16px; padding: clamp(1.3rem, 2.2vw, 1.8rem); }
.ty-quote blockquote { font-size: 1.05rem; line-height: 1.5; color: var(--text-light); margin-bottom: 1rem; }
.ty-quote .stars { color: var(--glow-gold); letter-spacing: 0.04em; }

.ty-follow { text-align: center; max-width: 600px; }
.ty-follow h2 { margin-bottom: 0.6rem; }
.ty-follow p { color: var(--muted-dark); margin-bottom: 1.4rem; }
.ty-socials { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* Video-/Bild-Slots randlos füllen (Platzhalter-Slots behalten ihr Padding) */
.phone__screen:has(video), .phone__screen:has(img) { padding: 0; }
.step__media:has(video), .step__media:has(img) { padding: 0; }

/* Offer-Karte (Fallback-Mockup, aktuell ungenutzt – Slot 1 ist jetzt Video) */
.offer-card {
  width: 100%; height: 100%; background: #fff; color: var(--primary);
  display: flex; flex-direction: column; gap: 10px; text-align: left;
  padding: 18px 16px; font-weight: 500;
}
.offer-card__eyebrow { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); opacity: 0.5; }
.offer-card__for { font-size: 0.95rem; font-weight: 800; line-height: 1.15; }
.offer-card__list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin: 2px 0; }
.offer-card__list li { position: relative; padding-left: 23px; font-size: 0.82rem; line-height: 1.25; }
.offer-card__list li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%232cee91'/%3E%3Cpath d='M7.5 12.4 10.6 15.6 16.6 9' fill='none' stroke='%230A0D2D' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.offer-card__value { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.offer-card__old { font-size: 0.8rem; text-decoration: line-through; color: rgba(10,13,45,0.45); }
.offer-card__new { font-size: 1rem; font-weight: 800; color: var(--primary); }
.offer-card__badge { align-self: flex-start; background: var(--accent); color: var(--primary); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.04em; padding: 6px 12px; border-radius: 999px; }

/* ---------- Light-Theme-Overrides (helle Hero-Variante) ---------- */
body.theme-light { --grid-line: rgba(10,13,45,0.07); }          /* dunkle Rasterlinien auf hell */
body.theme-light .glow { opacity: 0.16; filter: blur(120px); }  /* dezente Farbkreise auf hell */
body.theme-light .pill { background: #fff; border-color: rgba(10,13,45,0.08); box-shadow: 0 6px 20px rgba(10,13,45,0.07); color: var(--text-dark); }
/* Brand-Grün als Highlight-Chip mit dunklem Text (voll lesbar auf hell) */
body.theme-light .hl {
  color: var(--primary); background: var(--accent);
  padding: 0.06em 0.3em; border-radius: 9px; line-height: 1;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.section--light.hero { background: var(--bg-light); }
.section--light .hero__sub { color: var(--muted-dark); }
.section--light.hero .hero__bullets li { color: var(--muted-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  /* Navbar: oben nur Logo; beim Scrollen Pille mit Icon + CTA rechts */
  .site-header .btn { display: none; }
  .site-header.scrolled .btn { display: inline-flex; }
  /* Logo-Crossfade (nur Opacity + Scale = GPU, kein Layout): langes Logo verblasst, X-Icon wächst */
  .brand__icon { display: block; position: absolute; left: 0; top: 50%; opacity: 0; transform: translateY(-50%) scale(0.75); transform-origin: left center; transition: opacity .3s ease, transform .3s ease; }
  .site-header.scrolled .brand__long { opacity: 0; }
  .site-header.scrolled .brand__icon { opacity: 1; transform: translateY(-50%) scale(1); }
  .site-header .btn__full { display: none; }
  .site-header .btn__short { display: inline; }
  /* Desktop-Phone aus, Mobile-Stepper an */
  .journey { display: none; }
  .stepper { display: block; }
  /* obere Ecken der dunklen Section leicht abrunden */
  .journey-sec { border-radius: 22px 22px 0 0; }
  /* Mobile-Performance: teuren Backdrop-Blur aus (Glaseffekt nicht kritisch auf Mobile) */
  .guarantee__item { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(245,245,255,0.09); }
  /* Journey-Glows im Mobile an die gerundeten oberen Ecken clippen */
  .journey-sec .card-glows { clip-path: inset(0 round 22px 22px 0 0); }
  .fullstop__card { grid-template-columns: 1fr; }
  .fullstop__photo { aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .hero { padding-block: 4.6rem 1.6rem; }
  .hero .container { padding-inline: 0.9rem; }
  .pill { font-size: 0.66rem; margin-bottom: 0.9rem; padding: 0.46rem 0.9rem 0.36rem; letter-spacing: 0.08em; }
  .hero h1 { font-size: clamp(1.95rem, 9.5vw, 2.7rem); line-height: 1.08; margin-bottom: 0.7rem; }
  .hero--long h1 { font-size: clamp(1.3rem, 5.6vw, 1.8rem); line-height: 1.1; }
  .hero__sub { font-size: 1.02rem; }
  .hero__proof { font-size: 0.82rem; margin-top: 0.9rem; }
  .hero__bullets { gap: 0.45rem; margin: 1rem 0 1.3rem; }
  .hero__bullets--row { flex-direction: column; gap: 0.5rem; }
  .hero__bullets li { font-size: 0.92rem; }
  .hero__bullets li::before { width: 19px; height: 19px; }
  .hero .btn { width: 100%; padding: 0.9rem 1.2rem; }
  .trust-card { margin-top: -52px; padding: 1.4rem 1.6rem; gap: 1rem; border-radius: 16px; flex-direction: column; }
  .trust-div { display: block; width: 55%; height: 1px; align-self: center; }
  .section-cta, .fullstop .section-cta { display: block; }
  .section-cta .btn { width: 100%; }
  .lf__row { grid-template-columns: 1fr; }
  .ty-quotes { grid-template-columns: 1fr; }
  .lead__checks li { font-size: 0.98rem; }
  .lead__checks li::before { width: 21px; height: 21px; }
  .lead__punch { font-size: 1.12rem; }
  .lead__body { text-align: left; }
  .step { grid-template-columns: 40px 1fr; gap: 0.9rem; }
  .stepper::before { left: 19px; }
  .step__num { width: 40px; height: 40px; font-size: 0.95rem; }
  .step__card { grid-template-columns: 1fr; }
  .serve-split { grid-template-columns: 1fr; }
  .serve-split__col--no { border-left: none; border-top: 1px solid rgba(10,13,45,0.08); }
  .guarantee__grid { grid-template-columns: 1fr; }
}
/* Sehr niedrige Bildschirme (z. B. Handy-Querformat): noch kompakter, damit nichts abgeschnitten wird */
@media (max-height: 640px) and (max-width: 860px) {
  .hero { padding-block: 4rem 1.1rem; }
  .hero h1 { font-size: clamp(1.15rem, 5vw, 1.45rem); line-height: 1.12; margin-bottom: 0.8rem; }
  .hero__bullets { margin: 0.7rem 0 0.9rem; gap: 0.3rem; }
  .hero__bullets li { font-size: 0.88rem; }
}
