/* ============================================================
   Jörn Lehmann — Premium Motion Landingpage
   Ivory / Navy / Pink · Fraunces + Instrument Sans
   ============================================================ */

:root {
  --bg: #FAF7F2;
  --bg-soft: #F3EEE6;
  --ink: #141B2E;
  --ink-60: rgba(20, 27, 46, .64);
  --ink-40: rgba(20, 27, 46, .42);
  --pink: #E83D84;
  --pink-soft: #FF7AB8;
  --pink-grad: linear-gradient(100deg, #E83D84 0%, #FF7AB8 55%, #E83D84 100%);
  --blue: #4885FB;
  --navy: #182339;
  --navy-deep: #10182A;
  --card: #FFFFFF;
  --gold: #C9A74C;
  --red: #E5484D;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow-1: 0 1px 2px rgba(20,27,46,.05), 0 8px 24px rgba(20,27,46,.07);
  --shadow-2: 0 2px 4px rgba(20,27,46,.06), 0 18px 50px rgba(20,27,46,.13);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* Horizontales Scrollen darf NIE möglich sein: clip (statt hidden) verhindert
   auch Touch-/programmatisches Scrollen; iOS ignoriert hidden auf body. */
html { scroll-behavior: auto; overflow-x: clip; }
main { overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

/* Grain overlay für Premium-Textur */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 60;
  opacity: .5;
  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='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .028 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* height:auto neutralisiert die width/height-Attribute (sonst fixiert der
   Präsentations-Hint die Höhe in px und bricht die aspect-ratio-Regeln) */
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 820px; }
.center { text-align: center; margin-top: 48px; }
.section { padding: 120px 0; position: relative; }

/* ---------- Typo ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-align: center;
  max-width: 20ch;
  margin: 0 auto;
  text-wrap: balance;
}
.h2.left { text-align: left; margin: 0; }
.section-sub {
  text-align: center;
  color: var(--ink-60);
  font-size: 19px;
  max-width: 52ch;
  margin: 20px auto 0;
}
.section-sub.italic { font-style: italic; font-family: var(--font-display); }

.eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 18px;
}
.eyebrow-pill {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 100px;
  background: rgba(232, 61, 132, .08);
  border: 1px solid rgba(232, 61, 132, .22);
  color: var(--pink);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-pill.dark {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  color: var(--pink-soft);
}

/* Key-Wörter: Pink Color-Grading (Anforderung 2) */
.key {
  font-style: inherit;
  font-weight: inherit;
  background: var(--pink-grad);
  background-size: 220% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--pink);
  position: relative;
  white-space: pre-wrap;
}
.key.serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 560;
  letter-spacing: 0;
}
.key.light { filter: brightness(1.45) saturate(.85); }

/* ---------- Buttons ---------- */
.btn-primary {
  border: 0;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--ink);
  color: #fff;
  padding: 18px 38px;
  border-radius: 100px;
  position: relative;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
  box-shadow: 0 10px 30px rgba(20,27,46,.22);
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  border-radius: 100px;
  background: var(--pink-grad);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .35s;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active { color: #fff; background: var(--ink); }
.btn-primary:hover::before { opacity: 1; animation: gradShift 1.6s linear infinite; }
@keyframes gradShift { to { background-position: -200% 0; } }
/* Klick-Anreiz: Glow pulsiert (opacity = composited), Button schüttelt sich alle ~5s */
.btn-primary {
  animation: ctaPulse 5.2s cubic-bezier(.36,.07,.19,.97) infinite;
}
.btn-primary::after {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  border-radius: 100px;
  box-shadow: 0 0 38px 8px rgba(232,61,132,.65);
  opacity: .45;
  animation: ctaGlow 2.6s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { opacity: .45; }
  50% { opacity: 1; }
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1) rotate(0); }
  5% { transform: scale(1.04); }
  10% { transform: scale(1); }
  70% { transform: scale(1) rotate(0) translateX(0); }
  72% { transform: rotate(-1.6deg) translateX(-3px) scale(1.015); }
  74% { transform: rotate(1.4deg) translateX(3px) scale(1.015); }
  76% { transform: rotate(-1.1deg) translateX(-2px) scale(1.015); }
  78% { transform: rotate(.8deg) translateX(2px) scale(1.01); }
  80% { transform: rotate(0) translateX(0) scale(1); }
}
.btn-label { font-weight: 700; font-size: 17px; letter-spacing: .01em; }
.btn-sub { font-size: 12.5px; opacity: .82; font-weight: 500; }
.btn-xl { padding: 22px 48px; }
.btn-xl .btn-label { font-size: 19px; }

