/* ============================================================
   KAISERWETTEN — Landing Page
   Dark mode · Blau auf Schwarz · "Tippkaiser"
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Backgrounds */
  --bg:        #070a0f;
  --bg-2:      #0b0f16;
  --surface:   #111824;
  --surface-2: #18212f;
  --line:      rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Blue brand scale (ever-darkening "staircase") */
  --blue-50:  #7cc4ff;
  --blue:     #2e9bf5;   /* primary */
  --blue-2:   #1f7fe0;
  --blue-3:   #1763b8;
  --blue-4:   #114c8f;
  --blue-glow: rgba(46, 155, 245, 0.45);

  /* Step staircase colors (Step 0 -> Step 3) */
  --step-0: #5bb4ff;
  --step-1: #2e9bf5;
  --step-2: #1e6fcc;
  --step-3: #134a8e;

  /* Result greens */
  --green-light-bg: #b9f7c3;
  --green-light-tx: #06230d;
  --green-dark-bg:  #0f7a35;
  --green-dark-tx:  #ffffff;
  --green-accent:   #3ad06a;

  /* Text */
  --text:   #eaf1f8;
  --muted:  #93a2b6;
  --muted-2:#6f7e92;
  --red:    #ff5252;

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --pad-x: clamp(18px, 5vw, 48px);

  --ff-display: 'Sora', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.08; letter-spacing: -0.01em; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-50);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; }
