/* ════════════════════════════════════════════════════════════════
   fonder Landingpage v2 — Design-Tokens aus der fonder5-App
   Blau #1767ff · Dark #040A14 · Light #FDFCFC · Inter
   ════════════════════════════════════════════════════════════════ */

:root {
  --blue: #1767ff;
  --blue-rgb: 23, 103, 255;
  --blue-strong: #0f4ed8;
  --blue-soft: #5c98ff;
  --ink: #040A14;
  --ink-surface: #0c1526;
  --light-bg: #FDFCFC;
  --light-text: #0b1f44;
  --light-muted: #4d5f7c;
  --light-soft: #7a8ba7;
  --dark-text: rgba(241, 245, 249, 0.92);
  --dark-muted: rgba(174, 190, 214, 0.72);
  --orange: #ff9f43;
  --green: #3ddc84;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(15, 42, 97, 0.08);
  --shadow-float: 0 2px 16px rgba(15, 42, 97, 0.08);
  --font: "Inter", "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--dark-text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
p { margin: 0; }
b, strong { font-weight: 700; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

::selection { background: rgba(var(--blue-rgb), 0.85); color: #fff; }

/* ── Preloader ─────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  display: grid; place-items: center;
  background: var(--ink);
}
.preloader.is-done { display: none; }
.pre-inner { display: flex; align-items: center; gap: 14px; position: relative; }
.pre-icon {
  width: 54px; height: 54px;
  filter: drop-shadow(0 8px 36px rgba(var(--blue-rgb), 0.7));
  animation: preIcon 0.8s 0.05s var(--ease-out) backwards;
}
@keyframes preIcon { from { transform: scale(0.5) rotate(-14deg); opacity: 0; } }
.pre-word { font-size: 2.1rem; font-weight: 800; letter-spacing: -0.04em; color: #fff; }
.pre-count {
  position: absolute; left: 50%; top: calc(100% + 22px); transform: translateX(-50%);
  font-size: 0.85rem; font-weight: 700; color: var(--blue-soft);
  font-variant-numeric: tabular-nums;
}

/* ── Scroll-Progress ───────────────────────────────────────── */
.progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 1000;
  pointer-events: none;
}
.progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--blue-strong), var(--blue), var(--blue-soft));
  transform: scaleX(0); transform-origin: left;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: 0;
  border-radius: var(--radius-pill);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-xl { padding: 19px 36px; font-size: 1.125rem; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-strong) 100%);
  box-shadow: 0 8px 30px -8px rgba(var(--blue-rgb), 0.65),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  box-shadow: 0 14px 44px -8px rgba(var(--blue-rgb), 0.85),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-shine { overflow: hidden; }
.btn-shine::after {
  content: "";
  position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: shine 3.6s var(--ease-out) infinite;
}
@keyframes shine {
  0%, 55% { left: -80%; }
  85%, 100% { left: 130%; }
}
.btn-ghost {
  color: var(--dark-text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.08); }