/* Sekundär-Button (Selbsttest): bewusst leiser als der Primary */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 100px;
  border: 1.5px solid rgba(20,27,46,.28);
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  transition: border-color .3s, background .3s, transform .3s;
}
.btn-secondary:hover { border-color: var(--pink); background: rgba(232,61,132,.06); transform: translateY(-2px); }

/* ============================================================
   Wordmark (Footer)
   ============================================================ */
.wordmark {
  font-family: var(--font-display);
  font-weight: 640;
  font-size: 21px;
  letter-spacing: -.01em;
}
.wordmark em {
  font-style: italic;
  font-weight: 420;
  background: var(--pink-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}
@keyframes pulse {
  0% { transform: scale(.5); opacity: .9; }
  70%, 100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   B. HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 96px 0 40px;
  overflow: clip;
}
.hero-core {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin: 28px 0 22px;
  text-wrap: balance;
}
.hero-h1 .key.serif { font-size: 1.06em; }
/* Zweite Headline-Zeile eigenständig — kürzere Zeilen, leichter zu erfassen */
.hero-h1 .hero-h1-line2 { display: block; margin-top: 6px; }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-60);
  font-weight: 500;
  max-width: 48ch;
  margin: 0 auto;
}
.hero-sub p + p { margin-top: 12px; }
/* Text unter dem VSL-Video + rotierende „Ohne …"-Zeile */
.hero-below {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-60);
  font-weight: 500;
  max-width: 48ch;
  margin: 30px auto 0;
}
.hero-below p + p { margin-top: 12px; }
.hero-rotate {
  margin-top: 18px !important;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 560;
  font-size: clamp(18px, 2vw, 23px);
  color: var(--pink);
  min-height: 1.5em;
}
[data-rotate] {
  display: inline-block;
  transition: opacity .35s ease, transform .35s ease;
}
[data-rotate].is-out { opacity: 0; transform: translateY(8px); }
/* Typewriter-Variante: feste Mindestbreite (kein Satz-Springen) + blinkender Cursor */
[data-rotate-mode="type"] {
  min-width: 4em;
  text-align: left;
  transition: none;
}
[data-rotate-mode="type"].is-typing::after {
  content: "|";
  margin-left: 1px;
  font-weight: 400;
  color: var(--pink);
  -webkit-text-fill-color: var(--pink);
  animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }
.hero-video {
  position: relative;
  margin: 44px auto 0;
  max-width: 780px;
  border-radius: var(--radius);
}
.video-ring {
  position: absolute; inset: -3px;
  border-radius: calc(var(--radius) + 3px);
  background: conic-gradient(from 180deg, #E83D84, #FF7AB8, #4885FB, #E83D84);
  filter: blur(0px);
  z-index: 0;
}
.hero-video::after {
  content: "";
  position: absolute; inset: -28px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(232,61,132,.18), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero-video video {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
}

/* Vimeo-Facade: lokales Poster + Play-Button, iframe erst nach Klick */
.video-facade {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; }
.video-facade iframe,
.video-facade video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; object-fit: contain; }
.case-video .video-facade { aspect-ratio: 16/10; border-radius: 0; }
.vg-card .video-facade { border-radius: 13px; }
.video-facade.facade-tall { aspect-ratio: 9/16; }
.video-hint {
  position: absolute;
  bottom: 14px; left: 50%;
  translate: -50%;
  z-index: 2;
  pointer-events: none;
  background: rgba(16,20,34,.55);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: opacity .3s;
}
.video-facade.is-playing .video-hint { opacity: 0; }
.video-facade.is-preview { cursor: pointer; }
.video-facade.is-preview .video-hint { font-size: 14px; padding: 8px 18px; }
/* Vollbild-Button (Hero-VSL): immer sichtbar, unten rechts */
.video-fs-btn {
  position: absolute;
  right: 12px; bottom: 12px;
  z-index: 3;
  width: 42px; height: 42px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(16,20,34,.55);
  color: #fff;
  display: grid;
  place-items: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background .25s, transform .25s;
}
.video-fs-btn:hover { background: rgba(16,20,34,.8); transform: scale(1.06); }
.video-fs-btn svg { width: 18px; height: 18px; }
.play-btn {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.94);
  display: grid; place-items: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  transition: transform .3s cubic-bezier(.22,1,.36,1), background .3s;
}
.play-btn svg { width: 34px; fill: var(--pink); margin-left: 4px; }
.play-btn::before {
  content: "";
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.65);
  animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
