/* Landing-Page-Styles — konsolidiert aus dem v7-Handoff.
   Quelle: TMP/design_handoff_landing_page/static/{colors_and_type,landing-base,
   landing-additions,landing-additions-v2}.css plus Inline-Block aus
   "Landing Page v7.html". Alle Farbwerte kommen aus tokens.css über
   --lp-*- und --color-*-Variablen. */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body.landing {
  font-family: var(--lp-font-sans);
  color: var(--lp-fg1);
  background: var(--lp-bg-paper);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

html, body { font-family: var(--lp-font-sans); color: var(--lp-fg1); }
h1, h2, h3, h4, h5 { font-family: var(--lp-font-serif); letter-spacing: -0.01em; }
code, pre, .mono { font-family: var(--lp-font-mono); font-variant-numeric: tabular-nums; }

/* ── Layout-Wurzel ───────────────────────────────────────────────────── */
.lp {
  --lp-max: 1120px;
  --lp-section-y: 96px;
  font-family: var(--lp-font-sans);
  color: var(--lp-fg1);
  background: var(--lp-bg-paper);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.lp > .lp-footer { margin-top: auto; }
.lp-container {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Sticky Header ───────────────────────────────────────────────────── */
.lp-header-sticky {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--lp-header-bg);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.lp-header-sticky.is-scrolled {
  background: var(--lp-header-bg-scrolled);
  border-bottom-color: var(--lp-color-border);
  box-shadow: 0 1px 0 var(--lp-header-shadow-1), 0 6px 18px -16px var(--lp-header-shadow-2);
}
.lp-header-sticky .lp-nav { border-bottom: none; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.lp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--lp-nav-border);
}
.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lp-font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--lp-fg1);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.lp-nav-brand img { width: 28px; height: 28px; }
.lp-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.lp-nav-links a {
  color: var(--lp-fg1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
}
.lp-nav-links a:hover { border-bottom-color: var(--lp-fg1); text-decoration: none; }
.lp-nav-links a.is-active { color: var(--lp-accent-warm); border-bottom-color: var(--lp-accent-warm); }
.lp-nav-links a.lp-nav-cta {
  background: var(--lp-nav-cta-bg);
  color: var(--lp-fg-on-dark);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--lp-nav-cta-bg);
  transition: all 150ms ease;
}
.lp-nav-links a.lp-nav-cta:hover {
  background: var(--lp-nav-cta-bg-hover);
  color: var(--lp-fg-on-dark);
  border-color: var(--lp-nav-cta-bg-hover);
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.lp-hero {
  padding: 72px 0 var(--lp-section-y);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-hero--text-only {
  grid-template-columns: 1fr;
  max-width: 880px;
}
@media (max-width: 860px) { .lp-hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 0 64px; } }

.lp-dachzeile {
  font-family: var(--lp-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-accent-warm);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  display: inline-block;
}
.lp-h1 {
  font-family: var(--lp-font-serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--lp-fg1);
  margin: 0 0 20px;
  text-wrap: balance;
}
@media (max-width: 860px) { .lp-h1 { font-size: 44px; } }
.lp-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--lp-slate-600);
  margin: 0 0 32px;
  max-width: 56ch;
}
.lp-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lp-btn-primary {
  background: var(--lp-accent-warm);
  color: var(--lp-fg-on-dark);
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
  font-family: var(--lp-font-sans);
}
.lp-btn-primary:hover { background: var(--lp-accent-warm-hover); text-decoration: none; }
.lp-btn-secondary {
  background: transparent;
  color: var(--lp-fg1);
  padding: 14px 20px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--lp-font-sans);
  border: none;
}
.lp-btn-secondary:hover { color: var(--lp-accent-warm); text-decoration: none; }

.lp-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--lp-slate-500);
  align-items: center;
}
.lp-trust span { display: inline-flex; align-items: center; gap: 6px; }
.lp-trust .dot { width: 3px; height: 3px; background: var(--lp-slate-400); border-radius: 50%; }
.lp-trust .checkmark {
  width: 14px; height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-green-700);
}
.lp-trust.is-on-dark { color: var(--lp-final-cta-text); margin-top: 24px; }
.lp-trust.is-on-dark .dot { background: var(--lp-trust-dark-dot); }

