/* ---------------------------------------------------------------------
     Dunkles Premium-Theme nach Backblaze-Vorbild: tiefes Navy, weiße
     Bold-Headlines, rote Primär-CTAs, Karten mit feinen hellen Rändern,
     Eyebrow-Labels in Caps, großzügige Sektions-Abstände.
     --------------------------------------------------------------------- */
  :root {
    --bg: #0A0E23;
    --bg-soft: #0E1330;
    --bg-deep: #070A18;
    --card: rgba(255,255,255,0.03);
    --card-strong: rgba(255,255,255,0.05);
    --line: rgba(255,255,255,0.09);
    --line-strong: rgba(255,255,255,0.16);
    --white: #FFFFFF;
    --body: #A9B1C6;
    --muted: #7A829B;
    --red: #E4372E;
    --red-hover: #C92C24;
    --red-soft: rgba(228,55,46,0.12);
    --amber: #FFB400;
    --green: #2FBF71;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow-card: 0 8px 30px rgba(0,0,0,0.35);
  }
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  /* Anker-Sprünge dürfen nicht unter der Sticky-Nav verschwinden */
  section[id], [id="stape"], [id="data"] { scroll-margin-top: 76px; }
  body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    color: var(--body);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  a { color: var(--white); text-decoration: none; }
  h1, h2, h3, h4 { color: var(--white); line-height: 1.12; letter-spacing: -0.02em; margin: 0; font-weight: 700; }
  p { margin: 0; }
  code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.9em;
    background: rgba(255,255,255,0.08); border-radius: 4px; padding: 1px 6px; color: #E6EDF6;
  }

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

  /* ---------- Navigation ---------- */
  nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10,14,35,0.82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line);
  }
  /* Brand links, Link-Gruppe absolut zentriert, CTA rechts. */
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 14px; position: relative; }
  .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--white); letter-spacing: -0.01em; }
  .brand-logo {
    width: 30px; height: 30px; border-radius: 7px;
    background: var(--red);
    display: inline-flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 15px;
  }
  .nav-links {
    display: flex; gap: 30px; align-items: center; font-size: 17.5px; font-weight: 500;
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  }
  .mobile-cta { display: none; }
  .nav-links a { color: var(--body); white-space: nowrap; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--red); color: #fff !important; font-weight: 600;
    padding: 9px 18px; border-radius: 6px; transition: background .15s ease;
  }
  .nav-cta:hover { background: var(--red-hover); }
  .nav-toggle { display: none; }
  .nav-burger { display: none; cursor: pointer; width: 26px; height: 20px; position: relative; }
  .nav-burger span, .nav-burger::before, .nav-burger::after {
    content: ''; position: absolute; left: 0; width: 100%; height: 2px;
    background: var(--white); border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
  }
  .nav-burger::before { top: 0; } .nav-burger span { top: 9px; } .nav-burger::after { top: 18px; }

  /* ---------- Buttons ---------- */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--red); color: #fff; font-weight: 600; font-size: 15px;
    padding: 14px 28px; border-radius: 6px;
    box-shadow: 0 6px 22px rgba(228,55,46,0.32);
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  }
  .btn-primary:hover {
    background: var(--red-hover); color: #fff; transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(228,55,46,0.42);
  }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 9px;
    color: var(--white); font-weight: 600; font-size: 15px;
    padding: 13px 26px; border-radius: 6px;
    border: 1px solid var(--line-strong);
    transition: border-color .15s ease, background .15s ease;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }

  /* ---------- Eyebrows & Sektionen ---------- */
  .eyebrow {
    display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--red); margin-bottom: 16px;
  }
  .eyebrow.on-dark { color: #FF6B63; }
  .section { padding: 96px 0; }
  .section.tint { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .section-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 18px; }
  .section-lead { font-size: 17px; color: var(--body); max-width: 720px; margin-bottom: 48px; }
  .section-center { text-align: center; max-width: 780px; margin: 0 auto 48px; }
  .section-center .section-lead { margin-left: auto; margin-right: auto; margin-bottom: 0; }
  .section-center:last-child { margin-bottom: 0; }

  /* ---------- Hero ---------- */
  .hero { padding: 100px 0 64px; text-align: center; position: relative; overflow: hidden; }
  .hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(600px 320px at 50% -60px, rgba(228,55,46,0.16), transparent 70%),
      radial-gradient(900px 500px at 85% 10%, rgba(64,86,255,0.10), transparent 70%);
  }
  .hero > .container { position: relative; }
  .hero-eyebrow {
    display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: #FF8A84; background: var(--red-soft);
    border: 1px solid rgba(228,55,46,0.35); border-radius: 999px;
    padding: 7px 16px; margin-bottom: 26px;
  }
  .hero-title { font-size: clamp(34px, 5.5vw, 58px); max-width: 900px; margin: 0 auto 22px; }
  .hero-title .accent { color: var(--red); }
  .hero-sub { font-size: 18px; color: var(--body); max-width: 720px; margin: 0 auto 26px; }
  .hero-hook { font-size: 16.5px; font-weight: 600; color: var(--white); margin: 0 auto 28px; }
  .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .trust-strip {
    display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
    margin-top: 42px; font-size: 13.5px; color: var(--muted); font-weight: 500;
  }
  .trust-strip div { display: flex; align-items: center; gap: 7px; }
  .trust-strip svg { color: var(--green); flex: none; }

  /* ---------- Plattform-Leiste (Logo-Wall) ---------- */
  .platforms { padding: 26px 0 64px; }
  .platforms-label {
    text-align: center; font-size: 14.5px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 22px;
  }
  .platforms-row { display: flex; gap: 12px 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
  .platforms-row span {
    font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; color: #8A93AF;
    border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px;
    background: var(--card); white-space: nowrap;
    transition: color .15s ease, border-color .15s ease;
  }
  .platforms-row span:hover { color: #D6DCEA; border-color: var(--line-strong); }
  /* Plattform-Icons vor dem Namen (inline-SVG; Größe/Abstand als Klasse wegen
     strikter CSP — kein inline-style). */
  .platforms-row span { display: inline-flex; align-items: center; gap: 8px; }
  /* .pf-ic ist ein verschachteltes span → wird sonst von „.platforms-row span"
     als Pill gestylt (Rahmen/Padding/BG). Hier zurücksetzen. */
  .platforms-row span .pf-ic {
    width: 18px; height: 18px; display: inline-flex; flex: 0 0 auto;
    border: 0; padding: 0; margin: 0; background: none; border-radius: 0;
  }
  .platforms-row span .pf-ic svg { width: 100%; height: 100%; display: block; }
  /* Abstand über der zweiten Label-Zeile (Quellen). Als Klasse statt Inline-
     style, weil die strikte CSP (style-src 'self') Inline-style-Attribute
     blockiert. */
  .platforms-label-recv { margin-top: 56px; }
  .platforms-row--data { justify-content: flex-start; margin: -28px 0 40px; }

  /* ---------- Problem-Karten ---------- */
  .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 30px 28px; transition: border-color .2s ease, background .2s ease, transform .2s ease;
  }
  .card:hover { border-color: var(--line-strong); background: var(--card-strong); transform: translateY(-3px); }
  @media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }
  .card h3 { font-size: 19px; margin-bottom: 12px; }
  .card p { font-size: 15px; color: var(--body); }
  .card p strong { color: #DEE4F2; }
  .pain-num { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--red); margin-bottom: 14px; }

  /* ---------- Lösung / Outcomes ---------- */
  .outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .outcome-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
  .outcome-list li { display: flex; gap: 15px; align-items: flex-start; }
  .outcome-icon {
    flex: none; width: 30px; height: 30px; border-radius: 8px;
    background: var(--red-soft); color: #FF7B73;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .outcome-text { display: flex; flex-direction: column; gap: 4px; }
  .outcome-text strong { color: var(--white); font-size: 16px; font-weight: 600; }
  .outcome-text span { font-size: 14.5px; color: var(--body); }
  .outcome-side { display: flex; flex-direction: column; gap: 30px; }
  .outcome-visual {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 28px; box-shadow: var(--shadow-card);
  }
  .outcome-visual h3 { font-size: 16px; margin-bottom: 20px; }
  .lift-row { display: flex; flex-direction: column; gap: 16px; }
  .lift-label { font-size: 13px; color: var(--muted); font-weight: 600; display: block; margin-bottom: 6px; }
  .lift-bar { background: rgba(255,255,255,0.07); border-radius: 6px; height: 34px; overflow: hidden; }
  .lift-bar-fill {
    height: 100%; width: 0; border-radius: 6px;
    background: linear-gradient(90deg, var(--red) 0%, #FF6B4A 100%);
    color: #fff; font-weight: 700; font-size: 13.5px;
    display: flex; align-items: center; justify-content: flex-end; padding-right: 12px;
    transition: width 1.1s cubic-bezier(.22,.61,.36,1);
    min-width: 52px;
  }
  .lift-bar-fill.alt { background: rgba(255,255,255,0.22); }
  .lift-source-label { margin-top: 18px; font-size: 12.5px; color: var(--muted); line-height: 1.5; }

  /* ---------- Stats-Strip ---------- */
  .stats { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 64px 0; }
  .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
  .stat-num {
    font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px;
    background: linear-gradient(180deg, #FFFFFF 30%, #FF9A94 130%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .stat-label { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

  /* ---------- Journey ---------- */
  .journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
  .timeline-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 30px 28px; box-shadow: var(--shadow-card);
  }
  .timeline-card h3 { font-size: 16px; margin-bottom: 24px; }
  .timeline { list-style: none; margin: 0; padding: 0; position: relative; }
  .timeline::before {
    content: ''; position: absolute; left: 13px; top: 10px; bottom: 12px;
    width: 2px; background: rgba(255,255,255,0.10);
  }
  .timeline li { display: flex; gap: 16px; position: relative; padding-bottom: 24px; }
  .timeline li:last-child { padding-bottom: 0; }
  .timeline-dot {
    flex: none; width: 28px; height: 28px; border-radius: 50%;
    background: var(--bg-soft); border: 2px solid var(--red); color: #FF7B73;
    display: inline-flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
  }
  .timeline-when { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
  .timeline-what { font-size: 15px; font-weight: 600; color: var(--white); margin-top: 2px; }
  .timeline-detail { font-size: 13.5px; color: var(--body); margin-top: 3px; }
  .timeline-badge {
    display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 600;
    color: var(--green); background: rgba(47,191,113,0.12);
    border: 1px solid rgba(47,191,113,0.3); border-radius: 999px; padding: 3px 11px;
  }

  /* ---------- ROAS-Rendite-Karte ---------- */
  .roas-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
  .roas-head-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
  .roas-delta { margin-top: 0; }
  .roas-hero { display: flex; flex-direction: column; gap: 7px; margin-bottom: 26px; }
  .roas-hero-num {
    font-size: clamp(40px, 5vw, 56px); font-weight: 800; letter-spacing: -0.02em; line-height: 1;
    background: linear-gradient(180deg, #FFFFFF 30%, #FF9A94 130%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .roas-hero-sub { font-size: 13.5px; color: var(--body); font-weight: 600; }
  .roas-channels { margin-bottom: 22px; }
  .roas-foot {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 12.5px; color: var(--muted); line-height: 1.5;
    border-top: 1px solid var(--line); padding-top: 16px;
  }
  .roas-foot-dot {
    flex: none; width: 8px; height: 8px; margin-top: 5px; border-radius: 50%;
    background: var(--green); box-shadow: 0 0 0 3px rgba(47,191,113,0.15);
  }

  /* ---------- KI-Report-Mock ---------- */
  .report-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 26px 26px 22px; box-shadow: var(--shadow-card);
  }
  .report-head {
    display: flex; align-items: center; gap: 10px; padding-bottom: 16px; margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
    font-size: 13px; font-weight: 700; color: var(--white);
  }
  .report-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex: none; }
  .report-when { margin-left: auto; font-weight: 500; color: var(--muted); font-size: 12.5px; }
  .report-item { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13.5px; color: var(--body); }
  .report-item:last-of-type { border-bottom: none; }
  .report-item strong { color: var(--white); display: block; margin-bottom: 3px; font-size: 14px; }
  .report-item em { color: var(--amber); font-style: normal; font-weight: 600; }
  .report-foot { margin-top: 14px; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
  .report-foot svg { color: var(--green); flex: none; }

  /* ---------- Mittelseiten-CTA ---------- */
  .mid-cta { text-align: center; margin-top: 56px; }
  .mid-cta-line { font-size: 17px; color: var(--white); font-weight: 600; margin-bottom: 20px; }
  .mid-cta-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); }

  /* ---------- Betrieb (4er-Grid) ---------- */
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .ops-icon {
    width: 40px; height: 40px; border-radius: 9px; margin-bottom: 16px;
    background: rgba(255,180,0,0.10); color: var(--amber);
    display: inline-flex; align-items: center; justify-content: center;
  }

  /* ---------- Audience ---------- */
  .audience-icon {
    width: 46px; height: 46px; border-radius: 10px; margin-bottom: 18px;
    background: var(--red-soft); color: #FF7B73;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .examples { margin-top: 16px; font-size: 12.5px; color: var(--muted); font-weight: 500; }

  /* ---------- Steps ---------- */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
  .step {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 30px 28px; position: relative; counter-increment: step;
  }
  .step::before {
    content: counter(step, decimal-leading-zero);
    display: block; font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
    color: var(--red); margin-bottom: 16px;
  }
  .step h3 { font-size: 18px; margin-bottom: 10px; }
  .step p { font-size: 14.5px; color: var(--body); }
  .timing {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
    font-size: 12.5px; font-weight: 600; color: var(--amber);
  }

  /* ---------- Vergleich ---------- */
  .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .compare-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px;
  }
  .compare-card.accent { border-color: rgba(228,55,46,0.45); background: rgba(228,55,46,0.05); }
  .compare-title {
    display: flex; align-items: center; gap: 10px;
    font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px;
  }
  .compare-title.accent { color: #FF7B73; }
  .compare-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
  .compare-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; }
  .compare-list li svg { flex: none; margin-top: 3px; }
  .compare-list li.no { color: var(--muted); }
  .compare-list li.no svg { color: #FF6B6B; }
  .compare-list li.ok { color: #D6DCEA; }
  .compare-list li.ok svg { color: var(--green); }

  /* ---------- Stape-Vergleich ---------- */
  .vs-outer { position: relative; }
  .vs-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); -webkit-overflow-scrolling: touch; }
  /* Erste Spalte klebt beim horizontalen Wischen (Zeilen-Labels bleiben lesbar) */
  .vs-table tbody th, .vs-table thead th:first-child {
    position: sticky; left: 0; z-index: 2; background: var(--bg);
  }
  .vs-table thead th:first-child { background: #12172F; }
  /* Fade-Kante rechts: signalisiert horizontal abgeschnittenen Inhalt */
  .vs-fade {
    position: absolute; top: 1px; right: 1px; bottom: 1px; width: 72px;
    background: linear-gradient(90deg, rgba(10,14,35,0) 0%, rgba(10,14,35,0.92) 85%);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    pointer-events: none; opacity: 0; transition: opacity .3s ease;
  }
  .vs-outer.scrollable .vs-fade { opacity: 1; }
  /* Wisch-Hinweis: sticky am Viewport-Boden, solange man in der (hohen)
     Tabelle scrollt — ein absoluter Anker am Tabellenende wäre mobil
     nie sichtbar. Verschwindet nach der ersten Wisch-Interaktion. */
  .vs-hint {
    position: sticky; bottom: 16px; z-index: 3;
    width: max-content; margin: -42px 12px 14px auto;
    display: none; align-items: center; gap: 7px;
    font-size: 12.5px; font-weight: 600; color: var(--white);
    background: rgba(228,55,46,0.92); border-radius: 999px; padding: 7px 14px;
    pointer-events: none; box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  }
  .vs-outer.scrollable.unswiped .vs-hint { display: flex; }
  .vs-hint svg { animation: vs-nudge 1.2s ease-in-out infinite; }
  @keyframes vs-nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
  @media (prefers-reduced-motion: reduce) { .vs-hint svg { animation: none; } }
  .vs-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 920px; }
  .vs-table th, .vs-table td { padding: 14px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
  .vs-table tr:last-child th, .vs-table tr:last-child td { border-bottom: none; }
  .vs-table thead th { font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); background: var(--card); }
  .vs-table thead th.uc { color: #FF7B73; }
  .vs-table tbody th { font-weight: 600; color: var(--white); width: 19%; }
  .vs-table td { color: #99A2BE; width: 27%; }
  .vs-table td.uc { color: #E7ECF7; background: rgba(228,55,46,0.05); font-weight: 500; }
  .vs-table td.uc strong { color: var(--white); }
  .vs-foot { margin-top: 20px; font-size: 14.5px; line-height: 1.6; color: #99A2BE; }

  /* ---------- KI-Chat-Mock ---------- */
  .chat-card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 24px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 14px;
  }
  .chat-q, .chat-a { max-width: 92%; padding: 12px 16px; border-radius: 12px; font-size: 13.5px; line-height: 1.55; }
  .chat-q { align-self: flex-end; background: rgba(228,55,46,0.14); border: 1px solid rgba(228,55,46,0.3); color: #F3D9D7; border-bottom-right-radius: 4px; }
  .chat-a { align-self: flex-start; background: rgba(255,255,255,0.05); border: 1px solid var(--line); color: var(--body); border-bottom-left-radius: 4px; }
  .chat-a strong { color: var(--white); }
  .chat-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
  .chat-label.right { align-self: flex-end; }

  /* ---------- Includes ---------- */
  .includes {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px;
  }
  .includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
  .includes-item { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: #D6DCEA; }
  .includes-item svg { flex: none; color: var(--green); margin-top: 2px; }

  /* ---------- FAQ ---------- */
  .faq-list { display: flex; flex-direction: column; gap: 12px; }
  .faq {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: border-color .2s ease;
  }
  .faq[open] { border-color: var(--line-strong); background: var(--card-strong); }
  .faq summary {
    cursor: pointer; list-style: none; padding: 18px 22px;
    font-size: 15.5px; font-weight: 600; color: var(--white);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: '+'; font-size: 20px; font-weight: 400; color: var(--muted); flex: none;
    transition: transform .2s ease;
  }
  .faq[open] summary::after { transform: rotate(45deg); color: var(--red); }
  .faq-body { padding: 0 22px 20px; font-size: 14.5px; color: var(--body); }
  .faq-body strong { color: #DEE4F2; }

  /* ---------- CTA-Finale ---------- */
  .cta-section { padding: 96px 0; }
  .cta-card {
    position: relative; overflow: hidden; text-align: center;
    background: var(--bg-soft); border: 1px solid var(--line); border-radius: 20px;
    padding: 72px 40px;
  }
  .cta-card::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(560px 300px at 50% -80px, rgba(228,55,46,0.18), transparent 70%);
  }
  .cta-card > * { position: relative; }
  .cta-card h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 16px; }
  .cta-card p { max-width: 640px; margin: 0 auto 30px; font-size: 16px; color: var(--body); }
  .cta-promise { margin-top: 22px; font-size: 13px; color: var(--muted); }

  /* ---------- Footer ---------- */
  footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding: 56px 0 34px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
  .footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
  .footer-tagline { font-size: 13.5px; color: var(--muted); max-width: 260px; }
  .footer-col h4 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
  .footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: 14px; color: var(--body); }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid var(--line); padding-top: 24px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 13px; color: var(--muted);
  }

  /* ---------- Reveal ---------- */
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1140px) and (min-width: 761px) {
    /* zentrierte Link-Gruppe würde sonst Brand/CTA berühren */
    .nav-links { gap: 18px; font-size: 15px; }
  }
  @media (max-width: 960px) {
    .card-grid, .card-grid.four, .steps { grid-template-columns: 1fr; }
    .outcomes, .journey-grid, .compare-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .includes-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 72px 0; }
    .hero { padding: 72px 0 48px; }
  }
  @media (max-width: 760px) {
    .nav-burger { display: block; order: 3; }
    /* Demo-Button bleibt auch mobil sichtbar (kompakt), Burger daneben. */
    .desktop-cta { order: 2; margin-left: auto; margin-right: 16px; padding: 8px 13px; font-size: 13px; }
    .mobile-cta { display: block; }
    .nav-links {
      display: none; position: absolute; top: 100%; left: 0; right: 0;
      transform: none;
      flex-direction: column; align-items: stretch; gap: 0;
      background: var(--bg-deep); border-bottom: 1px solid var(--line);
      padding: 8px 24px 18px;
    }
    .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .nav-links a:last-child { border-bottom: none; margin-top: 10px; text-align: center; }
    .nav-toggle:checked ~ .nav-links { display: flex; }
    .nav-toggle:checked ~ .nav-burger span { opacity: 0; }
    .nav-toggle:checked ~ .nav-burger::before { transform: translateY(9px) rotate(45deg); }
    .nav-toggle:checked ~ .nav-burger::after { transform: translateY(-9px) rotate(-45deg); }
  }
.chat-a-note { font-size: 12.5px; color: var(--muted); }