.play-btn:hover { transform: scale(1.08); background: #fff; }
.play-btn { transition: transform .3s cubic-bezier(.22,1,.36,1), background .3s, opacity .3s; }
.play-btn.is-hidden { opacity: 0; transform: scale(1.3); pointer-events: none; }
.play-btn.is-hidden::before { animation: none; }
.hero-cta { margin-top: 44px; }
.social-proof {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
/* Zeile 1: Avatare + „Über 300 Frauen begleitet" nebeneinander */
.sp-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
.sp-main { font-size: 15px; color: var(--ink); white-space: nowrap; }
/* Zeile 2: Zusatzinfos darunter */
.sp-sub { font-size: 14px; color: var(--ink-60); text-align: center; max-width: 44ch; }
.avatars { flex: none; }
.social-proof strong { color: var(--ink); }
.stars { color: var(--gold); letter-spacing: 2px; margin-left: 6px; }
.avatars { display: flex; }
.ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  background-size: cover;
  background-position: center 20%;
  margin-left: -10px;
}
.ava:first-child { margin-left: 0; }
.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(transparent, var(--bg));
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   Qualifizierung
   ============================================================ */
.qualify-grid, .ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 56px;
  perspective: 1200px;
}
.q-card, .ba-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(20,27,46,.06);
  will-change: transform;
}
.q-yes { background: linear-gradient(160deg, #FFF6FA 0%, #FFFFFF 60%); border-color: rgba(232,61,132,.18); }
.q-head {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13.5px;
  margin-bottom: 22px;
}
.q-icon {
  width: 30px; height: 30px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
}
.q-icon svg { width: 15px; height: 15px; }
.q-icon.yes { background: var(--pink); }
.q-icon.yes svg path { stroke: #fff; }
.q-icon.no { background: rgba(20,27,46,.08); }
.q-icon.no svg path { stroke: var(--ink-60); }
.q-icon.yes.on-dark { background: #fff; }
.q-icon.yes.on-dark svg path { stroke: var(--pink); }
.q-card ul li, .ba-card ul li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(20,27,46,.07);
  font-weight: 500;
}
.q-card ul li:last-child, .ba-card ul li:last-child { border-bottom: 0; }
.q-no { color: var(--ink-60); }
/* Checkmark-Draw */
.q-icon .draw { stroke-dasharray: 30; stroke-dashoffset: 30; }
.is-inview .q-icon .draw { animation: draw .7s .45s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ============================================================
   Benefits (4 Punkte, wie Original-Seite)
   ============================================================ */
.benefits { padding: 72px 0 40px; }
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 960px;
  margin: 44px auto 0;
}
.b-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border: 1px solid rgba(20,27,46,.07);
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: var(--shadow-1);
}
.b-item p { font-size: 17.5px; font-weight: 500; color: var(--ink-60); }
.b-item strong { color: var(--ink); font-weight: 800; }
.b-item .check { margin-top: 3px; }
@media (max-width: 800px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ============================================================
   E. PROBLEM CARD-STACK
   ============================================================ */
.problems { padding-bottom: 40px; }
.stack-zone {
  max-width: 760px;
  margin: 64px auto 0;
  padding: 0 24px;
}
.stack-card {
  position: sticky;
  top: 7vh;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(20,27,46,.07);
  box-shadow: var(--shadow-2);
  padding: 40px 44px;
  margin-bottom: 56px;
  will-change: transform;
  transform-origin: center top;
}
.stack-card.alt { background: linear-gradient(165deg, #FFFDF9, #FFF4F9); }
.stack-card.dark { background: #182339; color: #fff; border-color: rgba(255,255,255,.08); }
.stack-card.dark .sc-head p { color: rgba(255,255,255,.6); }
.stack-card.dark ul li { border-color: rgba(255,255,255,.1); }
.sc-head {
  display: flex; align-items: flex-start; gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(232,61,132,.25);
}
.sc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  background: var(--pink-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sc-head h3 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 620;
  letter-spacing: -.01em;
}
.sc-head p { color: var(--ink-60); font-size: 15px; margin-top: 3px; }
.sc-icon { margin-left: auto; font-size: 30px; }
.stack-card ul li {
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid rgba(20,27,46,.07);
  position: relative;
  font-weight: 500;
}
.stack-card ul li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--pink);
  font-weight: 700;
}
.stack-card ul li:last-child { border-bottom: 0; }

/* ============================================================
   C. Agitation / Scrub-Text
   ============================================================ */
.why { background: var(--bg-soft); border-radius: 56px; margin: 40px 12px; }
.scrub-text { margin-top: 48px; }
.scrub-text p {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.55;
  font-weight: 560;
  text-align: center;
  margin-bottom: 36px;
  text-wrap: balance;
}
.scrub-text .word { color: var(--ink-40); }
.why-final {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  margin-top: 24px;
}

/* ============================================================
   Transformation Vorher/Nachher
   ============================================================ */
.ba-before { color: var(--ink-60); }
.ba-after {
  background: linear-gradient(155deg, var(--navy) 0%, #3A1A3C 70%, #591F44 100%);
  color: #fff;
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 24px 60px rgba(232,61,132,.25);
}
.ba-after ul li { border-color: rgba(255,255,255,.12); font-weight: 600; }
.ba-after .q-head { color: var(--pink-soft); }
.transform-final {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  margin-top: 64px;
}

/* ============================================================
   Gemeinsame Bausteine
   ============================================================ */
.check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pink-grad);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: grid; place-items: center;
  margin-top: 2px;
}
.trust-line {
  margin-top: 18px;
  text-align: center;
  color: var(--ink-60);
  font-size: 13.5px;
  font-weight: 500;
}

/* ============================================================
   Blinder Fleck (Sektion 4): Zwischenüberschriften + Solo-Audio
   ============================================================ */
.why-sub {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  text-align: center;
  max-width: 26ch;
  margin: 56px auto 8px;
  text-wrap: balance;
}
.audio-solo { max-width: 560px; margin: 48px auto 0; }

/* ============================================================
   Qualifizierung (Sektion 7): Zusatzzeilen unter dem Grid
   ============================================================ */
.qualify-selbsttest {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-60);
  font-weight: 500;
}
.qualify-selbsttest a {
  color: var(--pink);
  font-weight: 700;
  border-bottom: 1.5px solid rgba(232,61,132,.35);
  transition: border-color .25s;
}
.qualify-selbsttest a:hover { border-color: var(--pink); }
.qualify-note {
  max-width: 620px;
  margin: 28px auto 0;
  padding: 22px 26px;
  border: 1.5px dashed rgba(20,27,46,.18);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.5);
}
.qualify-note p { color: var(--ink-60); font-size: 15.5px; text-align: center; }
.qualify-capacity {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-40);
}

