/* ═══════════════════════════════════════════════════════════
   Leadsupporter — Verkaufswebsite
   Branding exakt von leadsupporter.com
   ═══════════════════════════════════════════════════════════ */

/* ─────────── Tokens ─────────── */
:root {
  --bg: #070B12;
  --bg-2: #0A111B;
  --surface: #101825;
  --surface-2: #0D1420;
  --border: rgba(215, 225, 234, 0.08);
  --border-strong: rgba(215, 225, 234, 0.16);

  --teal: #3EE8DE;
  --teal-bright: #8FF6EE;
  --teal-dark: #1FA69E;
  --gold: #F0BC70;
  --gold-bright: #F7D49E;
  --gold-dark: #E8A94A;
  --red: #E86A6A;

  --ink: #EAF2F7;
  --text: #D7E1EA;
  --muted: #8B9AAD;

  --grad: linear-gradient(90deg, #3EE8DE, #F0BC70);
  --grad-text: linear-gradient(92deg, #8FF6EE 0%, #3EE8DE 45%, #F0BC70 100%);

  --font-display: 'Space Grotesk', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
}

/* ─────────── Reset & Base ─────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Verhindert horizontalen Overflow auf allen Ebenen */
html { overflow-x: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

p { margin: 0 0 16px; }

a { color: var(--teal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-bright); }

img { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(62, 232, 222, 0.28); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--teal);
  color: #06141F;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #06141F; }

section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--teal);
  color: #06141F;
  box-shadow: 0 8px 26px rgba(62, 232, 222, 0.22);
}
.btn-primary:hover {
  background: var(--teal-bright);
  color: #06141F;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(62, 232, 222, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal-bright);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-xl { padding: 20px 42px; font-size: 18px; }

/* ─────────── Eyebrow ─────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

/* ─────────── Header ─────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(7, 11, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(7, 11, 18, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-icon { flex: none; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.brand-word-accent { color: var(--teal); font-weight: 500; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width .22s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-login {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
}
.header-login:hover { color: var(--teal-bright); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  padding: 108px 0 72px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-teal {
  width: 620px;
  height: 620px;
  top: -220px;
  right: -160px;
  background: radial-gradient(circle, rgba(62, 232, 222, 0.22), transparent 65%);
}
.hero-glow-gold {
  width: 560px;
  height: 560px;
  bottom: -260px;
  left: -200px;
  background: radial-gradient(circle, rgba(240, 188, 112, 0.14), transparent 65%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 56px;
}

.hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 22px;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: 17.5px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-sub b { color: var(--ink); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.hero-trust li {
  position: relative;
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 20px;
}
.hero-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}
.browser-frame {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 30px 60px -20px rgba(0,0,0,0.55);
  /* Dauerhafte leichte 3D-Neigung, damit das Mockup auch ohne
     Maus-Interaktion wie ein schwebendes Objekt wirkt statt flach
     auf der Seite zu liegen. Der Tilt-Effekt (script.js) übernimmt
     bei Mausbewegung und kehrt beim Verlassen genau hierhin zurück. */
  transform: perspective(1100px) rotateX(4deg) rotateY(-6deg);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #0B121C;
  border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(215, 225, 234, 0.16);
}
.browser-dots i:first-child { background: rgba(232, 106, 106, 0.75); }
.browser-dots i:nth-child(2) { background: rgba(240, 188, 112, 0.75); }
.browser-dots i:nth-child(3) { background: rgba(62, 232, 222, 0.75); }
.browser-url {
  margin: 0 auto;
  font-size: 12px;
  color: var(--muted);
  background: rgba(215, 225, 234, 0.05);
  border: 1px solid var(--border);
  padding: 4px 16px;
  border-radius: 999px;
}
.browser-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 24, 37, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  animation: floatY 5.5s ease-in-out infinite;
  z-index: 2;
}
.float-ico {
  font-size: 22px;
  line-height: 1;
}
.float-card b {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 13.5px;
  line-height: 1.3;
}
.float-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.float-1 { top: -22px; left: -30px; }
.float-2 { bottom: 34px; left: -44px; animation-delay: -2.2s; }
.float-3 { top: 42%; right: -26px; animation-delay: -3.8s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-stat span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.4;
  display: block;
}

