/* ================================================================
   WLT FUNNEL PAGE — STYLES V3
   Visual: Apple-Style + BMB-Style + Icons + Phone-Mockup + Patterns
   Mobile-First + Visual Variety
   ================================================================ */

/* ---------- TOKENS ---------- */
:root {
  --bg: #101820;
  --bg-elevated: #141C25;
  --bg-deeper: #0C131A;
  --surface: #141A21;
  --surface-2: #1B232C;
  --surface-3: #232D38;
  --accent: #00D4FF;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --accent-glow-soft: rgba(0, 212, 255, 0.06);
  --accent-soft: #B8D4DD;
  --text: #E8F0F5;
  --text-dim: rgba(232, 240, 245, 0.55);
  --text-muted: rgba(232, 240, 245, 0.35);
  --border: rgba(232, 240, 245, 0.10);
  --border-strong: rgba(232, 240, 245, 0.20);

  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  --space-40: 160px;
  --space-48: 192px;

  --ease-standard: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-decelerate: cubic-bezier(0, 0.5, 0.3, 1);
  --ease-emphatic: cubic-bezier(0.12, 0.23, 0.17, 0.99);

  /* Decorative pattern */
  --dot-pattern: radial-gradient(circle, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  --dot-pattern-size: 32px 32px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }
img, iframe, video, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
[hidden] { display: none !important; }

/* ---------- BASE ---------- */
html {
  background: #101820;
  background-color: #101820;
  height: 100%;
}
body {
  background: #101820;
  background-color: #101820;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 768px) {
  body { font-size: 17px; }
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 720px; }

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}
@media (min-width: 1024px) {
  .container { padding: 0 64px; }
}
@media (min-width: 1280px) {
  .container { padding: 0 80px; }
}

section {
  padding: var(--space-16) 0;
  position: relative;
}
@media (min-width: 768px) {
  section { padding: var(--space-24) 0; }
}
@media (min-width: 1024px) {
  section { padding: var(--space-32) 0; }
}

/* Section BG-Variation für Rhythmus */
.system { background: var(--bg-elevated); }
.proof { background: var(--bg-deeper); position: relative; }
.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dot-pattern);
  background-size: var(--dot-pattern-size);
  opacity: 0.5;
  pointer-events: none;
}
.proof .container { position: relative; z-index: 1; }
.fit-check { background: var(--bg-elevated); }
.application { background: var(--bg-deeper); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: none;
  margin-bottom: var(--space-5);
}
@media (min-width: 768px) {
  .hero__headline {
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: var(--space-6);
  }
}

.hero__highlight {
  color: var(--accent);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .hero__highlight { white-space: normal; }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 5.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: none;
  margin-top: var(--space-5);
  margin-bottom: var(--space-8);
  max-width: 22ch;
}
.section-title--big {
  font-size: clamp(32px, 6.5vw, 72px);
}
.application .section-title { margin-left: auto; margin-right: auto; max-width: 18ch; }

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  margin-bottom: var(--space-4);
}
@media (min-width: 768px) {
  .section-tag { font-size: 11px; }
}

.section-sub {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: var(--space-10);
  color: var(--text);
  font-weight: 400;
}

.section-admission {
  font-size: 16px;
  font-style: italic;
  color: var(--accent-soft);
  max-width: 56ch;
  margin: var(--space-8) 0;
  line-height: 1.55;
  padding-left: var(--space-4);
  border-left: 2px solid var(--accent);
}
.section-admission--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border-left: 0;
  padding-left: 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  min-height: 48px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  transition: all 280ms var(--ease-standard);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .btn { padding: 18px 32px; font-size: 13px; }
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow), 0 0 0 1px var(--accent);
}
.btn--secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--secondary:hover {
  background: var(--accent-glow-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn--full { width: 100%; }
.btn--xl { padding: 20px 36px; font-size: 13px; }
@media (min-width: 768px) {
  .btn--xl { padding: 22px 40px; font-size: 14px; }
}
.btn__arrow { display: inline-block; transition: transform 280ms var(--ease-standard); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- FUDs ---------- */
.fuds {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--accent-soft);
  margin-top: var(--space-4);
  text-transform: uppercase;
}
@media (min-width: 768px) { .fuds { font-size: 11px; } }
.fuds--center { text-align: center; }
.fuds--small { font-size: 9px; }

/* ================================================================
   SECTION 1 · HERO
   ================================================================ */
.hero {
  padding-top: var(--space-10);
  padding-bottom: var(--space-20);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding-top: var(--space-16); padding-bottom: var(--space-32); }
}
@media (min-width: 1024px) {
  .hero { padding-top: var(--space-20); padding-bottom: var(--space-40); }
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -20%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, var(--accent-glow-soft) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(60px);
}
.hero .container { position: relative; z-index: 1; }

.hero__top-bar {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.20em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .hero__top-bar { font-size: 11px; letter-spacing: 0.24em; margin-bottom: var(--space-16); }
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
@media (min-width: 1024px) {
  .hero__split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-16);
    align-items: center;
    margin-bottom: var(--space-20);
  }
}

.hero__sub {
  font-size: clamp(14px, 1.9vw, 20px);
  line-height: 1.5;
  margin-bottom: var(--space-6);
  color: var(--text);
  max-width: 52ch;
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero__sub {
    line-height: 1.55;
    margin-bottom: var(--space-8);
  }
}

.hero__vsl { width: 100%; }
.vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}
.vsl-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vsl-frame--poster {
  cursor: pointer;
  outline: none;
}
.vsl-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.vsl-frame--poster:hover .vsl-poster,
.vsl-frame--poster:focus-visible .vsl-poster {
  transform: scale(1.02);
  filter: brightness(1.05);
}
.vsl-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.18);
  border: 2.5px solid var(--accent);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.5);
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease;
}
@media (min-width: 768px) {
  .vsl-play { width: 92px; height: 92px; }
}
.vsl-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 22px solid var(--accent);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
@media (min-width: 768px) {
  .vsl-play::before {
    border-left-width: 26px;
    border-top-width: 17px;
    border-bottom-width: 17px;
  }
}
.vsl-frame--poster:hover .vsl-play,
.vsl-frame--poster:focus-visible .vsl-play {
  background: rgba(0, 212, 255, 0.32);
  transform: translate(-50%, -50%) scale(1.08);
}
.vsl-frame.is-playing { cursor: default; }

/* ---------- STATS ROW (3 Stats Layout) ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 auto var(--space-6);
  padding: var(--space-4) 0;
  max-width: 560px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .stats-row { padding: var(--space-5) 0; margin-bottom: var(--space-8); max-width: 680px; }
}

.stat {
  padding: var(--space-2) var(--space-2);
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.stat:last-child { border-right: 0; }
@media (min-width: 768px) {
  .stat { padding: var(--space-3) var(--space-3); gap: 4px; }
}

.stat__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted, rgba(232, 240, 245, 0.5));
  margin-top: 2px;
  letter-spacing: 0;
  line-height: 1.3;
  font-style: italic;
}
@media (min-width: 768px) {
  .stat__sub { font-size: 11px; }
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.8vw, 36px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat__label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.20em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .stat__label { font-size: 10px; } }

.mini-testimonial {
  margin-top: var(--space-8);
  padding: var(--space-5);
  border-left: 2px solid var(--accent);
  background: var(--surface);
  max-width: 60ch;
}
.mini-testimonial p {
  font-size: 16px;
  font-style: italic;
  color: var(--accent-soft);
  margin-bottom: var(--space-2);
  line-height: 1.5;
}
.mini-testimonial cite {
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.10em;
  color: var(--text-dim);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .mini-testimonial p { font-size: 17px; }
  .mini-testimonial cite { font-size: 11px; }
}

/* ================================================================
   SECTION 2 · TRANSITION
   ================================================================ */
.transition {
  text-align: center;
  padding: var(--space-12) 0;
}
.transition p {
  font-style: italic;
  color: var(--text-dim);
  font-size: clamp(15px, 1.8vw, 18px);
  max-width: 56ch;
  margin: 0 auto var(--space-6);
  line-height: 1.55;
}
.scroll-arrow {
  font-size: 28px;
  color: var(--accent);
  animation: scroll-pulse 2s var(--ease-standard) infinite;
  font-family: var(--font-mono);
  font-weight: 300;
}
@keyframes scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ================================================================
   SECTION 3 · PAIN
   ================================================================ */
.pain__lead {
  margin-bottom: var(--space-10);
  max-width: 62ch;
}
.pain__lead p {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.55;
  margin-bottom: var(--space-3);
  color: var(--text);
}
.pain__lead p:first-child {
  font-weight: 500;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
}

.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transition: all 320ms var(--ease-standard);
  position: relative;
}
.pain-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.pain-card__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
}
.pain-card__icon svg { width: 100%; height: 100%; }
.pain-card .card__num {
  margin-bottom: 0;
  font-size: 11px;
}
.pain-card .card__body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  margin-top: auto;
}

.pain__pivot {
  max-width: 65ch;
  margin-top: var(--space-12);
}
.pain__agitate {
  font-size: clamp(18px, 2.4vw, 24px);
  font-style: italic;
  color: var(--text);
  margin-bottom: var(--space-6);
  padding: var(--space-6);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  line-height: 1.45;
}
.pain__solve {
  font-size: 17px;
  color: var(--accent-soft);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}
.pain__damage {
  font-size: 17px;
  color: var(--text);
  margin-bottom: var(--space-8);
  line-height: 1.6;
  font-weight: 500;
}

/* ---------- CARDS (generic) ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--space-6);
  transition: all 320ms var(--ease-standard);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.card__num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
@media (min-width: 768px) { .card__num { font-size: 11px; } }
.card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-3);
  text-transform: none;
}
.card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
}
@media (min-width: 768px) { .card__body { font-size: 16px; } }

/* ================================================================
   SECTION 4 · SYSTEM
   ================================================================ */
.system-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin: var(--space-12) 0;
}
@media (min-width: 600px) {
  .system-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
}
@media (min-width: 1024px) {
  .system-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}

.system-card {
  background: var(--surface-2);
  padding: var(--space-8);
  position: relative;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .system-card { padding: var(--space-10); }
}

.system-card__icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  background: var(--accent-glow-soft);
  border: 1px solid var(--accent);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 320ms var(--ease-standard);
}
.system-card:hover .system-card__icon {
  background: var(--accent);
  color: var(--bg);
}
.system-card__icon svg { width: 100%; height: 100%; }

.system-card .card__num { margin-bottom: 0; }
.system-card .card__title { margin-bottom: var(--space-3); }
.system-card .card__body {
  margin-top: auto;
}

.system__close {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--text);
  max-width: 60ch;
  margin: var(--space-12) auto 0;
  text-align: center;
  line-height: 1.5;
}

/* ================================================================
   SECTION 5 · OUTCOMES — mit Phone-Mockup
   ================================================================ */