.section-light .btn-ghost {
  color: var(--light-text);
  border-color: rgba(15, 42, 97, 0.16);
  background: rgba(255, 255, 255, 0.6);
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 14px 0;
  transition: transform 0.45s var(--ease-out), background 0.3s, padding 0.3s,
              border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(4, 10, 20, 0.72);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav-inner {
  width: min(1280px, calc(100% - 48px)); margin-inline: auto;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.nav-logo-icon {
  width: 36px; height: 36px;
  filter: drop-shadow(0 4px 14px rgba(var(--blue-rgb), 0.5));
}
.nav-logo-word { font-size: 1.3rem; letter-spacing: -0.03em; color: #fff; }
.nav-links { display: flex; gap: 6px; margin-inline: auto; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 0.9rem; font-weight: 500; color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-login { font-size: 0.9rem; font-weight: 500; color: rgba(255, 255, 255, 0.72); transition: color 0.25s; }
.nav-login:hover { color: #fff; }
@media (max-width: 860px) {
  .nav-links, .nav-login { display: none; }
  .nav-actions { margin-left: auto; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center;
  padding: clamp(130px, 17vh, 190px) 24px 0;
  overflow: clip;
  background: var(--ink);
}
.dotgrid { position: absolute; inset: 0; width: 100%; height: 100%; }
.aurora { position: absolute; inset: -10%; pointer-events: none; filter: blur(70px); opacity: 0.55; }
.aurora span { position: absolute; border-radius: 50%; will-change: transform; }
.aurora span:nth-child(1) {
  width: 56vw; height: 56vw; left: -12%; top: -18%;
  background: radial-gradient(circle, rgba(var(--blue-rgb), 0.5), transparent 65%);
  animation: aur1 22s ease-in-out infinite alternate;
}
.aurora span:nth-child(2) {
  width: 44vw; height: 44vw; right: -10%; top: 4%;
  background: radial-gradient(circle, rgba(15, 78, 216, 0.45), transparent 65%);
  animation: aur2 26s ease-in-out infinite alternate;
}
.aurora span:nth-child(3) {
  width: 38vw; height: 38vw; left: 28%; top: 36%;
  background: radial-gradient(circle, rgba(92, 152, 255, 0.3), transparent 65%);
  animation: aur3 19s ease-in-out infinite alternate;
}
@keyframes aur1 { to { transform: translate(9vw, 7vh) scale(1.18); } }
@keyframes aur2 { to { transform: translate(-7vw, 10vh) scale(0.88); } }
@keyframes aur3 { to { transform: translate(-9vw, -6vh) scale(1.12); } }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 920px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; margin-bottom: 28px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--blue-soft);
  border: 1px solid rgba(var(--blue-rgb), 0.35);
  border-radius: var(--radius-pill);
  background: rgba(var(--blue-rgb), 0.08);
  backdrop-filter: blur(8px);
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-soft);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(var(--blue-rgb), 0.7); }
  70%  { box-shadow: 0 0 0 11px rgba(var(--blue-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--blue-rgb), 0); }
}

.hero-title {
  font-size: clamp(2.7rem, 7.4vw, 5.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  perspective: 900px;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.hero-title .word { display: inline-block; will-change: transform; }
.grad {
  background: linear-gradient(100deg, var(--blue-soft) 0%, var(--blue) 45%, #8ab5ff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 6s ease-in-out infinite alternate;
}
@keyframes gradShift { from { background-position: 0% 0; } to { background-position: 100% 0; } }

.hero-sub {
  max-width: 660px; margin: 0 auto 36px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--dark-muted);
  line-height: 1.65;
}
.hero-sub strong { color: rgba(241, 245, 249, 0.95); font-weight: 600; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.hero-proof {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.9rem; color: var(--dark-muted);
}
.hero-proof strong { color: #fff; font-weight: 700; }
.hero-proof i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, 0.25); }
.proof-stars { color: #ffb01f; letter-spacing: 2px; font-size: 0.95rem; }

/* Hero App-Mock v2 */
.hero-stage {
  position: relative; z-index: 2;
  width: min(960px, 94vw);
  margin-top: clamp(54px, 8vh, 100px);
  margin-bottom: -40px;
  perspective: 1600px;
}
.mock-tilt { position: relative; transform-style: preserve-3d; will-change: transform; }
.app-window {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(18, 30, 54, 0.92) 0%, rgba(8, 16, 32, 0.96) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 60px 140px -30px rgba(0, 0, 0, 0.85),
              0 0 100px -30px rgba(var(--blue-rgb), 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.app-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.app-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); flex-shrink: 0; }
.app-dot:first-child { background: rgba(255, 95, 87, 0.8); }
.app-steps { display: flex; gap: 6px; margin-inline: auto; flex-wrap: nowrap; overflow: hidden; }
.step {
  padding: 5px 13px; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 600; white-space: nowrap;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid transparent;
}
.step.done { color: rgba(255, 255, 255, 0.65); }
.step.done::before { content: "✓ "; color: var(--green); }
.step.active {
  color: #fff;
  background: rgba(var(--blue-rgb), 0.18);
  border-color: rgba(var(--blue-rgb), 0.5);
}
.app-layout { display: flex; }
.app-side {
  display: flex; flex-direction: column; gap: 4px;
  width: 190px; flex-shrink: 0;
  padding: 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.side-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 12px; border-radius: 9px;
  font-size: 0.8rem; font-weight: 500; color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.side-item i { font-style: normal; opacity: 0.75; font-size: 0.85rem; }
.side-item.active {
  color: #fff;
  background: rgba(var(--blue-rgb), 0.16);
  box-shadow: inset 2px 0 0 var(--blue-soft);
}
/* Eingabefelder in der linken Spalte — wie die echten Form-Controls der App */
.app-inputs { gap: 11px; padding: 16px 14px; }
.inp { display: flex; flex-direction: column; gap: 4px; }
.inp > span {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.48);
}
.inp b {
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  background: #1c2533;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem; font-weight: 600; color: #fff;
  font-variant-numeric: tabular-nums;
}
.inp-focus b {
  border-color: rgba(var(--blue-rgb), 0.7);
  box-shadow: 0 0 0 3px rgba(var(--blue-rgb), 0.18);
}
.app-main { flex: 1; padding: 20px 22px 18px; min-width: 0; }
.app-main-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.app-main-head h3 { font-size: 1rem; color: #fff; letter-spacing: -0.01em; }
.app-main-head small { font-weight: 500; color: rgba(255, 255, 255, 0.45); margin-left: 8px; font-size: 0.74rem; }
.app-tag {
  padding: 4px 12px; border-radius: var(--radius-pill);
  border: 1px solid rgba(var(--blue-rgb), 0.4);
  background: rgba(var(--blue-rgb), 0.12);
  color: var(--blue-soft); font-weight: 600; font-size: 0.72rem; white-space: nowrap;
}

.rank { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.rank-row { display: grid; grid-template-columns: 240px 1fr 110px; align-items: center; gap: 14px; }
.rank-meta { display: flex; align-items: center; gap: 9px; min-width: 0; }
.rank-meta img { border-radius: 6px; background: #fff; padding: 2px; flex-shrink: 0; }
.rank-ico {
  display: grid; place-items: center; width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.7); font-size: 0.72rem;
  flex-shrink: 0;
}
.rank-name {
  font-size: 0.8rem; font-weight: 600; color: rgba(255, 255, 255, 0.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rank-name em { font-style: normal; font-size: 0.68rem; color: var(--orange); font-weight: 700; }
.rank-badge {
  padding: 2px 8px; border-radius: var(--radius-pill);
  font-size: 0.66rem; font-weight: 800; color: #04130a;
  background: var(--green); flex-shrink: 0;
}
.rank-track { height: 10px; border-radius: 5px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.rank-bar { display: block; height: 100%; width: 0; border-radius: 5px; }
.rank-blue { background: linear-gradient(90deg, var(--blue-strong), var(--blue-soft)); box-shadow: 0 0 14px rgba(var(--blue-rgb), 0.7); }
.rank-grey { background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.45)); }
.rank-orange { background: linear-gradient(90deg, #d97a1b, var(--orange)); }
.rank-val {
  font-size: 0.88rem; font-weight: 800; color: #fff; text-align: right;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}

.app-chart { width: 100%; height: clamp(90px, 13vw, 150px); }
.chart-grid line { stroke: rgba(255, 255, 255, 0.06); stroke-width: 1; }
.chart-line { fill: none; stroke-width: 2.6; stroke-linecap: round; }
.chart-line-blue { stroke: var(--blue-soft); filter: drop-shadow(0 0 6px rgba(var(--blue-rgb), 0.9)); }
.chart-line-grey { stroke: rgba(255, 255, 255, 0.3); stroke-width: 2.2; }
.chart-line-orange { stroke: rgba(255, 159, 67, 0.55); stroke-width: 2.2; }
.chart-area { opacity: 0; }

.kpi-card {
  position: absolute; z-index: 3;
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 24, 44, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  will-change: transform;
}
.kpi-1 { top: -38px; right: -54px; }
.kpi-2 { bottom: 70px; left: -66px; }
.kpi-3 { bottom: -28px; right: 60px; flex-direction: row; align-items: center; gap: 10px; padding: 13px 18px; }
.kpi-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.kpi-value { font-size: 1.45rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.kpi-value small { font-size: 0.8rem; font-weight: 600; color: rgba(255, 255, 255, 0.5); }
.kpi-delta { font-size: 0.75rem; font-weight: 600; color: rgba(255, 255, 255, 0.55); }
.kpi-delta.up { color: var(--green); }
.kpi-check {
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(61, 220, 132, 0.16); color: var(--green);
  font-size: 0.85rem; font-weight: 800; flex-shrink: 0;
}
.kpi-label-strong { font-size: 0.85rem; font-weight: 700; color: #fff; }
@media (max-width: 1100px) {
  .kpi-1 { right: -10px; }
  .kpi-2 { left: -10px; }
}
@media (max-width: 720px) {
  .app-side { display: none; }
  .rank-row { grid-template-columns: minmax(0, 1.2fr) 1fr 86px; gap: 8px; }
  .rank-val { font-size: 0.76rem; }
  .kpi-2 { display: none; }
  .kpi-1 { top: -28px; right: 0; padding: 12px 16px; }
  .kpi-1 .kpi-value { font-size: 1.05rem; }
  .kpi-3 { bottom: -22px; right: 8px; }
  .app-steps .step:not(.active):not(:nth-child(4)) { display: none; }
}

/* ── Velocity-Marquee: zwei gegenläufige, gekippte Bänder ──── */
.vmarquee {
  position: relative;
  padding: clamp(110px, 15vh, 180px) 0 clamp(70px, 9vh, 120px);
  background: var(--ink);
  overflow: clip;
}
.vm-glow {
  position: absolute; left: 50%; top: 55%;
  width: 70vw; height: 26vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(var(--blue-rgb), 0.16) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.vm-band { position: relative; }
.vm-band-a { transform: rotate(-2.6deg); z-index: 1; }
.vm-band-b { transform: rotate(1.8deg); margin-top: calc(-0.4 * clamp(3.4rem, 8.4vw, 7.6rem)); z-index: 2; }
.vm-track { display: flex; white-space: nowrap; will-change: transform; width: max-content; }
.vm-seg {
  flex-shrink: 0;
  font-size: clamp(3.4rem, 8.4vw, 7.6rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.16;
  padding-right: 0.4em;
}
.vm-seg i { font-style: normal; }
.vm-stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(140, 170, 230, 0.28);
}
.vm-stroke i {
  -webkit-text-stroke: 0;
  color: rgba(var(--blue-rgb), 0.45);
}
.vm-fill {
  background: linear-gradient(100deg, #ffffff 0%, var(--blue-soft) 36%, var(--blue) 60%, #8ab5ff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 7s ease-in-out infinite alternate;
  filter: drop-shadow(0 10px 50px rgba(var(--blue-rgb), 0.45));
}
.vm-fill i {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
  background: none;
}

/* ── Logo Marquee ──────────────────────────────────────────── */
.logo-strip {
  position: relative;
  padding: 50px 0 110px;
  background: linear-gradient(180deg, var(--ink) 0%, #060f1f 100%);
  overflow: clip;
}
.logo-strip-title {
  text-align: center; margin-bottom: 38px;
  font-size: 0.95rem; color: var(--dark-muted);
}
.logo-strip-title strong { color: #fff; }
.marquee { display: flex; overflow: clip; margin-bottom: 16px; }
.marquee-track { display: flex; gap: 14px; flex-shrink: 0; padding-right: 14px; will-change: transform; }
.marquee[data-direction="left"]  .marquee-track { animation: marqueeL 52s linear infinite; }
.marquee[data-direction="right"] .marquee-track { animation: marqueeR 58s linear infinite; }
.logo-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeL { to { transform: translateX(-50%); } }
@keyframes marqueeR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.logo-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px 10px 12px;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem; font-weight: 600; color: rgba(255, 255, 255, 0.65);
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}
.logo-pill:hover {
  border-color: rgba(var(--blue-rgb), 0.5);
  background: rgba(var(--blue-rgb), 0.1);
  color: #fff;
  transform: translateY(-3px);
}
.logo-pill img {
  width: 30px; height: 30px; padding: 4px;
  border-radius: 50%; background: #fff;
}
.strip-fade {
  position: absolute; top: 0; bottom: 0; width: 14vw; z-index: 2; pointer-events: none;
}
.strip-fade-l { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.strip-fade-r { right: 0; background: linear-gradient(-90deg, #060f1f, transparent); }

/* ── Sections base ─────────────────────────────────────────── */
.section-light { position: relative; background: var(--light-bg); color: var(--light-text); }
.section-dark { position: relative; background: var(--ink); color: var(--dark-text); }
/* "Sheet": helle Sektion legt sich mit runden Ecken über die dunkle davor */
.sheet { border-radius: 36px 36px 0 0; margin-top: -36px; z-index: 2; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow.center { display: block; text-align: center; }
.eyebrow.on-dark { color: var(--blue-soft); }
.section-title {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.section-title.center { text-align: center; }
.section-title em { font-style: italic; font-weight: 600; }
.section-title.on-dark { color: #fff; }
.section-sub {
  max-width: 620px; font-size: 1.05rem; line-height: 1.65;
  color: var(--light-muted);
}
.section-sub.center { margin-inline: auto; text-align: center; }
.section-sub.on-dark { color: var(--dark-muted); }

/* ── Stats ─────────────────────────────────────────────────── */
.stats {
  padding: 100px 0 90px;
  background:
    radial-gradient(circle farthest-corner at 50% -125%,
      #FDFCFC 0%, #FDFCFC 72%, #f2f6ff 80%, #e3ecff 87%,
      #d0e0ff 93%, #bcd5ff 97%, #aecbff 100%);
}
.stats.sheet { background-color: var(--light-bg); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  text-align: center;
}
@media (max-width: 820px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }
.stat-num {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em;
  color: var(--light-text);
  font-variant-numeric: tabular-nums;
}
.stat-star { color: #ffb01f; font-size: 0.7em; vertical-align: 0.18em; margin-left: 4px; }
.stat-label { font-size: 0.92rem; color: var(--light-muted); }

/* ── Produkt-Tour (horizontal) ─────────────────────────────── */
.tour { background: var(--ink); position: relative; }
.tour::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent 80%);
  pointer-events: none;
}
.tour-pin {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: clip;
  padding: 60px 0 40px;
}
.tour-head { margin-bottom: clamp(28px, 4vh, 52px); position: relative; z-index: 2; }
.tour-head .section-title { margin-bottom: 8px; }
.tour-progress {
  display: flex; align-items: center; gap: 14px;
  margin-top: 18px;
  font-size: 0.8rem; font-weight: 700; color: var(--blue-soft);
  font-variant-numeric: tabular-nums;
}
.tour-progress i {
  position: relative; width: min(300px, 40vw); height: 4px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.1); overflow: hidden;
}
.tour-progress b {
  position: absolute; inset: 0; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--blue-strong), var(--blue-soft));
  border-radius: 2px;
}
.tour-track {
  display: flex; gap: clamp(24px, 4vw, 60px);
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: 8vw;
  will-change: transform;
  width: max-content;
}
.tpanel {
  display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: clamp(24px, 3vw, 48px);
  align-items: center;
  width: min(980px, 88vw);
  flex-shrink: 0;
}
.tpanel header { position: relative; z-index: 2; }
.tpanel > header, .tpanel > .tvisual, .tvisual > .tcard { min-width: 0; }
.tnum {
  display: block; margin-bottom: 12px;
  font-size: 3.4rem; font-weight: 800; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(var(--blue-rgb), 0.6);
}
.tpanel h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: #fff; margin-bottom: 14px; letter-spacing: -0.025em; }
.tpanel header p { color: var(--dark-muted); font-size: 0.98rem; line-height: 1.65; }
.tvisual { perspective: 1200px; }
.tcard {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(18, 30, 54, 0.9) 0%, rgba(8, 16, 32, 0.95) 100%);
  box-shadow: 0 40px 110px -30px rgba(0, 0, 0, 0.8), 0 0 70px -34px rgba(var(--blue-rgb), 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 26px 28px;
  will-change: transform;
}
.tcard-head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-bottom: 20px; flex-wrap: wrap;
  font-weight: 700; color: #fff; font-size: 0.95rem;
}
.tchips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.tchips span {
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 0.74rem; font-weight: 600;
  color: rgba(220, 232, 255, 0.8);
  background: rgba(var(--blue-rgb), 0.1);
  border: 1px solid rgba(var(--blue-rgb), 0.28);
}
.chip-neu {
  display: inline-grid; place-items: center; vertical-align: 1px;
  padding: 1px 7px;
  border-radius: var(--radius-pill);
  font-style: normal; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.07em;
  color: #fff;
  background: linear-gradient(120deg, var(--blue), #7c3aed);
}

/* Tour 2: Rentenlücke — Einkommensbalken wie in der App */
.gap-chart {
  position: relative;
  display: flex; align-items: flex-end; gap: 5px;
  height: clamp(150px, 17vw, 210px);
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}
.gc-col { position: relative; flex: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.gc-col i {
  display: block; height: var(--h);
  border-radius: 4px 4px 1.5px 1.5px;
  background: linear-gradient(180deg, var(--blue-soft), var(--blue-strong));
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.7s var(--ease-out);
}
.gc-ret b {
  position: absolute; left: 0; right: 0; bottom: var(--h);
  height: calc(var(--g) - var(--h));
  border: 1.5px dashed rgba(255, 110, 100, 0.9);
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  background: rgba(255, 100, 92, 0.1);
  opacity: 0; transition: opacity 0.6s ease 0.9s;
}
.tcard.in .gc-col i { transform: scaleY(1); }
.tcard.in .gc-col:nth-child(1) i { transition-delay: 0.00s; }
.tcard.in .gc-col:nth-child(2) i { transition-delay: 0.05s; }
.tcard.in .gc-col:nth-child(3) i { transition-delay: 0.10s; }
.tcard.in .gc-col:nth-child(4) i { transition-delay: 0.15s; }
.tcard.in .gc-col:nth-child(5) i { transition-delay: 0.20s; }
.tcard.in .gc-col:nth-child(6) i { transition-delay: 0.25s; }
.tcard.in .gc-col:nth-child(7) i { transition-delay: 0.30s; }
.tcard.in .gc-col:nth-child(8) i { transition-delay: 0.35s; }
.tcard.in .gc-col:nth-child(9) i { transition-delay: 0.40s; }
.tcard.in .gc-col:nth-child(10) i { transition-delay: 0.45s; }
.tcard.in .gc-col:nth-child(11) i { transition-delay: 0.50s; }
.tcard.in .gc-col:nth-child(12) i { transition-delay: 0.55s; }
.tcard.in .gc-col:nth-child(13) i { transition-delay: 0.62s; }
.tcard.in .gc-col:nth-child(14) i { transition-delay: 0.69s; }
.tcard.in .gc-col:nth-child(15) i { transition-delay: 0.76s; }
.tcard.in .gc-col:nth-child(16) i { transition-delay: 0.83s; }
.tcard.in .gc-ret b { opacity: 1; }
.gc-badge {
  position: absolute; right: 6px; top: -4%;
  display: flex; flex-direction: column; gap: 2px; align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: #e03131;
  color: #fff; font-size: 0.72rem; font-weight: 800; white-space: nowrap;
  box-shadow: 0 14px 40px -10px rgba(224, 49, 49, 0.7);
  opacity: 0; transform: scale(0.6) rotate(4deg);
  transition: opacity 0.45s var(--ease-out) 1.2s, transform 0.45s var(--ease-out) 1.2s;
  z-index: 2;
}
.gc-badge b { font-size: 0.92rem; font-variant-numeric: tabular-nums; }
.tcard.in .gc-badge { opacity: 1; transform: none; }
.gc-axis {
  display: flex; justify-content: space-between;
  margin-top: 8px; padding: 0 2px;
  font-size: 0.7rem; font-weight: 600; color: rgba(255, 255, 255, 0.4);
  font-variant-numeric: tabular-nums;
}

/* Tour 2: Anlagefinder */
.wizard { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.wstep {
  padding: 6px 13px; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 600; color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.wstep.done { color: rgba(255, 255, 255, 0.7); }
.wstep.done::before { content: "✓ "; color: var(--green); }
.wstep.active { color: #fff; background: rgba(var(--blue-rgb), 0.18); border-color: rgba(var(--blue-rgb), 0.5); }
.anlage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.anlage {
  display: flex; flex-direction: column; gap: 3px;
  padding: 16px 18px; border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700; font-size: 0.95rem; color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.anlage small { font-size: 0.72rem; font-weight: 500; color: rgba(255, 255, 255, 0.45); }
.anlage.active {
  border-color: rgba(var(--blue-rgb), 0.65);
  background: rgba(var(--blue-rgb), 0.14);
  box-shadow: 0 0 0 3px rgba(var(--blue-rgb), 0.15), 0 14px 40px -16px rgba(var(--blue-rgb), 0.6);
}
.anlage.active::after { content: "✓"; position: absolute; }
.anlage { position: relative; }
.anlage.active::after {
  top: 12px; right: 14px;
  display: grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); color: #fff; font-size: 0.7rem; font-weight: 800;
}
.anlage.soon small { color: var(--orange); font-weight: 700; }

/* Tour 3: Tarif-Ranking */
.trank { display: flex; flex-direction: column; gap: 13px; }
.trank-row { display: grid; grid-template-columns: 26px minmax(0, 190px) 1fr 84px; gap: 11px; align-items: center; }
.trank-row img { border-radius: 6px; background: #fff; padding: 2px; }
.trank-name {
  font-size: 0.8rem; font-weight: 600; color: rgba(255, 255, 255, 0.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.trank-name .best {
  font-style: normal; font-size: 0.64rem; font-weight: 800;
  color: #04130a; background: var(--green);
  padding: 2px 7px; border-radius: var(--radius-pill); margin-left: 6px;
  vertical-align: 1px;
}
.trank-track { height: 10px; border-radius: 5px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.trank-track i {
  display: block; height: 100%; width: 0; border-radius: 5px;
  background: linear-gradient(90deg, var(--blue-strong), var(--blue-soft));
  transition: width 1.1s var(--ease-out);
}
.trank-row:first-child .trank-track i { background: linear-gradient(90deg, #15803d, var(--green)); }
.trank-row b { font-size: 0.84rem; color: #fff; text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tcard.in .trank-track i { width: calc(var(--w) * 1%); }

/* Tour 5: Auswertung — umschaltbare Sichten wie in der App */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.tab {
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 0.74rem; font-weight: 600; color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.tab.active { color: #fff; background: rgba(var(--blue-rgb), 0.18); border-color: rgba(var(--blue-rgb), 0.5); }
.aus-views { position: relative; min-height: 168px; }
.aus-view {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 13px;
  opacity: 0; transform: translateX(14px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  pointer-events: none;
}
.aus-view.is-active { opacity: 1; transform: none; pointer-events: auto; }
.aus-row { display: grid; grid-template-columns: minmax(0, 215px) 1fr 86px; gap: 12px; align-items: center; }
.aus-name {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; color: rgba(255, 255, 255, 0.85);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0;
}
.aus-name img { border-radius: 6px; background: #fff; padding: 2px; flex-shrink: 0; }
.aus-ico {
  display: grid; place-items: center; width: 20px; height: 20px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.7);
  font-style: normal; font-size: 0.68rem; flex-shrink: 0;
}
.aus-rank {
  font-style: normal; font-size: 0.62rem; font-weight: 800;
  color: #04130a; background: var(--green);
  padding: 2px 7px; border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.aus-track { display: flex; height: 10px; border-radius: 5px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.aus-bar { display: block; height: 100%; width: 0; border-radius: 5px; transition: width 0.9s var(--ease-out) 0.15s; }
.aus-view.is-active .aus-bar { width: var(--w); }
.ab-blue { background: linear-gradient(90deg, var(--blue-strong), var(--blue-soft)); box-shadow: 0 0 14px rgba(var(--blue-rgb), 0.7); }
.ab-grey { background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.45)); }
.ab-orange { background: linear-gradient(90deg, #d97a1b, var(--orange)); }
.aus-stack .seg { display: block; height: 100%; width: 0; transition: width 0.8s var(--ease-out); }
.aus-view.is-active .aus-stack .seg { width: var(--w); }
.aus-view.is-active .aus-stack .seg:nth-child(1) { transition-delay: 0.15s; }
.aus-view.is-active .aus-stack .seg:nth-child(2) { transition-delay: 0.3s; }
.aus-view.is-active .aus-stack .seg:nth-child(3) { transition-delay: 0.45s; }
.s-dark { background: var(--blue-strong); }
.s-mid { background: var(--blue-soft); }
.s-light { background: #a8c6ff; }
.aus-row b {
  font-size: 0.86rem; font-weight: 800; color: #fff; text-align: right;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.aus-note {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  margin-top: auto;
  font-size: 0.7rem; font-weight: 600; color: rgba(255, 255, 255, 0.45);
}
.lg-seg { display: inline-block; width: 12px; height: 7px; border-radius: 2px; }
.aus-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.aus-pdf {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 8px 24px -8px rgba(var(--blue-rgb), 0.7);
}

/* Tour 5: Vertrags-Check */
.upload {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; margin-bottom: 18px;
  border: 1.5px dashed rgba(var(--blue-rgb), 0.5);
  border-radius: var(--radius-lg);
  font-size: 0.88rem; font-weight: 600; color: rgba(255, 255, 255, 0.85);
  background: rgba(var(--blue-rgb), 0.06);
  overflow: hidden;
}
.upload i { font-style: normal; color: var(--blue-soft); font-size: 1.1rem; }
.upload em { margin-left: auto; font-style: normal; font-size: 0.74rem; color: var(--blue-soft); }
.upload-beam {
  position: absolute; top: 0; bottom: 0; width: 34%;
  background: linear-gradient(100deg, transparent, rgba(var(--blue-rgb), 0.22), transparent);
  animation: beam 2.4s ease-in-out infinite;
}
@keyframes beam { from { left: -40%; } to { left: 110%; } }
.check-rows { display: flex; flex-direction: column; gap: 10px; }
.check-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.85rem; font-weight: 600; color: rgba(255, 255, 255, 0.7);
}
.check-row > span { min-width: 0; }
.check-row b { font-variant-numeric: tabular-nums; font-size: 0.95rem; flex-shrink: 0; white-space: nowrap; }
.check-row .bad { color: #ff7b72; }
.check-row .good { color: var(--green); }
.check-sum {
  background: rgba(var(--blue-rgb), 0.12);
  border-color: rgba(var(--blue-rgb), 0.4);
  color: #fff;
}
.check-sum b { font-size: 1.2rem; color: #fff; }

@media (max-width: 640px) {
  /* Ranking-Zeilen zweizeilig: Name + Wert oben, Balken volle Breite darunter */
  .trank-row {
    grid-template-columns: 24px minmax(0, 1fr) auto;
    grid-template-areas: "i n v" "t t t";
    row-gap: 7px;
  }
  .trank-row > img { grid-area: i; }
  .trank-name { grid-area: n; }
  .trank-track { grid-area: t; }
  .trank-row > b { grid-area: v; }
  .aus-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "n v" "t t";
    row-gap: 7px;
  }
  .aus-name { grid-area: n; }
  .aus-track { grid-area: t; }
  .aus-row > b { grid-area: v; }
  .aus-views { min-height: 240px; }
}
@media (max-width: 920px) {
  .tour-pin { min-height: 0; }
  /* Mobile/Tablet: Tour vertikal — alle Schritte untereinander, normales Scrollen */
  .tour-track {
    flex-direction: column;
    width: 100%;
    gap: 72px;
    padding-right: 24px;
    padding-bottom: 30px;
  }
  .tpanel {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
    align-content: start;
    gap: 20px;
  }
  .tnum { font-size: 2.4rem; }
  .tour-progress { display: none; }
}

/* ── Live-Rechner ──────────────────────────────────────────── */
.rechner { padding: 120px 0 130px; }
.rechner .section-sub { margin-bottom: 56px; }
.calc {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(24px, 4vw, 48px);
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(15, 42, 97, 0.08);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 880px) { .calc { grid-template-columns: 1fr; } }
.calc-controls { display: flex; flex-direction: column; gap: 26px; }
/* Zahlen-Eingaben wie die Form-Controls der App (Light Mode) */
.ctrl-nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 480px) { .ctrl-nums { grid-template-columns: 1fr 1fr; } }
.cnum { display: flex; flex-direction: column; gap: 6px; }
.cnum > span:first-child { font-size: 0.8rem; font-weight: 700; }
.cnum-wrap { position: relative; display: flex; }
.cnum-wrap input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 42, 97, 0.16);
  background: #fff;
  font-family: var(--font); font-size: 0.95rem; font-weight: 600; color: var(--light-text);
  font-variant-numeric: tabular-nums;
  transition: border-color 0.25s, box-shadow 0.25s;
  -moz-appearance: textfield; appearance: textfield;
}
.cnum-wrap input::-webkit-outer-spin-button,
.cnum-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cnum-wrap input:focus {
  outline: none;
  border-color: rgba(var(--blue-rgb), 0.7);
  box-shadow: 0 0 0 3px rgba(var(--blue-rgb), 0.15);
}
.cnum-wrap i {
  position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  font-style: normal; font-size: 0.85rem; font-weight: 600; color: var(--light-soft);
  pointer-events: none;
}
.ctrl { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; align-items: baseline; }
.ctrl label { font-size: 0.9rem; font-weight: 700; }
.ctrl output {
  font-size: 1.05rem; font-weight: 800; color: var(--blue-strong);
  font-variant-numeric: tabular-nums;
}
.ctrl input[type="range"] {
  grid-column: 1 / -1;
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) var(--p, 30%), #e7edfb var(--p, 30%));
  outline: none; cursor: pointer;
}
.ctrl input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue);
  box-shadow: 0 4px 14px rgba(var(--blue-rgb), 0.45);
  transition: transform 0.2s var(--ease-out);
}
.ctrl input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.ctrl input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue);
  box-shadow: 0 4px 14px rgba(var(--blue-rgb), 0.45);
}
.ctrl-toggle {
  display: flex; align-items: flex-start; gap: 14px; cursor: pointer;
  padding: 16px 18px; border-radius: var(--radius-lg);
  background: #f5f5f7; border: 1px solid rgba(15, 42, 97, 0.07);
}
.ctrl-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.toggle-pill {
  position: relative; flex-shrink: 0;
  width: 46px; height: 26px; border-radius: 13px;
  background: #cdd6e8; transition: background 0.3s; margin-top: 2px;
}
.toggle-pill i {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease-out);
}
.ctrl-toggle input:checked + .toggle-pill { background: var(--blue); }
.ctrl-toggle input:checked + .toggle-pill i { transform: translateX(20px); }
.toggle-text { display: flex; flex-direction: column; gap: 2px; }
.toggle-text strong { font-size: 0.9rem; }
.toggle-text small { font-size: 0.78rem; color: var(--light-soft); }
.calc-note { font-size: 0.76rem; color: var(--light-soft); line-height: 1.6; }

.calc-result { display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.cres {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 14px; align-items: baseline;
  padding: 20px 24px; border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 42, 97, 0.08);
  background: #fafbfe;
}
.cres-police { border-color: rgba(var(--blue-rgb), 0.35); background: rgba(var(--blue-rgb), 0.05); }
.cres-name { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700; color: var(--light-muted); }
.cres-name i { width: 14px; height: 4px; border-radius: 2px; background: var(--blue); }
.cres-depot .cres-name i { background: #aab8d4; }
.cres b {
  font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap;
}
.cres-police b { color: var(--blue-strong); }
.cres-track {
  grid-column: 1 / -1;
  height: 10px; border-radius: 5px; background: rgba(15, 42, 97, 0.07); overflow: hidden;
}
.cres-track span {
  display: block; height: 100%; width: 0; border-radius: 5px;
  background: linear-gradient(90deg, var(--blue-strong), var(--blue-soft));
  transition: width 0.7s var(--ease-out);
}
.cres-depot .cres-track span { background: #aab8d4; }
.cres small { grid-column: 1 / -1; font-size: 0.74rem; color: var(--light-soft); font-weight: 600; }
.cres-delta {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 16px 24px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-strong) 100%);
  color: #fff;
  box-shadow: 0 16px 44px -14px rgba(var(--blue-rgb), 0.7);
}
.cres-delta span { font-size: 0.85rem; font-weight: 700; opacity: 0.85; }
.cres-delta b { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ── Steuer-Orbit ──────────────────────────────────────────── */
.steuer { padding: 150px 0; overflow: clip; }
.steuer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 55% 60% at 70% 50%, black, transparent 78%);
  pointer-events: none;
}
.steuer-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
@media (max-width: 920px) { .steuer-layout { grid-template-columns: 1fr; } }
.steuer-facts { display: flex; gap: clamp(18px, 3vw, 40px); margin-top: 36px; flex-wrap: wrap; }
.steuer-facts div { display: flex; flex-direction: column; gap: 4px; max-width: 150px; }
.steuer-facts b { font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.steuer-facts span { font-size: 0.8rem; color: var(--dark-muted); line-height: 1.45; }

.orbit {
  position: relative;
  width: min(640px, 92vw); aspect-ratio: 1;
  margin-inline: auto;
  display: grid; place-items: center;
}
.orbit::before {
  content: "";
  position: absolute; width: 70%; height: 70%; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--blue-rgb), 0.28) 0%, transparent 62%);
  filter: blur(12px);
  animation: corePulse 5s ease-in-out infinite alternate;
}
@keyframes corePulse { from { transform: scale(0.9); opacity: 0.8; } to { transform: scale(1.12); opacity: 1; } }
.orbit-core {
  position: absolute; z-index: 2;
  display: grid; place-items: center;
}
.orbit-core img {
  width: 84px; height: 84px;
  filter: drop-shadow(0 24px 60px rgba(var(--blue-rgb), 0.85));
}
@media (max-width: 600px) { .orbit-core img { width: 56px; height: 56px; } }
.ring {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(var(--blue-rgb), 0.28);
}
.r1 { width: 42%; height: 42%; animation: spin 36s linear infinite; }
.r2 { width: 68%; height: 68%; animation: spin 58s linear infinite reverse; }
.r3 { width: 96%; height: 96%; animation: spin 84s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.ochip {
  position: absolute; left: 0; top: 0; z-index: 3;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
  color: rgba(220, 232, 255, 0.9);
  border: 1px solid rgba(var(--blue-rgb), 0.35);
  background: rgba(10, 20, 40, 0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 34px -12px rgba(var(--blue-rgb), 0.55);
  will-change: transform;
}
@media (max-width: 600px) {
  .ochip { font-size: 0.6rem; padding: 5px 10px; }
  .orbit-core { width: 64px; height: 64px; border-radius: 18px; }
  .orbit-core svg { width: 32px; height: 32px; }
}

/* ── Bento ─────────────────────────────────────────────────── */
.bento-sec { padding: 120px 0 110px; }
.bento {
  display: grid; gap: 22px; margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1020px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .bento { grid-template-columns: 1fr; } }
.bcard {
  display: flex; flex-direction: column; gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(15, 42, 97, 0.08);
  box-shadow: var(--shadow-float);
  transition: box-shadow 0.35s, border-color 0.35s;
  transform-style: preserve-3d; will-change: transform;
}
.bcard:hover { box-shadow: 0 24px 60px -20px rgba(15, 42, 97, 0.22); border-color: rgba(var(--blue-rgb), 0.3); }
.bhead h3 { font-size: 1.2rem; margin-bottom: 8px; letter-spacing: -0.015em; }
.bhead p { font-size: 0.9rem; color: var(--light-muted); line-height: 1.6; }

/* White-Label Demo */
.wl-demo { display: flex; flex-direction: column; gap: 16px; margin-top: auto; }
.wl-mini {
  --wl: 23, 103, 255;
  display: flex; flex-direction: column; gap: 9px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #f7f8fc;
  border: 1px solid rgba(15, 42, 97, 0.07);
  transition: background 0.4s;
}
.wl-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.wl-logo { width: 22px; height: 22px; border-radius: 7px; background: rgb(var(--wl)); transition: background 0.4s; }
.wl-line { flex: 1; height: 7px; border-radius: 4px; background: rgba(15, 42, 97, 0.1); }
.wl-bar { display: block; height: 9px; width: var(--w); border-radius: 5px; background: rgba(15, 42, 97, 0.1); }
.wl-bar.wl-accent { background: rgb(var(--wl)); box-shadow: 0 3px 12px rgba(var(--wl), 0.45); transition: background 0.4s, box-shadow 0.4s; }
.wl-btn {
  align-self: flex-start;
  padding: 7px 16px; border-radius: var(--radius-pill);
  font-size: 0.74rem; font-weight: 700; color: #fff;
  background: rgb(var(--wl)); transition: background 0.4s;
}
.wl-swatches { display: flex; gap: 10px; }
.swatch {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--c); border: 3px solid #fff;
  outline: 2px solid rgba(15, 42, 97, 0.12);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), outline-color 0.25s;
}
.swatch:hover { transform: scale(1.15); }
.swatch.active { outline-color: var(--c); outline-width: 2.5px; }

/* Theme Demo */
.theme-demo {
  position: relative;
  margin-top: auto;
  padding: 18px;
  border-radius: var(--radius-lg);
  transition: background 0.45s, border-color 0.45s;
  border: 1px solid rgba(15, 42, 97, 0.07);
}
.theme-demo[data-mode="dark"] { background: #0c1526; }
.theme-demo[data-mode="light"] { background: #f7f8fc; }
.theme-switch {
  position: absolute; top: 14px; right: 14px;
  width: 48px; height: 26px; border-radius: 13px;
  border: none; cursor: pointer;
  background: rgba(var(--blue-rgb), 0.3);
  transition: background 0.3s;
}
.theme-switch i {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s var(--ease-out);
}
.theme-demo[data-mode="light"] .theme-switch i { transform: translateX(22px); }
.theme-mini { display: flex; flex-direction: column; gap: 12px; }
.tm-title { width: 46%; height: 9px; border-radius: 5px; transition: background 0.45s; }
.theme-demo[data-mode="dark"] .tm-title { background: rgba(255, 255, 255, 0.25); }
.theme-demo[data-mode="light"] .tm-title { background: rgba(15, 42, 97, 0.15); }
.tm-chart { display: flex; gap: 8px; align-items: flex-end; height: 74px; padding-top: 6px; }
.tm-chart i {
  flex: 1; height: var(--h); border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--blue), var(--blue-strong));
  opacity: 0.9; transition: height 0.5s var(--ease-out);
}
.theme-demo[data-mode="light"] .tm-chart i { background: linear-gradient(180deg, var(--blue-soft), var(--blue)); }

/* Entnahme */
.ent-chart { width: 100%; height: 110px; margin-top: auto; }
.ent-line { fill: none; stroke: var(--blue); stroke-width: 3; stroke-linecap: round; }
.ent-dot { fill: #fff; stroke: var(--blue); stroke-width: 3; }
.ent-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.8rem; color: var(--light-soft); font-weight: 600;
}
.ent-label b { font-size: 1.05rem; color: var(--light-text); font-variant-numeric: tabular-nums; }

/* KI-Badge */
.ki-badge {
  display: inline-grid; place-items: center; vertical-align: middle;
  margin-left: 8px; padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(120deg, var(--blue), #7c3aed);
  box-shadow: 0 4px 14px -4px rgba(var(--blue-rgb), 0.7);
  transform: translateY(-2px);
}

/* KI-Chat */
.ai-chat {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: auto;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: #f7f8fc;
  border: 1px solid rgba(15, 42, 97, 0.08);
  min-height: 132px;
}
.ai-msg {
  display: inline-flex; align-items: center;
  max-width: 88%;
  padding: 9px 14px;
  border-radius: 14px;
  font-size: 0.84rem; font-weight: 500; line-height: 1.45;
}
.ai-user {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  border-bottom-right-radius: 4px;
  min-height: 2.1em;
}
.ai-bot {
  align-self: flex-start;
  color: var(--light-text);
  background: #fff;
  border: 1px solid rgba(15, 42, 97, 0.1);
  border-bottom-left-radius: 4px;
  min-height: 2.1em;
}
.ai-bot.hidden { opacity: 0; }
.ai-dots { display: none; gap: 4px; }
.ai-bot.thinking .ai-dots { display: inline-flex; }
.ai-dots b {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(15, 42, 97, 0.35);
  animation: dotBounce 1.2s ease-in-out infinite;
}
.ai-dots b:nth-child(2) { animation-delay: 0.15s; }
.ai-dots b:nth-child(3) { animation-delay: 0.3s; }
@keyframes dotBounce { 0%, 60%, 100% { transform: none; } 30% { transform: translateY(-5px); } }
.caret { width: 2px; height: 1.1em; background: rgba(255, 255, 255, 0.9); margin-left: 2px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Kunden-Link (Tour Panel 1) */
.klink {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; margin-bottom: 16px;
  border: 1.5px dashed rgba(var(--blue-rgb), 0.5);
  border-radius: var(--radius-lg);
  background: rgba(var(--blue-rgb), 0.06);
  font-size: 0.85rem; font-weight: 600;
}
.klink i { font-style: normal; font-size: 1rem; }
.klink-url {
  flex: 1; min-width: 0;
  color: var(--blue-soft);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-variant-ligatures: none;
}
.klink em {
  margin-left: auto; flex-shrink: 0;
  font-style: normal; font-size: 0.72rem; font-weight: 700;
  color: var(--green);
}
.pw-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-soft); margin-right: 8px;
  box-shadow: 0 0 8px rgba(var(--blue-rgb), 0.8);
}
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); margin-right: 8px;
  animation: pulse 2s ease-out infinite;
}
.fill-rows { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.fill-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 16px; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
}
.fill-row span { color: rgba(255, 255, 255, 0.5); font-weight: 500; }
.fill-row b { color: #fff; font-weight: 700; opacity: 0; transform: translateY(6px); }
.tcard.in .fill-row b { animation: fillIn 0.5s var(--ease-out) forwards; }
.tcard.in .fill-row:nth-child(1) b { animation-delay: 0.5s; }
.tcard.in .fill-row:nth-child(2) b { animation-delay: 1s; }
.tcard.in .fill-row:nth-child(3) b { animation-delay: 1.5s; }
@keyframes fillIn { to { opacity: 1; transform: none; } }

/* KI-Extraktion (Tour Panel 5) */
.x-row b { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.x-check {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px; border-radius: 50%;
  font-style: normal; font-size: 0.62rem; font-weight: 800;
  background: rgba(61, 220, 132, 0.16); color: var(--green);
  opacity: 0; transform: scale(0.3);
}
.tcard.in .x-check { animation: checkPop 0.45s var(--ease-out) forwards; }
.tcard.in .x-row:nth-child(1) .x-check { animation-delay: 0.5s; }
.tcard.in .x-row:nth-child(2) .x-check { animation-delay: 0.9s; }
.tcard.in .x-row:nth-child(3) .x-check { animation-delay: 1.3s; }
@keyframes checkPop { to { opacity: 1; transform: scale(1); } }

/* KI-Kostenextraktion (Bento, light) */
.b-ki { grid-column: span 2; }
@media (max-width: 1020px) { .b-ki { grid-column: span 2; } }
@media (max-width: 640px) { .b-ki { grid-column: auto; } }
.ki-demo {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 16px; align-items: start; margin-top: auto;
}
@media (max-width: 700px) { .ki-demo { grid-template-columns: 1fr; } }
.ki-upload {
  position: relative;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 16px 18px;
  border: 1.5px dashed rgba(var(--blue-rgb), 0.45);
  border-radius: var(--radius-lg);
  background: rgba(var(--blue-rgb), 0.05);
  font-size: 0.82rem; font-weight: 600; color: var(--light-text);
  overflow: hidden;
}
.ki-upload i { font-style: normal; color: var(--blue); font-size: 1rem; }
.ki-upload em { font-style: normal; font-size: 0.72rem; color: var(--blue-strong); font-weight: 700; margin-left: auto; }
.ki-rows { display: flex; flex-direction: column; gap: 8px; }
.ki-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: var(--radius-md);
  background: #f7f8fc;
  border: 1px solid rgba(15, 42, 97, 0.07);
  font-size: 0.82rem; font-weight: 600; color: var(--light-muted);
}
.ki-row b { display: inline-flex; align-items: center; gap: 8px; color: var(--light-text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.ki-row .x-check { background: rgba(31, 157, 85, 0.14); color: #1f9d55; }
.ki-sum {
  background: rgba(var(--blue-rgb), 0.07);
  border-color: rgba(var(--blue-rgb), 0.28);
  color: var(--light-text);
}
.ki-sum b { color: var(--blue-strong); }
.b-ki.in .x-check { animation: checkPop 0.45s var(--ease-out) forwards; }
.b-ki.in .ki-row:nth-child(1) .x-check { animation-delay: 0.4s; }
.b-ki.in .ki-row:nth-child(2) .x-check { animation-delay: 0.8s; }
.b-ki.in .ki-row:nth-child(3) .x-check { animation-delay: 1.2s; }

/* Profile-Liste */
.profile-list { display: flex; flex-direction: column; gap: 9px; margin-top: auto; }
.prow {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: #f7f8fc;
  border: 1px solid rgba(15, 42, 97, 0.07);
}
.pavatar {
  display: grid; place-items: center; flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 0.7rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
}
.pav-pw { background: linear-gradient(135deg, #0b1f44, #2c4a7c); }
.pname { display: flex; flex-direction: column; min-width: 0; font-size: 0.86rem; font-weight: 700; color: var(--light-text); }
.pname small { font-size: 0.72rem; font-weight: 500; color: var(--light-soft); }
.prow > b { margin-left: auto; color: var(--light-soft); font-weight: 800; }
.prow-pw { border-color: rgba(var(--blue-rgb), 0.3); background: rgba(var(--blue-rgb), 0.05); }
.pw-on { color: #1f9d55 !important; animation: pulse 2.2s ease-out infinite; border-radius: 50%; }

.b-start { grid-column: span 2; justify-content: space-between; background: linear-gradient(160deg, #ffffff 0%, #eef4ff 100%); }
.b-start .btn { align-self: flex-start; }
@media (max-width: 640px) { .b-start { grid-column: auto; } }

/* ── AV-Depot 2027 ─────────────────────────────────────────── */
.avdepot { padding: 150px 0; overflow: clip; }
.av-glow {
  position: absolute; right: -16%; top: 50%;
  width: 880px; height: 880px; border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(var(--blue-rgb), 0.22) 0%, transparent 62%);
  pointer-events: none;
}
.avdepot::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 55% 70% at 78% 50%, black, transparent 80%);
  pointer-events: none;
}
.av-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 90px); align-items: center;
}
@media (max-width: 920px) { .av-layout { grid-template-columns: 1fr; } }
.av-copy .section-sub strong { color: #fff; font-weight: 600; }
.av-facts {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
  margin-top: 38px; max-width: 480px;
}
.av-fact {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--blue-rgb), 0.25);
  background: rgba(var(--blue-rgb), 0.07);
}
.av-fact b {
  display: block;
  font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; color: #fff;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
.av-fact span { font-size: 0.8rem; color: var(--dark-muted); line-height: 1.45; }

.av-count {
  text-align: center;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
  border-radius: 28px;
  border: 1px solid rgba(var(--blue-rgb), 0.3);
  background: linear-gradient(180deg, rgba(18, 30, 54, 0.85) 0%, rgba(8, 16, 32, 0.92) 100%);
  box-shadow: 0 40px 110px -30px rgba(0, 0, 0, 0.8), 0 0 80px -30px rgba(var(--blue-rgb), 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.av-count-label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-soft); margin-bottom: 20px;
}
.countdown {
  display: flex; align-items: flex-start; justify-content: center; gap: 8px;
  margin-bottom: 24px;
}
.countdown i {
  font-style: normal; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  color: rgba(var(--blue-rgb), 0.6); line-height: 1.55;
  animation: blink 2s steps(1) infinite;
}
.cd-box { display: flex; flex-direction: column; gap: 6px; min-width: clamp(58px, 7vw, 86px); }
.cd-box b {
  padding: 12px 6px;
  border-radius: var(--radius-md);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem); font-weight: 800; color: #fff;
  letter-spacing: 0.02em; font-variant-numeric: tabular-nums;
  background: rgba(var(--blue-rgb), 0.12);
  border: 1px solid rgba(var(--blue-rgb), 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.cd-box span {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark-muted);
}
.av-count-sub { font-size: 0.92rem; color: var(--dark-muted); line-height: 1.6; margin-bottom: 26px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { padding: 130px 0; }
.faq-layout {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(36px, 6vw, 90px); align-items: start;
}
@media (max-width: 880px) { .faq-layout { grid-template-columns: 1fr; } }
.faq-head { position: sticky; top: 110px; }
@media (max-width: 880px) { .faq-head { position: static; } }
.faq-mail { color: var(--blue-strong); font-weight: 600; border-bottom: 1px solid rgba(var(--blue-rgb), 0.3); }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(15, 42, 97, 0.08);
  box-shadow: var(--shadow-float);
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: clip;
}
.faq-item.open { border-color: rgba(var(--blue-rgb), 0.35); box-shadow: 0 18px 50px -18px rgba(15, 42, 97, 0.2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: 100%; padding: 20px 24px;
  border: none; background: none; cursor: pointer;
  font-family: var(--font); font-size: 1.02rem; font-weight: 700; text-align: left;
  color: var(--light-text); letter-spacing: -0.01em;
}
.faq-q i {
  position: relative; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(var(--blue-rgb), 0.09);
  transition: background 0.3s, transform 0.45s var(--ease-out);
}
.faq-q i::before, .faq-q i::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 12px; height: 2px; border-radius: 1px;
  background: var(--blue-strong);
  transform: translate(-50%, -50%);
  transition: transform 0.45s var(--ease-out);
}
.faq-q i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-q i { transform: rotate(135deg); background: var(--blue); }
.faq-item.open .faq-q i::before, .faq-item.open .faq-q i::after { background: #fff; }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: 0.95rem; line-height: 1.7; color: var(--light-muted);
}
.faq-a strong { color: var(--light-text); font-weight: 600; }

/* ── Akademie: Stark ab Tag eins ───────────────────────────── */
.akademie {
  padding: 130px 0 150px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(var(--blue-rgb), 0.12) 0%, transparent 60%),
    var(--ink);
}
.aka-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px;
}
@media (max-width: 1020px) { .aka-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .aka-grid { grid-template-columns: 1fr; } }
.aka-card {
  padding: 28px 26px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(18, 30, 54, 0.7) 0%, rgba(8, 16, 32, 0.85) 100%);
  transition: border-color 0.35s, box-shadow 0.35s;
  transform-style: preserve-3d; will-change: transform;
}
.aka-card:hover {
  border-color: rgba(var(--blue-rgb), 0.45);
  box-shadow: 0 24px 70px -24px rgba(var(--blue-rgb), 0.45);
}
.aka-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px; margin-bottom: 18px;
  border-radius: 14px;
  color: var(--blue-soft);
  background: rgba(var(--blue-rgb), 0.12);
  border: 1px solid rgba(var(--blue-rgb), 0.3);
}
.aka-icon svg { width: 24px; height: 24px; }
.aka-card h3 { font-size: 1.08rem; color: #fff; margin-bottom: 10px; letter-spacing: -0.015em; }
.aka-card p { font-size: 0.88rem; color: var(--dark-muted); line-height: 1.6; }
.aka-foot {
  margin-top: 36px; text-align: center;
  font-size: 0.95rem; color: var(--dark-muted);
}
.aka-foot strong { color: #fff; font-weight: 600; }

/* ── Testimonials ──────────────────────────────────────────── */
.stimmen { padding: 110px 0 140px; background:
  radial-gradient(circle farthest-corner at 50% 160%,
    #FDFCFC 0%, #FDFCFC 70%, #eef4ff 84%, #dce8ff 94%, #cfe0ff 100%); }
.g-badge {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: fit-content; margin: 8px auto 0;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid rgba(15, 42, 97, 0.1);
  box-shadow: var(--shadow-float);
  font-size: 0.92rem; color: var(--light-muted); font-weight: 500;
}
.g-badge svg { width: 20px; height: 20px; }
.g-badge strong { color: var(--light-text); font-weight: 800; }
.quotes-rail { margin-top: 56px; overflow: visible; }
.quotes-track {
  display: flex; gap: 22px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  will-change: transform;
}
.quote {
  flex: 0 0 min(380px, 82vw);
  margin: 0;
  padding: 32px 30px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(15, 42, 97, 0.08);
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d; will-change: transform;
}
.quote-stars { color: #ffb01f; letter-spacing: 3px; font-size: 0.9rem; }
.quote blockquote {
  margin: 16px 0 22px;
  font-size: 1.08rem; font-weight: 500; line-height: 1.55;
  color: var(--light-text); letter-spacing: -0.01em;
}
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote figcaption strong { font-size: 0.95rem; }
.quote figcaption span { font-size: 0.82rem; color: var(--light-soft); }

/* ── Final CTA ─────────────────────────────────────────────── */
.cta {
  position: relative;
  padding: 200px 0 190px;
  text-align: center;
  overflow: clip;
}
.cta-beam {
  position: absolute; left: 50%; top: -40%;
  width: 1100px; height: 1100px;
  transform: translateX(-50%);
  background: radial-gradient(circle,
    rgba(var(--blue-rgb), 0.3) 0%,
    rgba(var(--blue-rgb), 0.08) 42%,
    transparent 68%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  position: relative;
  font-size: clamp(2.8rem, 8.4vw, 6.4rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.04;
  margin-bottom: 26px;
}
.spot-base { color: rgba(241, 245, 249, 0.25); }
.spot-glow {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, #ffffff 10%, var(--blue-soft) 50%, #ffffff 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-mask-image: radial-gradient(240px circle at var(--mx, 50%) var(--my, 40%), black 30%, transparent 100%);
  mask-image: radial-gradient(240px circle at var(--mx, 50%) var(--my, 40%), black 30%, transparent 100%);
  pointer-events: none;
}
.cta-sub { font-size: 1.1rem; color: var(--dark-muted); margin-bottom: 42px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.price-pill {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 34px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(var(--blue-rgb), 0.55);
  background: rgba(var(--blue-rgb), 0.1);
  backdrop-filter: blur(8px);
  font-size: 1rem; font-weight: 600; color: var(--dark-muted);
  box-shadow: 0 10px 40px -12px rgba(var(--blue-rgb), 0.5);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.price-pill b {
  font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em;
  background: linear-gradient(100deg, #ffffff 0%, var(--blue-soft) 60%, #8ab5ff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.pp-strike { font-size: 0.85rem; text-decoration: line-through; opacity: 0.6; }
.price-pill svg { width: 15px; height: 15px; color: var(--blue-soft); transition: transform 0.3s var(--ease-out); }
.price-pill:hover {
  border-color: rgba(var(--blue-rgb), 0.9);
  background: rgba(var(--blue-rgb), 0.16);
  box-shadow: 0 16px 54px -12px rgba(var(--blue-rgb), 0.75);
  transform: translateY(-2px);
}
.price-pill:hover svg { transform: translateX(4px); }
.cta-mini {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  margin-top: 38px;
  font-size: 0.85rem; font-weight: 600; color: var(--dark-muted);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #02060d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 0 36px;
  color: var(--dark-muted);
}
.footer-seo {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-seo h2 {
  font-size: 1.05rem; font-weight: 700; color: rgba(255, 255, 255, 0.75);
  margin-bottom: 26px; letter-spacing: -0.01em;
}
.footer-seo-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 880px) { .footer-seo-cols { grid-template-columns: 1fr; } }
.footer-seo h3 {
  font-size: 0.85rem; font-weight: 700; color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}
.footer-seo p { font-size: 0.82rem; line-height: 1.7; color: rgba(174, 190, 214, 0.55); }
.footer-inner {
  display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo img { width: 150px; height: auto; }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; max-width: 280px; }
.footer-links { display: flex; gap: clamp(36px, 6vw, 90px); flex-wrap: wrap; }
.footer-links h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45); margin-bottom: 16px;
}
.footer-links a {
  display: block; padding: 5px 0;
  font-size: 0.92rem; color: var(--dark-muted);
  transition: color 0.25s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 28px;
  font-size: 0.8rem; color: rgba(174, 190, 214, 0.45);
}

/* ── Reveal helpers ────────────────────────────────────────── */
.reveal-up { opacity: 0; transform: translateY(36px); }
html.no-motion .reveal-up { opacity: 1; transform: none; }

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; }
  .preloader { display: none !important; }
  .tcard .gap-bar, .tcard .trank-track i { width: calc(var(--w) * 1%); }
  .spot-glow { -webkit-mask-image: none; mask-image: none; }
}