/* ─────────── Bands ─────────── */
.band {
  padding: 52px 0;
  background: linear-gradient(135deg, rgba(62, 232, 222, 0.07), rgba(240, 188, 112, 0.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.leadband-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.leadband-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 8px;
}
.leadband-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

.shopband {
  background: var(--bg-2);
}
.shopband-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
}
.shopband-copy h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin-bottom: 10px;
}
.shopband-copy p { color: var(--muted); margin-bottom: 20px; }
.shopband-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.shopband-covers img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #0A111B;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: transform .25s ease, border-color .25s ease;
}
.shopband-covers img:hover {
  transform: translateY(-5px);
  border-color: rgba(62, 232, 222, 0.45);
}

/* ─────────── Newsletter-Anmeldung ─────────── */
.newsletter-box {
  margin: 0 auto;
  max-width: 640px;
  padding: 36px 34px;
  border-radius: var(--radius, 18px);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  text-align: center;
}
.newsletter-box h3 { font-family: var(--font-display); color: var(--ink); font-size: 22px; margin: 0 0 8px; }
.newsletter-box p { color: var(--muted); font-size: 15px; margin: 0 0 18px; }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1 1 260px; max-width: 320px;
  padding: 13px 16px; border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--bg-2); color: var(--ink);
  font-family: var(--font-body); font-size: 15px;
}
.newsletter-form input[type="email"]:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
.newsletter-status { margin-top: 12px; font-size: 13.5px; color: var(--muted); min-height: 1.2em; }
.newsletter-status.success { color: var(--teal-bright); }
.newsletter-status.error { color: var(--red); }

/* ─────────── Sections ─────────── */
.section {
  padding: 104px 0;
}
.section-alt {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.section-head h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 16.5px;
  margin: 0;
}

/* ─────────── Cards ─────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 232, 222, 0.35);
  box-shadow: var(--shadow-sm);
}
/* Glänzende 3D-Orb-Badges statt flacher Icon-Kacheln -- radialer
   Verlauf simuliert eine Lichtquelle oben links, der doppelte
   Schatten (dunkel unten, hell oben) gibt dem Kreis echte Tiefe. */
.card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 24px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.22), rgba(62,232,222,0.16) 45%, rgba(62,232,222,0.05) 100%);
  border: 1px solid rgba(62, 232, 222, 0.25);
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,0.25),
    inset 0 -6px 10px rgba(0,0,0,0.35),
    0 8px 14px rgba(0,0,0,0.35);
  transition: transform .2s ease;
}
.card:hover .card-ico { transform: translateY(-2px) scale(1.05); }

/* ─────────── Mini-Demo-Animationen (Funktionen-Karten) ─────────── */
.mini-demo {
  position: relative;
  width: 100%;
  height: 76px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--bg-2), var(--surface-2));
  border: 1px solid var(--border);
  margin-bottom: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

/* Typ A: Chat-Bubbles mit Tipp-Animation (Icebreaker, Verkaufs-Simulator) */
.demo-chat { flex-direction: column; align-items: flex-start; gap: 6px; width: 100%; }
.demo-bubble {
  max-width: 82%;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 10px;
  line-height: 1.3;
  opacity: 0;
}
.demo-bubble-in {
  align-self: flex-start;
  background: var(--surface);
  color: var(--muted);
  animation: demo-fade-in 4s ease-in-out infinite;
}
.demo-bubble-out {
  align-self: flex-end;
  background: rgba(62, 232, 222, 0.16);
  color: var(--teal-bright);
  display: flex;
  gap: 3px;
  animation: demo-fade-in 4s ease-in-out infinite .5s;
}
.demo-typing span {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  animation: demo-dot 1.1s ease-in-out infinite;
}
.demo-typing span:nth-child(2) { animation-delay: .15s; }
.demo-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes demo-dot { 0%, 60%, 100% { opacity: .25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }
@keyframes demo-fade-in { 0% { opacity: 0; transform: translateY(4px); } 15%, 85% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; } }

