/* leistungen-shared.css — geteiltes Stylesheet der fünf Leistungs-Landingpages.
   Editorial-Look der Hauptseite (Paper/Ink/Amber/Cyan, Haarlinien, mono-Kicker),
   aber als statisches HTML ohne JS: pure HTML/CSS, damit die Seiten sofort stehen
   und für Crawler vollständig sichtbar sind. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #FAF7F0;
  --ink: #16130D;
  --amber: #F2A900;
  --amber-text: #8A5A00;   /* Amber für Text (WCAG AA auf Paper) */
  --cyan: #22D3EE;
  --cyan-deep: #0E7490;    /* Cyan für Text/Linien auf Paper */
  --ink-hero: #10192B;     /* dunkle Klammer (CTA-Block) */
  --muted: #6E6656;
  --line: rgba(22, 19, 13, 0.14);
  --line-strong: rgba(22, 19, 13, 0.35);
  --field: rgba(242, 169, 0, 0.06);

  /* Cyan als Struktur-System — wortgleich zu src/styles/tokens.css der App.
     --line-cyan       sichtbare Struktur-Haarlinie auf Papier
     --line-cyan-soft  ruhige Rasterlinie, darf nie mitlesen
     --line-cyan-dark  dieselbe Rolle auf --ink-hero
     --cyan-wash       die EINE getönte Fläche der Seite (.lp-band) */
  --line-cyan: rgba(14, 116, 144, 0.34);
  --line-cyan-soft: rgba(14, 116, 144, 0.18);
  --line-cyan-dark: rgba(34, 211, 238, 0.42);
  --cyan-wash: rgba(34, 211, 238, 0.055);
  /* Eine Spur voller: Hover-Flächen (Karte, Menüzeile) — die Quittung für
     „hier passiert etwas", ohne dass Amber dafür herhalten muss. */
  --cyan-wash-strong: rgba(34, 211, 238, 0.1);

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-text: 'Instrument Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1000px;
  --radius: 2px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
::selection { background: var(--amber); color: var(--ink); }

a { color: var(--cyan-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
/* Der Hover verlässt die Interaktionsfarbe nicht mehr (vorher: Ink) — er verdichtet
   sie. Die Unterstreichung wächst auf 2px, die Farbe bleibt Cyan. */
a:hover { color: var(--cyan-deep); text-decoration-thickness: 2px; }

/* Fokus = Interaktion = Cyan, wie auf der Startseite. --cyan-deep auf --paper
   erreicht 5,01:1, weit über den 3:1 aus WCAG 1.4.11. */
:focus-visible { outline: 2px solid var(--cyan-deep); outline-offset: 3px; }

a, button, summary { -webkit-tap-highlight-color: rgba(14, 116, 144, 0.14); touch-action: manipulation; }

.lp-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-left: calc(clamp(20px, 4vw, 40px) + env(safe-area-inset-left));
  padding-right: calc(clamp(20px, 4vw, 40px) + env(safe-area-inset-right));
}

.lp-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ── Kopf ── */
.lp-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.lp-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 12px; padding-bottom: 12px;
}

.lp-brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}

.lp-brand img { width: 32px; height: 32px; }

.lp-brand__word {
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
}

.lp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 20px;
  background: var(--amber); color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-btn:hover {
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.lp-header .lp-btn { padding: 9px 16px; font-size: 11.5px; }

/* ── Kicker / Brotkrumen ── */
.lp-kicker {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}

.lp-kicker__num { color: var(--cyan-deep); font-weight: 800; }
.lp-kicker::after { content: ''; height: 1px; flex: 0 0 56px; background: var(--cyan-deep); }

.lp-crumbs {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  padding-top: 22px;
}

.lp-crumbs a { color: var(--muted); text-decoration: none; }
.lp-crumbs a:hover { color: var(--cyan-deep); text-decoration: underline; }
.lp-crumbs span[aria-current] { color: var(--ink); }

/* ── Hero ── */
.lp-hero { padding-top: 34px; padding-bottom: 8px; }

.lp-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6.6vw, 82px);
  line-height: 0.98; letter-spacing: -0.03em;
  text-wrap: balance;
  margin-top: 22px;
}

/* Deutsche Komposita („Neukundengewinnung", „Vertriebsoutsourcing") sprengen in
   Display-Größen jede schmale Spalte — Notbremse gegen horizontales Scrollen. */
.lp-hero h1, .lp-h2, .lp-cta h2, .lp-list__title, .lp-faq summary, .lp-more__title {
  overflow-wrap: break-word;
}

.lp-accent { color: var(--amber-text); }