.h-sub { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.12rem); max-width: 56ch; }
.center { text-align: center; margin-inline: auto; }
.text-grad {
  background: linear-gradient(120deg, #fff 0%, var(--blue-50) 55%, var(--blue) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(180deg, var(--blue-50), var(--blue));
  color: #04101f; box-shadow: 0 10px 30px -10px var(--blue-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px var(--blue-glow); }
.btn-ghost {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--blue); background: var(--surface-2); }
.btn-dark {
  background: #05070b; color: #fff; border: 1px solid var(--line-strong);
}
.btn-dark:hover { transform: translateY(-2px); border-color: var(--blue); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 88%, transparent); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--ff-display); font-weight: 800; letter-spacing: 0.02em; }
.brand .crown { width: 34px; height: 34px; flex: none; filter: drop-shadow(0 4px 12px var(--blue-glow)); }
.brand .word { font-size: 1.18rem; }
.brand .word b { color: var(--blue-50); font-weight: 800; }
.brand .word span { color: #fff; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 0.94rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-only-mobile { display: none; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-strong); background: var(--surface); flex: none; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; margin: 4px auto; border-radius: 2px; transition: .25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(40px, 6vw, 70px); overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.hero-bg::before {
  content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; max-width: 130vw;
  background: radial-gradient(circle, rgba(46,155,245,0.20), transparent 62%);
}
.hero-bg .grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 70%);
  opacity: 0.5;
}
.hero h1 { font-size: clamp(2.3rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.025em; }
.hero h1 .ln { display: block; }
.hero p.lead { margin-top: 20px; font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: var(--muted); max-width: 48ch; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 22px 30px; align-items: center; }
.hero-trust .ht { display: flex; flex-direction: column; }
.hero-trust .ht b { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 800; color: #fff; }
.hero-trust .ht span { font-size: 0.82rem; color: var(--muted-2); letter-spacing: .02em; }
.hero-trust .divider { width: 1px; height: 34px; background: var(--line-strong); }

/* Winning screens cluster */
.winscreens { position: relative; min-height: 380px; }
.slip {
  position: absolute; width: 248px; background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: 18px; padding: 16px 16px 14px; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.8);
}
.slip .slip-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.slip .bk { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--muted); }
.slip .bk i { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, var(--blue), var(--blue-3)); display: grid; place-items: center; font-style: normal; font-weight: 800; font-size: .7rem; color: #fff; }
.slip .won { font-size: 0.72rem; font-weight: 700; letter-spacing: .08em; color: var(--green-accent); display: inline-flex; align-items: center; gap: 5px; }
.slip .won::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-accent); box-shadow: 0 0 10px var(--green-accent); }
.slip .leg { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-top: 1px dashed var(--line); font-size: 0.84rem; }
.slip .leg:first-of-type { border-top: 0; }
.slip .leg .t { color: #cdd8e6; }
.slip .leg .o { font-family: var(--ff-display); font-weight: 700; color: #fff; }
.slip .slip-foot { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-end; }
.slip .slip-foot .lbl { font-size: 0.72rem; color: var(--muted-2); }
.slip .slip-foot .pay { font-family: var(--ff-display); font-weight: 800; font-size: 1.15rem; color: var(--green-accent); }
.slip.s1 { top: 8px; left: 6%; transform: rotate(-6deg); z-index: 3; }
.slip.s2 { top: 92px; right: 2%; transform: rotate(5deg); z-index: 2; }
.slip.s3 { bottom: 0; left: 22%; transform: rotate(-2deg); z-index: 4; }
.win-badge {
  position: absolute; z-index: 5; right: 8%; top: -6px;
  background: linear-gradient(180deg, var(--green-accent), var(--green-dark-bg));
  color: #fff; font-family: var(--ff-display); font-weight: 800; font-size: .82rem;
  padding: 8px 14px; border-radius: 999px; box-shadow: 0 12px 30px -8px rgba(58,208,106,.6);
  transform: rotate(7deg);
}

/* Logo strip / marquee */
.marquee { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.marquee .track { display: flex; gap: 56px; align-items: center; padding: 18px 0; width: max-content; animation: scrollx 26s linear infinite; }
.marquee .track span { font-family: var(--ff-display); font-weight: 700; color: var(--muted-2); font-size: 0.96rem; letter-spacing: .04em; white-space: nowrap; opacity: .8; }
.marquee .track span::after { content: "•"; margin-left: 56px; color: var(--blue-4); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   STEPS (path / staircase)
   ============================================================ */
.steps-head { display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.steps { margin-top: 56px; display: flex; flex-direction: column; gap: clamp(20px, 3vw, 36px); position: relative; }
.step {
  --c: var(--blue);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 56px);
  align-items: center;
}
.step:nth-child(even) .step-visual { order: -1; }
.step-body { display: flex; flex-direction: column; gap: 14px; }
.step-num {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-display); font-weight: 700; font-size: 0.82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c);
}
.step-num .dot {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  display: grid; place-items: center; font-size: 1.05rem; font-weight: 800; color: #fff;
  background: linear-gradient(160deg, color-mix(in srgb, var(--c) 85%, #fff 0%), color-mix(in srgb, var(--c) 60%, #000));
  box-shadow: 0 10px 26px -10px var(--c), inset 0 1px 0 rgba(255,255,255,.25);
  border: 1px solid color-mix(in srgb, var(--c) 60%, #fff);
}
.step-body h3 { font-size: clamp(1.5rem, 3vw, 2.05rem); font-weight: 800; }
.step-body p { color: var(--muted); max-width: 46ch; }
.step-feats { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.step-feats li { display: flex; align-items: center; gap: 11px; color: #d3deec; font-size: 0.96rem; }
.step-feats li svg { width: 20px; height: 20px; flex: none; color: var(--c); }
.step-cta { margin-top: 8px; }
.step-cta a { display: inline-flex; align-items: center; gap: 8px; color: var(--c); font-weight: 600; font-family: var(--ff-display); font-size: .96rem; }
.step-cta a svg { width: 16px; height: 16px; transition: transform .2s; }
.step-cta a:hover svg { transform: translateX(4px); }

.step-visual {
  position: relative; border-radius: var(--radius-lg); min-height: 240px; overflow: hidden;
  border: 1px solid var(--line); background:
    radial-gradient(120% 120% at 80% 0%, color-mix(in srgb, var(--c) 30%, transparent), transparent 55%),
    var(--surface);
  display: grid; place-items: center; padding: 26px;
}
.step-visual .ghost-num {
  position: absolute; right: -8px; bottom: -28px; font-family: var(--ff-display); font-weight: 800;
  font-size: 12rem; line-height: 1; color: color-mix(in srgb, var(--c) 22%, transparent); pointer-events: none;
}
.step-visual .v-card {
  position: relative; z-index: 2; width: 100%; background: rgba(8,12,18,.62); border: 1px solid var(--line-strong);
  border-radius: 16px; padding: 20px; backdrop-filter: blur(6px);
}
.step-visual .v-card .vc-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 22%, transparent); color: var(--c); margin-bottom: 14px; }
.step-visual .v-card .vc-icon svg { width: 24px; height: 24px; }
.step-visual .v-card h4 { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.step-visual .v-card p { font-size: .9rem; color: var(--muted); }
.step-visual .vc-meta { display: flex; gap: 16px; margin-top: 14px; }
.step-visual .vc-meta div b { font-family: var(--ff-display); font-size: 1.2rem; color: #fff; display: block; }
.step-visual .vc-meta div span { font-size: .76rem; color: var(--muted-2); }

/* ============================================================
   RESULTATE (VS comparison)
   ============================================================ */
.results { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.results-head { text-align: center; margin-bottom: 54px; }
.results-head h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; display: inline-block; }
.results-head h2 .ul { position: relative; }
.results-head h2 .ul::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--blue-50), var(--blue-3));
}
.vs-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px, 3vw, 30px); align-items: stretch; }
.res-box {
  background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; gap: 16px;
}
.res-box .rb-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.3rem, 2.6vw, 1.7rem); text-align: center; }
.res-box .rb-sub { text-align: center; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-top: -8px; }
.res-box ul { display: flex; flex-direction: column; gap: 12px; }
.res-box ul li { display: flex; gap: 11px; color: #d6e0ee; font-size: 0.98rem; line-height: 1.45; }
.res-box ul li svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--blue-50); }
.res-box ul li b { color: #fff; }
.res-box ul li.sub-li { margin-left: 30px; font-size: .92rem; color: var(--muted); }
.res-box .spacer { flex: 1; }
.eh-pill {
  align-self: center; margin-top: 6px;
  font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.9rem);
  padding: 14px 30px; border-radius: 14px; letter-spacing: .01em; text-align: center;
}
.eh-pill small { display: block; font-size: .55em; font-weight: 700; letter-spacing: .1em; opacity: .8; }
.eh-light { background: var(--green-light-bg); color: var(--green-light-tx); }
.eh-dark  { background: var(--green-dark-bg);  color: var(--green-dark-tx); box-shadow: 0 14px 36px -14px rgba(15,122,53,.7); }
.res-box.highlight { border-color: color-mix(in srgb, var(--green-dark-bg) 60%, transparent); }