.outcome-list {
  margin: var(--space-12) 0;
}
.outcome-item {
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.outcome-item:first-child { border-top: 1px solid var(--border); }
@media (min-width: 768px) {
  .outcome-item { padding: var(--space-16) 0; }
}

.outcome-item__num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.outcome-item__story {
  font-size: clamp(20px, 3vw, 32px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: var(--space-3);
  max-width: 28ch;
  color: var(--text);
  letter-spacing: -0.015em;
}
.outcome-item__story--small {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--accent-soft);
  margin-bottom: var(--space-6);
}
.outcome-item__anchor {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: var(--space-6);
  max-width: 50ch;
  line-height: 1.6;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .outcome-item__anchor { font-size: 14px; } }

/* Outcome with Phone-Mockup — Split Layout */
.outcome-item--with-mockup {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 768px) {
  .outcome-item--with-mockup {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-12);
  }
}

.outcome-item__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ---------- PHONE MOCKUP ---------- */
.phone-mockup {
  position: relative;
  width: 240px;
  height: 480px;
  background: linear-gradient(160deg, #1B232C 0%, #0E141A 100%);
  border-radius: 36px;
  padding: 8px;
  border: 2px solid var(--border-strong);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .phone-mockup { width: 260px; height: 520px; }
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  z-index: -1;
  filter: blur(40px);
}

.phone-mockup__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-mockup__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  padding: 48px 16px 16px;
}

.phone-mockup__time {
  position: absolute;
  top: 14px;
  left: 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  z-index: 3;
}

.phone-mockup__notification {
  background: rgba(28, 36, 44, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 12px;
  margin-top: 12px;
  border: 1px solid var(--border);
  animation: phone-slide-in 1s var(--ease-decelerate) forwards;
  opacity: 0;
}
@keyframes phone-slide-in {
  0% { opacity: 0; transform: translateY(-12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.phone-mockup__notification-app {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.phone-mockup__notification-icon {
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  border-radius: 6px;
}
.phone-mockup__notification-app-name {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2px;
}
.phone-mockup__notification-time {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.phone-mockup__notification-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}
.phone-mockup__notification-body {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ================================================================
   SECTION 6 · PROOF
   ================================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin: var(--space-12) 0;
}
@media (min-width: 768px) {
  .testimonial-grid { gap: var(--space-8); }
}
@media (min-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--space-6);
  transition: all 320ms var(--ease-standard);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .testimonial { padding: var(--space-8); }
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--accent-glow);
}

.testimonial__video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  margin-bottom: var(--space-6);
  overflow: hidden;
  border: 1px solid var(--border);
}
.testimonial__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.testimonial__video--poster {
  cursor: pointer;
  outline: none;
}
.testimonial__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.testimonial__video--poster:hover .testimonial__poster,
.testimonial__video--poster:focus-visible .testimonial__poster {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.testimonial__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.18);
  border: 2px solid var(--accent);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.45);
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease;
}
@media (min-width: 768px) {
  .testimonial__play { width: 72px; height: 72px; }
}
.testimonial__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid var(--accent);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
@media (min-width: 768px) {
  .testimonial__play::before {
    border-left-width: 22px;
    border-top-width: 14px;
    border-bottom-width: 14px;
  }
}
.testimonial__video--poster:hover .testimonial__play,
.testimonial__video--poster:focus-visible .testimonial__play {
  background: rgba(0, 212, 255, 0.32);
  transform: translate(-50%, -50%) scale(1.08);
}
.testimonial__video.is-playing { cursor: default; }

.testimonial__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  text-transform: none;
  margin-bottom: var(--space-3);
}
@media (min-width: 768px) { .testimonial__name { font-size: 22px; } }
.testimonial__before {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: var(--space-5);
  line-height: 1.55;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}
@media (min-width: 768px) { .testimonial__before { font-size: 14px; } }
.testimonial__quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  margin-bottom: var(--space-6);
  padding: var(--space-3) 0 var(--space-3) var(--space-4);
  border-left: 2px solid var(--accent);
  line-height: 1.45;
}
@media (min-width: 768px) { .testimonial__quote { font-size: 17px; } }
.testimonial__stat {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  margin-bottom: var(--space-3);
  margin-top: auto;
  line-height: 1.5;
}
@media (min-width: 768px) { .testimonial__stat { font-size: 11px; } }
.testimonial__disclaimer {
  font-size: 11px;
  color: var(--accent-soft);
  font-style: italic;
  line-height: 1.5;
}
@media (min-width: 768px) { .testimonial__disclaimer { font-size: 12px; } }

.proof__honesty {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text);
  max-width: 60ch;
  margin: var(--space-12) auto 0;
  text-align: center;
  line-height: 1.55;
  font-style: italic;
  padding: var(--space-6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ================================================================
   SECTION 7 · COOPERATION
   ================================================================ */
.coop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin: var(--space-10) 0;
}
@media (min-width: 768px) {
  .coop-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

.coop-card {
  padding: var(--space-8);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .coop-card { padding: var(--space-10); }
}

.coop-card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 320ms var(--ease-standard);
}
.coop-card:hover .coop-card__icon {
  background: var(--accent);
  color: var(--bg);
}
.coop-card__icon svg { width: 100%; height: 100%; }

.coop-card .card__num { margin-bottom: 0; }
.coop-card .card__title { margin-bottom: var(--space-3); }

/* ================================================================
   SECTION 8 · FINANCING
   ================================================================ */
.trust-list {
  background: var(--surface);
  border: 1px solid var(--border);
  margin: var(--space-10) 0;
}
.trust-item {
  padding: var(--space-6);
  border-bottom: 1px solid var(--border);
  transition: background 280ms var(--ease-standard);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .trust-item {
    padding: var(--space-8);
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-6);
  }
}
.trust-item:hover { background: var(--surface-2); }
.trust-item:last-child { border-bottom: 0; }

.trust-item__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  flex-shrink: 0;
  padding: 10px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item__icon svg { width: 100%; height: 100%; }

.trust-item__content { flex: 1; }
.trust-item__num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
@media (min-width: 768px) { .trust-item__num { font-size: 11px; } }
.trust-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.015em;
  text-transform: none;
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.trust-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
}
@media (min-width: 768px) { .trust-item p { font-size: 16px; } }

/* ================================================================
   SECTION 9 · FIT-CHECK
   ================================================================ */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin: var(--space-12) 0;
}
@media (min-width: 768px) {
  .fit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .fit-col { padding: var(--space-10); }
  .fit-col--yes { border-right: 1px solid var(--border); }
}
@media (max-width: 767px) {
  .fit-col {
    padding: var(--space-6);
    border: 1px solid var(--border);
    background: var(--surface);
  }
  .fit-col--yes { border-color: var(--accent); }
}

.fit-col__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: var(--space-6);
}
.fit-col--yes .fit-col__title { color: var(--accent); }
.fit-col--no .fit-col__title { color: var(--text-dim); }

.fit-col ul li {
  position: relative;
  padding-left: var(--space-8);
  margin-bottom: var(--space-4);
  font-size: 15px;
  line-height: 1.55;
}
@media (min-width: 768px) { .fit-col ul li { font-size: 17px; } }
.fit-col ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 16px;
}
.fit-col--yes ul li::before { content: "✓"; color: var(--accent); }
.fit-col--no ul li::before { content: "✗"; color: var(--text-dim); }
.fit-col--no ul li { color: var(--text-dim); }

/* ================================================================
   SECTION 10 · FAQ
   ================================================================ */
.accordion {
  margin-top: var(--space-10);
  border-top: 1px solid var(--border);
}
.accordion__item {
  border-bottom: 1px solid var(--border);
  transition: background 280ms var(--ease-standard);
}
.accordion__item:hover { background: var(--surface); }
.accordion__item[open] { background: var(--surface); }

.accordion__trigger {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 2vw, 20px);
  padding: var(--space-5) var(--space-12) var(--space-5) var(--space-4);
  cursor: pointer;
  position: relative;
  transition: color 200ms var(--ease-standard);
  list-style: none;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .accordion__trigger { padding: var(--space-6) var(--space-16) var(--space-6) var(--space-6); }
}
.accordion__trigger::-webkit-details-marker { display: none; }
.accordion__trigger::after {
  content: "+";
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 24px;
  color: var(--accent);
  transition: transform 280ms var(--ease-standard);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) { .accordion__trigger::after { right: var(--space-6); font-size: 28px; } }
.accordion__item[open] .accordion__trigger::after { content: "−"; }
.accordion__item[open] .accordion__trigger { color: var(--accent); }

.accordion__content {
  padding: 0 var(--space-12) var(--space-6) var(--space-4);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 65ch;
}
@media (min-width: 768px) {
  .accordion__content { padding: 0 var(--space-16) var(--space-8) var(--space-6); font-size: 16px; }
}
.accordion__content p { margin-bottom: var(--space-3); }
.accordion__close {
  font-style: italic;
  color: var(--accent-soft);
  font-size: 13px;
  margin-top: var(--space-3);
  font-family: var(--font-mono);
}

/* ================================================================
   SECTION 11 · APPLICATION CTA
   ================================================================ */
.application {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-20) 0;
}
@media (min-width: 768px) { .application { padding: var(--space-32) 0; } }
@media (min-width: 1024px) { .application { padding: var(--space-40) 0; } }

.application::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  filter: blur(60px);
}
.application .container { position: relative; z-index: 1; }
.application .section-tag,
.application .section-title,
.application .section-sub {
  text-align: center;
}
.application .section-sub { margin-left: auto; margin-right: auto; }
.application .btn { margin-top: var(--space-4); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg);
  padding: var(--space-12) 0 var(--space-8);
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .footer__top { grid-template-columns: auto 1fr; gap: var(--space-12); align-items: start; }
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
@media (min-width: 768px) { .footer__brand { font-size: 18px; } }

.footer__brand-logo {
  height: 36px;
  width: auto;
  display: block;
}
@media (min-width: 768px) { .footer__brand-logo { height: 44px; } }

.footer__disclaimer {
  font-size: 11px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 70ch;
}
@media (min-width: 768px) { .footer__disclaimer { font-size: 12px; } }

.footer__divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-8) 0;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .footer__nav { grid-template-columns: repeat(3, 1fr); gap: var(--space-12); }
}

.footer__col-title {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
@media (min-width: 768px) { .footer__col-title { font-size: 11px; } }

.footer__col ul li { margin-bottom: var(--space-2); }
.footer__col a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 200ms var(--ease-standard);
}
@media (min-width: 768px) { .footer__col a { font-size: 14px; } }
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .footer__bottom { font-size: 10px; letter-spacing: 0.22em; } }

/* ================================================================
   APPLICATION MODAL
   ================================================================ */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
@media (min-width: 600px) { .modal { padding: var(--space-4); } }