.lp-hero__lead {
  max-width: 42em;
  margin-top: 26px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.lp-hero__lead + .lp-hero__lead { margin-top: 16px; font-size: inherit; color: var(--muted); }

.lp-hero__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  margin-top: 34px;
}

.lp-hero__note {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}

/* Positionierungs-Zeile: ordnet die Seite in die Wachstumsabteilung ein und
   nimmt im selben Atemzug die Angst vorm Paket. Bewusst leiser als der Lead
   darüber — sie verkauft nicht, sie sortiert ein. Eine Haarlinie in Cyan statt
   eines Kastens, damit der Hero eine Spalte bleibt und keine Kiste bekommt. */
.lp-position {
  max-width: 40em;
  margin-top: 24px;
  padding: 2px 0 2px 16px;
  border-left: 2px solid var(--cyan-deep);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

.lp-position strong { color: var(--ink); font-weight: 600; }

/* Werkzeugleiste unter dem Hero: mono-Chips, cyan getrennt. */
.lp-tools {
  display: flex; flex-wrap: wrap; align-items: center;
  row-gap: 6px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

.lp-tools > span { display: inline-flex; align-items: center; }
.lp-tools > span:not(:last-child)::after {
  content: '·';
  color: var(--cyan-deep);
  margin: 0 12px;
}

/* ── Sektionen ── */
.lp-section { padding-top: clamp(64px, 9vh, 108px); }

/* Getöntes Feld für Schlüsselblöcke — volle Breite, damit der Seitenrhythmus
   sichtbar atmet statt nur eine Box zu zeigen. */
.lp-band {
  margin-top: clamp(64px, 9vh, 108px);
  /* Die EINE getönte Fläche jeder Leistungsseite — jetzt in der Marken-Struktur-
     Farbe statt im Amber-Wash. Amber trägt hier nur noch Aktion und Kernaussage,
     das Band ist Gliederung. Gegenstück zum Laufband der Startseite. */
  background: var(--cyan-wash);
  border-top: 1px solid var(--line-cyan);
  border-bottom: 1px solid var(--line-cyan);
  padding-bottom: clamp(48px, 7vh, 76px);
}

.lp-band > .lp-section { padding-top: clamp(48px, 7vh, 76px); }
.lp-band .lp-note { background: transparent; }

.lp-section > .lp-kicker { margin-bottom: 18px; }

.lp-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.04; letter-spacing: -0.02em;
  text-wrap: balance;
}

.lp-lead {
  max-width: 44em;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
}

.lp-body { max-width: 44em; }
.lp-body p { margin-top: 16px; }
.lp-body p:first-child { margin-top: 22px; }

/* ── Pull-Quote ──
   Der Atempausen-Moment zwischen zwei Textblöcken: ein Satz, groß gesetzt,
   mit dem Amber-Anführungszeichen aus den Beute-Berichten. */
.lp-pull {
  position: relative;
  max-width: 30em;
  margin-top: clamp(44px, 6vh, 72px);
  padding-left: clamp(46px, 5.5vw, 76px);
}

.lp-pull::before {
  content: '„';
  position: absolute; left: 0; top: -0.06em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 8vw, 104px);
  line-height: 1;
  color: var(--amber);
}

.lp-pull p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2.5vw, 32px);
  line-height: 1.18; letter-spacing: -0.02em;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.lp-pull footer {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* ── Nummerierte Blöcke (So arbeiten wir / Ablauf) ── */
.lp-list { margin-top: 34px; border-top: 1px solid var(--line-cyan-soft); }

.lp-list__item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 4px 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.lp-list__num {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--cyan-deep);
  padding-top: 5px;
}

.lp-list__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.15; letter-spacing: -0.01em;
}

.lp-list__text { grid-column: 2; color: var(--muted); margin-top: 8px; }
.lp-list__text a { color: var(--cyan-deep); }

.lp-chips { grid-column: 2; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.lp-chip {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--line-cyan); padding: 5px 11px; color: var(--ink);
}

/* ── Ablauf als Editorial-Zeilen ──
   Große Cyan-Ziffer als Ankerpunkt, Titel und ein Satz daneben. */
.lp-steps { margin-top: 38px; }

.lp-steps__item {
  display: grid;
  grid-template-columns: clamp(3.6rem, 7vw, 5.4rem) 1fr;
  gap: 0 clamp(18px, 2.6vw, 32px);
  align-items: start;
  padding: clamp(24px, 3vw, 32px) 0;
  border-top: 1px solid var(--line);
}

.lp-steps__item:last-child { border-bottom: 1px solid var(--line); }

