/* ============================================================
   Best Life Agency — Website 2026 (Relaunch "Produkttreppe")
   Design-System gemäß BRANDDESIGN.md — Farben/Typo NUR über Tokens
   ============================================================ */

:root {
  --bg: #0B0710;
  --bg-2: #140C1E;
  --bg-3: #1B1029;
  --ink: #F6F1F9;
  --muted: #B6A6C6;
  --muted-2: #8C7C9E;
  --pink: #F24DA0;
  --violet: #9A6BFF;
  --star: #FFC857;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .14);
  --grad: linear-gradient(120deg, #F24DA0 0%, #9A6BFF 100%);
  --grad-soft: linear-gradient(120deg, rgba(242, 77, 160, .16), rgba(154, 107, 255, .16));
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius-card: 20px;
  --radius-btn: 14px;
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ---------- Sprachumschaltung ---------- */
html[data-lang="en"] .de { display: none !important; }
html[data-lang="de"] .en { display: none !important; }

/* ---------- Seiten-Atmosphäre ---------- */
.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 78% 8%, rgba(154, 107, 255, .18), transparent 60%),
    radial-gradient(55% 38% at 12% 22%, rgba(242, 77, 160, .14), transparent 60%);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--bg-2);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 10px;
}
.skip-link:focus { left: 8px; }

/* ---------- Typografie ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 18px;
}

.section-lead {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 640px;
  margin-top: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-btn);
  padding: 14px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 14px 36px -10px rgba(242, 77, 160, .6);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -10px rgba(242, 77, 160, .75);
}

.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 77, 160, .45);
}

.btn--big { padding: 17px 30px; font-size: 1.08rem; }

/* ---------- Pills / Badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--grad-soft);
  border: 1px solid rgba(242, 77, 160, .35);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
}
.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(242, 77, 160, .25);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 7, 16, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 74px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 34px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.main-nav > a {
  text-decoration: none;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s ease;
}
.main-nav > a:hover { color: var(--ink); }
.main-nav .btn { padding: 11px 18px; font-size: .92rem; }

/* Sprachschalter */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  background: transparent;
  border: 0;
  color: var(--muted-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  padding: 7px 12px;
  transition: color .2s ease, background .2s ease;
}
.lang-switch button[aria-pressed="true"] {
  background: var(--grad);
  color: #fff;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--ink);
  padding: 8px 12px;
  font-size: 1.1rem;
  line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  padding: 170px 0 70px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin: 20px 0 22px; }
.hero-sub {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .93rem;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .check {
  color: var(--pink);
  font-weight: 700;
}

.media-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px -30px rgba(154, 107, 255, .45);
  position: relative;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-media { position: relative; }
.hero-card {
  position: absolute;
  left: -26px;
  bottom: 26px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .7);
}
.hero-card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: block;
}
.hero-card span { color: var(--muted); font-size: .85rem; }

/* ---------- Zahlen-Marquee ---------- */
.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin-top: 40px;
  overflow: hidden;
}
.marquee {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 46s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 46px;
  padding-right: 46px;
  white-space: nowrap;
}
.marquee-group span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--muted);
  font-size: .98rem;
}
.marquee-group span b { color: var(--ink); font-weight: 700; }
.marquee-group .sep { color: var(--pink); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sektionen ---------- */
.section { padding: 104px 0; }
.section--tight { padding: 84px 0; }
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Karten allgemein ---------- */
.card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px;
  transition: transform .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
}

/* ---------- Pain ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.pain-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--pink);
  margin-bottom: 14px;
}
.pain-grid h3 { margin-bottom: 10px; }
.pain-grid p { color: var(--muted); font-size: .98rem; }

.thesis {
  margin: 54px auto 0;
  max-width: 780px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.35;
}

/* ---------- Produkttreppe ---------- */
.ladder {
  display: grid;
  gap: 26px;
  margin-top: 56px;
  position: relative;
}
.stage {
  display: grid;
  grid-template-columns: 88px 1fr 300px;
  gap: 30px;
  align-items: center;
  padding: 34px;
}
.stage-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stage-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 8px;
}
.stage h3 { font-size: 1.55rem; font-weight: 700; margin-bottom: 12px; }
.stage-body p { color: var(--muted); max-width: 560px; }
.stage-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.stage-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
}
.stage-link {
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stage-link:hover .arrow { transform: translateX(3px); }
.stage-link .arrow { transition: transform .25s ease; }
.stage-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  aspect-ratio: 4 / 3;
}
.stage-media img { width: 100%; height: 100%; object-fit: cover; }
.stage-media--reels {
  border: 0;
  overflow: visible;
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stage--start { border-color: rgba(242, 77, 160, .4); }
.stage .pill { margin-bottom: 14px; }

/* ---------- Design-Mockups (statt Fotos) ---------- */
.mockup {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 12px;
}
.mockup-bar {
  display: flex;
  gap: 6px;
}
.mockup-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}
.mockup-bar i:first-child { background: rgba(242, 77, 160, .7); }