/* Hero-Visual SVG container */
.lp-svg-sprite { position: absolute; width: 0; height: 0; }
.lp-icon-inline { width: 16px; height: 16px; }
.lp-logo { width: 24px; height: 24px; color: var(--lp-accent-warm); }

.lp-hero-visual--svg {
  background: var(--lp-bg-page);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 50px -20px var(--lp-hero-shadow-1), 0 2px 6px var(--lp-hero-shadow-2);
  border: 1px solid var(--lp-color-border);
  display: block;
}
.lp-hero-svg { display: block; width: 100%; height: auto; }

/* Hero-Visual: links kompakter Beleg-Stapel (Vorher), rechts DATEV-Karte
   (Nachher), in der Mitte ein Pfeil. Aspect 3:2 hält die Höhe in Balance
   zur Hero-Textspalte. */
.lp-hero-visual--composed {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.05fr);
  gap: 16px;
  align-items: center;
  width: 100%;
  aspect-ratio: 3 / 2;
}
.lp-hero-stack-zone {
  position: relative;
  height: 100%;
}
.lp-stack-paper {
  position: absolute;
  left: var(--p-x);
  top: var(--p-y);
  width: var(--p-w);
  transform: rotate(var(--p-rot));
  transform-origin: 50% 50%;
  border-radius: 4px;
  background: var(--lp-bg-page);
  border: 1px solid var(--lp-color-border);
  box-shadow:
    0 14px 28px -10px var(--lp-hero-shadow-1),
    0 3px 8px -2px var(--lp-hero-shadow-2);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, z-index 0ms 220ms;
}
.lp-stack-paper:hover {
  z-index: 50;
  transform: rotate(0deg) translateY(-6px) scale(1.04);
  box-shadow:
    0 26px 50px -14px var(--lp-hero-shadow-1),
    0 6px 14px -2px var(--lp-hero-shadow-2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.lp-stack-paper img {
  display: block;
  width: 100%;
  height: auto;
}
/* Position/Rotation pro Stack-Paper — vorher als style="..." inline gesetzt;
   Modifier-Klassen halten das Layout im Stylesheet (compliance: kein inline). */
.lp-stack-paper--1 { --p-x: 0%;  --p-y: 14%; --p-rot: -7deg; --p-w: 74%; z-index: 1; }
.lp-stack-paper--2 { --p-x: 18%; --p-y: 0%;  --p-rot: 5deg;  --p-w: 72%; z-index: 2; }
.lp-stack-paper--3 { --p-x: 6%;  --p-y: 30%; --p-rot: -3deg; --p-w: 78%; z-index: 3; }
.lp-hero-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--lp-accent-warm);
}
.lp-hero-arrow svg { width: 56px; height: auto; display: block; }
.lp-hero-arrow-label {
  font-family: var(--lp-font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--lp-slate-500);
  white-space: nowrap;
}
.lp-hero-datev {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-datev-svg { display: block; width: 100%; height: auto; }
@media (max-width: 860px) {
  .lp-hero-visual--composed {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    aspect-ratio: auto;
    gap: 24px;
    max-width: 480px;
    margin: 0 auto;
  }
  .lp-hero-stack-zone { aspect-ratio: 4 / 3; }
  .lp-hero-arrow { transform: rotate(90deg); }
}

/* ── Generic sections ────────────────────────────────────────────────── */
.lp-section { padding: var(--lp-section-y) 0; }
.lp-section.alt { background: var(--lp-bg-page); }
.lp-section.dark { background: var(--lp-bg-ink); color: var(--lp-fg-on-dark); }
.lp-section.dark .lp-h2 { color: var(--lp-fg-on-dark); }
.lp-section.dark .lp-section-intro { color: var(--lp-section-dark-intro); }

.lp-section-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--lp-accent-warm);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 12px;
}
.lp-section-label.is-on-dark { color: var(--lp-section-label-on-dark); }
.lp-h2 {
  font-family: var(--lp-font-serif);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 22ch;
  text-wrap: balance;
}
@media (max-width: 860px) { .lp-h2 { font-size: 30px; } }
.lp-section-intro {
  font-size: 17px;
  color: var(--lp-slate-600);
  max-width: 62ch;
  margin: 0 0 48px;
  line-height: 1.55;
}
.lp-section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.lp-section-head .lp-section-intro { margin-bottom: 0; }
.lp-section-head .lp-h2 { margin-bottom: 16px; }