.lp-steps__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 0.86; letter-spacing: -0.04em;
  color: var(--cyan-deep);
  font-variant-numeric: tabular-nums;
}

.lp-steps__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.15; letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

.lp-steps__text { color: var(--muted); margin-top: 10px; max-width: 40em; }

/* ── Kundenstimme ──
   Eine echte Google-Rezension, wortgleich. Aufbau wie die Beweis-Section der
   Startseite: Google-Glyph, Sterne, Zitat, Person. */
.lp-review {
  margin-top: 34px;
  background: #FFFDF7;
  border: 1px solid var(--line);
  border-top: 2px solid var(--amber);
  padding: clamp(24px, 3.2vw, 38px);
}

.lp-review__head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.lp-review__stars { display: flex; gap: 2px; }

.lp-review__verified {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

.lp-review__quote {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500; line-height: 1.5;
  max-width: 38em;
}

.lp-review__mark {
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.25em;
}

.lp-review__person { display: flex; align-items: center; gap: 14px; margin-top: 26px; }

.lp-review__photo {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--line);
  /* Eigene Compositing-Ebene: liegt ein Bild in einem Block, der per
     animation-timeline: view() bewegt wird, malt Chromium es sonst
     nicht nach — die Fläche bleibt leer. Siehe auch .lp-person__second img. */
  transform: translateZ(0);
}

.lp-review__photo--logo { object-fit: contain; background: #fff; padding: 5px; }

.lp-review__name { font-weight: 700; font-size: 15px; }
.lp-review__role { font-size: 12.5px; font-weight: 600; color: var(--amber-text); margin-top: 2px; line-height: 1.3; }
.lp-review__source { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 4px; letter-spacing: 0.04em; }

/* ── Ansprechpartner ──
   Wer macht das hier eigentlich? Ein 4:5-Portrait im gleichen Rahmen wie im
   „Rudel" auf der Startseite, daneben die Stimme der Person. Steht auf den
   Sichtbarkeits-Seiten weit oben (direkt hinter dem Hero), auf den Vertriebs-Seiten
   als persönlicher Abschluss vor dem CTA. */
.lp-person {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: clamp(22px, 3.2vw, 44px);
  align-items: start;
  margin-top: 34px;
}

.lp-person__figure { margin: 0; }

.lp-person__photo {
  width: 100%;
  /* height:auto ist Pflicht, nicht Kosmetik: das height-Attribut im Markup (900)
     wirkt als Präsentations-Hinweis und würde aspect-ratio sonst aushebeln —
     das Portrait stünde 900px hoch in der Spalte. */
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--field);
  border: 1px solid var(--line);
  border-top: 2px solid var(--amber);
  /* Eigene Compositing-Ebene — siehe .lp-review__photo. */
  transform: translateZ(0);
}

.lp-person__caption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

.lp-person__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.04; letter-spacing: -0.02em;
}

.lp-person__role {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan-deep);
}

.lp-person__text > p { max-width: 40em; margin-top: 16px; }

.lp-person__text > p:first-of-type,
.lp-person__lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  margin-top: 20px;
}

.lp-person__text > p + p { color: var(--muted); font-size: inherit; }

.lp-person__tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}

/* Zweite Person („und dahinter arbeitet …") — bewusst kleiner: eine Rolle, ein Satz. */
.lp-person__second {
  display: flex; align-items: center; gap: 14px;
  margin-top: 26px; padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 40em;
}

.lp-person__second img {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  background: var(--field);
  border: 1px solid var(--line);
  transform: translateZ(0); /* siehe .lp-review__photo */
}

.lp-person__second p { font-size: 15px; color: var(--muted); }
.lp-person__second strong { color: var(--ink); font-weight: 600; }

/* ── Für wen / nicht ── */
.lp-fit {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line-cyan-soft);
  border-bottom: 1px solid var(--line-cyan-soft);
}

.lp-fit__col { padding: 28px 0; }
.lp-fit__col:first-child { padding-right: 32px; }
.lp-fit__col + .lp-fit__col { border-left: 1px solid var(--line-cyan-soft); padding-left: 32px; }

.lp-fit__head {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px;
}

.lp-fit__head--yes { color: var(--cyan-deep); }
.lp-fit__head--no { color: var(--muted); }

.lp-fit ul { list-style: none; }
.lp-fit li { position: relative; padding-left: 24px; margin-top: 12px; color: var(--muted); }
.lp-fit li::before {
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-weight: 700;
}
.lp-fit__col--yes li::before { content: '+'; color: var(--amber-text); }
.lp-fit__col--no li::before { content: '–'; color: var(--muted); }