.modal.is-open { display: flex; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.modal__container {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  width: 100%;
  max-width: 560px;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.7);
  animation: modal-in 320ms var(--ease-decelerate);
}
@media (min-width: 600px) {
  .modal__container { max-height: 92vh; }
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 300;
  color: var(--text-dim);
  z-index: 10;
  transition: color 200ms var(--ease-standard);
  background: rgba(20, 26, 33, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 50%;
}
.modal__close:hover { color: var(--accent); }

.modal__step { display: none; }
.modal__step--active { display: block; }

.modal__header { padding: var(--space-6) var(--space-6) 0; }
@media (min-width: 600px) { .modal__header { padding: var(--space-8) var(--space-10) 0; } }

.modal__step-indicator {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.progress-bar {
  height: 2px;
  background: var(--border);
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  background: var(--accent);
  transition: width 320ms var(--ease-standard);
}

.modal__body { padding: var(--space-5) var(--space-4); }
@media (min-width: 600px) { .modal__body { padding: var(--space-10); } }
.modal__body--centered { text-align: center; }

.modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  text-transform: none;
}

.modal__hint {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: var(--space-6);
  line-height: 1.55;
}

.modal__text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: var(--space-5);
  color: var(--text);
}
@media (min-width: 768px) { .modal__text { font-size: 16px; } }

.modal__icon, .modal__check {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: var(--space-4);
  font-family: var(--font-mono);
  font-weight: 500;
}
.modal__check {
  width: 64px;
  height: 64px;
  border: 2px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto var(--space-6);
}

.modal__step .btn { margin-top: var(--space-3); }
.modal__step .btn + .btn { margin-top: var(--space-3); }

/* ---------- FORM ---------- */
.form-group { border: 0; margin-bottom: var(--space-8); }
.form-group legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: var(--space-4);
  letter-spacing: -0.015em;
}

.radio {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-4);
  min-height: 48px;
  border: 1px solid var(--border);
  margin-bottom: var(--space-2);
  cursor: pointer;
  transition: all 200ms var(--ease-standard);
}
.radio:hover { border-color: var(--accent); background: var(--accent-glow-soft); }
.radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 200ms var(--ease-standard);
}
.radio input[type="radio"]:checked { border-color: var(--accent); }
.radio input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--accent);
  border-radius: 50%;
}
.radio input[type="radio"]:checked + span { color: var(--accent); }
.radio span { font-size: 14px; }
@media (min-width: 768px) { .radio span { font-size: 15px; } }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.form-row--split { grid-template-columns: 1fr 1fr; }
.form-row--phone { grid-template-columns: 90px 1fr; }
@media (min-width: 600px) { .form-row--phone { grid-template-columns: 100px 1fr; } }

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-4);
}
.form-field--country { margin-bottom: 0; }
.form-field label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
@media (min-width: 768px) { .form-field label { font-size: 10px; letter-spacing: 0.20em; } }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  padding: 14px 16px;
  font-size: 16px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 200ms var(--ease-standard);
  min-height: 48px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow-soft);
}
.form-field textarea {
  resize: vertical;
  font-family: var(--font-body);
  line-height: 1.55;
  min-height: 96px;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }

.form-error {
  color: #FF6B6B;
  font-size: 13px;
  margin-top: var(--space-3);
}

/* ---------- LOADING / DISABLED ---------- */
.btn:disabled, .btn[aria-busy="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1000ms var(--ease-emphatic), transform 1000ms var(--ease-emphatic);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--surface-3); }

/* ================================================================
   V4 — VISUAL VARIETY
   Hero animations · Section patterns · VS-Section · Counter
   ================================================================ */

/* ---------- HERO BACKGROUND LAYERS ---------- */
.hero { isolation: isolate; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__candles {
  position: absolute;
  bottom: 30%;
  left: 0;
  width: 200%;
  height: 50%;
  color: var(--accent);
  opacity: 0.3;
  animation: candle-drift 60s linear infinite;
}
@keyframes candle-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero__mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 1;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  z-index: 0;
}

.hero .container { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .hero__candles { animation: none; }
}

/* ---------- SECTION BACKGROUND PATTERNS ---------- */

/* Pain — warmer accent */
.pain {
  position: relative;
  isolation: isolate;
}
.pain::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 140, 100, 0.06) 0%, transparent 60%);
  z-index: -1;
  filter: blur(60px);
  pointer-events: none;
}

/* System — Grid pattern */
.system {
  position: relative;
  isolation: isolate;
}
.system::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: -1;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  pointer-events: none;
}
.system .container { position: relative; z-index: 1; }

/* Outcomes — Wave-Lines */
.outcomes {
  position: relative;
  isolation: isolate;
  background: var(--bg-elevated);
}
.outcomes::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 80px,
    rgba(0, 212, 255, 0.04) 80px,
    rgba(0, 212, 255, 0.04) 81px
  );
  z-index: -1;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  pointer-events: none;
}

/* Coop — diagonal lines */
.coop {
  position: relative;
  isolation: isolate;
}
.coop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 100px,
    rgba(0, 212, 255, 0.02) 100px,
    rgba(0, 212, 255, 0.02) 101px
  );
  z-index: -1;
  pointer-events: none;
}

/* Financing — gold accent */
.financing {
  position: relative;
  isolation: isolate;
  background: var(--bg-elevated);
}
.financing::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 200, 100, 0.06) 0%, transparent 60%);
  z-index: -1;
  filter: blur(80px);
  pointer-events: none;
}

/* FAQ — clean */
.faq {
  position: relative;
  isolation: isolate;
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--dot-pattern);
  background-size: 48px 48px;
  opacity: 0.3;
  z-index: -1;
  mask-image: linear-gradient(180deg, transparent 0%, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 50%, transparent 100%);
  pointer-events: none;
}

/* ================================================================
   VS · SECTION
   ================================================================ */
.vs {
  position: relative;
  isolation: isolate;
  background: var(--bg-deeper);
  padding: var(--space-16) 0;
}
@media (min-width: 768px) {
  .vs { padding: var(--space-24) 0; }
}
@media (min-width: 1024px) {
  .vs { padding: var(--space-32) 0; }
}

.vs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 100, 100, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  z-index: -1;
  filter: blur(80px);
  pointer-events: none;
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin: var(--space-12) 0;
  position: relative;
}
@media (min-width: 768px) {
  .vs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
  }
}

.vs-grid::before {
  display: none;
}
@media (min-width: 768px) {
  .vs-grid::before {
    content: "VS";
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    z-index: 2;
  }
}

.vs-col {
  padding: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
}
@media (min-width: 768px) {
  .vs-col {
    padding: var(--space-12);
    border: 0;
  }
  .vs-col--bad { border-right: 1px solid var(--border); }
}

.vs-col--bad {
  background: linear-gradient(135deg, rgba(255, 100, 100, 0.04) 0%, var(--surface) 60%);
}
.vs-col--good {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, var(--surface) 60%);
}

.vs-col__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
}

.vs-col__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  padding: 8px;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-col__icon svg { width: 100%; height: 100%; }
.vs-col--bad .vs-col__icon { color: #FF6B6B; }
.vs-col--good .vs-col__icon { color: var(--accent); }

.vs-col__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.015em;
  text-transform: none;
  line-height: 1.1;
}
.vs-col--bad .vs-col__title { color: #FF6B6B; }
.vs-col--good .vs-col__title { color: var(--accent); }

.vs-col__list {
  list-style: none;
}
.vs-col__list li {
  position: relative;
  padding-left: var(--space-8);
  margin-bottom: var(--space-5);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}
@media (min-width: 768px) { .vs-col__list li { font-size: 16px; } }

.vs-col__list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  width: 18px;
  text-align: center;
}
.vs-col--bad .vs-col__list li::before { content: "✗"; color: #FF6B6B; }
.vs-col--good .vs-col__list li::before { content: "✓"; color: var(--accent); }

/* ================================================================
   COUNTER ANIMATION
   ================================================================ */
.stat__num[data-counter] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ================================================================
   V5 — VISUAL VARIETY UPGRADE
   Glassmorphism · Light-Section · Strong Section-Dividers · 3D-Tilt
   ================================================================ */

/* ---------- GLASSMORPHISM SYSTEM CARDS ---------- */
.system-card {
  background: rgba(27, 35, 44, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.system-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 480ms var(--ease-standard);
}
.system-card:hover::before {
  opacity: 1;
}
.system-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-glow-soft) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 480ms var(--ease-standard);
}
.system-card:hover::after {
  opacity: 1;
}

/* Card numbering as background — TradeX-style large numbers */
.system-card {
  counter-increment: system-card;
}
.system-grid {
  counter-reset: system-card;
}

/* ---------- LIGHT SECTION (Application-CTA inverted) ---------- */
.application {
  background: linear-gradient(180deg, var(--bg) 0%, #F8FAFC 30%, #F8FAFC 70%, var(--bg) 100%);
  padding: 0;
}
.application > .container {
  background: #F8FAFC;
  color: #0B1014;
  padding: var(--space-24) var(--space-6);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .application > .container { padding: var(--space-32) var(--space-12); }
}
@media (min-width: 1024px) {
  .application > .container { padding: var(--space-40) var(--space-16); }
}

.application::before {
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.25) 0%, transparent 60%);
  filter: blur(80px);
}

.application .section-tag {
  color: #0B1014;
  border-color: #0B1014;
}
.application .section-title {
  color: #0B1014;
}
.application .section-sub {
  color: rgba(11, 16, 20, 0.7);
}
.application .btn--primary {
  background: #0B1014;
  color: var(--accent);
  border-color: #0B1014;
}
.application .btn--primary:hover {
  background: var(--accent);
  color: #0B1014;
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.4);
}
.application .fuds {
  color: rgba(11, 16, 20, 0.6);
}

/* Decorative corner-marks (TradeX-style frame brackets) */
.application > .container::before,
.application > .container::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid #0B1014;
}
.application > .container::before {
  top: 16px;
  left: 16px;
  border-right: 0;
  border-bottom: 0;
}
.application > .container::after {
  bottom: 16px;
  right: 16px;
  border-left: 0;
  border-top: 0;
}

/* ---------- STRONG SECTION DIVIDERS ---------- */
section + section {
  position: relative;
}
.pain::before, .system::before, .vs::before, .outcomes::before, .proof::before, .coop::before, .financing::before, .fit-check::before, .faq::before, .application::before {
  /* preserve existing ::before declarations from V4 — these are the patterns */
}

/* Decorative divider line above section-tag in selected sections */
.system .container::before,
.outcomes .container::before,
.coop .container::before,
.faq .container::before {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: var(--space-6);
}

/* ---------- HERO 3D-TILT VISUAL ---------- */
.vsl-frame {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform 600ms var(--ease-standard);
}
.vsl-frame:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}
@media (max-width: 1023px) {
  .vsl-frame {
    transform: none;
  }
}

/* ---------- TESTIMONIAL CARDS GLASSMORPHISM ---------- */
.testimonial {
  background: rgba(20, 26, 33, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.testimonial::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: left 1000ms var(--ease-standard);
}
.testimonial:hover::after {
  left: 100%;
}

/* ---------- LARGE BACKGROUND NUMBERS (TradeX-style) ---------- */
.outcome-item {
  counter-increment: outcome-num;
  position: relative;
}
.outcome-list {
  counter-reset: outcome-num;
}

.outcome-item--with-mockup .outcome-item__text {
  position: relative;
}

/* TradeX-Stil große Hintergrund-Number für Outcome-Items */
.outcome-item:not(.outcome-item--with-mockup)::before {
  content: counter(outcome-num, decimal-leading-zero);
  position: absolute;
  top: var(--space-8);
  right: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 14vw, 200px);
  color: var(--text-muted);
  opacity: 0.06;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
}
.outcome-item > * {
  position: relative;
  z-index: 1;
}