/* Typ B: Sequenz-Schritte (Sequenzen, 90-Tage-Durchbruch) */
.demo-sequence { gap: 0; width: 100%; }
.seq-step {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.seq-line { flex: 1 1 auto; height: 1.5px; background: var(--border-strong); }
.seq-step.demo-a1 { animation: demo-seq-pulse 4.5s ease-in-out infinite 0s; }
.seq-step.demo-a2 { animation: demo-seq-pulse 4.5s ease-in-out infinite 1.5s; }
.seq-step.demo-a3 { animation: demo-seq-pulse 4.5s ease-in-out infinite 3s; }
@keyframes demo-seq-pulse {
  0%, 20% { background: var(--surface); border-color: var(--border-strong); color: var(--muted); }
  30%, 45% { background: var(--teal); border-color: var(--teal); color: #06141F; box-shadow: 0 0 0 4px rgba(62,232,222,0.18); }
  60%, 100% { background: var(--surface); border-color: var(--border-strong); color: var(--muted); }
}

/* Typ C: Priorisierte Liste mit Score (Nächste Aktion, Heat-Score) */
.demo-list { flex-direction: column; gap: 5px; width: 100%; align-items: stretch; }
.demo-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10.5px; color: var(--muted);
  padding: 3px 8px;
  border-radius: 6px;
  transition: none;
}
.demo-row .demo-score { font-weight: 700; font-variant-numeric: tabular-nums; }
.demo-row.demo-r1 { animation: demo-row-top 4.5s ease-in-out infinite 0s; }
.demo-row.demo-r2 { animation: demo-row-top 4.5s ease-in-out infinite 1.5s; }
.demo-row.demo-r3 { animation: demo-row-top 4.5s ease-in-out infinite 3s; }
@keyframes demo-row-top {
  0%, 15% { background: transparent; color: var(--muted); }
  25%, 45% { background: rgba(240, 188, 112, 0.14); color: var(--gold-bright); }
  55%, 100% { background: transparent; color: var(--muted); }
}

/* Typ D: Scan mit Häkchen (Profil-Check, KI-Upline) */
.demo-scan { position: relative; width: 56px; height: 56px; }
.scan-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--surface), var(--bg-2));
  border: 1.5px solid var(--border-strong);
}
.scan-line {
  position: absolute; left: 2px; right: 2px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-bright), transparent);
  animation: demo-scan-sweep 3s ease-in-out infinite;
}
.scan-check {
  position: absolute; right: -4px; bottom: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal);
  color: #06141F;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  animation: demo-check-pop 3s ease-in-out infinite;
}
@keyframes demo-scan-sweep { 0% { top: 4px; opacity: 0; } 10% { opacity: 1; } 55% { top: 50px; opacity: 1; } 65% { opacity: 0; } 100% { opacity: 0; top: 4px; } }
@keyframes demo-check-pop { 0%, 60% { opacity: 0; transform: scale(.5); } 70% { opacity: 1; transform: scale(1.15); } 80%, 100% { opacity: 1; transform: scale(1); } }