/* ── Preis-Block ── */
.lp-note {
  margin-top: 34px;
  background: var(--field);
  border-left: 2px solid var(--amber);
  padding: 26px 28px;
}

.lp-note__head {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber-text);
  margin-bottom: 12px;
}

.lp-note p + p { margin-top: 14px; }

/* ── FAQ ── */
.lp-faq { margin-top: 34px; border-top: 1px solid var(--line); }

.lp-faq details { border-bottom: 1px solid var(--line); }

.lp-faq summary {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 0; min-height: 56px;
  cursor: pointer; list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: -0.01em;
}

.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq summary::after {
  content: '+';
  margin-left: auto;
  font-family: var(--font-mono);
  font-weight: 500; font-size: 22px;
  color: var(--ink);
  transition: transform 0.25s ease, color 0.25s ease;
}

.lp-faq details[open] summary::after { content: '+'; transform: rotate(45deg); color: var(--cyan-deep); }

.lp-faq__answer { padding: 0 0 24px; color: var(--muted); max-width: 44em; }
.lp-faq__answer p + p { margin-top: 14px; }

/* ── CTA-Klammer (dunkel) ── */
/* Wie der Schlussblock der Startseite: Wo Papier auf Navy trifft, steht eine
   cyane Kante — auf --ink-hero ist --cyan die Variante, die leuchtet. */
.lp-cta {
  margin-top: clamp(64px, 9vh, 110px);
  border-top: 2px solid var(--cyan);
  background: var(--ink-hero);
  color: #F4F1EA;
  padding-top: clamp(56px, 8vh, 92px);
  padding-bottom: clamp(56px, 8vh, 92px);
}

.lp-cta .lp-kicker { color: rgba(34, 211, 238, 0.72); }
.lp-cta .lp-kicker::after { background: var(--cyan); }

.lp-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.02; letter-spacing: -0.03em;
  margin-top: 18px;
  text-wrap: balance;
}

.lp-cta h2 .lp-accent { color: var(--amber); }

.lp-cta p { max-width: 40em; margin-top: 20px; color: rgba(244, 241, 234, 0.78); }

.lp-cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 32px; }

.lp-cta .lp-btn:hover { box-shadow: 4px 4px 0 var(--cyan); }

.lp-cta__note {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(244, 241, 234, 0.55);
}

/* ── Weiterlesen ── */
.lp-more { padding-top: clamp(56px, 8vh, 92px); }

.lp-more__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0; margin-top: 26px;
  border-top: 1px solid var(--line-cyan-soft);
}

.lp-more__link {
  display: block; padding: 22px 22px 22px 0;
  border-bottom: 1px solid var(--line-cyan-soft);
  text-decoration: none; color: var(--ink);
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.lp-more__link + .lp-more__link { border-left: 1px solid var(--line-cyan-soft); padding-left: 22px; }

.lp-more__link:hover { background: var(--cyan-wash-strong); }

.lp-more__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan-deep);
}

.lp-more__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px; line-height: 1.2;
  margin-top: 8px;
}

/* ── Fuß ── */
.lp-footer {
  margin-top: clamp(56px, 8vh, 92px);
  border-top: 1px solid var(--line);
  padding-top: 30px; padding-bottom: 44px;
  font-size: 14px; color: var(--muted);
}

.lp-footer nav { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin-bottom: 18px; }
.lp-footer a { color: var(--muted); text-decoration: none; }
.lp-footer a:hover { color: var(--cyan-deep); text-decoration: underline; }

/* Rubriken in der Fußzeile: neun Leistungsseiten brauchen eine Ordnung,
   sonst ist die Zeile nur eine Linkwolke. */
.lp-footer__rubrik {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan-deep);
  border-left: 1px solid var(--line-cyan-soft);
  padding-left: 20px;
}

.lp-footer__rubrik:first-child { border-left: 0; padding-left: 0; }

.lp-footer__meta {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.08em;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

/* ── Dezente CSS-only-Reveals ──
   Scroll-getrieben, wo der Browser es kann; sonst passiert schlicht nichts.
   Kein JS im Spiel, Inhalte sind ohne die Animation vollständig sichtbar. */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .lp-section, .lp-band, .lp-more, .lp-cta > .lp-container {
      animation: lp-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }

    /* Im Feld bewegt sich der Block als Ganzes — sonst würde der Text
       gegenüber seiner eigenen Tönung verrutschen. */
    .lp-band > .lp-section { animation: none; }
  }

  /* Einmaliger Einlauf beim Laden, nur im Hero und nur wenige hundert
     Millisekunden — danach steht alles regulär im Fluss. */
  .lp-hero > * { animation: lp-in 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
  .lp-hero > *:nth-child(2) { animation-delay: 0.06s; }
  .lp-hero > *:nth-child(3) { animation-delay: 0.12s; }
  .lp-hero > *:nth-child(4) { animation-delay: 0.17s; }
  .lp-hero > *:nth-child(5) { animation-delay: 0.22s; }
  .lp-hero > *:nth-child(6) { animation-delay: 0.27s; }
}