/* ── Beta-Strip (unter Hero, dezent) ─────────────────────────────────── */
.lp-betastrip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  margin-top: -16px;
  margin-bottom: 64px;
  background: var(--lp-bg-page);
  border: 1px solid var(--lp-color-border);
  border-left: 3px solid var(--lp-betastrip-border-accent);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 4px 14px -10px var(--lp-betastrip-shadow);
}
.lp-betastrip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -14px var(--lp-betastrip-shadow-hover);
  text-decoration: none;
}
.lp-betastrip-pill {
  background: var(--lp-betastrip-pill-bg);
  color: var(--lp-betastrip-pill-fg);
  font-family: var(--lp-font-serif);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  line-height: 1.2;
}
.lp-betastrip-text { font-size: 14px; color: var(--lp-slate-600); line-height: 1.5; }
.lp-betastrip-text strong { color: var(--lp-fg1); font-weight: 600; margin-right: 4px; }
@media (max-width: 700px) {
  .lp-betastrip { grid-template-columns: auto 1fr; }
}

/* ── Beta-Pill in der Brand-Lockup ──────────────────────────────────── */
.lp-beta-badge {
  display: inline-flex;
  align-items: center;
  background: var(--lp-beta-pill-bg);
  color: var(--lp-beta-pill-fg);
  font-family: var(--lp-font-serif);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  margin-left: 4px;
  line-height: 1.2;
  border: 1px solid var(--lp-beta-pill-border);
}

/* ── Test-Konditionen-Karte (Trial) ─────────────────────────────────── */
.lp-trial-card {
  margin-top: 36px;
  background: var(--lp-bg-page);
  border: 1px solid var(--lp-color-border);
  border-radius: 14px;
  padding: 32px 36px;
  box-shadow: 0 6px 18px -14px var(--lp-trial-shadow);
}
.lp-trial-head { margin-bottom: 24px; }
.lp-trial-head h2 {
  font-family: var(--lp-font-serif);
  font-size: 24px; font-weight: 700;
  margin: 0 0 6px; color: var(--lp-fg1);
  letter-spacing: -0.01em;
}
.lp-trial-head p { margin: 0; color: var(--lp-slate-500); font-size: 14px; }
.lp-trial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--lp-color-border);
  padding-top: 24px;
}
.lp-trial-cell { display: flex; flex-direction: column; gap: 6px; }
.lp-trial-num {
  font-family: var(--lp-font-serif);
  font-size: 22px; font-weight: 700;
  color: var(--lp-fg1); letter-spacing: -0.01em;
}
.lp-trial-cell.is-muted .lp-trial-num { color: var(--lp-slate-500); }
.lp-trial-label { font-size: 13px; line-height: 1.5; color: var(--lp-slate-600); }
@media (max-width: 880px) { .lp-trial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .lp-trial-grid { grid-template-columns: 1fr; }
  .lp-trial-card { padding: 22px; }
}

/* ── Prozess (vier Schritte als vertikaler Zeitstrahl) ───────────────── */
.lp-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.lp-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(280px, 360px);
  column-gap: 32px;
  align-items: start;
  padding: 36px 0;
  position: relative;
}
.lp-step + .lp-step { border-top: 1px solid var(--lp-color-border); }

.lp-step-node {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: stretch;
}
/* Timeline-Linie zwischen den Knoten */
.lp-step-node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  bottom: -36px;
  width: 1.5px;
  background: var(--lp-color-border);
  transform: translateX(-50%);
}
.lp-step:last-child .lp-step-node::before { display: none; }

.lp-step-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--lp-bg-page);
  border: 1.5px solid var(--lp-beta-pill-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-accent-warm);
  box-shadow: 0 1px 3px var(--lp-step-icon-shadow);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.lp-step-icon svg {
  width: 26px; height: 26px;
  stroke-width: 1.6; fill: none;
  stroke: currentColor;
  stroke-linecap: round; stroke-linejoin: round;
}

.lp-step.is-key .lp-step-icon {
  background: var(--lp-key-step-icon-bg);
  border-color: var(--lp-key-step-icon-bg);
  color: var(--lp-key-step-icon-fg);
  box-shadow: 0 6px 16px var(--lp-key-step-shadow);
}
.lp-step.is-key .lp-step-body {
  background: var(--lp-key-step-bg);
  border-radius: 12px;
  padding: 20px 24px;
  margin: -20px -24px;
}