/* Kurs-Player (Stufe 1) */
.mockup-video {
  position: relative;
  border-radius: 10px;
  background:
    radial-gradient(80% 90% at 70% 10%, rgba(154, 107, 255, .35), transparent 60%),
    radial-gradient(70% 80% at 15% 80%, rgba(242, 77, 160, .3), transparent 60%),
    #170f22;
  border: 1px solid var(--line-2);
  flex: 1;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  box-shadow: 0 10px 26px -8px rgba(242, 77, 160, .7);
}
.mockup-rows { display: grid; gap: 8px; }
.mockup-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .72rem;
  color: var(--muted-2);
}
.mockup-row .bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
  position: relative;
}
.mockup-row .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--w, 60%);
  background: var(--grad);
  border-radius: 999px;
  opacity: .85;
}

/* Ads-Dashboard (Stufe 2) */
.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mockup-kpi {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}
.mockup-kpi b {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mockup-kpi span {
  font-size: .62rem;
  color: var(--muted-2);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mockup-chart {
  flex: 1;
  min-height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .02);
}
.mockup-chart i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--grad);
  opacity: .8;
  height: var(--h, 40%);
}

/* ---------- Reel-Karussell (Stufe 4) ---------- */
.reel-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.reel-phone {
  position: relative;
  width: min(200px, 70%);
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  border: 1px solid var(--line-2);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(154, 107, 255, .5);
  background: var(--bg-2);
}
.reel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  gap: 8px;
  opacity: 0;
  animation: reel-rotate 12s infinite;
}
.reel-slide:nth-child(2) { animation-delay: 4s; }
.reel-slide:nth-child(3) { animation-delay: 8s; }
.reel-slide--1 { background: radial-gradient(90% 80% at 30% 20%, rgba(242, 77, 160, .5), transparent 65%), #1a0f26; }
.reel-slide--2 { background: radial-gradient(90% 80% at 70% 25%, rgba(154, 107, 255, .5), transparent 65%), #140d1f; }
.reel-slide--3 { background: radial-gradient(90% 90% at 50% 15%, rgba(255, 200, 87, .35), transparent 60%), #190f22; }
.reel-slide .reel-tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--grad-soft);
  border: 1px solid rgba(242, 77, 160, .4);
  border-radius: 999px;
  padding: 4px 10px;
}
.reel-slide .cap {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
}
.reel-slide .cap.short { width: 55%; background: rgba(255, 255, 255, .2); }
@keyframes reel-rotate {
  0% { opacity: 0; transform: scale(1.04); }
  4% { opacity: 1; transform: scale(1); }
  33% { opacity: 1; }
  40% { opacity: 0; transform: scale(.98); }
  100% { opacity: 0; }
}
.reel-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.reel-types span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
}
@media (prefers-reduced-motion: reduce) {
  .reel-slide { animation: none; }
  .reel-slide:first-child { opacity: 1; }
}

/* ---------- Prozess-Tabs ---------- */
.process-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.ptab {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 11px 20px;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.ptab:hover { color: var(--ink); border-color: rgba(242, 77, 160, .45); }
.ptab[aria-selected="true"] {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(242, 77, 160, .6);
}
.process-panel[hidden] { display: none; }

/* ---------- Prozess ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid rgba(242, 77, 160, .35);
  color: var(--ink);
  margin-bottom: 18px;
}
.process-grid h3 { margin-bottom: 10px; }
.process-grid p { color: var(--muted); font-size: .96rem; }

.guarantee {
  margin-top: 46px;
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  border-radius: 28px;
  padding: 38px 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.guarantee-text strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.guarantee-text span { color: var(--muted); }

/* ---------- Ergebnisse ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.result-card .stars {
  color: var(--star);
  letter-spacing: 3px;
  font-size: .95rem;
  margin-bottom: 16px;
}
.result-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1.1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.result-label {
  color: var(--muted-2);
  font-size: .88rem;
  margin-bottom: 18px;
}
.result-quote {
  font-style: italic;
  color: var(--muted);
  font-size: .97rem;
  border-left: 2px solid;
  border-image: var(--grad) 1;
  padding-left: 16px;
  margin-bottom: 18px;
}
.result-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.result-person .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  background: var(--grad-soft);
  border: 2px solid rgba(242, 77, 160, .45);
  box-shadow: 0 6px 18px -6px rgba(242, 77, 160, .5);
}
.result-person strong {
  font-family: var(--font-display);
  font-size: .95rem;
  display: block;
}
.result-person span { color: var(--muted-2); font-size: .82rem; }

/* ---------- Über uns / Team ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
.about-copy p { color: var(--muted); margin-top: 16px; }
.about-copy .lead-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  border-left: 2px solid;
  border-image: var(--grad) 1;
  padding-left: 18px;
  margin-top: 26px;
}
.about-name {
  margin-top: 26px;
  font-family: var(--font-display);
}
.about-name strong { font-size: 1.05rem; display: block; }
.about-name span { color: var(--muted-2); font-size: .88rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.team-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
}
.team-photo {
  width: 150px;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo--badge {
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo--badge img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 14px 36px -12px rgba(242, 77, 160, .55);
}
.team-card h3 { margin-bottom: 4px; }
.team-role {
  color: var(--pink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.team-card p { color: var(--muted); font-size: .95rem; }

/* ---------- Partner ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.partner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.partner-logo {
  height: 34px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
  display: block;
}
/* Dunkle Fremd-Logos bekommen einen hellen Chip */
.partner-logo--chip {
  background: var(--ink);
  border-radius: 10px;
  padding: 7px 12px;
  height: 44px;
  box-sizing: border-box;
}
.partner-grid p { color: var(--muted); font-size: .97rem; }
.partner-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet);
}
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--pink);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 52px auto 0;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item[open] { border-color: var(--line-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--pink);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: .98rem;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
}
.final-cta-copy { padding: 56px; }
.final-cta-copy h2 { margin: 16px 0 18px; }
.final-cta-copy p { color: var(--muted); max-width: 520px; }
.final-cta-media { position: relative; min-height: 320px; }
.final-cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 7, 16, .55), transparent 55%);
  pointer-events: none;
}