@keyframes lp-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* Im Druck darf nichts halbtransparent hängen bleiben. */
@media print {
  .lp-hero > *, .lp-section, .lp-band, .lp-more, .lp-cta > .lp-container {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Bewusst ohne Opacity: ein Reveal, der Text ausblendet, macht Inhalte in
   Screenshots, PDF-Druck und beim Sprung per Anker unsichtbar. Der Versatz
   allein reicht als Lebenszeichen. */
@keyframes lp-rise {
  from { transform: translateY(22px); }
  to { transform: none; }
}

/* ── Schmale Viewports ── */
@media (max-width: 720px) {
  .lp-kicker { font-size: 11.5px; letter-spacing: 0.14em; gap: 10px; }
  .lp-kicker::after { flex-basis: 40px; }
  .lp-brand__word { font-size: 16px; }
  /* Schrift und Seitenluft schrumpfen, damit Marke und Knopf in eine 375er-Zeile
     passen — die Höhe darf das nicht mitmachen: gemessen waren es 144x35, und der
     Knopf ist auf diesen Seiten die einzige Handlung. min-height hebt nur die
     Trefferfläche auf 44px, die Zeilenbreite bleibt wie sie war. */
  .lp-header .lp-btn {
    font-size: 10.5px;
    padding: 8px 12px;
    letter-spacing: 0.06em;
    min-height: 44px;
  }
  .lp-hero { padding-top: 26px; }

  /* Trennung statt Sprengung: mit lang="de" bricht der Browser die Komposita an
     sinnvollen Stellen, bevor overflow-wrap hart schneiden muss. */
  .lp-hero h1 { font-size: clamp(30px, 8vw, 46px); hyphens: auto; }
  .lp-h2, .lp-cta h2 { hyphens: auto; }

  .lp-list__item { grid-template-columns: 1fr; gap: 0; padding: 22px 0; }
  .lp-list__num { padding-top: 0; margin-bottom: 6px; }
  .lp-list__text, .lp-chips { grid-column: 1; }

  .lp-pull { padding-left: 0; padding-top: 44px; }
  .lp-pull::before { top: -0.24em; font-size: 72px; }

  .lp-steps__item { grid-template-columns: 1fr; gap: 0; padding: 22px 0; }
  .lp-steps__num { margin-bottom: 10px; font-size: 34px; }

  .lp-review__head { flex-wrap: wrap; gap: 8px; }
  .lp-review__verified { margin-left: 0; flex-basis: 100%; }

  /* Portrait über den Text statt daneben — und schmaler, damit das Gesicht nicht
     die halbe erste Bildschirmhöhe frisst. */
  .lp-person { grid-template-columns: 1fr; gap: 22px; }
  .lp-person__figure { max-width: 190px; }
  /* Aus zwei Zeilen Text werden hier acht — das Rund-Portrait gehört dann an den
     Anfang des Absatzes, nicht in seine Mitte. */
  .lp-person__second { align-items: flex-start; }

  .lp-fit { grid-template-columns: 1fr; }
  .lp-fit__col, .lp-fit__col:first-child { padding: 24px 0; }
  .lp-fit__col + .lp-fit__col { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }

  .lp-note { padding: 22px 20px; }

  .lp-more__link, .lp-more__link + .lp-more__link {
    padding: 20px 0; border-left: 0; padding-left: 0;
  }
  .lp-more__link:hover { background: transparent; }

  /* Die zwölf Fußzeilen-Ziele waren mit dem Daumen 23 px hoch — 1 px unter WCAG
     2.5.8 und weit unter dem 44er-Richtwert. min-height hebt nur die
     Trefferfläche, Schrift und Zeilenbreite bleiben, wie sie sind. Der
     Zeilenabstand wandert dafür in den Link hinein: sonst wüchse die Fußzeile
     auf dem Handy um die Höhe von vier zusätzlichen Zeilen. */
  .lp-footer nav { gap: 0 20px; }
  .lp-footer nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (max-width: 340px) {
  .lp-brand__word { display: none; }
}