/* Typ E: Content-Post-Vorschau mit wechselndem Format (Content-Engine) */
.demo-content { gap: 10px; align-items: center; }
.content-swatch {
  flex: 0 0 auto;
  width: 42px; height: 58px;
  border-radius: 8px;
  animation: demo-palette-cycle 6s ease-in-out infinite;
}
.content-info { flex: 1 1 auto; display: flex; flex-direction: column; gap: 7px; }
.content-line { display: block; height: 6px; border-radius: 3px; background: var(--border-strong); }
.content-line-1 { width: 92%; }
.content-line-2 { width: 58%; }
.content-format-label {
  position: absolute; top: 8px; right: 12px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0;
}
.content-format-label.f1 { animation: demo-fade-fmt 6s ease-in-out infinite 0s; }
.content-format-label.f2 { animation: demo-fade-fmt 6s ease-in-out infinite 2s; }
.content-format-label.f3 { animation: demo-fade-fmt 6s ease-in-out infinite 4s; }
@keyframes demo-fade-fmt { 0%, 5% { opacity: 0; } 12%, 28% { opacity: 1; } 35%, 100% { opacity: 0; } }
@keyframes demo-palette-cycle {
  0%, 20% { background: linear-gradient(135deg, #1FA69E, #3EE8DE); }
  33%, 53% { background: linear-gradient(135deg, #E8A94A, #F7D49E); }
  66%, 86% { background: linear-gradient(135deg, #3EE8DE, #F0BC70); }
  100% { background: linear-gradient(135deg, #1FA69E, #3EE8DE); }
}

/* Typ H: Checkliste, die sich abhakt (Erfolgs-Tagebuch) */
.demo-journal { flex-direction: column; gap: 7px; align-items: flex-start; width: 100%; }
.journal-row { display: flex; align-items: center; gap: 8px; width: 100%; }
.journal-check {
  position: relative;
  flex: 0 0 auto;
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 1.5px solid var(--border-strong);
}
.journal-check::after {
  content: "✓";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #06141F;
  opacity: 0;
}
.journal-line { flex: 1 1 auto; height: 6px; border-radius: 3px; background: var(--border-strong); }
.demo-j1 .journal-check { animation: demo-check-fill 4.5s ease-in-out infinite 0s; }
.demo-j2 .journal-check { animation: demo-check-fill 4.5s ease-in-out infinite 1.5s; }
.demo-j3 .journal-check { animation: demo-check-fill 4.5s ease-in-out infinite 3s; }
.demo-j1 .journal-check::after { animation: demo-check-show 4.5s ease-in-out infinite 0s; }
.demo-j2 .journal-check::after { animation: demo-check-show 4.5s ease-in-out infinite 1.5s; }
.demo-j3 .journal-check::after { animation: demo-check-show 4.5s ease-in-out infinite 3s; }
@keyframes demo-check-fill { 0%, 20% { background: transparent; border-color: var(--border-strong); } 30%, 100% { background: var(--teal); border-color: var(--teal); } }
@keyframes demo-check-show { 0%, 25% { opacity: 0; } 35%, 100% { opacity: 1; } }

/* Typ F: Kurve zeichnen (Mein Gewinn) */
.demo-chart svg { width: 100%; height: 100%; }
.demo-chart .chart-line {
  fill: none;
  stroke: var(--teal-bright);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: demo-draw 3.5s ease-in-out infinite;
}
@keyframes demo-draw { 0% { stroke-dashoffset: 140; } 55%, 80% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -140; } }

/* Typ G: Team-Knoten verbinden (Team & Duplikation) */
.demo-team { position: relative; width: 100%; height: 100%; }
.team-node {
  position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold-bright);
  opacity: 0;
  animation: demo-node-pop 4s ease-in-out infinite;
}
.team-node-center { width: 20px; height: 20px; background: var(--teal-bright); left: 50%; top: 50%; transform: translate(-50%, -50%); opacity: 1; animation: none; }
.team-node-1 { left: 18%; top: 20%; animation-delay: .3s; }
.team-node-2 { left: 78%; top: 22%; animation-delay: .6s; }
.team-node-3 { left: 20%; top: 74%; animation-delay: .9s; }
.team-node-4 { left: 80%; top: 76%; animation-delay: 1.2s; }
@keyframes demo-node-pop { 0%, 10% { opacity: 0; transform: scale(.4); } 25%, 90% { opacity: 1; transform: scale(1); } 100% { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .mini-demo *, .mini-demo *::before, .mini-demo *::after { animation: none !important; }
  .demo-bubble, .team-node { opacity: 1; }
}

.card h3 {
  font-size: 17.5px;
  margin-bottom: 8px;
}
.card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.section-cta {
  margin: 54px auto 0;
  max-width: 640px;
  text-align: center;
}
.section-cta p {
  color: var(--muted);
  margin-bottom: 22px;
}
.section-cta p b { color: var(--ink); }

/* ─────────── Identifikation ─────────── */
.ident-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.ident-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}
.ident-x {
  flex: none;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(232, 106, 106, 0.12);
  border: 1px solid rgba(232, 106, 106, 0.35);
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}
.ident-item p {
  margin: 0;
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
}

.ident-flip {
  max-width: 780px;
  margin: 30px auto 0;
  padding: 26px 32px;
  border: 1px solid rgba(62, 232, 222, 0.28);
  background: rgba(62, 232, 222, 0.06);
  border-radius: 16px;
}
.ident-flip-text {
  margin: 0;
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
}
.ident-flip-text b { color: var(--teal-bright); }

/* ─────────── Transformation ─────────── */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.transform-card {
  border-radius: var(--radius);
  padding: 34px 32px;
}
.transform-card h3 {
  font-size: 19px;
  margin-bottom: 18px;
}
.transform-card li {
  position: relative;
  padding: 7px 0 7px 30px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}
.transform-card li::before {
  position: absolute;
  left: 0;
  top: 7px;
  font-weight: 700;
}
.transform-card.before {
  background: var(--surface);
  border: 1px solid var(--border);
}
.transform-card.before h3 { color: var(--red); }
.transform-card.before li::before { content: "✗"; color: var(--red); }
.transform-card.after {
  background: linear-gradient(160deg, rgba(62, 232, 222, 0.1), rgba(240, 188, 112, 0.06) 60%, rgba(16, 24, 37, 0.6));
  border: 1px solid rgba(62, 232, 222, 0.32);
  box-shadow: var(--shadow-sm);
}
.transform-card.after h3 { color: var(--teal-bright); }
.transform-card.after li { color: var(--text); }
.transform-card.after li::before { content: "✓"; color: var(--teal); }

/* ─────────── Lösung / Steps ─────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .25s ease, border-color .25s ease;
}
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(62, 232, 222, 0.35);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 14px;
}
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

.loop-note {
  max-width: 660px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* ─────────── Produkt-Showcase ─────────── */
.product-showcase {
  max-width: 920px;
  margin: 0 auto;
}
.browser-frame-lg img { aspect-ratio: 16 / 9; }
.showcase-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.chip {
  font-size: 13.5px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 16px;
}

/* Honesty */
.honesty {
  max-width: 920px;
  margin: 68px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 44px;
}
.honesty h3 {
  font-size: 24px;
  margin-bottom: 6px;
}
.honesty-intro {
  color: var(--muted);
  margin-bottom: 26px;
}
.honesty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.honesty-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.honesty-col.yes h4 { color: var(--teal); }
.honesty-col.no h4 { color: var(--red); }
.honesty-col li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.55;
}
.honesty-col.yes li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.honesty-col.no li::before { content: "✗"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.honesty-note {
  margin: 28px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

/* ─────────── Features ─────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card h3 { font-size: 16.5px; }
.feature-card { position: relative; }
.feature-soon-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #04141A; background: var(--gold-bright, #F0BC70); border-radius: 999px; padding: 3px 10px; margin: 0;
}
.feature-footnote {
  max-width: 700px;
  margin: 42px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
}

/* ─────────── Ablauf / Timeline ─────────── */
.timeline {
  max-width: 820px;
  margin: 0 auto;
}
.tl-item {
  display: flex;
  gap: 22px;
  padding: 6px 0 30px;
}
.tl-item:last-child { padding-bottom: 6px; }
.tl-dot {
  flex: none;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  background: var(--surface);
  border: 1px solid rgba(62, 232, 222, 0.4);
  box-shadow: 0 0 0 6px rgba(62, 232, 222, 0.05);
}
.tl-body h3 { font-size: 17.5px; margin-bottom: 4px; }
.tl-body p { color: var(--muted); font-size: 15px; margin: 0; }

.dayone {
  max-width: 820px;
  margin: 40px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 32px;
}
.dayone-label {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.dayone-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.dayone-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--teal);
  margin-bottom: 2px;
}
.dayone-stats span {
  font-size: 13px;
  color: var(--muted);
}

/* ─────────── Bonus ─────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ─────────── Vergleich ─────────── */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}
.compare th, .compare td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14.5px;
}
.compare thead th {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  background: var(--surface-2);
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody td { color: var(--muted); }
.compare th:not(:first-child), .compare td:not(:first-child) { text-align: center; }
.compare .col-best {
  background: rgba(62, 232, 222, 0.07);
  color: var(--teal-bright);
  font-weight: 600;
}
.compare thead .col-best { color: var(--teal); }
.compare td small { color: var(--muted); font-weight: 400; }

.diff-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.diff-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
}
.diff-ico { font-size: 26px; line-height: 1.3; }
.diff-point b { color: var(--ink); font-size: 15.5px; display: block; margin-bottom: 4px; }
.diff-point p { color: var(--muted); font-size: 14px; margin: 0; }

/* ─────────── Einwände ─────────── */
.objection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.objection-card h3 {
  font-size: 16.5px;
  margin-bottom: 10px;
}
.objection-card p { font-size: 14.5px; }

/* ─────────── Erfahrungsberichte (durchlaufendes Band) ─────────── */
.testimonial-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonial-scroll 240s linear infinite;
}
.testimonial-marquee:hover .testimonial-track,
.testimonial-marquee:focus-within .testimonial-track {
  animation-play-state: paused;
}
@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial-card {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1.5px solid rgba(240, 188, 112, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.testimonial-card::before {
  content: "★★★★★";
  color: var(--gold-bright);
  font-size: 15px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}
.testimonial-author {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0;
}
.testimonial-disclaimer {
  margin: 28px 0 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-track { animation: none; }
  .testimonial-marquee { overflow-x: auto; }
}
@media (max-width: 720px) {
  .testimonial-card { flex-basis: 280px; }
}

/* ─────────── Preise ─────────── */
.launch-note {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15.5px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(240, 188, 112, 0.12), rgba(62, 232, 222, 0.07));
  border: 1px solid rgba(240, 188, 112, 0.3);
  border-radius: 14px;
  padding: 16px 24px;
}
.launch-note b { color: var(--gold-bright); }
.founder-live-bar { margin-top: 14px; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.founder-live-fill { height: 100%; background: linear-gradient(90deg, var(--primary, #3EE8DE), var(--gold-bright, #F0BC70)); border-radius: 999px; transition: width .4s ease; }
.founder-live-text { margin-top: 8px; font-size: 13px; color: var(--text-muted, #8AA0B8); }
.price-badge.soldout { opacity: 0.75; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 232, 222, 0.35);
  box-shadow: var(--shadow-sm);
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(62, 232, 222, 0.09), rgba(16, 24, 37, 0.85));
  border-color: rgba(62, 232, 222, 0.5);
  box-shadow: 0 18px 50px rgba(62, 232, 222, 0.12);
}
.price-card.featured:hover { border-color: var(--teal); }
.price-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.price s { color: var(--muted); font-size: 20px; font-weight: 500; }
.price b { color: var(--teal); }
.price span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.price-desc {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 20px;
}
.price-card ul {
  margin-bottom: 26px;
  flex-grow: 1;
}
.price-card li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--teal);
  color: #06141F;
  box-shadow: var(--shadow-sm);
}
.price-badge.launch {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: #1A1204;
}
.price-badge.soon {
  background: rgba(139, 154, 173, 0.18);
  color: var(--muted);
  border: 1px solid var(--border-strong);
}
.price-card .btn { width: 100%; margin-top: auto; }

/* KI-Band */
.ki-band {
  margin-top: 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
}
.ki-band-head { max-width: 640px; margin: 0 auto 32px; text-align: center; }
.ki-band-head .eyebrow { justify-content: center; }
.ki-band-head .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.ki-band-head h3 { font-size: 22px; margin-bottom: 8px; }
.ki-band-head p { color: var(--muted); font-size: 14.5px; margin: 0; }
.ki-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ki-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}
.ki-card.featured {
  border-color: rgba(62, 232, 222, 0.45);
  background: rgba(62, 232, 222, 0.05);
}
/* Leader-Paket ist noch nicht verfügbar -- optisch gedämpft, damit es nicht
   wie ein regulär buchbares Paket neben Test/Starter/Durchbruch wirkt. */
.ki-card-soon { opacity: 0.6; }
.ki-card-soon .ki-badge small { display: block; font-size: 9.5px; letter-spacing: 0.04em; text-transform: none; color: var(--gold-bright, #F0BC70); margin-top: 2px; }
.ki-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.ki-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 8px;
}
.ki-card p { font-size: 13px; color: var(--muted); margin: 0; }
.ki-note {
  max-width: 680px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

/* Garantie */
.guarantee {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
  background: rgba(240, 188, 112, 0.06);
  border: 1px solid rgba(240, 188, 112, 0.28);
  border-radius: 18px;
  padding: 28px 32px;
}
.guarantee-ico { font-size: 40px; line-height: 1; flex: none; }
.guarantee h3 { font-size: 20px; margin-bottom: 6px; }
.guarantee p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ─────────── FAQ ─────────── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-list details[open] { border-color: rgba(62, 232, 222, 0.35); }
.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 19px 56px 19px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: color .2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--teal-bright); }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  transition: transform .25s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-list details p b { color: var(--text); }

/* ─────────── Finaler CTA ─────────── */
.final-cta {
  position: relative;
  padding: 116px 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 50% 110%, rgba(62, 232, 222, 0.16), transparent 70%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.final-cta .eyebrow { justify-content: center; }
.final-cta .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 720px;
  margin: 0 auto 14px;
}
.final-cta p {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 30px;
}
.final-note {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.8;
}
.final-note a { color: var(--teal); }

/* ─────────── Footer ─────────── */
.site-footer {
  background: #05080F;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 2fr;
  gap: 56px;
}
.footer-tagline {
  color: var(--muted);
  font-size: 14px;
  max-width: 340px;
  margin-top: 18px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text);
  font-size: 14px;
  padding: 5px 0;
}
.footer-col a:hover { color: var(--teal-bright); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.footer-note {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 14px;
}
.footer-copy {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

/* ─────────── Mobile Sticky CTA ─────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(7, 11, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.mobile-cta .btn { width: 100%; }
[hidden] { display: none !important; }

/* ─────────── Scroll-Reveal ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ─────────── Responsive ─────────── */
@media (max-width: 1100px) {
  .main-nav { gap: 20px; }
  .hero-grid { gap: 40px; }
  .float-3 { display: none; }
  .float-2 { left: -20px; }
  .float-1 { left: -16px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .price-card.featured { transform: none; }
  .ki-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1023px) {
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 22px;
    background: rgba(7, 11, 18, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .site-header.nav-open .main-nav { display: flex; }
  .main-nav a { width: 100%; padding: 12px 0; font-size: 16px; }
  .nav-toggle { display: flex; }
  .header-login { display: none; }
}

@media (max-width: 900px) {
  .hero { padding: 84px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 28px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .diff-points { grid-template-columns: 1fr; }
  .objection-grid { grid-template-columns: 1fr; }
  .leadband-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .shopband-inner { grid-template-columns: 1fr; gap: 28px; }
  .shopband-covers { max-width: 460px; }
  .honesty-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .transform-grid { grid-template-columns: 1fr; }
  .dayone-stats { grid-template-columns: 1fr 1fr; }
  .mobile-cta:not([hidden]) { display: block; }
}

@media (max-width: 560px) {
  .section { padding: 76px 0; }
  .card-grid, .steps, .feature-grid, .bonus-grid, .pricing-grid { grid-template-columns: 1fr; }
  .ident-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn { width: 100%; }
  .hero h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 16px; }
  .float-card { display: none; }
  .ki-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .honesty { padding: 30px 24px; }
  .guarantee { flex-direction: column; align-items: flex-start; }
  .compare-wrap { margin: 0 -12px; border-radius: 0; }
  .mobile-cta .btn { font-size: 16px; padding: 16px 20px; }
}

/* ─────────── Reduced Motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   Ergänzungen: Wert-Leiter, Vertrauen, finale CTAs
   ═══════════════════════════════════════════════════════════ */

/* ─────────── Wert-Leiter (Preis-Sektion) ─────────── */
.value-ladder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -16px 0 34px;
}
.value-ladder-label {
  color: var(--muted);
  font-size: .95rem;
  margin-right: 6px;
}
.value-ladder-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: .95rem;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, color .2s ease;
}
.value-ladder-item b {
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
}
.value-ladder-item small { color: var(--muted); }
.value-ladder-item:hover {
  border-color: rgba(62, 232, 222, .45);
  transform: translateY(-2px);
  color: var(--ink);
}

/* ─────────── Vertrauen statt Testimonials ─────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-card h3 { font-size: 1.05rem; }

/* ─────────── Finale CTAs ─────────── */
.final-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}
.final-ctas .btn-ghost { border-color: rgba(215, 225, 234, 0.28); }

/* ─────────── Responsive Nachzügler ─────────── */
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .value-ladder { flex-direction: column; align-items: stretch; }
  .value-ladder-item { justify-content: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .final-ctas { flex-direction: column; }
  .final-ctas .btn { width: 100%; text-align: center; }
}