/* ============================================================
   Über Jörn (Sektion 8)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}
.about-figure { position: relative; }
.about-figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
}
.about-copy p { color: var(--ink-60); font-size: 17.5px; margin-bottom: 20px; }
.about-copy p:last-child { margin-bottom: 0; }
.about-why {
  margin-top: 26px;
  padding-left: 22px;
  border-left: 3px solid var(--pink);
}
.about-why p { font-family: var(--font-display); font-style: italic; font-size: 18px; line-height: 1.65; }

/* ============================================================
   Selbsttest-Band (Sektion 10)
   ============================================================ */
.selbsttest {
  background: var(--bg-soft);
  border-radius: 56px;
  margin: 40px 12px;
}
.selbsttest-sub {
  text-align: center;
  color: var(--ink-60);
  font-size: 18px;
  max-width: 52ch;
  margin: 24px auto 0;
}

/* ============================================================
   3 Schritte
   ============================================================ */
.steps-list { position: relative; margin-top: 64px; display: grid; gap: 40px; }
.steps-line {
  position: absolute;
  left: 27px; top: 12px;
  width: 4px; height: calc(100% - 110px);
}
.steps-line path { stroke: rgba(232,61,132,.9); }
.step { display: flex; gap: 28px; align-items: flex-start; position: relative; }
.step-num {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(232,61,132,.35);
  color: var(--pink);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 560;
  display: grid; place-items: center;
  box-shadow: var(--shadow-1);
  position: relative; z-index: 1;
}
.step h3 { font-family: var(--font-display); font-size: 24px; font-weight: 620; margin-bottom: 6px; }
.step p { color: var(--ink-60); max-width: 56ch; }