.vs-mid { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; min-width: 96px; }
.vs-badge {
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 800; font-size: 1.4rem; color: #fff;
  background: radial-gradient(circle at 30% 25%, var(--surface-2), #05070b);
  border: 1.5px solid var(--line-strong); box-shadow: 0 0 0 6px rgba(46,155,245,.06), 0 18px 40px -16px rgba(0,0,0,.9);
}
.vs-arrow {
  display: inline-flex; align-items: center; gap: 8px; background: #05070b; color: var(--blue-50);
  font-family: var(--ff-display); font-weight: 800; font-size: .9rem; padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line-strong);
}
.vs-arrow svg { width: 18px; height: 18px; }
.results-foot { text-align: center; margin-top: 38px; color: var(--muted); font-size: .92rem; }

/* ============================================================
   WARUM KAISERWETTEN (4 blocks, statistics)
   ============================================================ */
.why-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, border-color .2s, background .2s; position: relative; overflow: hidden;
}
.why-card::after { content:""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--blue), transparent); opacity: .6; }
.why-card:hover { transform: translateY(-5px); border-color: var(--blue); background: var(--surface-2); }
.why-card .wc-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(46,155,245,.14); color: var(--blue-50); }
.why-card .wc-ico svg { width: 24px; height: 24px; }
.why-card .stat { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.2rem); color: #fff; line-height: 1; }
.why-card .stat span { color: var(--blue-50); }
.why-card h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.04rem; }
.why-card p { font-size: .9rem; color: var(--muted); }