.lp-step-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lp-step-num {
  font-family: var(--lp-font-serif);
  font-weight: 700;
  font-size: 13px;
  color: var(--lp-accent-warm);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: inline-block;
}
.lp-step h3 {
  font-family: var(--lp-font-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--lp-fg1);
  line-height: 1.25;
  text-wrap: balance;
}
.lp-step-points {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-slate-600);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-step-points li {
  padding-left: 18px;
  position: relative;
  text-wrap: pretty;
}
.lp-step-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1.5px;
  background: var(--lp-step-bullet);
}
.lp-step.is-key .lp-step-points li::before { background: var(--lp-step-bullet-key); }
.lp-step-points li strong { color: var(--lp-fg1); font-weight: 600; }
.lp-step-meta {
  font-family: var(--lp-font-mono);
  font-size: 11px;
  color: var(--lp-slate-500);
  letter-spacing: 0.02em;
  padding-top: 14px;
  border-top: 1px dashed var(--lp-divider-dashed);
  text-wrap: pretty;
  line-height: 1.5;
  margin-top: auto;
}

/* Mini-Visual pro Schritt */
.lp-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.lp-step-svg {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}
.lp-step-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--lp-color-border);
  background: var(--lp-bg-paper);
  box-shadow: 0 6px 18px var(--lp-hero-shadow-2);
  object-fit: contain;
}