/* ============================================================
   G. Voices / Testimonials + Marquee
   ============================================================ */
.case-study {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  margin: 72px 0 40px;
}
.case-copy h3 {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.015em;
}
.case-copy blockquote {
  margin-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-60);
  border-left: 3px solid var(--pink);
  padding-left: 22px;
}
.case-video { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-2); }
.case-video video { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #000; }
.case-video .play-btn { width: 74px; height: 74px; }

/* Kuratierte Zitate: statisches 2×2-Grid (ersetzt die Marquee) */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 960px;
  margin: 56px auto 0;
}
@media (max-width: 700px) { .quote-grid { grid-template-columns: 1fr; } }

.m-card {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid rgba(20,27,46,.07);
  box-shadow: var(--shadow-1);
  flex: none;
}
.m-card.chat { padding: 24px 26px; border-radius: 22px 22px 22px 6px; }
.m-card.chat p { font-size: 15.5px; line-height: 1.6; color: var(--ink-60); }
.m-card.chat strong { color: var(--ink); }
.m-meta {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--pink);
}
/* ============================================================
   Video-Testimonials (einzeln, mit Controls)
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 48px;
}
.video-grid.tall {
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
  margin-top: 26px;
}
.vg-card {
  background: var(--card);
  border: 1px solid rgba(20,27,46,.07);
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--shadow-1);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.vg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.vg-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 13px;
  background: #000;
}
.vg-card.vg-tall video { aspect-ratio: 9/16; }
.vg-card figcaption {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 8px 6px;
  font-weight: 700;
  font-size: 14.5px;
}
.vg-card figcaption::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-grad);
}
@media (max-width: 700px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-grid.tall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   Audio-Testimonials
   ============================================================ */
.audio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.audio-card {
  background: var(--card);
  border: 1px solid rgba(20,27,46,.07);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: var(--shadow-1);
}
.audio-card .a-label {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 14.5px;
  margin-bottom: 14px;
}
.audio-card .a-ico {
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  background: var(--pink-grad);
  display: grid; place-items: center;
  font-size: 15px;
}
.audio-card audio { width: 100%; height: 40px; }
.audio-row.two { grid-template-columns: repeat(2, 1fr); max-width: 780px; }
@media (max-width: 900px) { .audio-row, .audio-row.two { grid-template-columns: 1fr; } }

/* ============================================================
   CTA-Modal (3 Schritte -> ActiveCampaign -> Calendly)
   ============================================================ */