/* ---------- FAQ ITEM HOVER STRONG ---------- */
.accordion__item {
  position: relative;
  overflow: hidden;
}
.accordion__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 320ms var(--ease-standard);
}
.accordion__item[open]::before,
.accordion__item:hover::before {
  transform: scaleY(1);
}

/* ---------- HERO STATS VISUAL UPGRADE ---------- */
.stats-row {
  position: relative;
  background: rgba(20, 26, 33, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ---------- DECORATIVE ABSTRACT VISUAL FOR SYSTEM SECTION ---------- */
.system .container > .section-tag {
  position: relative;
}

/* Floating geometric shape near system header */
.system::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background:
    linear-gradient(135deg, var(--accent) 0%, transparent 50%) border-box,
    transparent;
  border: 1px solid var(--border);
  transform: rotate(45deg);
  opacity: 0.05;
  pointer-events: none;
  display: none;
}
@media (min-width: 1280px) {
  .system::after { display: block; }
}

/* ---------- VSL FRAME GLOW ---------- */
.vsl-frame {
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--border-strong),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ---------- VS-SECTION CIRCULAR VS ENHANCEMENT ---------- */
@media (min-width: 768px) {
  .vs-grid::before {
    background: radial-gradient(circle at center, var(--bg) 0%, var(--bg) 60%, transparent 100%);
    box-shadow:
      0 0 0 1px var(--border-strong),
      0 8px 32px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
}

/* ---------- ENHANCED MINI-TESTIMONIAL ---------- */
.mini-testimonial {
  background: rgba(20, 26, 33, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}
.mini-testimonial::before {
  content: """;
  position: absolute;
  top: -16px;
  left: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

/* ================================================================
   V6 — DRAMATIC HERO VISUALS
   Trading-Chart-Animation · 3D-Diamond · Glow-Orbs
   ================================================================ */

/* ---------- HERO CHART (sehr sichtbar!) ---------- */
.hero__chart {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  z-index: 1;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .hero__chart { height: 70%; }
}

.hero__chart-line {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: chart-draw 4s var(--ease-emphatic) 0.5s forwards,
             chart-shimmer 6s ease-in-out 4.5s infinite;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}
@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes chart-shimmer {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6)); }
  50% { filter: drop-shadow(0 0 24px rgba(0, 212, 255, 1)); }
}

.hero__chart-area {
  opacity: 0;
  animation: chart-area-fade 2s ease-out 3s forwards;
}
@keyframes chart-area-fade {
  to { opacity: 1; }
}

.hero__chart-dot {
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 1));
  opacity: 0;
  animation: dot-appear 1s ease-out 4s forwards;
}
@keyframes dot-appear {
  to { opacity: 1; }
}

.hero__chart-dot-pulse {
  transform-origin: 1200px 50px;
  opacity: 0;
  animation: dot-pulse 1.5s ease-out 4.5s infinite;
}
@keyframes dot-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

.hero__chart-vlines {
  animation: vlines-drift 20s linear infinite;
}
@keyframes vlines-drift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-200px); }
}

/* ---------- 3D DIAMOND ---------- */
.hero__shape {
  position: absolute;
  pointer-events: none;
}
.hero__shape--diamond {
  top: 12%;
  right: 8%;
  width: 120px;
  height: 120px;
  perspective: 800px;
  z-index: 2;
}
@media (max-width: 1023px) {
  .hero__shape--diamond {
    top: auto;
    bottom: 38%;
    right: 6%;
    width: 70px;
    height: 70px;
  }
}

.diamond {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: diamond-rotate 14s linear infinite;
}
@keyframes diamond-rotate {
  0% { transform: rotateX(15deg) rotateY(0deg); }
  100% { transform: rotateX(15deg) rotateY(360deg); }
}

.diamond__face {
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.02) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    0 0 24px rgba(0, 212, 255, 0.4),
    inset 0 0 24px rgba(0, 212, 255, 0.15);
}
.diamond__face--front { transform: rotateY(0deg) translateZ(60px); }
.diamond__face--back { transform: rotateY(180deg) translateZ(60px); }
.diamond__face--right { transform: rotateY(90deg) translateZ(60px); }
.diamond__face--left { transform: rotateY(-90deg) translateZ(60px); }
.diamond__face--top { transform: rotateX(90deg) translateZ(60px); }
.diamond__face--bottom { transform: rotateX(-90deg) translateZ(60px); }
@media (max-width: 1023px) {
  .diamond__face--front { transform: rotateY(0deg) translateZ(35px); }
  .diamond__face--back { transform: rotateY(180deg) translateZ(35px); }
  .diamond__face--right { transform: rotateY(90deg) translateZ(35px); }
  .diamond__face--left { transform: rotateY(-90deg) translateZ(35px); }
  .diamond__face--top { transform: rotateX(90deg) translateZ(35px); }
  .diamond__face--bottom { transform: rotateX(-90deg) translateZ(35px); }
}

/* ---------- GLOW ORBS ---------- */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  animation: orb-float 20s ease-in-out infinite;
}
.hero__orb--1 {
  top: 15%;
  left: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
  animation-duration: 18s;
}
.hero__orb--2 {
  bottom: 20%;
  right: 15%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(184, 212, 221, 0.3) 0%, transparent 70%);
  animation-duration: 24s;
  animation-direction: reverse;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hero__chart-line, .hero__chart-area, .hero__chart-dot, .hero__chart-dot-pulse, .hero__chart-vlines, .diamond, .hero__orb {
    animation: none;
  }
  .hero__chart-line { stroke-dashoffset: 0; }
  .hero__chart-area, .hero__chart-dot { opacity: 1; }
}

/* Hide old mountain rule (replaced by chart) */
.hero__mountains, .hero__candles, .hero__grid { display: none !important; }

/* ================================================================
   V7 — Übergangs-Fix Hero → Rico-Quote + dramatischere Sektionen
   ================================================================ */

/* ---------- HERO-CHART FADE-OUT smooth ---------- */
.hero__chart {
  mask-image: linear-gradient(180deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 60%,
    rgba(0,0,0,0.5) 80%,
    transparent 100%);
  -webkit-mask-image: linear-gradient(180deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 60%,
    rgba(0,0,0,0.5) 80%,
    transparent 100%);
}

/* ---------- HERO-BG smooth fade-out vor Stats/Testimonial ---------- */
.hero__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 3;
}

/* ---------- MINI-TESTIMONIAL stronger visual ---------- */
.mini-testimonial {
  margin-top: var(--space-12);
  padding: var(--space-6) var(--space-6) var(--space-6) var(--space-8);
  background: rgba(20, 26, 33, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-left: 3px solid var(--accent);
  position: relative;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 212, 255, 0.1);
  overflow: hidden;
}
.mini-testimonial::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

@media (min-width: 768px) {
  .mini-testimonial { margin-top: var(--space-16); }
}

/* ---------- STATS-ROW visual upgrade ---------- */
.stats-row {
  background: rgba(20, 26, 33, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.15);
  position: relative;
  z-index: 2;
}

/* ---------- HERO MOBILE Spacing-Fix ---------- */
@media (max-width: 767px) {
  .hero {
    padding-bottom: var(--space-16);
  }
  .hero__split {
    margin-bottom: var(--space-10);
  }
  .stats-row {
    margin-bottom: var(--space-6);
  }
}

/* ================================================================
   V8 — Mockups (Dashboard + Statement) · Section-Dividers · System-Pillars
   ================================================================ */

/* ---------- OUTCOME ITEM REVERSE LAYOUT (Mockup links, Text rechts) ---------- */
.outcome-item--reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 768px) {
  .outcome-item--reverse {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-12);
  }
  .outcome-item--reverse .outcome-item__visual { order: 1; }
  .outcome-item--reverse .outcome-item__text { order: 2; }
}

/* ---------- DASHBOARD MOCKUP (Multi-Account) ---------- */
.dashboard-mockup {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(160deg, #1B232C 0%, #0E141A 100%);
  border: 1px solid var(--border-strong);
  padding: var(--space-6);
  position: relative;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--accent-glow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.dashboard-mockup::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.dashboard-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-5);
}
.dashboard-mockup__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.dashboard-mockup__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.dashboard-mockup__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: dashboard-pulse 1.5s ease-in-out infinite;
}
@keyframes dashboard-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent); opacity: 1; }
  50% { box-shadow: 0 0 0 6px transparent; opacity: 0.6; }
}

.dashboard-mockup__accounts {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}

.dashboard-mockup__account {
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(11, 16, 20, 0.6);
  border: 1px solid var(--border);
  transition: border-color 280ms var(--ease-standard);
}
.dashboard-mockup__account:hover { border-color: var(--accent); }

.dashboard-mockup__account-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dashboard-mockup__account-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.dashboard-mockup__account-balance {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.dashboard-mockup__chart {
  width: 100%;
  height: 24px;
  filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.4));
}
.dashboard-mockup__account-pct {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  color: var(--accent);
  text-align: right;
}

.dashboard-mockup__footer {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ---------- STATEMENT MOCKUP (Bank-Auszug) ---------- */
.statement-mockup {
  width: 100%;
  max-width: 400px;
  background: #F8FAFC;
  color: #0B1014;
  padding: var(--space-6);
  position: relative;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 212, 255, 0.3);
}

.statement-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: var(--space-4);
  border-bottom: 2px solid #0B1014;
  margin-bottom: var(--space-5);
}
.statement-mockup__bank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.statement-mockup__period {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #4A5560;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.statement-mockup__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(11, 16, 20, 0.1);
}
.statement-mockup__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.statement-mockup__date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #4A5560;
  letter-spacing: 0.05em;
}
.statement-mockup__desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #0B1014;
}
.statement-mockup__amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #00865C;
  letter-spacing: -0.01em;
}

.statement-mockup__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 2px solid #0B1014;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.statement-mockup__total-amount {
  font-size: 22px;
  color: #00865C;
}

/* ---------- SECTION DIVIDERS (klar sichtbar) ---------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) 0;
  position: relative;
  z-index: 5;
  background: var(--bg);
}
@media (max-width: 767px) {
  .section-divider { display: none; }
}

.card__body--accent {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--accent-soft, #B8D4DD);
  font-weight: 500;
}
@media (min-width: 768px) {
  .card__body--accent { font-size: 14px; }
}
.section-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  max-width: 200px;
}
.section-divider__badge {
  margin: 0 var(--space-6);
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  position: relative;
  box-shadow: 0 0 24px var(--accent-glow);
}
.section-divider__badge::before,
.section-divider__badge::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 12px var(--accent);
  animation: divider-pulse 2s ease-in-out infinite;
}
.section-divider__badge::before { left: -16px; }
.section-divider__badge::after { right: -16px; animation-delay: 1s; }
@keyframes divider-pulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.4; transform: translateY(-50%) scale(0.7); }
}

/* ---------- SYSTEM CARDS PILLAR-LOOK UPGRADE ---------- */
.system-card {
  position: relative;
  min-height: 320px;
  padding: var(--space-10);
  background: linear-gradient(160deg, rgba(27, 35, 44, 0.7) 0%, rgba(11, 16, 20, 0.8) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

/* Big number behind — Pillar-style */
.system-card::before {
  content: counter(system-card, decimal-leading-zero);
  position: absolute;
  top: -20px;
  right: var(--space-6);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 120px;
  color: var(--accent);
  opacity: 0.08;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
  background: none;
  height: auto;
  width: auto;
  filter: none;
}
.system-card:hover::before {
  opacity: 0.18;
  transition: opacity 480ms var(--ease-standard);
}
.system-card > * {
  position: relative;
  z-index: 1;
}

/* Pillar bottom-bar */
.system-card {
  border-bottom: 3px solid transparent;
  background-image: linear-gradient(160deg, rgba(27, 35, 44, 0.7) 0%, rgba(11, 16, 20, 0.8) 100%);
  transition: all 480ms var(--ease-standard);
}
.system-card:hover {
  border-bottom-color: var(--accent);
  transform: translateY(-6px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--accent),
    0 0 60px var(--accent-glow);
}

/* ---------- SECTION SEPARATOR LINE OVERLAY ---------- */
section[id]::before {
  /* This is a marker - sections like #pain, #system already have positioning */
}

/* ---------- VISUAL HUB IN SYSTEM SECTION ---------- */
.system::after {
  content: none; /* Remove decorative shape from V5 */
}

/* ---------- SCROLL-TRIGGER ENTRANCE FOR MOCKUPS ---------- */
.dashboard-mockup, .statement-mockup, .phone-mockup {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1000ms var(--ease-emphatic), transform 1000ms var(--ease-emphatic);
}
.is-visible .dashboard-mockup,
.is-visible .statement-mockup,
.is-visible .phone-mockup {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .dashboard-mockup, .statement-mockup, .phone-mockup {
    opacity: 1;
    transform: none;
  }
  .dashboard-mockup__dot,
  .section-divider__badge::before,
  .section-divider__badge::after {
    animation: none;
  }
}

/* ================================================================
   V9 — BIG VISUAL GRAFIKEN
   3D-Crystal · Wireframe-Mountain · Color-Tinten pro Section
   ================================================================ */

/* ---------- SYSTEM HEADER mit 3D-Crystal ---------- */
.system-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-16);
  position: relative;
}
@media (min-width: 1024px) {
  .system-header {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-16);
  }
}

.system-header__text {
  position: relative;
  z-index: 2;
}

.system-header__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 360px;
  margin: 0 auto;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .system-header__visual {
    max-width: 420px;
  }
}

/* ---------- 3D CRYSTAL (8-faced polyhedron) ---------- */
.crystal-3d {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  animation: crystal-rotate 18s linear infinite;
  z-index: 2;
}
@media (min-width: 1024px) {
  .crystal-3d { width: 240px; height: 240px; }
}

@keyframes crystal-rotate {
  0%   { transform: rotateX(15deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(15deg) rotateY(360deg) rotateZ(45deg); }
}

.crystal-3d__face {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(0, 212, 255, 0.4) 0%,
      rgba(0, 212, 255, 0.05) 50%,
      rgba(184, 212, 221, 0.2) 100%);
  border: 1px solid rgba(0, 212, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    0 0 32px rgba(0, 212, 255, 0.4),
    inset 0 0 32px rgba(0, 212, 255, 0.15);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.crystal-3d__face--1 { transform: rotateY(0deg)   translateZ(80px); }
.crystal-3d__face--2 { transform: rotateY(45deg)  translateZ(80px); }
.crystal-3d__face--3 { transform: rotateY(90deg)  translateZ(80px); }
.crystal-3d__face--4 { transform: rotateY(135deg) translateZ(80px); }
.crystal-3d__face--5 { transform: rotateY(180deg) translateZ(80px); }
.crystal-3d__face--6 { transform: rotateY(225deg) translateZ(80px); }
.crystal-3d__face--7 { transform: rotateY(270deg) translateZ(80px); }
.crystal-3d__face--8 { transform: rotateY(315deg) translateZ(80px); }

@media (min-width: 1024px) {
  .crystal-3d__face--1 { transform: rotateY(0deg)   translateZ(96px); }
  .crystal-3d__face--2 { transform: rotateY(45deg)  translateZ(96px); }
  .crystal-3d__face--3 { transform: rotateY(90deg)  translateZ(96px); }
  .crystal-3d__face--4 { transform: rotateY(135deg) translateZ(96px); }
  .crystal-3d__face--5 { transform: rotateY(180deg) translateZ(96px); }
  .crystal-3d__face--6 { transform: rotateY(225deg) translateZ(96px); }
  .crystal-3d__face--7 { transform: rotateY(270deg) translateZ(96px); }
  .crystal-3d__face--8 { transform: rotateY(315deg) translateZ(96px); }
}

.crystal-3d__core {
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: crystal-core-pulse 3s ease-in-out infinite;
}
@keyframes crystal-core-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
}

/* Concentric Rings around Crystal */
.crystal-3d__rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.crystal-3d__ring {
  position: absolute;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  animation: ring-rotate 20s linear infinite;
}
.crystal-3d__ring--1 {
  width: 280px;
  height: 280px;
  border-style: dashed;
}
.crystal-3d__ring--2 {
  width: 340px;
  height: 340px;
  animation-direction: reverse;
  animation-duration: 30s;
  border-color: rgba(0, 212, 255, 0.1);
}
.crystal-3d__ring--3 {
  width: 200px;
  height: 200px;
  border-style: dotted;
  border-color: rgba(184, 212, 221, 0.3);
  animation-duration: 15s;
}
@media (min-width: 1024px) {
  .crystal-3d__ring--1 { width: 320px; height: 320px; }
  .crystal-3d__ring--2 { width: 400px; height: 400px; }
  .crystal-3d__ring--3 { width: 240px; height: 240px; }
}

@keyframes ring-rotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Glow behind crystal */
.system-header__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

/* ---------- HERO DIAMOND größer machen ---------- */
.hero__shape--diamond {
  width: 200px;
  height: 200px;
  top: 8%;
  right: 4%;
}
@media (max-width: 1023px) {
  .hero__shape--diamond {
    width: 100px;
    height: 100px;
    top: auto;
    bottom: 35%;
    right: 4%;
  }
}

.diamond__face {
  background: linear-gradient(135deg,
    rgba(0, 212, 255, 0.3) 0%,
    rgba(0, 212, 255, 0.05) 50%,
    rgba(184, 212, 221, 0.15) 100%);
  border: 1px solid rgba(0, 212, 255, 0.7);
  box-shadow:
    0 0 32px rgba(0, 212, 255, 0.5),
    inset 0 0 32px rgba(0, 212, 255, 0.2);
}
.diamond__face--front  { transform: rotateY(0deg)    translateZ(100px); }
.diamond__face--back   { transform: rotateY(180deg)  translateZ(100px); }
.diamond__face--right  { transform: rotateY(90deg)   translateZ(100px); }
.diamond__face--left   { transform: rotateY(-90deg)  translateZ(100px); }
.diamond__face--top    { transform: rotateX(90deg)   translateZ(100px); }
.diamond__face--bottom { transform: rotateX(-90deg)  translateZ(100px); }
@media (max-width: 1023px) {
  .diamond__face--front  { transform: rotateY(0deg)    translateZ(50px); }
  .diamond__face--back   { transform: rotateY(180deg)  translateZ(50px); }
  .diamond__face--right  { transform: rotateY(90deg)   translateZ(50px); }
  .diamond__face--left   { transform: rotateY(-90deg)  translateZ(50px); }
  .diamond__face--top    { transform: rotateX(90deg)   translateZ(50px); }
  .diamond__face--bottom { transform: rotateX(-90deg)  translateZ(50px); }
}

/* ---------- COLOR-TINTEN pro Section ---------- */

/* Pain — warmer Touch (subtle warm-orange) */
.pain {
  background: linear-gradient(180deg,
    var(--bg) 0%,
    rgba(40, 26, 30, 0.4) 50%,
    var(--bg) 100%);
}

/* System bekommt subtle violet-cyan touch */
.system {
  background: linear-gradient(180deg,
    var(--bg-elevated) 0%,
    rgba(20, 30, 50, 0.4) 50%,
    var(--bg-elevated) 100%);
}

/* VS — neutraler tieferer dark */
.vs {
  background: linear-gradient(180deg,
    var(--bg-deeper) 0%,
    rgba(15, 18, 25, 0.6) 50%,
    var(--bg-deeper) 100%);
}

/* Outcomes — cool blue-cyan */
.outcomes {
  background: linear-gradient(180deg,
    var(--bg-elevated) 0%,
    rgba(10, 25, 35, 0.5) 50%,
    var(--bg-elevated) 100%);
}

/* Coop — subtle violet touch */
.coop {
  background: linear-gradient(180deg,
    var(--bg) 0%,
    rgba(25, 18, 35, 0.4) 50%,
    var(--bg) 100%);
}

/* Financing — gold-Touch (Money) */
.financing {
  background: linear-gradient(180deg,
    var(--bg-elevated) 0%,
    rgba(40, 32, 20, 0.4) 50%,
    var(--bg-elevated) 100%);
}

/* Fit-Check — split warm/cool */
.fit-check {
  background: linear-gradient(135deg,
    rgba(40, 20, 25, 0.3) 0%,
    var(--bg-elevated) 50%,
    rgba(15, 30, 40, 0.3) 100%);
}

/* FAQ — clean dark */
.faq { background: var(--bg); }

/* ---------- COOP-SECTION VISUAL: SVG WIREFRAME-MOUNTAIN ---------- */
.coop {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.coop::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 60%;
  background-image:
    linear-gradient(to right, rgba(0, 212, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 212, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image:
    radial-gradient(ellipse at bottom right, black 0%, transparent 80%),
    linear-gradient(135deg, transparent 30%, black 80%);
  -webkit-mask-image:
    radial-gradient(ellipse at bottom right, black 0%, transparent 80%),
    linear-gradient(135deg, transparent 30%, black 80%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  pointer-events: none;
  z-index: 0;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .crystal-3d, .diamond, .crystal-3d__core, .crystal-3d__ring {
    animation: none;
  }
}

/* ================================================================
   V10 — CTA-Button Animation (kokoume-Stil)
   ================================================================ */

/* CTA-Button bekommt Idle-Pulse-Glow + Shimmer */
.btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%);
  transform: translateX(-100%);
  animation: cta-shimmer 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes cta-shimmer {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(200%); }
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 0 0 var(--accent-glow);
  pointer-events: none;
  z-index: -1;
  animation: cta-pulse 2.5s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(0, 212, 255, 0);
    transform: scale(1.005);
  }
}

.btn--primary > * {
  position: relative;
  z-index: 2;
}

/* Hero CTA + Application CTA brauchen den Glow stärker */
.hero .btn--primary,
.application .btn--primary,
.btn--xl {
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}
.hero .btn--primary:hover,
.application .btn--primary:hover,
.btn--xl:hover {
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.5);
}

/* Application section CTA - special treatment (weil Light-Section, andere Farben) */
.application .btn--primary::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 212, 255, 0.4) 50%,
    transparent 100%);
}
.application .btn--primary::after {
  animation: cta-pulse-light 2.5s ease-in-out infinite;
}
@keyframes cta-pulse-light {
  0%, 100% { box-shadow: 0 0 0 0 rgba(11, 16, 20, 0.3); }
  50% { box-shadow: 0 0 0 16px rgba(11, 16, 20, 0); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .btn--primary::before,
  .btn--primary::after { animation: none; }
}

/* ---------- Strong-text styling für Damaging Admission ---------- */
.section-admission strong {
  color: var(--text);
  font-style: normal;
  font-weight: 700;
  background: rgba(255, 200, 100, 0.08);
  padding: 2px 6px;
  border-bottom: 1px solid rgba(255, 200, 100, 0.4);
}

/* ================================================================
   V11 — Mid-CTAs · Radio-Big · Visually-Hidden
   ================================================================ */

/* ---------- MID-CTAs (zwischen Sektionen) ---------- */
.mid-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  margin: var(--space-12) auto 0;
  padding: var(--space-8);
  max-width: 640px;
  background: linear-gradient(135deg,
    rgba(0, 212, 255, 0.06) 0%,
    rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.mid-cta .btn {
  min-width: 260px;
  max-width: 380px;
}
@media (min-width: 600px) {
  .mid-cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
  }
  .mid-cta__lead {
    flex: 0 0 100%;
  }
}

.mid-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.mid-cta .btn,
.mid-cta__lead {
  position: relative;
  z-index: 1;
}

.mid-cta--center {
  justify-content: center;
  text-align: center;
}

.mid-cta__lead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.4;
  margin-bottom: var(--space-3);
  color: var(--text);
  width: 100%;
  text-align: center;
}

/* ---------- RADIO BIG (für Step 1 Yes/No-Auswahl) ---------- */
.radio--big {
  padding: var(--space-5) var(--space-6);
  font-size: 17px;
  min-height: 64px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.radio--big span { font-size: 17px; }

/* ---------- VISUALLY HIDDEN (Accessibility) ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ================================================================
   V12 — Hexagon-System-Visual + Number-Resize + CTA-Mobile-Fix
   ================================================================ */

/* ---------- HEXAGON SYSTEM VISUAL ---------- */
.hexagon-system {
  width: 100%;
  height: auto;
  max-width: 420px;
  filter: drop-shadow(0 0 24px rgba(0, 212, 255, 0.3));
}

.hexagon-system__lines {
  animation: hex-lines-pulse 4s ease-in-out infinite;
}
@keyframes hex-lines-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hexagon-node {
  transform-origin: center;
  animation: hex-node-float 6s ease-in-out infinite;
}
.hexagon-node:nth-child(1) { animation-delay: 0s; }
.hexagon-node:nth-child(2) { animation-delay: 1s; }
.hexagon-node:nth-child(3) { animation-delay: 2s; }
.hexagon-node:nth-child(4) { animation-delay: 3s; }
.hexagon-node:nth-child(5) { animation-delay: 4s; }
.hexagon-node:nth-child(6) { animation-delay: 5s; }

@keyframes hex-node-float {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.4)); }
  50%      { filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.9)); }
}

.hexagon-system__center {
  transform-origin: 200px 200px;
  animation: hex-center-pulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.8));
}
@keyframes hex-center-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hexagon-system__lines,
  .hexagon-node,
  .hexagon-system__center { animation: none; }
}

/* Hide old crystal-3d (replaced by hexagon-system) */
.crystal-3d, .crystal-3d__rings { display: none !important; }

/* ---------- SYSTEM-CARD BIG NUMBERS smaller + better positioned ---------- */
.system-card::before {
  font-size: 72px;
  top: -8px;
  right: var(--space-4);
  opacity: 0.06;
}
.system-card:hover::before {
  opacity: 0.12;
}

@media (min-width: 768px) {
  .system-card::before {
    font-size: 88px;
    top: -12px;
  }
}

/* ---------- CTA MOBILE TEXT FIX ---------- */
.btn--xl {
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .btn--xl {
    padding: 18px 24px;
    font-size: 12px;
    letter-spacing: 0.15em;
  }
  .btn--xl .btn__arrow {
    margin-left: 4px;
  }
}

/* ================================================================
   V13 — Pain-Section Speech-Bubbles (Glassmorphism, schwebend)
   ================================================================ */

.pain-bubbles {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin: var(--space-10) 0 var(--space-8);
  position: relative;
  padding: var(--space-3) 0;
}

@media (min-width: 768px) {
  .pain-bubbles {
    gap: var(--space-8);
    padding: var(--space-6) 0;
  }
}

/* Decorative subtle grid pattern behind bubbles */
.pain-bubbles::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 140, 100, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- SPEECH BUBBLE BASE ---------- */
.speech-bubble {
  position: relative;
  z-index: 1;
  max-width: 88%;
  padding: var(--space-5) var(--space-6);
  background: rgba(20, 26, 33, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-family: var(--font-body);
  margin: 0;
  animation: speech-float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .speech-bubble {
    max-width: 56%;
    padding: var(--space-6) var(--space-8);
    border-radius: 26px;
  }
}

@media (max-width: 767px) {
  .speech-bubble--left { transform: translateX(-2%); }
  .speech-bubble--right { transform: translateX(2%); }
}

.speech-bubble p {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
  margin: 0;
}

/* ---------- LINKS-BUBBLE ---------- */
.speech-bubble--left {
  align-self: flex-start;
  margin-right: auto;
  border-bottom-left-radius: 6px;
  animation-delay: 0s;
}

.speech-bubble--left::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 32px;
  width: 22px;
  height: 22px;
  background: rgba(20, 26, 33, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(0, 212, 255, 0.18);
  border-bottom: 1px solid rgba(0, 212, 255, 0.18);
  transform: rotate(45deg);
  border-radius: 0 0 6px 0;
}

/* ---------- RECHTS-BUBBLE ---------- */
.speech-bubble--right {
  align-self: flex-end;
  margin-left: auto;
  border-bottom-right-radius: 6px;
  animation-delay: 2s;
}

.speech-bubble--right::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 32px;
  width: 22px;
  height: 22px;
  background: rgba(20, 26, 33, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(0, 212, 255, 0.18);
  border-bottom: 1px solid rgba(0, 212, 255, 0.18);
  transform: rotate(-45deg);
  border-radius: 0 0 0 6px;
}

/* ---------- VERSCHACHTELT (3. bubble) Animation Delay ---------- */
.speech-bubble--left:nth-of-type(3) {
  animation-delay: 4s;
}

/* ---------- SCHWEBE-ANIMATION ---------- */
@keyframes speech-float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  33% {
    transform: translateY(-6px) translateX(2px);
  }
  66% {
    transform: translateY(-3px) translateX(-2px);
  }
}

/* Hover state - subtle highlight */
.speech-bubble:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(0, 212, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 320ms var(--ease-standard);
}

@media (prefers-reduced-motion: reduce) {
  .speech-bubble {
    animation: none;
  }
}

/* ---------- ALTE PAIN-CARD-STYLES NEUTRALISIEREN (HTML nicht mehr verwendet) ---------- */
.pain-card { display: none; }

/* ================================================================
   V14 — Nest-Framing als Bridge-Block in System-Section
   ================================================================ */

.system-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
  margin-bottom: var(--space-12);
}
@media (min-width: 1024px) {
  .system-header {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-12);
    align-items: center;
  }
  .system-header__text { grid-column: 1 / 2; }
  .system-header__visual { grid-column: 2 / 3; }
}

/* ---------- NEST FRAME ---------- */
.nest-frame {
  position: relative;
  padding: var(--space-8) var(--space-6) var(--space-6) var(--space-8);
  background: linear-gradient(160deg, rgba(0, 212, 255, 0.06) 0%, rgba(20, 26, 33, 0.4) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 3px solid var(--accent);
  margin: var(--space-4) 0;
  max-width: 560px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .nest-frame {
    padding: var(--space-10) var(--space-8) var(--space-8) var(--space-10);
    margin: 0;
  }
}

.nest-frame::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.nest-frame__quote-mark {
  position: absolute;
  top: -10px;
  left: var(--space-5);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 88px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
}

.nest-frame__lead {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
}

.nest-frame__body {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}
.nest-frame__body strong {
  color: var(--accent);
  font-weight: 700;
}

.nest-frame__diff {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(0, 212, 255, 0.15);
}
.nest-frame__diff em {
  color: var(--accent-soft);
  font-style: italic;
}

/* ================================================================
   V15 — FUDs unter CTA + Trust-Bar (Coach-Fabi-Idee)
   ================================================================ */

/* ---------- FUDs unter dem Hero-CTA ---------- */
.fuds--under-cta {
  margin-top: var(--space-4);
  padding-left: var(--space-2);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--accent-soft);
}
@media (min-width: 768px) {
  .fuds--under-cta { font-size: 12px; }
}

/* ---------- TRUST-BAR (4 Items in horizontal row) ---------- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: var(--space-12);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.03) 50%, transparent 100%);
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
    margin-top: var(--space-16);
    padding: var(--space-8) 0;
  }
}

.trust-bar__item {
  text-align: center;
  padding: var(--space-3) var(--space-4);
  border-right: 1px solid rgba(0, 212, 255, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}
.trust-bar__item:nth-child(2n) { border-right: 0; }
@media (min-width: 768px) {
  .trust-bar__item:nth-child(2n) { border-right: 1px solid rgba(0, 212, 255, 0.10); }
  .trust-bar__item:last-child { border-right: 0; }
}
@media (max-width: 767px) {
  .trust-bar__item:nth-child(1),
  .trust-bar__item:nth-child(2) {
    border-bottom: 1px solid rgba(0, 212, 255, 0.10);
    padding-bottom: var(--space-5);
  }
  .trust-bar__item:nth-child(3),
  .trust-bar__item:nth-child(4) {
    padding-top: var(--space-5);
  }
}

.trust-bar__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.trust-bar__num--text {
  font-size: clamp(11px, 1.4vw, 14px);
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1.3;
}

.trust-bar__label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .trust-bar__label { font-size: 10px; }
}

/* ================================================================
   V16 — Trust-Marquee (Ticker) + FUDs kleiner
   ================================================================ */

/* Hide old trust-bar (replaced by marquee) */
.trust-bar { display: none !important; }

/* ---------- TRUST MARQUEE (durchlaufender Ticker) ---------- */
.trust-marquee {
  width: 100%;
  margin-top: var(--space-10);
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(0, 212, 255, 0.10);
  border-bottom: 1px solid rgba(0, 212, 255, 0.10);
  background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%);
  overflow: hidden;
  position: relative;
  z-index: 2;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
@media (min-width: 768px) {
  .trust-marquee { margin-top: var(--space-12); padding: var(--space-5) 0; }
}

.trust-marquee__track {
  display: inline-flex;
  align-items: center;
  gap: var(--space-6);
  white-space: nowrap;
  animation: trust-scroll 38s linear infinite;
  will-change: transform;
}
@media (min-width: 768px) {
  .trust-marquee__track { gap: var(--space-8); }
}

@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-marquee:hover .trust-marquee__track {
  animation-play-state: paused;
}

.trust-marquee__item {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .trust-marquee__item { font-size: 12px; letter-spacing: 0.18em; }
}

.trust-marquee__sep {
  color: var(--accent);
  font-size: 6px;
  flex-shrink: 0;
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .trust-marquee__track { animation: none; }
}

/* ---------- FUDs unter CTA noch kleiner und subtiler ---------- */
.fuds--under-cta {
  margin-top: var(--space-3);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: none;
}
@media (min-width: 768px) {
  .fuds--under-cta { font-size: 11px; letter-spacing: 0.10em; }
}

/* ================================================================
   V17 — Trust-Badges (Logo-Wordmarks + Star-Badge + Cert-Badge)
   ================================================================ */

/* Old marquee items styles aus V16 sind via .trust-marquee__item — die werden jetzt nicht mehr gerendert weil HTML .trust-badge nutzt. Lass altes CSS leben für Fallback. */

.trust-marquee__track {
  gap: var(--space-5);
  padding: 0 var(--space-2);
}
@media (min-width: 768px) {
  .trust-marquee__track { gap: var(--space-6); }
}

/* ---------- TRUST BADGE BASE ---------- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 18px;
  background: rgba(20, 26, 33, 0.55);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 280ms var(--ease-standard);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .trust-badge { padding: 12px 22px; gap: var(--space-4); }
}

.trust-badge:hover {
  border-color: rgba(0, 212, 255, 0.45);
  background: rgba(20, 26, 33, 0.7);
}

.trust-badge__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1;
}
@media (min-width: 768px) {
  .trust-badge__wordmark { font-size: 14px; }
}

.trust-badge__wordmark strong {
  color: var(--accent);
  font-weight: 800;
  margin-right: 2px;
}

.trust-badge__label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  padding-left: var(--space-3);
  border-left: 1px solid rgba(0, 212, 255, 0.18);
}
@media (min-width: 768px) {
  .trust-badge__label { font-size: 10px; }
}

/* ---------- STARS (Gold) ---------- */
.trust-badge--rating .trust-badge__stars {
  font-size: 14px;
  letter-spacing: 1px;
  color: #FFB840;
  text-shadow: 0 0 8px rgba(255, 184, 64, 0.4);
  line-height: 1;
}
@media (min-width: 768px) {
  .trust-badge--rating .trust-badge__stars { font-size: 16px; }
}

.trust-badge--rating {
  border-color: rgba(255, 184, 64, 0.25);
}
.trust-badge--rating:hover {
  border-color: rgba(255, 184, 64, 0.5);
}

/* ---------- CERT-Icon (Shield) ---------- */
.trust-badge__cert-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.trust-badge__cert-icon svg { width: 100%; height: 100%; }

/* ---------- ALTE TEXT-ITEMS verstecken (HTML nutzt jetzt .trust-badge) ---------- */
.trust-marquee__item, .trust-marquee__sep { display: none; }

/* ================================================================
   V18 — Trust-Logo-Cards (echte Logo-Bilder)
   ================================================================ */

/* ---------- LOGO-CARD (helle Box auf dunklem BG für Tegas FX, IQ Capital) ---------- */
.trust-logo-card {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 16px;
  background: #F8FAFC;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 280ms var(--ease-standard);
  height: 56px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .trust-logo-card { padding: 12px 20px; height: 64px; gap: var(--space-4); }
}

.trust-logo-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Dark variant für Ultima (das Logo hat schwarzen Background) */
.trust-logo-card--dark {
  background: #0B1014;
  border-color: rgba(232, 240, 245, 0.18);
}
.trust-logo-card--dark:hover {
  border-color: rgba(0, 212, 255, 0.45);
}

/* Logo-Image — auto-fit zur Höhe */
.trust-logo-card__img {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .trust-logo-card__img { height: 32px; max-width: 160px; }
}

/* Label rechts neben Logo */
.trust-logo-card__label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(11, 16, 20, 0.55);
  text-transform: uppercase;
  line-height: 1;
  padding-left: var(--space-3);
  border-left: 1px solid rgba(11, 16, 20, 0.15);
}
@media (min-width: 768px) {
  .trust-logo-card__label { font-size: 10px; }
}

.trust-logo-card--dark .trust-logo-card__label {
  color: rgba(232, 240, 245, 0.55);
  border-left-color: rgba(232, 240, 245, 0.20);
}

/* ================================================================
   V19 — Freischwebende Logos (kein Container, kein Border, kein Label)
   ================================================================ */

/* Hide old card-styled logos (HTML jetzt schlanker) */
.trust-logo-card { display: none !important; }
.trust-badge--cert { display: none !important; }

/* ---------- TRUST LOGO BASE (alle Logos einheitlich) ---------- */
.trust-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  opacity: 0.92;
  transition: opacity 280ms var(--ease-standard);
}
@media (min-width: 768px) {
  .trust-logo { height: 48px; max-width: 180px; }
}
.trust-logo:hover { opacity: 1; }

.trust-logo--dark {
  /* Ultima hat bereits dunklen Hintergrund — passt zur Page */
}

/* ---------- WHOP CLUSTER (Logo + Sterne) ---------- */
.trust-whop {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.trust-whop__logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  border-radius: 4px;
  opacity: 0.92;
  transition: opacity 280ms var(--ease-standard);
}
@media (min-width: 768px) {
  .trust-whop__logo { height: 36px; }
}
.trust-whop:hover .trust-whop__logo { opacity: 1; }

.trust-whop__stars {
  font-size: 12px;
  letter-spacing: 2px;
  color: #FFB840;
  text-shadow: 0 0 8px rgba(255, 184, 64, 0.45);
  line-height: 1;
}
@media (min-width: 768px) {
  .trust-whop__stars { font-size: 13px; }
}

/* ---------- DSGVO MINI-CERT (Icon + kleinem Text, schwebend) ---------- */
.trust-cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--text-dim);
  opacity: 0.85;
  transition: opacity 280ms var(--ease-standard);
}
.trust-cert:hover { opacity: 1; }

.trust-cert__icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .trust-cert__icon { width: 24px; height: 24px; }
}

.trust-cert__text {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .trust-cert__text { font-size: 12px; letter-spacing: 0.18em; }
}

/* Marquee track gap leicht erhöhen für die freischwebenden Logos */
.trust-marquee__track {
  gap: var(--space-8);
  align-items: center;
  padding: 0 var(--space-2);
}
@media (min-width: 768px) {
  .trust-marquee__track { gap: var(--space-10); }
}

/* ================================================================
   V20 — Trust-Items mit Labels + DSGVO-Badge + seamless Marquee
   ================================================================ */

/* Hide old free-floating logos and whop cluster (HTML now uses .trust-item) */
.trust-logo, .trust-whop, .trust-cert { display: none !important; }

/* ---------- MARQUEE TRACK mit zwei Sets ---------- */
.trust-marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 0;
  animation: trust-scroll-v2 42s linear infinite;
}

.trust-marquee__track:hover {
  animation-play-state: paused;
}

.trust-marquee__set {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  padding-right: var(--space-10);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .trust-marquee__set {
    gap: var(--space-12);
    padding-right: var(--space-12);
  }
}

@keyframes trust-scroll-v2 {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-marquee__track { animation: none; }
}

/* ---------- TRUST ITEM (Logo + Label vertical) ---------- */
.trust-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  text-align: center;
}

.trust-item__logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  opacity: 0.92;
  transition: opacity 280ms var(--ease-standard);
}
@media (min-width: 768px) {
  .trust-item__logo { height: 42px; max-width: 160px; padding: 5px 12px; }
}
.trust-item:hover .trust-item__logo { opacity: 1; }

.trust-item__logo--dark {
  background: #000;
}
.trust-item__logo--small {
  height: 28px;
}
@media (min-width: 768px) {
  .trust-item__logo--small { height: 32px; }
}

.trust-item__stars {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #FFB840;
  text-shadow: 0 0 6px rgba(255, 184, 64, 0.5);
  line-height: 1;
}
@media (min-width: 768px) {
  .trust-item__stars { font-size: 12px; }
}

.trust-item__label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .trust-item__label { font-size: 10px; letter-spacing: 0.18em; }
}

/* ---------- DSGVO-CERT-Badge (Shield-Icon mit Akzent) ---------- */
.trust-item--cert {
  gap: 6px;
}

.trust-item__cert-shield {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  padding: 6px;
}
@media (min-width: 768px) {
  .trust-item__cert-shield { width: 42px; height: 42px; padding: 8px; }
}

.trust-item__cert-shield svg {
  width: 100%;
  height: 100%;
}

.trust-item__label--cert {
  color: var(--accent);
  font-weight: 600;
}

/* ================================================================
   V21 — Trust-Items kompakter + schneller + "Strich" weg + Mobile-Audit
   ================================================================ */

/* ---------- Trust-Items vertikal kompakter ---------- */
.trust-item {
  gap: 4px;
}

/* Logos kleiner und "Strich"-Effekte minimieren ---------- */
.trust-item__logo {
  height: 32px;
  border-radius: 3px;
  /* explicit: kein border, kein box-shadow, kein outline */
  border: 0;
  box-shadow: none;
  outline: 0;
}
@media (min-width: 768px) {
  .trust-item__logo { height: 38px; }
}

.trust-item__logo--small { height: 26px; }
@media (min-width: 768px) {
  .trust-item__logo--small { height: 30px; }
}

/* Label noch enger an Logo */
.trust-item__label {
  font-size: 8px;
  letter-spacing: 0.14em;
  line-height: 1;
}
@media (min-width: 768px) {
  .trust-item__label { font-size: 9px; letter-spacing: 0.16em; }
}

/* Sterne kleiner */
.trust-item__stars {
  font-size: 10px;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .trust-item__stars { font-size: 11px; }
}

/* DSGVO Cert kleiner */
.trust-item__cert-shield {
  width: 32px;
  height: 32px;
  padding: 5px;
}
@media (min-width: 768px) {
  .trust-item__cert-shield { width: 38px; height: 38px; padding: 7px; }
}

/* ---------- MARQUEE: Logos näher zusammen + schneller ---------- */
.trust-marquee__set {
  gap: var(--space-6);
  padding-right: var(--space-6);
}
@media (min-width: 768px) {
  .trust-marquee__set {
    gap: var(--space-8);
    padding-right: var(--space-8);
  }
}

.trust-marquee__track {
  animation-duration: 28s;
}

/* ---------- Marquee Container vertikal kompakter ---------- */
.trust-marquee {
  margin-top: var(--space-8);
  padding: var(--space-4) 0;
}
@media (min-width: 768px) {
  .trust-marquee { margin-top: var(--space-10); padding: var(--space-5) 0; }
}

/* ---------- Nest-Frame Quote-Mark Mobile-Reduce (verhindert "Quadrant"-Eindruck) ---------- */
@media (max-width: 1023px) {
  .nest-frame__quote-mark {
    font-size: 56px;
    top: -4px;
  }
  .nest-frame {
    padding: var(--space-6) var(--space-5) var(--space-5) var(--space-6);
  }
}

/* ---------- Hero Mobile-Spacing-Audit ---------- */
@media (max-width: 767px) {
  /* Hero-Split: Headline+Sub+CTA SIND VOR dem VSL — Best-Practice */
  .hero__split { gap: var(--space-8); }

  .hero__text { order: 1; }
  .hero__vsl  { order: 2; }

  /* Mini-Testimonial näher am Stats-Row */
  .mini-testimonial { margin-top: var(--space-6); }
}

/* ================================================================
   V22 — Hero-Layout: Video → CTA + Trust-Marquee Balken weg
   ================================================================ */

/* ---------- HERO neue Single-Column-Struktur ---------- */
.hero__split { display: none !important; }
.hero__text  { display: contents; }

.hero__intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-10);
}
@media (min-width: 1024px) {
  .hero__intro {
    max-width: 900px;
    margin-bottom: var(--space-12);
  }
}

.hero__intro .hero__headline {
  margin-bottom: var(--space-5);
}

.hero__intro .hero__sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 56ch;
}

/* VSL Video zentriert + Max-Width */
.hero__vsl {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero__vsl { max-width: 980px; }
}

/* CTA-Stack unter Video */
.hero__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-10) auto 0;
  max-width: 640px;
}
@media (min-width: 768px) {
  .hero__cta-stack { margin-top: var(--space-12); }
}

.hero__cta-stack .btn {
  min-width: 280px;
}

/* ---------- CTA RISK-REVERSAL BADGES ---------- */
.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-3);
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  background: rgba(20, 26, 33, 0.5);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.cta-badge svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .cta-badge { font-size: 12px; padding: 8px 14px; }
  .cta-badge svg { width: 16px; height: 16px; }
}

/* ---------- AVATAR STACK (Niki-inspired) ---------- */
.avatar-stack {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-4);
  padding: 8px 14px;
}
.avatar-stack__circles {
  display: flex;
  align-items: center;
}
.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  border: 2px solid var(--bg);
  margin-left: -10px;
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.2);
}
.avatar-circle:first-child { margin-left: 0; }
.avatar-circle--photo {
  padding: 0;
  background: var(--surface);
  overflow: hidden;
}
.avatar-circle--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatar-circle--more {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent);
  font-size: 13px;
}
.avatar-stack__label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim, rgba(232, 240, 245, 0.65));
  margin: 0;
  font-weight: 500;
}
@media (min-width: 768px) {
  .avatar-circle { width: 36px; height: 36px; font-size: 12px; }
  .avatar-stack__label { font-size: 14px; }
}
@media (min-width: 768px) {
  .hero__cta-stack .btn { min-width: 320px; }
}

.hero__cta-stack .fuds {
  text-align: center;
  margin-top: 0;
}

/* VSL Tilt nur auf Desktop, sonst Bug auf Mobile */
.vsl-frame {
  transform: none;
}

/* Stats-Row und Trust-Marquee enger zur Hero ranziehen */
.hero .stats-row { margin-top: var(--space-12); }
@media (min-width: 768px) {
  .hero .stats-row { margin-top: var(--space-16); }
}

/* ================================================================
   TRUST-MARQUEE: Balken weg + größere Logos + enger + schneller
   ================================================================ */

.trust-marquee {
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  padding: var(--space-3) 0;
  margin-top: var(--space-6);
}
@media (min-width: 768px) {
  .trust-marquee { margin-top: var(--space-8); padding: var(--space-4) 0; }
}

/* Logos größer */
.trust-item__logo {
  height: 38px;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .trust-item__logo { height: 46px; }
}

.trust-item__logo--small { height: 30px; }
@media (min-width: 768px) {
  .trust-item__logo--small { height: 36px; }
}

/* DSGVO Cert größer */
.trust-item__cert-shield {
  width: 38px;
  height: 38px;
  padding: 6px;
}
@media (min-width: 768px) {
  .trust-item__cert-shield { width: 46px; height: 46px; padding: 9px; }
}

/* Marquee items näher zusammen */
.trust-marquee__set {
  gap: var(--space-5);
  padding-right: var(--space-5);
}
@media (min-width: 768px) {
  .trust-marquee__set { gap: var(--space-6); padding-right: var(--space-6); }
}

/* Animation noch schneller */
.trust-marquee__track {
  animation-duration: 22s;
}

/* Trust-Item gap (Logo zu Label) noch enger */
.trust-item { gap: 3px; }

/* Übergang zur Transition kompakter */
.transition {
  padding: var(--space-12) 0;
}
@media (min-width: 768px) {
  .transition { padding: var(--space-16) 0; }
}

/* ================================================================
   V23 — Hero entrümpelt: Mini-Testimonial + Trust-Marquee in eigene Section
   Diamond Mobile-hide + Chart Mobile-dezenter
   ================================================================ */

/* ---------- HERO-TRUST eigene Section ---------- */
.hero-trust {
  padding: var(--space-10) 0 var(--space-12);
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-trust { padding: var(--space-12) 0 var(--space-16); }
}

.hero-trust .mini-testimonial {
  margin: 0 auto var(--space-10);
  max-width: 60ch;
}
@media (min-width: 768px) {
  .hero-trust .mini-testimonial { margin-bottom: var(--space-12); }
}

.hero-trust .trust-marquee {
  margin-top: 0;
}

/* ---------- HERO Diamond auf Mobile WEG (überlappt) ---------- */
@media (max-width: 1023px) {
  .hero__shape--diamond { display: none !important; }
}

/* ---------- HERO Chart auf Mobile DEZENTER (konkurriert sonst mit Video) ---------- */
@media (max-width: 1023px) {
  .hero__chart {
    opacity: 0.4;
    height: 50%;
  }
  .hero__chart-line {
    filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.4));
  }
}

/* ---------- HERO Glow-Orbs auf Mobile reduzieren ---------- */
@media (max-width: 767px) {
  .hero__orb--1 { width: 180px; height: 180px; opacity: 0.7; }
  .hero__orb--2 { width: 140px; height: 140px; opacity: 0.5; }
}

/* ---------- HERO selbst etwas kompakter (kein Trust mehr drin) ---------- */
.hero {
  padding-bottom: var(--space-16);
}
@media (min-width: 768px) {
  .hero { padding-bottom: var(--space-20); }
}
@media (min-width: 1024px) {
  .hero { padding-bottom: var(--space-24); }
}

/* Stats-Row in Hero etwas kleiner Margin nach oben */
.hero .stats-row {
  margin-top: var(--space-10);
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero .stats-row { margin-top: var(--space-12); }
}

/* ================================================================
   V24 — System-Cards Mobile kompakter + Section-Padding-Reduzierung
   für weniger Scroll-Distanz
   ================================================================ */

/* System-Cards Mobile-Compactness */
@media (max-width: 767px) {
  .system-card {
    padding: var(--space-6);
    min-height: 220px;
    gap: var(--space-4);
  }
  .system-card::before {
    font-size: 56px;
    top: -4px;
    right: var(--space-3);
  }
  .system-card .card__title {
    font-size: 17px;
    margin-bottom: var(--space-2);
  }
  .system-card .card__body {
    font-size: 14px;
    line-height: 1.5;
  }
  .system-grid {
    gap: var(--space-3);
    margin: var(--space-10) 0;
  }
}

/* Coop-Cards Mobile-Compactness */
@media (max-width: 767px) {
  .coop-card {
    padding: var(--space-6);
    min-height: 200px;
    gap: var(--space-3);
  }
  .coop-card .card__title {
    font-size: 17px;
  }
  .coop-card .card__body {
    font-size: 14px;
    line-height: 1.5;
  }
  .coop-grid {
    gap: var(--space-3);
    margin: var(--space-8) 0 var(--space-8);
  }
}

/* Section-Padding insgesamt auf Mobile reduzieren (weniger Scroll-Distanz) */
@media (max-width: 767px) {
  section {
    padding: var(--space-12) 0;
  }
}

/* Section-Title Mobile etwas kleiner */
@media (max-width: 767px) {
  .section-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: var(--space-6);
  }
  .section-sub {
    font-size: 15px;
    margin-bottom: var(--space-8);
  }
}

/* Trust-Items Cert label klarer */
.trust-item__label--cert {
  color: var(--accent);
}

/* ================================================================
   V25 — Money-Math Box · Wall-of-Love · Founder-Mini · Mid-CTA-Lead
   ================================================================ */

/* ---------- MONEY-MATH BOX ---------- */
.money-math {
  margin: var(--space-12) auto var(--space-8);
  max-width: 640px;
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(180deg, rgba(20, 26, 33, 0.6), rgba(11, 16, 20, 0.6));
  border: 1px solid rgba(0, 212, 255, 0.2);
  position: relative;
}
@media (min-width: 768px) {
  .money-math { padding: var(--space-10) var(--space-12); }
}
.money-math__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.money-math__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}
.money-math__calc {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.money-math__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .money-math__row { font-size: 15px; }
}
.money-math__op {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 18px;
  width: 18px;
  flex-shrink: 0;
  color: var(--accent);
}
.money-math__row--minus .money-math__op {
  color: rgba(255, 100, 100, 0.7);
}
.money-math__desc {
  flex: 1;
}
.money-math__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  margin-top: 4px;
  border-top: 2px solid var(--accent);
  font-family: var(--font-display);
}
.money-math__total-label {
  font-size: 14px;
  color: var(--text-dim, rgba(232, 240, 245, 0.6));
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.money-math__total-amount {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.money-math__close {
  font-size: 14px;
  color: var(--text-dim, rgba(232, 240, 245, 0.7));
  font-style: italic;
  margin: 0;
  text-align: center;
}

/* ---------- WALL OF LOVE ---------- */
.wall-of-love {
  padding: var(--space-12) 0;
  position: relative;
}
@media (min-width: 768px) {
  .wall-of-love { padding: var(--space-16) 0; }
}
.wall-of-love .section-title,
.wall-of-love .section-tag,
.wall-of-love .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.wall-of-love .section-sub { max-width: 56ch; }

.wall-grid {
  column-count: 2;
  column-gap: 12px;
  margin: var(--space-8) auto var(--space-10);
  max-width: 1100px;
}
@media (min-width: 768px) {
  .wall-grid {
    column-count: 3;
    column-gap: 16px;
  }
}
.wall-tile {
  margin: 0 0 12px;
  background: transparent;
  border: 0;
  overflow: hidden;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .wall-tile { margin: 0 0 16px; }
}
.wall-tile:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.wall-tile img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- FOUNDER MINI ---------- */
.founder-mini {
  margin: var(--space-10) auto 0;
  max-width: 760px;
  padding: var(--space-7) var(--space-7);
  border-left: 2px solid var(--accent);
  background: rgba(20, 26, 33, 0.4);
}
@media (min-width: 768px) {
  .founder-mini { padding: var(--space-8) var(--space-9); }
}
.founder-mini__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
@media (min-width: 768px) {
  .founder-mini__label { font-size: 12px; }
}
.founder-mini__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 var(--space-4);
}
.founder-mini__body:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .founder-mini__body { font-size: 16px; }
}

/* ---------- MID-CTA LEAD ---------- */
.mid-cta__lead {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  margin: 0 auto var(--space-3);
  max-width: 32ch;
  letter-spacing: -0.01em;
}