/* SVG-Komponenten — Tokens via class, kein Hex inline */
.lp-svg-paper {
  fill: var(--lp-bg-page);
  stroke: var(--lp-color-border);
  stroke-width: 1;
  filter: drop-shadow(0 4px 8px var(--lp-hero-shadow-2));
}
.lp-svg-lid--terra { fill: var(--lp-svg-lid-terra); }
.lp-svg-lid--green { fill: var(--lp-svg-lid-green); }
.lp-svg-lid--amber { fill: var(--lp-svg-lid-amber); }
.lp-svg-label {
  font-family: var(--lp-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: var(--lp-slate-600);
}
.lp-svg-line {
  stroke: var(--lp-slate-300);
  stroke-width: 1.5;
  stroke-linecap: round;
}

/* S02 — Beleg + KI-Pills */
.lp-svg-beleg {
  fill: var(--lp-beleg-bg);
  stroke: var(--lp-beleg-border);
  stroke-width: 1;
  stroke-dasharray: 4 3;
}
.lp-svg-beleg-h {
  font-family: var(--lp-font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  fill: var(--lp-beleg-ink);
}
.lp-svg-beleg-line { stroke: var(--lp-beleg-dashed); stroke-width: 1; stroke-linecap: round; }
.lp-svg-beleg-line--strong { stroke: var(--lp-beleg-ink); stroke-width: 1.5; }
.lp-svg-beleg-total {
  font-family: var(--lp-font-mono);
  font-size: 11px;
  font-weight: 600;
  fill: var(--lp-beleg-ink);
}
.lp-svg-pill--terra { fill: var(--lp-beta-pill-bg); stroke: var(--lp-beta-pill-border); stroke-width: 1; }
.lp-svg-pill--green { fill: var(--lp-svg-pill-green-bg); stroke: var(--lp-svg-pill-green-border); stroke-width: 1; }
.lp-svg-pill--slate { fill: var(--lp-slate-50); stroke: var(--lp-color-border); stroke-width: 1; }
.lp-svg-pill-text {
  font-family: var(--lp-font-sans);
  font-size: 11px;
  font-weight: 600;
}
.lp-svg-pill-text--terra { fill: var(--lp-beta-pill-fg); }
.lp-svg-pill-text--green { fill: var(--lp-svg-pill-green-fg); }
.lp-svg-pill-text--slate { fill: var(--lp-slate-700); }
.lp-svg-pill-icon--green { stroke: var(--lp-svg-pill-green-fg); }
.lp-svg-pill-icon--slate { stroke: var(--lp-slate-700); }

/* S03 — Triage-Rows */
.lp-svg-row--ok      { fill: var(--lp-svg-row-ok-bg); }
.lp-svg-row--hinweis { fill: var(--lp-svg-row-hinweis-bg); }
.lp-svg-row--fehler  { fill: var(--lp-svg-row-fehler-bg); }
.lp-svg-row-stripe--ok      { fill: var(--lp-svg-row-ok-stripe); }
.lp-svg-row-stripe--hinweis { fill: var(--lp-svg-row-hinweis-stripe); }
.lp-svg-row-stripe--fehler  { fill: var(--lp-svg-row-fehler-stripe); }
.lp-svg-row-label {
  font-family: var(--lp-font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.lp-svg-row-label--ok      { fill: var(--lp-svg-row-ok-label); }
.lp-svg-row-label--hinweis { fill: var(--lp-svg-row-hinweis-label); }
.lp-svg-row-label--fehler  { fill: var(--lp-svg-row-fehler-label); }
.lp-svg-row-text {
  font-family: var(--lp-font-sans);
  font-size: 11px;
  font-weight: 500;
  fill: var(--lp-slate-700);
}
.lp-svg-row-amount {
  font-family: var(--lp-font-mono);
  font-size: 12px;
  font-weight: 600;
  fill: var(--lp-slate-700);
  text-anchor: end;
}

/* S04 — ZIP-Export */
.lp-svg-zip {
  fill: var(--lp-bg-page);
  stroke: var(--lp-accent-warm);
  stroke-width: 1.5;
}
.lp-svg-zip-label {
  font-family: var(--lp-font-mono);
  font-size: 11px;
  font-weight: 700;
  fill: var(--lp-accent-warm);
}
.lp-svg-file {
  fill: var(--lp-bg-paper);
  stroke: var(--lp-color-border);
  stroke-width: 1;
}
.lp-svg-file-tag--terra { fill: var(--lp-accent-warm); }
.lp-svg-file-tag--slate { fill: var(--lp-slate-500); }
.lp-svg-file-tag-text {
  font-family: var(--lp-font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.05em;
  fill: var(--color-on-accent);
  text-anchor: middle;
}
.lp-svg-file-name {
  font-family: var(--lp-font-mono);
  font-size: 9px;
  fill: var(--lp-slate-700);
}

/* Tablet — Visual schmaler, Text mehr Raum */
@media (max-width: 980px) {
  .lp-step {
    grid-template-columns: 48px minmax(0, 1fr) minmax(220px, 280px);
    column-gap: 24px;
  }
  .lp-step-icon { width: 48px; height: 48px; }
  .lp-step-icon svg { width: 22px; height: 22px; }
  .lp-step-node::before { top: 52px; bottom: -36px; }
  .lp-step h3 { font-size: 20px; }
  .lp-step-points { font-size: 14px; }
}

/* Mobile — Stapeln, Timeline-Linie raus, Visual unten kompakt */
@media (max-width: 720px) {
  .lp-step {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 24px;
    padding: 28px 0;
  }
  .lp-step-node::before { display: none; }
  .lp-step-visual {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 100%;
  }
  .lp-step-svg { max-width: 320px; margin: 0 auto; }
  .lp-step.is-key .lp-step-body { margin: -16px -16px; padding: 16px; }
}

/* ── Audience cards ──────────────────────────────────────────────────── */
.lp-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .lp-audience-grid { grid-template-columns: 1fr; } }
.lp-aud-card {
  background: var(--lp-bg-page);
  border: 1px solid var(--lp-color-border);
  border-radius: 12px;
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 200ms ease;
}
.lp-aud-card:hover {
  border-color: var(--lp-aud-border-hover);
  box-shadow: 0 10px 20px -10px var(--lp-aud-shadow);
  transform: translateY(-2px);
  text-decoration: none;
}
.lp-aud-card .icon {
  width: 40px; height: 40px;
  background: var(--lp-aud-icon-bg);
  color: var(--lp-aud-icon-fg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.lp-aud-card .icon svg { width: 22px; height: 22px; }
.lp-aud-card h3 {
  font-family: var(--lp-font-serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.lp-aud-pitch {
  font-size: 15px;
  line-height: 1.5;
  color: var(--lp-fg1);
  margin: 8px 0 14px;
  font-weight: 500;
  text-wrap: pretty;
}
.lp-aud-pitch strong {
  color: var(--lp-terrakotta-700);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.lp-aud-points {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px dashed var(--lp-divider-dashed);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--lp-slate-600);
}
.lp-aud-points li {
  padding-left: 18px;
  position: relative;
  text-wrap: pretty;
}
.lp-aud-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1.5px;
  background: var(--lp-aud-bullet);
}

/* ── Unterschied: Bild-Figur ─────────────────────────────────────────── */
.lp-difference-figure {
  margin: 0;
  background: var(--lp-difference-bg);
  border: 1px solid var(--lp-color-border);
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.lp-difference-figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Härtefall Tabs ──────────────────────────────────────────────────── */
.lp-tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--lp-color-border);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.lp-tab {
  padding: 14px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--lp-font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-slate-500);
  cursor: pointer;
  transition: all 150ms ease;
}
.lp-tab:hover { color: var(--lp-fg1); }
.lp-tab.is-active { color: var(--lp-accent-warm); border-bottom-color: var(--lp-accent-warm); }

.lp-tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lp-tab-panel.is-active {
  display: grid;
  align-items: start;
  grid-template-rows: auto 1fr;
}
.lp-tab-panel.is-active > div:first-child { grid-column: 1; grid-row: 1; }
.lp-tab-panel.is-active > .lp-shot { grid-column: 2; grid-row: 1 / span 2; align-self: start; }
.lp-tab-panel.is-active > .lp-compare { grid-column: 1; grid-row: 2; }
@media (max-width: 860px) {
  .lp-tab-panel.is-active { grid-template-columns: 1fr; gap: 24px; }
  .lp-tab-panel.is-active > div:first-child,
  .lp-tab-panel.is-active > .lp-shot,
  .lp-tab-panel.is-active > .lp-compare { grid-column: 1; grid-row: auto; }
}
.lp-tab-panel h3 {
  font-family: var(--lp-font-serif);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.lp-tab-panel p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--lp-slate-600);
}

/* Härtefall-Screenshot */
.lp-shot { margin: 0; }
.lp-shot img {
  width: 100%; height: auto; display: block;
  border-radius: 12px; border: 1px solid var(--lp-color-border);
  background: linear-gradient(180deg, var(--lp-tab-shot-bg-from) 0%, var(--lp-tab-shot-bg-to) 100%);
  object-fit: contain;
}
.lp-shot figcaption {
  font-family: var(--lp-font-sans); font-size: 13px;
  color: var(--lp-slate-500); margin-top: 12px; line-height: 1.5;
}

/* Härtefall-Vergleichszeile (alt vs. neu) */
.lp-compare {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 16px;
  align-items: stretch;
  background: var(--lp-bg-paper);
  border: 1px solid var(--lp-color-border);
  border-radius: 12px;
  padding: 16px 18px;
}
.lp-compare-divider { background: var(--lp-color-border); width: 1px; }
.lp-compare-col { display: flex; flex-direction: column; gap: 6px; }
.lp-compare-tag {
  font-family: var(--lp-font-mono);
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-compare-col.is-old .lp-compare-tag { color: var(--lp-slate-500); }
.lp-compare-col.is-new .lp-compare-tag { color: var(--lp-accent-warm); }
.lp-compare-col p { margin: 0; font-size: 14px; line-height: 1.55; }
.lp-compare-col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.lp-compare-col li {
  font-size: 13.5px; line-height: 1.5;
  padding-left: 16px; position: relative;
}
.lp-compare-col li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lp-compare-bullet-old);
  opacity: 0.45;
}
.lp-compare-col.is-old li { color: var(--lp-slate-600); }
.lp-compare-col.is-new li { color: var(--lp-fg1); }
.lp-compare-col.is-new li::before { background: var(--lp-compare-bullet-new); opacity: 1; }
@media (max-width: 760px) {
  .lp-compare { grid-template-columns: 1fr; gap: 14px; }
  .lp-compare-divider { width: 100%; height: 1px; }
}

/* ── Final CTA ───────────────────────────────────────────────────────── */
.lp-final {
  padding: 64px 0;
  background: var(--lp-bg-ink);
  color: var(--lp-fg-on-dark);
  text-align: left;
}
.lp-final .lp-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .lp-final .lp-container { grid-template-columns: 1fr; gap: 32px; }
}
.lp-final .lp-h2 { color: var(--lp-fg-on-dark); margin: 0 0 20px; text-align: left; }
.lp-final p { color: var(--lp-final-text-muted); margin: 0 0 32px; max-width: 44ch; font-size: 17px; text-align: left; }

.lp-final-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  background: var(--lp-final-cta-bg);
  border: 1px solid var(--lp-final-cta-border);
  border-radius: 12px;
  padding: 28px;
  width: 380px;
  max-width: 100%;
  justify-self: center;
  box-sizing: border-box;
}
@media (max-width: 860px) {
  .lp-final-ctas { justify-self: start; width: 100%; }
}
.lp-final-cta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-final-cta-row .lbl {
  font-family: var(--lp-font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lp-final-cta-label);
}
.lp-final-cta-row .lp-btn-primary,
.lp-final-cta-row .lp-btn-ghost {
  justify-content: center;
  min-width: 280px;
}
.lp-final-cta-row .lp-btn-primary {
  padding: 16px 22px;
  font-size: 15px;
}
.lp-final-cta-row .lp-btn-ghost {
  background: transparent;
  color: var(--lp-fg-on-dark);
  border: 1px solid var(--lp-final-cta-border-strong);
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lp-font-sans);
  cursor: pointer;
  transition: all 150ms ease;
}
.lp-final-cta-row .lp-btn-ghost:hover {
  border-color: var(--lp-final-cta-border-hover);
  background: var(--lp-final-cta-bg);
}
.lp-final-cta-row .sub {
  font-size: 12px;
  color: var(--lp-final-cta-text);
  line-height: 1.5;
  margin: 2px 0 0;
}
.lp-final-divider {
  border: none;
  border-top: 1px dashed var(--lp-final-cta-divider);
  margin: 6px 0;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.lp-footer {
  padding: 48px 0 64px;
  background: var(--lp-bg-ink);
  color: var(--lp-footer-text);
  font-size: 13px;
}
.lp-footer a { color: var(--lp-final-text-muted); text-decoration: none; }
.lp-footer a:hover { color: var(--lp-fg-on-dark); }
.lp-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--lp-footer-border);
  align-items: flex-start;
}
.lp-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.lp-footer-meta .footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-final-text-muted);
  font-family: var(--lp-font-serif);
  font-weight: 700;
  font-size: 14px;
}
.lp-footer-meta .footer-brand svg { width: 18px; height: 18px; }
.lp-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* Zoomable Bilder + Lightbox -------------------------------------- */
.lp-zoomable {
  cursor: zoom-in;
  transition: transform 120ms ease-out;
}
.lp-zoomable:hover {
  transform: scale(1.01);
}