.jl-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 18px;
  background: rgba(16, 20, 34, .62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.jl-overlay.is-open { display: flex; }
.jl-sheet {
  position: relative;
  width: 100%; max-width: 460px;
  background: var(--bg);
  border-radius: 26px;
  padding: 46px 30px 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
  animation: jlPop .45s cubic-bezier(.22,1,.36,1);
}
@keyframes jlPop { from { opacity: 0; transform: translateY(26px) scale(.96); } }
.jl-close {
  position: absolute; top: 16px; right: 18px;
  border: 0; background: none; cursor: pointer;
  font-size: 28px; line-height: 1; font-weight: 300;
  color: var(--ink-60);
}
.jl-close:hover { color: var(--ink); }
.jl-eyebrow {
  text-align: center;
  color: var(--pink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  margin-bottom: 8px;
}
.jl-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 640;
  font-size: clamp(23px, 5vw, 28px);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.jl-sub {
  text-align: center;
  color: var(--ink-60);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
}
.jl-dots { display: flex; justify-content: center; gap: 7px; margin-bottom: 24px; }
.jl-dots span {
  width: 26px; height: 5px; border-radius: 100px;
  background: rgba(20,27,46,.12);
  transition: background .3s;
}
.jl-dots span.on { background: var(--pink); }
.jl-step label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
.jl-step input {
  width: 100%; box-sizing: border-box;
  padding: 16px 18px;
  border: 1.5px solid rgba(20,27,46,.14);
  border-radius: 14px;
  font-size: 16px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink);
  margin-bottom: 16px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.jl-step input:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(232,61,132,.12); }
.jl-btn {
  width: 100%;
  border: 0; cursor: pointer;
  background: var(--ink);
  color: #fff;
  padding: 17px;
  border-radius: 100px;
  font-size: 16.5px;
  font-weight: 800;
  font-family: var(--font-body);
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.jl-btn:hover { background: var(--pink); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232,61,132,.35); }
.jl-error { color: var(--red); font-size: 13px; text-align: center; margin-top: 14px; display: none; }
.jl-trust { text-align: center; color: var(--ink-40); font-size: 11.5px; margin-top: 16px; }

/* „Das erwartet dich"-Block + Zweispalter (Desktop) / Aufklapper (Mobile) */
.jl-sub { max-width: 60ch; margin-left: auto; margin-right: auto; }
.jl-expect {
  background: #FFF6FA;
  border: 1px solid rgba(232,61,132,.18);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 18px;
  text-align: left;
}
.jl-expect summary {
  font-weight: 800;
  font-size: 14.5px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.jl-expect summary::-webkit-details-marker { display: none; }
/* Klick-Affordanz: pinker Kreis mit Chevron, dreht sich beim Aufklappen */
.jl-expect summary::after {
  content: "▾";
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink-grad);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(232,61,132,.35);
  transition: transform .25s;
}
.jl-expect[open] summary::after { transform: rotate(180deg); }
.jl-expect ul { margin-top: 14px; display: grid; gap: 12px; }
.jl-expect li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--ink-60); }
.jl-expect li strong { color: var(--ink); }
.jl-expect li .check { width: 20px; height: 20px; font-size: 11px; margin-top: 1px; }

/* Ab Schritt 4 (Auswahlfragen) verschwindet der Info-Block, Sheet wird schmal */
.jl-sheet.no-expect .jl-expect { display: none; }

@media (min-width: 701px) {
  .jl-sheet { max-width: 860px; }
  .jl-sheet.no-expect { max-width: 520px; }
  .jl-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
    align-items: start;
  }
  .jl-sheet.no-expect .jl-grid { grid-template-columns: 1fr; gap: 0; }
  .jl-expect { margin-bottom: 0; }
  /* Desktop: immer offen, kein Aufklapp-Verhalten, kein Klick-Kreis */
  .jl-expect summary { cursor: default; pointer-events: none; }
  .jl-expect summary::after { display: none; }
}

/* Auswahlfragen (Schritte 4–6): Radio-Cards */
.jl-q {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
  line-height: 1.45;
}
.jl-options { display: grid; gap: 10px; margin-bottom: 16px; }
.jl-opt {
  text-align: left;
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(20,27,46,.14);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.jl-opt:hover { border-color: rgba(232,61,132,.55); }
.jl-opt.sel {
  border-color: var(--pink);
  background: #FFF6FA;
  box-shadow: 0 0 0 4px rgba(232,61,132,.12);
}
.jl-btn:disabled { opacity: .45; cursor: not-allowed; }
.jl-btn:disabled:hover { background: var(--ink); transform: none; box-shadow: none; }
.jl-back {
  display: block;
  margin: 14px auto 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--ink-40);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
}
.jl-back:hover { color: var(--ink); }

/* Endscreen (nicht qualifiziert / Fehler) */
.jl-result { text-align: center; }
.jl-result h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 640;
  margin-bottom: 12px;
}
.jl-result p { color: var(--ink-60); font-size: 15px; margin-bottom: 20px; }
.jl-btn-link { text-decoration: none; }

/* ============================================================
   Unterseiten: termin.html / danke.html
   ============================================================ */