/* ============================================================
   SLIDESHOW (4 steps quick CTAs)
   ============================================================ */
.slideshow { background: var(--bg-2); }
.slider { margin-top: 44px; position: relative; }
.slider-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.slider-track { display: flex; transition: transform .55s cubic-bezier(.4,.1,.2,1); }
.slide { min-width: 100%; padding: 4px; }
.slide-inner {
  --c: var(--blue);
  position: relative; border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 60px);
  background:
    radial-gradient(110% 130% at 88% 0%, color-mix(in srgb, var(--c) 36%, transparent), transparent 52%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-strong);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center; min-height: 280px;
}
.slide-inner .s-step { font-family: var(--ff-display); font-weight: 800; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--c); }
.slide-inner h3 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; margin: 12px 0 14px; }
.slide-inner p { color: var(--muted); max-width: 44ch; }
.slide-inner .s-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.slide-inner .s-big {
  font-family: var(--ff-display); font-weight: 800; font-size: clamp(5rem, 13vw, 9rem); line-height: .8;
  color: color-mix(in srgb, var(--c) 60%, transparent); text-align: right; justify-self: end;
}
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 26px; }
.slider-dots { display: flex; gap: 9px; }
.slider-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); transition: .25s; }
.slider-dots button.active { background: var(--blue); width: 30px; border-radius: 6px; }
.slider-arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); background: var(--surface); display: grid; place-items: center; transition: .2s; }
.slider-arrow:hover { border-color: var(--blue); background: var(--surface-2); }
.slider-arrow svg { width: 20px; height: 20px; color: #fff; }

/* ============================================================
   TESTIMONIALS (iPhone slide)
   ============================================================ */
.testi { background: var(--bg); }
.testi-row { margin-top: 48px; display: flex; gap: 26px; overflow-x: auto; padding: 8px 4px 26px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.testi-row::-webkit-scrollbar { height: 8px; }
.testi-row::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 8px; }
.phone {
  flex: none; width: 256px; scroll-snap-align: center;
  background: #05070b; border: 8px solid #161d28; border-radius: 38px; padding: 0;
  box-shadow: 0 40px 70px -30px rgba(0,0,0,.9); overflow: hidden;
}
.phone .notch { height: 26px; display: grid; place-items: center; }
.phone .notch::after { content: ""; width: 90px; height: 7px; border-radius: 99px; background: #161d28; }
.phone .screen { background: linear-gradient(180deg, #0b0f16, #0e1420); padding: 14px 14px 20px; min-height: 360px; }
.phone .chat-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.phone .chat-head .av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-3)); display: grid; place-items: center; font-weight: 800; color: #fff; font-size: .9rem; font-family: var(--ff-display); }
.phone .chat-head .nm { font-weight: 700; font-size: .9rem; }
.phone .chat-head .st { font-size: .72rem; color: var(--green-accent); }
.bubble { background: var(--surface-2); padding: 10px 13px; border-radius: 14px 14px 14px 4px; font-size: .86rem; color: #e6eef8; margin-bottom: 10px; max-width: 88%; line-height: 1.4; }
.bubble.me { background: linear-gradient(135deg, var(--blue-2), var(--blue-3)); color: #fff; margin-left: auto; border-radius: 14px 14px 4px 14px; }
.bubble .tm { display: block; font-size: .66rem; opacity: .6; margin-top: 4px; text-align: right; }
.testi-stars { color: #ffc63d; letter-spacing: 2px; font-size: .8rem; margin-top: 4px; }

/* ============================================================
   COACHING COURSE
   ============================================================ */
.course { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.course-intro { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.course-intro h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 18px; }
.course-intro p { color: var(--muted); font-size: clamp(1.02rem, 1.7vw, 1.16rem); }
.course-parts { display: inline-flex; gap: 10px; margin-bottom: 30px; padding: 6px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; }
.course-parts span { font-family: var(--ff-display); font-weight: 700; font-size: .84rem; padding: 8px 18px; border-radius: 999px; color: var(--muted); }
.course-parts span.a { background: var(--blue); color: #04101f; }
.course-parts span.b { background: var(--surface-2); color: var(--blue-50); }

.cstep { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 22px; }
.cstep-head {
  background: linear-gradient(100deg, #05070b 40%, color-mix(in srgb, var(--blue) 18%, #05070b));
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3vw, 32px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center;
}
.cstep-head .ch-left { display: flex; flex-direction: column; gap: 12px; }
.cstep-head .ch-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--blue-50); letter-spacing: .01em; }
.cstep-head .ch-title small { display: block; color: var(--muted-2); font-size: .7rem; letter-spacing: .2em; font-weight: 700; }
.cprog { display: flex; align-items: center; gap: 12px; }
.cprog .bar { flex: 1; height: 12px; background: rgba(255,255,255,.08); border-radius: 99px; overflow: hidden; max-width: 220px; }
.cprog .bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--blue-50), var(--blue)); }
.cprog .lbl { font-family: var(--ff-display); font-weight: 700; font-size: .8rem; color: #fff; }
.cstep-head .ch-desc { color: #cdd8e6; font-size: .96rem; line-height: 1.5; }
.cstep-head .ch-desc b { color: #fff; }
.cstep-body { padding: clamp(22px, 3vw, 30px); }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 22px; }
.check-grid li { display: flex; align-items: flex-start; gap: 11px; font-size: .96rem; color: #d6e0ee; }
.check-grid li .ck { width: 26px; height: 26px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--blue); color: #04101f; }
.check-grid li .ck svg { width: 15px; height: 15px; }
.check-grid li b { color: #fff; }
.check-grid.numbered li .ck { background: var(--surface-2); color: var(--blue-50); border: 1px solid var(--blue); font-family: var(--ff-display); font-weight: 800; font-size: .82rem; }

/* Final block (clearly separated) */
.join-sep { display: flex; align-items: center; gap: 18px; margin: 60px 0 40px; }
.join-sep::before, .join-sep::after { content: ""; flex: 1; height: 1px; background: var(--line-strong); }
.join-sep span { font-family: var(--ff-display); font-weight: 700; letter-spacing: .2em; font-size: .78rem; color: var(--muted-2); text-transform: uppercase; }
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.join-card { border-radius: var(--radius); padding: clamp(26px, 3.5vw, 40px); display: flex; flex-direction: column; }
.join-talk { background: var(--surface); border: 1px solid var(--line-strong); }
.join-talk .jt-head { background: #05070b; color: var(--blue-50); font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.2rem, 2.4vw, 1.55rem); padding: 16px 22px; border-radius: 12px; text-align: center; margin-bottom: 22px; }
.join-talk p { color: var(--muted); font-size: .98rem; margin-bottom: 14px; }
.join-talk .btn { margin-top: auto; }
.join-buy { background: radial-gradient(120% 120% at 50% 0%, color-mix(in srgb, var(--blue) 16%, var(--surface)), var(--surface)); border: 1.5px solid var(--blue-3); text-align: center; }
.join-buy h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 20px; }
.price-box { background: var(--blue); border-radius: 14px; padding: 18px; display: flex; align-items: baseline; justify-content: center; gap: 16px; margin-bottom: 18px; box-shadow: 0 16px 40px -16px var(--blue-glow); }
.price-box .old { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.7rem, 4.5vw, 2.7rem); color: #04101f; text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 4px; opacity: 1; }
.price-box .old i { display: block; font-style: normal; font-size: .42em; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; opacity: .75; }
.price-box .new { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.2rem, 6vw, 3.4rem); color: #fff; line-height: 1; }
.price-box .new sup { font-size: .4em; vertical-align: super; }
.join-buy .save { display: inline-block; background: var(--green-dark-bg); color: #fff; font-weight: 700; font-size: .8rem; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; font-family: var(--ff-display); }
.join-buy p { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.join-buy .btn { margin-top: auto; }

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about { background: #04060a; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.about-text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 14px; font-size: 1.02rem; }
.about-text p b { color: #fff; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.about-stat b { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--blue-50); display: block; line-height: 1; }
.about-stat span { color: var(--muted); font-size: .9rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final { text-align: center; background: radial-gradient(120% 130% at 50% 0%, rgba(46,155,245,.18), transparent 60%), var(--bg); }
.cta-final h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; max-width: 18ch; margin: 0 auto 18px; }
.cta-final p { color: var(--muted); max-width: 50ch; margin: 0 auto 30px; }
.cta-final .hero-actions { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: 50px 34px; }
.footer-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.footer .brand { margin-bottom: 14px; }
.footer-col h5 { font-family: var(--ff-display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: .92rem; padding: 4px 0; }
.footer-col a:hover { color: #fff; }
.footer-cols { display: flex; gap: clamp(30px, 6vw, 80px); flex-wrap: wrap; }
.footer-about { max-width: 280px; color: var(--muted); font-size: .92rem; }
.responsible { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; margin: 24px 0; }
.responsible .age { font-family: var(--ff-display); font-weight: 800; background: var(--red); color: #fff; padding: 4px 9px; border-radius: 8px; font-size: .8rem; flex: none; }
.responsible p { font-size: .82rem; color: var(--muted); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; color: var(--muted-2); font-size: .82rem; }

/* ============================================================
   REVEAL animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .marquee .track { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-primary { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 18px var(--pad-x) 26px; gap: 6px; align-items: stretch;
  }
  .nav.open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav.open .nav-links .nav-only-mobile { display: inline-flex; justify-content: center; border-bottom: 0; padding: 15px 20px; margin-top: 14px; color: #04101f; font-weight: 600; }
  .hero-grid { grid-template-columns: 1fr; }
  .winscreens { min-height: 340px; max-width: 420px; margin-inline: auto; order: -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-inner { grid-template-columns: 1fr; }
  .slide-inner .s-big { display: none; }
  .cstep-head { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .step { grid-template-columns: 1fr; }
  .step:nth-child(even) .step-visual { order: 0; }
  .step-visual { min-height: 200px; }
  /* VS comparison stacks — fixes "rutscht nach rechts" */
  .vs-grid { grid-template-columns: 1fr; }
  .vs-mid { flex-direction: row; min-width: auto; padding: 6px 0; }
  .vs-arrow svg { transform: rotate(90deg); }
  .join-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-trust .divider { display: none; }
}

@media (max-width: 980px) {
  /* Winning screens become a clean, centered stack — no bleed off the edges (covers full tablet range) */
  .winscreens { display: flex; flex-direction: column; align-items: center; gap: 14px; min-height: auto; max-width: 340px; margin-inline: auto; overflow: clip; }
  .winscreens .slip { position: relative; inset: auto; top: auto; left: auto; right: auto; bottom: auto; transform: none; width: 100%; }
  .winscreens .slip.s2 { display: none; }
  .win-badge { position: static; transform: none; align-self: center; margin-bottom: 2px; }
}

@media (max-width: 460px) {
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