.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-backdrop);
  padding: clamp(16px, 4vw, 48px);
  cursor: zoom-out;
}
.lp-lightbox[hidden] { display: none; }
.lp-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
  cursor: default;
}
.lp-lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--color-text-inverted);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}
.lp-lightbox-close:hover { opacity: 1; }

/* Theme-Toggle im Landing-Header --------------------------------- */
.lp-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin-left: 8px;
  background: transparent;
  border: 1px solid var(--lp-color-border);
  border-radius: 8px;
  color: var(--lp-fg1);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.lp-theme-toggle:hover {
  background: var(--lp-bg-page);
  border-color: var(--lp-fg1);
}
.lp-theme-toggle-icon { display: inline-block; }

/* ── Mobile-Anpassungen (≤720px) ─────────────────────────────────────── */
.lp-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--lp-color-border);
  border-radius: 8px;
  color: var(--lp-fg1);
  cursor: pointer;
  line-height: 1;
}
.lp-nav-toggle:hover { background: var(--lp-bg-page); border-color: var(--lp-fg1); }
.lp-nav-toggle-icon { font-size: 22px; line-height: 1; }

@media (max-width: 720px) {
  .lp-container { padding: 0 20px; }

  .lp-nav { flex-wrap: wrap; padding: 14px 0; gap: 12px; }
  .lp-nav-toggle { display: inline-flex; }

  .lp-nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid var(--lp-nav-border);
    margin-top: 8px;
  }
  .lp-nav-links[data-state="open"] { display: flex; }
  .lp-nav-links a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--lp-nav-border);
  }
  .lp-nav-links a.lp-nav-cta {
    margin-top: 12px;
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid var(--lp-nav-cta-bg);
  }
  .lp-theme-toggle { align-self: flex-start; margin-top: 12px; margin-left: 0; }

  .lp-trial-grid { grid-template-columns: 1fr; }

  .lp-h1 { font-size: 36px; }
  .lp-hero { padding: 32px 0 48px; }
}

@media (max-width: 380px) {
  .lp-container { padding: 0 16px; }
  .lp-h1 { font-size: 32px; }
}