.subpage { padding: 72px 0 40px; text-align: center; }
.subpage-sub {
  text-align: center;
  color: var(--ink-60);
  font-size: 18px;
  max-width: 52ch;
  margin: 22px auto 0;
}
.urgency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid rgba(232,61,132,.28);
  box-shadow: var(--shadow-1);
  color: var(--pink);
  font-weight: 700;
  font-size: 14px;
}
.urgency span { font-variant-numeric: tabular-nums; }
.termin-card {
  max-width: 1000px;
  margin: 40px auto 0;
  background: var(--card);
  border: 1px solid rgba(20,27,46,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 10px;
}
.calendly-inline-widget { min-width: 280px; height: 720px; border-radius: var(--radius-sm); overflow: hidden; }

/* Kalender-Seite: alles in einen Viewport — das Widget bekommt die Resthöhe,
   die Seite selbst muss nicht scrollen (Sticky-Bar unten eingerechnet) */
.termin-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 32px 0 76px;
  box-sizing: border-box;
}
.termin-page .wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
}
.termin-page .h2 { font-size: clamp(22px, 3vw, 38px); }
.termin-page .subpage-sub { font-size: 16px; margin-top: 12px; }
.termin-page .termin-card {
  flex: 1;
  display: flex;
  width: 100%;
  margin-top: 20px;
  min-height: 0;
}
.termin-page .calendly-inline-widget { flex: 1; height: auto; min-height: 480px; }
.urgency-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(232,61,132,.28);
}
.ub-timer { color: var(--pink); font-weight: 700; font-size: 14.5px; font-variant-numeric: tabular-nums; }
.ub-links { font-size: 11px; color: var(--ink-40); }
.ub-links a { color: var(--ink-40); }
.ub-links a:hover { color: var(--pink); }
@media (min-width: 701px) {
  .ub-links { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); }
}
@media (max-width: 700px) {
  .subpage.termin-page { padding: 16px 0 96px; }
  .subpage.termin-page .subpage-sub { display: none; }
  .subpage.termin-page .termin-card { margin-top: 14px; padding: 6px; }
}
.video-shell { max-width: 780px; margin: 44px auto 0; padding: 0 18px; }
.danke-final {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 620;
  margin: 72px auto 0;
  max-width: 24ch;
}
.subfoot { text-align: center; padding: 56px 24px 32px; color: var(--ink-40); font-size: 13px; }
.subfoot a { color: var(--ink-60); margin: 0 8px; }
.subfoot a:hover { color: var(--pink); }
@media (max-width: 600px) {
  .subpage { padding: 44px 0 24px; }
  .calendly-inline-widget { height: 900px; }
}

/* ============================================================
   Rechtsseiten (impressum.html / datenschutz.html)
   ============================================================ */
.legal { padding: 72px 24px 96px; }
.legal .wordmark a { text-decoration: none; }
.legal h1 {
  font-family: var(--font-display);
  font-weight: 640;
  font-size: clamp(32px, 4vw, 44px);
  margin: 28px 0 8px;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 21px;
  margin: 36px 0 10px;
}
.legal p { color: var(--ink-60); margin-bottom: 12px; }
.legal a { color: var(--pink); }
.legal-back { margin-top: 48px; font-weight: 600; }
.legal-back a { color: var(--ink-60); }
.legal-back a:hover { color: var(--pink); }

/* ============================================================
   Footer
   ============================================================ */
.site-foot {
  border-top: 1px solid rgba(20,27,46,.08);
  padding: 64px 0 32px;
  margin-top: 60px;
}
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-mark { font-size: 26px; }
.foot-line { color: var(--ink-60); max-width: 44ch; margin-top: 12px; font-size: 15px; }
.foot-nav { display: flex; flex-direction: column; gap: 10px; font-weight: 600; font-size: 15px; }
.foot-nav a { color: var(--ink-60); transition: color .25s; }
.foot-nav a:hover { color: var(--pink); }
.foot-copy { text-align: center; color: var(--ink-40); font-size: 13px; margin-top: 48px; }

/* ============================================================
   Sticky-CTA (Mindshift-Call, erscheint nach dem Hero)
   ============================================================ */