/* Kurs-Cover im Final-CTA (bis das echte Titelbild da ist) */
.course-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(70% 60% at 75% 15%, rgba(154, 107, 255, .3), transparent 60%),
    radial-gradient(60% 55% at 20% 85%, rgba(242, 77, 160, .28), transparent 60%),
    #150d20;
  padding: 30px;
}
.course-card {
  width: min(300px, 100%);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, .8);
}
.course-card .cc-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--grad-soft);
  border: 1px solid rgba(242, 77, 160, .4);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 14px;
}
.course-card .cc-thumb {
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(80% 90% at 70% 10%, rgba(154, 107, 255, .4), transparent 60%),
    radial-gradient(70% 80% at 15% 80%, rgba(242, 77, 160, .35), transparent 60%),
    #170f22;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.course-card h3 {
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 6px;
}
.course-card p {
  color: var(--muted-2);
  font-size: .82rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 36px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 30px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--muted-2); font-size: .92rem; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 16px;
}
.footer-col a, .footer-col button.linklike {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: .95rem;
  margin-bottom: 10px;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  transition: color .2s ease;
}
.footer-col a:hover, .footer-col button.linklike:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: .86rem;
}
.footer-bottom button.linklike {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.footer-bottom button.linklike:hover { color: var(--ink); }

/* ---------- Cookie-Consent ---------- */
.consent-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8);
}
.consent-banner[hidden] { display: none; }
.consent-banner p { color: var(--muted); font-size: .9rem; }
.consent-banner p a { color: var(--ink); }
.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.consent-actions .btn { padding: 10px 18px; font-size: .9rem; }

/* ---------- Reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Legal-Seiten ---------- */
.legal-page {
  padding: 160px 0 80px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-section h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 10px;
}
.legal-body > .legal-section:first-child > p:first-of-type {
  color: var(--muted-2);
  font-size: .9rem;
}
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.legal-meta { color: var(--muted-2); font-size: .9rem; margin-bottom: 40px; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 1.4rem; margin-bottom: 14px; }
.legal-section h3 { font-size: 1.08rem; margin: 22px 0 8px; }
.legal-section p, .legal-section li { color: var(--muted); font-size: .98rem; }
.legal-section p { margin-bottom: 12px; }
.legal-section ul { margin: 0 0 12px; padding-left: 22px; }
.legal-section a { color: var(--ink); }
mark.todo {
  background: rgba(255, 200, 87, .18);
  border: 1px dashed rgba(255, 200, 87, .5);
  border-radius: 6px;
  color: var(--star);
  padding: 1px 7px;
  font-size: .9em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding-top: 140px; }
  .hero-card { left: 12px; }
  .pain-grid, .results-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stage { grid-template-columns: 56px 1fr; }
  .stage-media { grid-column: 2; aspect-ratio: 16 / 7; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta-media { min-height: 260px; order: -1; }
  .final-cta-media::after { background: linear-gradient(180deg, transparent 40%, rgba(11, 7, 16, .6)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(11, 7, 16, .97);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px;
    display: none;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 12px 4px; font-size: 1.05rem; }
  .main-nav .btn { justify-content: center; margin-top: 10px; }
  .main-nav .lang-switch { align-self: flex-start; margin-top: 8px; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .pain-grid, .results-grid, .process-grid, .team-grid, .partner-grid { grid-template-columns: 1fr; }
  .stage { grid-template-columns: 1fr; padding: 26px; }
  .stage-num { font-size: 1.6rem; }
  .stage-media { grid-column: 1; aspect-ratio: 16 / 9; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { width: 100%; height: 220px; }
  .guarantee { padding: 28px; }
  .final-cta-copy { padding: 36px 28px; }
  .hero-card { position: static; margin-top: 14px; display: inline-block; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee { animation: none; flex-wrap: wrap; width: auto; }
  .marquee-group[aria-hidden="true"] { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}