.float-cta {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  opacity: 0;
  translate: 0 20px;
  pointer-events: none;
  transition: opacity .45s, translate .45s cubic-bezier(.22,1,.36,1);
}
.float-cta.is-on { opacity: 1; translate: 0 0; pointer-events: auto; }
.btn-float { flex-direction: row; padding: 15px 26px; background: var(--pink); box-shadow: 0 12px 34px rgba(232,61,132,.42); }
.btn-float:hover, .btn-float:focus { background: var(--pink); }

/* ============================================================
   Motion-Grundzustände (JS entfernt sie / animiert hin)
   Nur aktiv, wenn das Inline-Bootstrap-Script html.jl-anim setzt —
   ohne JS (oder wenn GSAP nicht lädt) bleibt alles sichtbar.
   ============================================================ */
html.jl-anim .reveal-up { opacity: 0; transform: translateY(34px); }
html.jl-anim .reveal-scale { opacity: 0; transform: scale(.92); }
html.jl-anim .stack-in-left { opacity: 0; transform: translateX(-60px) rotate(-2deg); }
html.jl-anim .stack-in-right { opacity: 0; transform: translateX(60px) rotate(2deg); }
/* Mobile: kleinere Start-Versätze — weniger sichtbares "Verschieben", kein Overflow */
@media (max-width: 700px) {
  html.jl-anim .stack-in-left { transform: translateX(-24px) rotate(-1deg); }
  html.jl-anim .stack-in-right { transform: translateX(24px) rotate(1deg); }
}
.img-reveal img, .img-reveal video { will-change: transform, clip-path, filter; }

/* SplitText Zeilenmaske */
.split-line { overflow: hidden; }

/* no-js / reduced motion: alles sichtbar */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-scale, .stack-in-left, .stack-in-right { opacity: 1 !important; transform: none !important; }
  .play-btn::before, .btn-primary, .btn-primary::after { animation: none !important; }
}
html.no-motion .reveal-up, html.no-motion .reveal-scale,
html.no-motion .stack-in-left, html.no-motion .stack-in-right { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 84px 0; }
  .qualify-grid, .ba-grid, .case-study, .about-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 32px; }
  .about-figure { max-width: 420px; margin: 0 auto; }
  .stack-card { padding: 30px 26px; }
  .hero { padding-top: 72px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  /* Hero kompakt: CTA ohne Scrollen sichtbar */
  .hero { padding: 12px 0 28px; }
  .hero-core { padding: 0 14px; }
  .eyebrow-pill { font-size: 10px; padding: 6px 13px; letter-spacing: .11em; }
  .hero-h1 { font-size: 24.5px; line-height: 1.22; letter-spacing: -.012em; margin: 12px 0 9px; }
  .hero-h1 .key.serif { font-size: 1.02em; }
  .hero-sub { font-size: 14px; line-height: 1.45; }
  .hero-video { margin-top: 13px; }
  .hero-video::after { inset: -14px; }
  .hero-cta { margin-top: 13px; }
  .hero-cta .btn-xl { padding: 13px 24px; gap: 1px; }
  .hero-cta .btn-xl .btn-label { font-size: 15px; }
  .hero-cta .btn-sub { font-size: 11px; }
  .social-proof { margin-top: 14px; gap: 6px; }
  .social-proof p { font-size: 13px; }
  .ava { width: 36px; height: 36px; }
  .play-btn { width: 68px; height: 68px; }
  .play-btn svg { width: 26px; }
  .hero-fade { height: 60px; }
  .btn-xl { padding: 18px 30px; }
  .btn-xl .btn-label { font-size: 16px; }
  .stack-zone { padding: 0 16px; }
  .why, .selbsttest { border-radius: 32px; margin: 24px 8px; }
  .float-cta { right: 14px; bottom: 14px; }
  .btn-float { padding: 13px 22px; }
  .btn-float .btn-label { font-size: 15px; }
  .video-hint { bottom: 8px; font-size: 11px; }
  .video-facade.is-preview .video-hint { font-size: 12px; padding: 6px 14px; }
  .video-fs-btn { width: 36px; height: 36px; right: 8px; bottom: 8px; }
  .video-fs-btn svg { width: 15px; height: 15px; }
}
