/* ============================================================================
   Stipendiumscoach — Verkaufsfunnel
   Tokens und Bausteine aus design/Stipendiumscoach DESIGN V2
   (colors_and_type.css + ui_kits/website/index.html).

   Zwei Abweichungen vom UI-Kit, bewusst:
   1. Das Kit hat KEINE Media Queries. Diese Zielgruppe kommt über Instagram
      und TikTok, also überwiegend mobil — hier sind sie drin.
   2. Fließtext links, nie zentriert (Design-README: „never centered
      long-form text"). Zentriert werden nur Labels und Knöpfe.
   ========================================================================== */

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

:root {
  --navy: #001629;
  --navy-mid: #002B49;
  --rosa: #E8336D;
  --red: #B7102A;
  --red-deep: #92001D;
  --red-container: #DB3140;

  --surface: #faf9f8;
  --surface-low: #f4f3f2;
  --surface-mid: #eeeeed;
  --surface-high: #e9e8e7;
  --surface-white: #ffffff;

  --text-primary: #1a1c1c;
  --text-secondary: #42474d;
  --text-muted: #73777e;
  --on-dark-dim: rgba(207, 229, 255, 0.78);

  /* Grün als Positiv-Signal. Kein Ersatz für Rot/Rosa — es sagt "Ergebnis gut",
     nicht "hier klicken". Der Ton ist der der Live-Seite (#22c55e), für Text auf
     hellem Grund eine Stufe dunkler, damit der Kontrast trägt. */
  --gruen: #157f47;
  --gruen-flaeche: rgba(21, 127, 71, 0.10);

  --shadow-ambient: 0 20px 40px rgba(0, 43, 73, 0.06);
  --shadow-card: 0 20px 40px rgba(0, 43, 73, 0.04);
  --shadow-float: 0 40px 60px rgba(0, 43, 73, 0.12);

  --nav-h: 62px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--surface);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: inherit; line-height: 1; vertical-align: middle;
}

/* --- Navigation ---------------------------------------------------------- */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(250, 249, 248, 0.86);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-ambient);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; min-height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 24px;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--navy-mid); text-decoration: none;
}
.logo-s {
  width: 28px; height: 28px; border-radius: 6px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; font-weight: 800; font-style: italic;
}
.nav-note {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
}
.nav-cta {
  background: var(--red); color: #fff; text-decoration: none;
  font-size: 13px; font-weight: 700; padding: 9px 20px;
  border-radius: 8px; border: 0; cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-container); transform: scale(1.03); }

/* --- Grundraster --------------------------------------------------------- */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-low { background: var(--surface-low); }
.section-mid { background: var(--surface-mid); }

.label {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px;
}
.label-muted { color: var(--text-muted); }

h1, h2, h3 { color: var(--navy); letter-spacing: -0.03em; }
h1 { font-size: clamp(33px, 5.2vw, 62px); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(25px, 3.4vw, 40px); font-weight: 800; line-height: 1.14; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 700; line-height: 1.28; }
em { font-style: italic; color: var(--red); }

p { line-height: 1.68; color: var(--text-secondary); }
.lead { font-size: clamp(17px, 1.7vw, 20px); line-height: 1.62; }
/* Im Zweispalter ist die Lead-Groesse zu laut: neben einem Bild konkurriert sie
   mit der Ueberschrift. Eine Stufe kleiner, mehr Zeilenhoehe. */
.split .lead { font-size: clamp(15.5px, 1.35vw, 17px); line-height: 1.72; }
.small { font-size: 13px; line-height: 1.6; }
.micro { font-size: 11px; letter-spacing: 0.04em; color: var(--text-muted); }
.stack > * + * { margin-top: 18px; }
.stack-tight > * + * { margin-top: 10px; }
strong { color: var(--navy); font-weight: 700; }

/* Knopfreihe. Lag ursprünglich im Hero-Block und ist beim Aufräumen der
   abgelösten Entwürfe mit weggefallen — danach klebten die zwei Hero-Knöpfe
   aufeinander, weil nur noch die Mobil-Regel für .hero-actions existierte.
   Der Prüfschritt "fehlt eine Klasse im CSS?" fand das nicht: die Klasse war
   vorhanden, nur ihre Grundregel nicht. Gefunden hat es Elias am Bild. */
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* --- Knöpfe -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: 16px; font-weight: 700;
  padding: 16px 34px; border-radius: 9999px; border: 0;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
  background: var(--red); color: #fff;
  box-shadow: 0 10px 24px rgba(183, 16, 42, 0.28);
}
.btn:hover { transform: scale(1.03); box-shadow: 0 14px 30px rgba(183, 16, 42, 0.36); }
.btn:active { transform: scale(0.98); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-block { width: 100%; }
.btn-navy { background: var(--navy); box-shadow: 0 10px 24px rgba(0, 22, 41, 0.24); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-quiet {
  background: transparent; color: var(--navy); box-shadow: none;
  border: 1.5px solid rgba(0, 43, 73, 0.16); font-size: 15px; padding: 14px 26px;
}
.btn-quiet:hover { border-color: var(--red); color: var(--red); background: transparent; }
.btn-link {
  background: none; border: 0; padding: 0; box-shadow: none;
  color: var(--red); font-weight: 700; font-size: 14px;
  text-decoration: underline; cursor: pointer;
}
.btn-link:hover { transform: none; box-shadow: none; }
.cta-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* --- Karten -------------------------------------------------------------- */
.cards { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface-white); border-radius: 16px; padding: 26px 24px;
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(183, 16, 42, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 22px; margin-bottom: 15px;
}
.card h3 { margin-bottom: 8px; font-size: 17px; }
.card p { font-size: 14px; }
.card-num {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: var(--red);
  margin-bottom: 10px; text-transform: uppercase;
}

/* Zitatkarten — echte Freitextantworten aus dem Checker */
.quote-card {
  background: var(--surface-white); border-radius: 14px; padding: 22px 24px;
  box-shadow: var(--shadow-card); border-left: 3px solid var(--rosa);
}
.quote-card p { font-size: 15px; font-style: italic; color: var(--navy); line-height: 1.6; }
.quote-card .micro { margin-top: 12px; font-style: normal; }

/* --- Dunkler Abschnitt --------------------------------------------------- */
.dark { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.dark::before {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 9999px;
  background: radial-gradient(circle, rgba(183, 16, 42, 0.18), transparent 70%);
  top: -130px; right: -60px; pointer-events: none;
}
.dark .wrap, .dark .wrap-narrow { position: relative; z-index: 1; }
.dark h2, .dark h3 { color: #fff; }
.dark p { color: var(--on-dark-dim); }
.dark strong { color: #fff; }
.checklist { display: flex; flex-direction: column; gap: 11px; }
.checklist div { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255, 255, 255, 0.88); line-height: 1.5; }
.checklist .material-symbols-outlined { color: var(--red); font-size: 19px; flex: 0 0 auto; margin-top: 1px; }

/* --- Einwände (Akkordeon) ------------------------------------------------ */
.faq { display: flex; flex-direction: column; gap: 10px; }
details.faq-item {
  background: var(--surface-white); border-radius: 12px; box-shadow: var(--shadow-card);
  overflow: hidden;
}
details.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  font-size: 16px; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: 'add'; font-family: 'Material Symbols Outlined';
  font-size: 20px; color: var(--red); flex: 0 0 auto;
}
details.faq-item[open] summary::after { content: 'remove'; }
details.faq-item .faq-body { padding: 0 22px 20px; }
details.faq-item .faq-body p { font-size: 14.5px; }

/* --- Ergebnisseite ------------------------------------------------------- */
.result-head { padding: calc(var(--nav-h) + 44px) 0 8px; }
.result-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(183, 16, 42, 0.08); color: var(--red);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 9999px; margin-bottom: 20px;
}
.result-badge.neutral { background: var(--surface-mid); color: var(--text-secondary); }
.zahl { font-size: clamp(56px, 10vw, 96px); font-weight: 800; color: var(--red); line-height: 0.95; letter-spacing: -0.04em; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--surface-white); border-radius: 9999px; padding: 7px 14px;
  font-size: 12.5px; font-weight: 600; color: var(--navy-mid);
  box-shadow: 0 6px 14px rgba(0, 43, 73, 0.05);
}
.chip b { font-weight: 800; }
.chip-label { color: var(--text-muted); font-weight: 600; }

.angaben-tabelle { width: 100%; border-collapse: collapse; }
.angaben-tabelle td { padding: 11px 0; border-bottom: 1px solid var(--surface-high); vertical-align: top; font-size: 14px; }
.angaben-tabelle td:first-child { color: var(--text-muted); padding-right: 20px; width: 52%; }
.angaben-tabelle td:last-child { color: var(--navy); font-weight: 600; }

/* Teaser-Karten: Rahmendaten echt, Name maskiert */
.teaser-list { display: flex; flex-direction: column; gap: 14px; }
.teaser {
  background: var(--surface-white); border-radius: 14px; padding: 20px 22px;
  box-shadow: var(--shadow-card); display: flex; gap: 18px; align-items: flex-start;
}
.teaser-num {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9999px;
  background: var(--navy); color: #fff; font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.teaser-body { flex: 1 1 auto; min-width: 0; }
.teaser-maske {
  font-size: 19px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em;
  filter: blur(6px); user-select: none; -webkit-user-select: none;
  pointer-events: none; margin-bottom: 12px; white-space: nowrap; overflow: hidden;
  max-width: 100%;
}
.teaser-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13px; color: var(--text-secondary); }
.teaser-meta span { display: inline-flex; align-items: center; gap: 6px; }
.teaser-meta .material-symbols-outlined { font-size: 16px; color: var(--red); }
.teaser-geld { font-weight: 800; color: var(--navy); }
.passung {
  display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 9999px;
  background: rgba(183, 16, 42, 0.1); color: var(--red);
}
.passung.wahrscheinlich { background: rgba(0, 43, 73, 0.08); color: var(--navy-mid); }
.passung.grenzfall { background: var(--surface-mid); color: var(--text-secondary); }
.teaser-rest {
  background: var(--surface-mid); border-radius: 14px; padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
}
.teaser-rest .material-symbols-outlined { color: var(--text-muted); font-size: 22px; }
.teaser-rest b { color: var(--navy); }

/* Freigeschaltete Programmkarten */
.programm {
  background: var(--surface-white); border-radius: 14px; padding: 22px 24px;
  box-shadow: var(--shadow-card);
}
.programm h3 { margin-bottom: 4px; font-size: 19px; }
.programm .traeger { font-size: 12.5px; color: var(--text-muted); margin-bottom: 14px; }
.programm ul { margin: 12px 0 0 0; padding-left: 18px; }
.programm li { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 6px; }

/* --- Kasse --------------------------------------------------------------- */
.kasse-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 34px; align-items: start; }
.feld { display: block; margin-bottom: 16px; }
.feld span { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--navy-mid); margin-bottom: 7px; }
.feld input, .feld select {
  width: 100%; background: var(--surface-low); border: 1.5px solid transparent;
  border-radius: 8px; padding: 12px 14px; font-family: inherit; font-size: 15px;
  color: var(--navy); outline: none; transition: border-color 0.2s;
}
.feld input:focus, .feld select:focus { border-color: var(--red); background: var(--surface-white); }
.feld input[aria-invalid="true"] { border-color: var(--red); background: #fff5f5; }
.feld-reihe { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.zustimmung { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.zustimmung input { margin-top: 3px; flex: 0 0 auto; width: 17px; height: 17px; accent-color: var(--red); }
.bestellung { background: var(--surface-white); border-radius: 16px; padding: 26px 24px; box-shadow: var(--shadow-card); position: sticky; top: calc(var(--nav-h) + 20px); }
.bestellung-zeile { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; padding: 11px 0; border-bottom: 1px solid var(--surface-high); }
.bestellung-summe { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; font-size: 15px; font-weight: 700; color: var(--navy); }
.bestellung-summe b { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.zahlart { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.zahlart label {
  flex: 1 1 auto; text-align: center; background: var(--surface-low);
  border: 1.5px solid transparent; border-radius: 8px; padding: 11px 10px;
  font-size: 13px; font-weight: 600; color: var(--navy-mid); cursor: pointer;
}
.zahlart input { display: none; }
.zahlart input:checked + span { color: var(--red); font-weight: 800; }
.zahlart label:has(input:checked) { border-color: var(--red); background: var(--surface-white); }

/* --- Meldungen ----------------------------------------------------------- */
.meldung {
  border-radius: 12px; padding: 16px 18px; font-size: 14px; line-height: 1.6;
  border: 1.5px solid rgba(183, 16, 42, 0.35); background: rgba(183, 16, 42, 0.06);
  color: var(--red-deep);
}
.meldung b { color: var(--red-deep); }
.meldung.gut { border-color: rgba(0, 43, 73, 0.2); background: var(--surface-white); color: var(--text-secondary); }
.meldung.gut b { color: var(--navy); }
.laedt { padding: 60px 0; text-align: center; color: var(--text-muted); font-size: 14px; }

/* --- Gutschein ----------------------------------------------------------- */
.gutschein-box {
  background: var(--surface-white); border-radius: 16px; padding: 26px;
  box-shadow: var(--shadow-card); border-top: 4px solid var(--rosa);
}
.gutschein-code {
  font-size: clamp(22px, 4vw, 30px); font-weight: 800; letter-spacing: 0.08em;
  color: var(--navy); background: var(--surface-low); border-radius: 10px;
  padding: 15px 18px; text-align: center; margin: 14px 0;
  font-variant-numeric: tabular-nums; word-break: break-all;
}
.preis-durch { text-decoration: line-through; color: var(--text-muted); font-weight: 600; }
.preis-neu { color: var(--red); font-weight: 800; }

.download-box {
  background: var(--navy); border-radius: 18px; padding: 30px 28px; color: #fff;
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
}
.download-box h3 { color: #fff; margin-bottom: 6px; }
.download-box p { color: var(--on-dark-dim); font-size: 14px; }
.download-box .btn { flex: 0 0 auto; }

/* --- Fußzeile ------------------------------------------------------------ */
footer {
  background: var(--surface-low); padding: 52px 0 26px;
  border-top: 1px solid rgba(0, 43, 73, 0.06); margin-top: 0;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 34px; margin-bottom: 36px; }
.footer-brand { font-size: 16px; font-weight: 800; color: var(--navy-mid); letter-spacing: -0.03em; margin-bottom: 9px; }
.footer-tagline { font-size: 13px; max-width: 290px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: var(--text-secondary); text-decoration: none; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(0, 43, 73, 0.06); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom span, .footer-bottom a { font-size: 11px; color: var(--text-muted); text-decoration: none; }

/* --- Mobil --------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid, .kasse-grid { grid-template-columns: 1fr; gap: 40px; }
  .collage { max-width: 420px; margin: 0 auto; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .bestellung { position: static; }
  .section { padding: 64px 0; }
  .nav-note { display: none; }
}

@media (max-width: 620px) {
  .wrap, .wrap-narrow { padding: 0 18px; }
  .hero { padding: calc(var(--nav-h) + 34px) 0 46px; }
  .section { padding: 52px 0; }
  .cta-block { padding: 52px 0; }
  .btn { width: 100%; font-size: 15.5px; padding: 16px 22px; }
  .btn-link, .nav-cta { width: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .collage-stat { right: 0; bottom: -18px; padding: 12px 15px; }
  .teaser { gap: 13px; padding: 17px 16px; }
  .teaser-maske { font-size: 16px; }
  .feld-reihe { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .download-box { padding: 24px 20px; }
  .angaben-tabelle td:first-child { width: 48%; }
}

/* ============================================================================
   Landerseite v2 — Schlagzeilen-Prinzip (SCHREIBSTIL.md §12)
   Vorbild für die Wirkung: ki-kodex.io/lp — eine große Aussage, Zahlen-Kacheln,
   Logo-Reihe, kaum Fließtext. Farben und Schrift bleiben Stipendiumscoach:
   Navy statt Schwarz, Rot/Rosa statt Cyan.
   ========================================================================== */

/* --- Zweispalter Text|Bild ---------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
/* Rasterfelder sind von Haus aus mindestens so breit wie ihr breitester Inhalt. Die
   Programm-Maske im Teaser laeuft mit `white-space: nowrap` — auf dem Handy hat sie die
   Spalte damit auf 428 px gedrueckt und die ganze Seite seitlich verschoben (gemessen bei
   390 px: scrollWidth 446). `min-width: 0` nimmt dem Feld diese Mindestbreite. */
.split > * { min-width: 0; }
.split-bild img {
  display: block; width: 100%; height: auto; border-radius: 18px;
  aspect-ratio: 3/2; object-fit: cover;
  filter: grayscale(0.72) contrast(1.04);
  box-shadow: var(--shadow-ambient);
}
.split-bild.hoch img { aspect-ratio: 4/5; }
.split-bild { position: relative; }
.split-bild-akzent {
  position: absolute; width: 92px; height: 92px; border-radius: 9999px;
  background: var(--rosa); opacity: 0.9; z-index: -1;
}
.split-bild-akzent.oben-links { top: -26px; left: -26px; }
.split-bild-akzent.unten-rechts { bottom: -26px; right: -26px; background: var(--navy-mid); }

/* Mythen-Liste */
/* Mythen. Elias am 2026-08-22: "wirkt eher als waere es asynchron" — Ursache
   waren zwei konkurrierende Schriftgroessen (16 px Behauptung / 14 px Aufloesung)
   plus zwei Farben in einem Kasten. Jetzt: die Behauptung traegt die Zeile in
   Brand-Rosa, die Aufloesung sitzt eine Stufe kleiner in Navy als eigener Block
   mit rosa Kante. Eine Hierarchie statt zwei. */
.mythen { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.mythos {
  background: var(--surface-white); border-radius: 14px; padding: 20px 22px;
  box-shadow: var(--shadow-card);
}
.mythos b {
  display: block; font-size: clamp(16px, 1.6vw, 18.5px); font-weight: 800;
  color: var(--rosa); line-height: 1.3; letter-spacing: -0.015em;
}
.mythos i {
  display: block; margin-top: 10px; padding-left: 14px;
  border-left: 3px solid rgba(232,51,109,0.28);
  font-size: 14.5px; font-style: normal; font-weight: 500;
  color: var(--navy); line-height: 1.55;
}

/* --- Claim-Band ---------------------------------------------------------- */
/* #001629, wie auf der Live-Seite. Vorher stand hier navy-mid (#002B49) mit
   einem rosa Radialschein darueber — die Farbe steht zwar in den Brand-Tokens,
   liegt live aber nur an einer Stelle, und mit dem Schein kippt sie ins
   Violett. Elias am 2026-08-22: "diese Blaufarbe habe ich nirgends gesehen." */
.claim {
  background: var(--navy); position: relative; overflow: hidden;
  padding: 76px 0; text-align: center;
}
.claim-text {
  position: relative; z-index: 1;
  font-size: clamp(26px, 3.8vw, 46px); font-weight: 800; color: #fff;
  letter-spacing: -0.035em; line-height: 1.12; max-width: 820px; margin: 0 auto;
}
.claim-text em { font-style: normal; color: var(--rosa); }
.claim-sub { position: relative; z-index: 1; margin-top: 18px; font-size: 15px; color: rgba(255,255,255,0.6); }

/* --- Schritte ------------------------------------------------------------ */
.schritte { display: flex; flex-direction: column; gap: 4px; margin-top: 26px; }
.schritt { display: flex; gap: 18px; align-items: flex-start; padding: 16px 0; }
.schritt + .schritt { border-top: 1px solid var(--surface-high); }
.schritt-num {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 9999px;
  background: var(--red); color: #fff; font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.schritt b { display: block; font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.schritt p { font-size: 14px; }

/* --- Stimmen ------------------------------------------------------------- */
.stimmen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.stimme {
  background: var(--surface-white); border-radius: 16px; padding: 24px 22px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.stimme-zitat { font-size: 15px; line-height: 1.6; color: var(--navy); flex: 1 1 auto; }
.stimme-fuss { margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--surface-high); }
.stimme-fuss b { display: block; font-size: 13.5px; color: var(--navy); }
.stimme-fuss span { font-size: 11.5px; color: var(--text-muted); }
.stimme-marke { font-size: 20px; color: var(--rosa); line-height: 1; margin-bottom: 10px; font-weight: 800; }

/* --- Für-wen-Kacheln ---------------------------------------------------- */
.fuerwen { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.fuerwen-karte {
  background: var(--surface-white); border-radius: 14px; padding: 22px 20px;
  box-shadow: var(--shadow-card);
}
.fuerwen-karte .material-symbols-outlined {
  color: var(--red); font-size: 26px; margin-bottom: 12px; display: block;
}
.fuerwen-karte b { display: block; font-size: 15.5px; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.fuerwen-karte p { font-size: 13.5px; }

/* --- Was du bekommst ---------------------------------------------------- */
.stufen { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
.stufe { border-radius: 18px; padding: 30px 28px; }
.stufe-jetzt { background: var(--surface-white); box-shadow: var(--shadow-card); }
.stufe-dann { background: var(--navy); color: #fff; }
.stufe-dann h3, .stufe-dann b { color: #fff; }
.stufe-dann p, .stufe-dann li { color: var(--on-dark-dim); }
.stufe-label { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 12px; }
.stufe-jetzt .stufe-label { color: var(--red); }
.stufe-dann .stufe-label { color: var(--rosa); }
.stufe ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.stufe li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.stufe li .material-symbols-outlined { font-size: 18px; flex: 0 0 auto; margin-top: 1px; }
.stufe-jetzt li .material-symbols-outlined { color: var(--red); }
.stufe-dann li .material-symbols-outlined { color: var(--rosa); }

/* --- Mobil -------------------------------------------------------------- */
@media (max-width: 900px) {
  .lp-hero-grid, .split, .stufen { grid-template-columns: 1fr; gap: 40px; }
  .lp-foto { max-width: 400px; margin: 0 auto; }
  .stimmen { grid-template-columns: 1fr; }
  .fuerwen { grid-template-columns: 1fr 1fr; }
  .split-reverse .split-bild { order: -1; }
}
@media (max-width: 620px) {
  .lp-hero { padding-top: calc(var(--nav-h) + 40px); }
  .lp-stats { grid-template-columns: 1fr; gap: 9px; max-width: none; }
  .lp-stat { display: flex; align-items: baseline; gap: 10px; text-align: left; padding: 13px 16px; }
  .lp-stat b { font-size: 21px; }
  .lp-stat span { margin-top: 0; }
  .fuerwen { grid-template-columns: 1fr; }
  .claim { padding: 56px 0; }
  .lp-foto-karte { left: 0; bottom: 14px; padding: 11px 14px; }
  .split-bild-akzent { display: none; }
}

/* ============================================================================
   Zwei helle Hero-Varianten (Elias, 2026-08-22: "hero-bereich soll hell sein,
   erstell 2 versionen"). Beide untereinander auf der Seite, er entscheidet.

   A — Startseiten-Muster: Text links, Foto rechts in gerundeter Karte mit
       schwebenden Belegkarten davor.
   B — Ueber-uns-Muster: sehr grosse Display-H1 mit rosa Textmarkerband und
       einer Serif-Kursivzeile, Textspalte rechts unten, runde Stoerer.
       Marker-Mechanik 1:1 aus der Live-Seite uebernommen
       (inset 14% -2% 4% -2%, rotate(-1.2deg), gemischte Radien).
   ========================================================================== */


/* ── Gemeinsam: helle Buehne mit dezenter Geometrie ───────────────────────── */
.hell {
  position: relative; overflow: hidden;
  background: var(--surface);
}
.hell::before {
  content: ''; position: absolute; width: 460px; height: 460px; border-radius: 9999px;
  background: var(--surface-mid); top: -190px; left: -170px; pointer-events: none;
}
.hell-inner { position: relative; z-index: 1; }

/* ── A · Startseiten-Hero ─────────────────────────────────────────────────── */
.heroA { padding: calc(var(--nav-h) + 56px) 0 76px; }
.heroA-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center; }
.heroA-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface-white); border-radius: 9999px; padding: 7px 16px 7px 7px;
  box-shadow: 0 8px 20px rgba(0,43,73,0.07); margin-bottom: 26px;
}
.heroA-pill b {
  background: rgba(183,16,42,0.10); color: var(--red); border-radius: 9999px;
  padding: 4px 11px; font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.heroA-pill span { font-size: 13px; font-weight: 600; color: var(--navy); padding-right: 6px; }
.heroA h1 {
  font-size: clamp(36px, 5.2vw, 62px); font-weight: 800; color: var(--navy);
  letter-spacing: -0.038em; line-height: 1.03; margin-bottom: 22px;
}
.heroA h1 u {
  color: var(--red); text-decoration: none;
  border-bottom: 5px solid rgba(183,16,42,0.28); padding-bottom: 1px;
}
.heroA-sub { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; color: var(--text-secondary); max-width: 500px; margin-bottom: 30px; }
.heroA-proof { display: flex; align-items: center; gap: 13px; margin-top: 30px; }
.heroA-avatare { display: flex; }
.heroA-avatare i {
  width: 32px; height: 32px; border-radius: 9999px; background: var(--surface-high);
  border: 2px solid var(--surface); margin-left: -9px;
  display: flex; align-items: center; justify-content: center;
  font-style: normal; font-size: 10px; font-weight: 800; color: var(--text-muted);
}
.heroA-avatare i:first-child { margin-left: 0; }
.heroA-avatare i:last-child { background: var(--red); color: #fff; border-color: var(--surface); }
.heroA-proof p { font-size: 13px; color: var(--text-secondary); }

/* Foto mit schwebenden Belegkarten */
.fotokarte { position: relative; }
/* Weisser Kartengrund mit Absicht: das Markenbild vom Server ist auf WEISS
   freigestellt, ohne Alphakanal. Auf Creme (#faf9f8) waere die Kante sichtbar;
   in einer weissen Karte verschwindet sie. */
.fotokarte > img {
  display: block; width: 100%; height: auto; border-radius: 22px;
  aspect-ratio: 4/5; object-fit: cover; object-position: 50% 6%;
  background: var(--surface-white);
  box-shadow: 0 30px 64px rgba(0,43,73,0.16);
}
.fk {
  position: absolute; background: var(--surface-white); border-radius: 14px;
  padding: 13px 17px; box-shadow: 0 18px 40px rgba(0,43,73,0.16);
}
.fk-label { font-size: 9px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }
.fk-gross { font-size: 21px; font-weight: 800; color: var(--navy); line-height: 1.05; margin-top: 3px; }
.fk-klein { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.fk-ergebnis { top: 18px; left: -26px; }
.fk-kostenlos { bottom: 22px; left: -30px; display: flex; align-items: center; gap: 11px; }
.fk-kostenlos .material-symbols-outlined { color: var(--red); font-size: 20px; }
.fk-zahl { bottom: 74px; right: -22px; background: var(--navy); }
.fk-zahl .fk-label { color: var(--rosa); }
.fk-zahl .fk-gross { color: #fff; }
.fk-zahl .fk-klein { color: rgba(207,229,255,0.65); }

@media (max-width: 900px) {
  .heroA-grid { grid-template-columns: 1fr; gap: 42px; }
  .fotokarte { max-width: 400px; margin: 0 auto; }
  .stoerer-rosa { width: 112px; height: 112px; top: -10px; right: 2%; font-size: 9px; }
  .stoerer-navy { display: none; }
}
@media (max-width: 620px) {
  .heroA { padding: calc(var(--nav-h) + 34px) 0 52px; }
  .fk-ergebnis { left: 0; top: 12px; }
  .fk-kostenlos { left: 0; bottom: 12px; }
  .fk-zahl { right: 0; bottom: 96px; }
  .stoerer-rosa { display: none; }
}

/* Stimmen: Person mit Initialen-Kreis. Echte Fotos von Honalin und Justine
   liegen nicht vor — ein Stockfoto als deren Gesicht wuerde eine belegte
   Aussage in eine erfundene Person verwandeln. Initialen bis die Fotos da sind. */
.stimme-person { display: flex; align-items: center; gap: 12px; }
.stimme-avatar {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 9999px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; letter-spacing: 0.02em;
}

/* ============================================================================
   Laufband „Bekannt aus" — Mechanik 1:1 aus der Live-Ueber-uns-Seite
   (@keyframes marquee 0 → -50%, Spur zweimal identisch im HTML, damit der
   Umlauf ohne Sprung schliesst). Navy, gerundet, rosa Punkt als Trenner.
   ========================================================================== */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.laufband {
  position: relative; background: var(--navy); color: #fff;
  overflow: hidden; border-radius: 22px; padding: 20px 0;
}
.laufband-spur {
  display: flex; white-space: nowrap;
  animation: marquee 44s linear infinite;
  font-size: clamp(19px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.025em;
}
.laufband-spur > span { display: inline-flex; align-items: center; gap: 46px; padding-right: 46px; }
.laufband-spur img {
  height: clamp(20px, 2.2vw, 30px); width: auto; display: block;
  opacity: 0.9; flex: 0 0 auto;
}
/* auszeit liegt nur farbig vor — auf Navy wird es aufgehellt statt verfälscht */
.laufband-spur img.aufhellen { filter: brightness(0) invert(1); opacity: 0.82; }
.laufband-spur .punkt { display: inline-block; width: 10px; height: 10px; border-radius: 999px; background: var(--rosa); flex: 0 0 auto; }
.laufband-spur .kursiv {
  font-family: 'Newsreader', Georgia, serif; font-style: italic;
  font-weight: 400; color: #ffd6e0;
}
/* Wer Bewegung im System abgeschaltet hat, bekommt sie nicht. */
@media (prefers-reduced-motion: reduce) {
  .laufband-spur { animation: none; }
  .laufband { overflow-x: auto; }
}
.laufband-label {
  display: block; text-align: center; margin-bottom: 16px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}

/* Rosa Rundsiegel aus dem Ueber-uns-Muster, jetzt im Hero A */
.siegel {
  position: absolute; display: grid; place-items: center; text-align: center;
  border-radius: 9999px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.07em; line-height: 1.2; padding: 14px; z-index: 3;
  user-select: none; pointer-events: none;
}
/* Vollständig INNERHALB der Fotokarte. Vorher saß es am Header und ragte über dessen
   obere Kante — `.hell` hat `overflow: hidden`, also war es abgeschnitten (Elias
   2026-08-22). Ein Siegel, das über einen Rand hinausragt, kann bei irgendeiner
   Fensterbreite immer abgeschnitten werden; deshalb liegt es jetzt ganz auf dem Bild,
   oben rechts in der freien Fläche neben dem Doktorhut. */
.siegel-rosa {
  width: 132px; height: 132px; background: var(--rosa); color: #fff;
  font-size: 11px; transform: rotate(-9deg); top: 22px; right: 18px;
  box-shadow: 0 14px 32px rgba(232,51,109,0.34);
}
.siegel-navy {
  width: 108px; height: 108px; background: var(--navy); color: #fff;
  font-size: 10px; transform: rotate(7deg); bottom: -26px; right: 34%;
}

/* Echte Gesichter statt Initialen im Vertrauensbeleg */
.heroA-avatare img {
  width: 34px; height: 34px; border-radius: 9999px; object-fit: cover;
  border: 2px solid var(--surface); margin-left: -9px; background: var(--surface-high);
}
.heroA-avatare img:first-child { margin-left: 0; }
.stimme-avatar-foto {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 9999px;
  object-fit: cover; background: var(--surface-mid);
}

@media (max-width: 620px) {
  .siegel-rosa { width: 96px; height: 96px; font-size: 9px; top: 12px; right: 10px; }
  .siegel-navy { display: none; }
  .laufband { border-radius: 16px; }
  .laufband-spur { font-size: 17px; }
  .laufband-spur > span { gap: 30px; padding-right: 30px; }
}

/* ============================================================================
   Ergebnisseite = Verkaufsseite. Reihenfolge: erst das Gratis-Versprechen
   einloesen, dann verkaufen. Der Vorname steht an mindestens vier Stellen —
   das ist der Beweis gegen die alte Live-Seite, die "4 Programme" fuenfmal
   fest im HTML fuehrt und jedem dasselbe zeigt.
   ========================================================================== */

/* Zahl-Block */
.zahlkarte {
  background: var(--surface-white); border-radius: 20px; padding: 32px;
  box-shadow: var(--shadow-ambient); display: grid;
  grid-template-columns: auto 1fr; gap: 34px; align-items: center;
}
.zahlkarte .zahl { font-size: clamp(64px, 11vw, 120px); }
.zahl-unter { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }

/* Datenstand-Kasten */
.datenstand {
  background: var(--surface-mid); border-radius: 16px; padding: 22px 24px;
}
.datenstand-reihe { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; padding: 9px 0; }
.datenstand-reihe + .datenstand-reihe { border-top: 1px solid rgba(0,43,73,0.08); }
.datenstand-reihe b { color: var(--navy); white-space: nowrap; }

/* Uebergang: dunkler Riegel mit Vorname */
.riegel { background: var(--navy); color: #fff; padding: 64px 0; }
.riegel h2 { color: #fff; }
.riegel p { color: var(--on-dark-dim); }
/* Hervorhebungen auf dunklem Grund brauchen Weiss, sonst sind sie unsichtbar:
   „Offen ist das WO" ging im gedimmten Fliesstext unter (Elias 2026-08-22). */
.riegel strong, .riegel em { color: #fff; }
.riegel em { font-style: italic; }

/* Ergebnisseite: alle Sektionen laufen auf derselben Spur (1080 px), nur die FAQ bleibt
   schmal. Vorher mischte die Seite 760 und 1080 — sichtbar als springende Ränder von
   Abschnitt zu Abschnitt. Damit der Fliesstext dabei lesbar bleibt, wird die ZEILE
   begrenzt, nicht der Abschnitt: eine Textspalte über 1080 px liest niemand, und eine
   schmalere Sektion würde den Sprung zurückholen, den wir gerade beseitigt haben. */
#main p:not([class]),
#main .lead,
#main .small,
#main .micro { max-width: 780px; }
/* In einem zentrierten Abschnitt muss die begrenzte Zeile mittig sitzen, sonst klebt
   sie links und der Block wirkt schief (Elias 2026-08-22 am Abschluss-CTA). */
#main [style*="text-align:center"] p { margin-left: auto; margin-right: auto; }

/* Gedanken-Blöcke „was dich noch aufhält" */
.gedanken { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.gedanke {
  background: var(--surface-white); border-radius: 16px; padding: 24px 26px;
  box-shadow: var(--shadow-card);
}
.gedanke-satz {
  font-size: clamp(17px, 1.8vw, 20px); font-weight: 800; color: var(--rosa);
  letter-spacing: -0.02em; line-height: 1.3;
}
.gedanke-antwort {
  margin-top: 12px; padding-left: 16px; border-left: 3px solid rgba(232,51,109,0.28);
  font-size: 15px; line-height: 1.62; color: var(--navy);
}
.gedanke-beleg { display: block; margin-top: 9px; font-size: 12px; color: var(--text-muted); }

/* Wertkacheln */
.wert { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.wert-karte { background: var(--surface-white); border-radius: 16px; padding: 24px 22px; box-shadow: var(--shadow-card); }
.wert-zahl { font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--red); letter-spacing: -0.03em; line-height: 1; }
.wert-karte b { display: block; margin-top: 12px; font-size: 15px; color: var(--navy); }
.wert-karte p { margin-top: 6px; font-size: 13.5px; }
.wert-karte .micro { margin-top: 10px; display: block; }

/* Gründer */
.gruender { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.gruender-foto {
  border-radius: 20px; overflow: hidden; background: var(--surface-mid);
  box-shadow: var(--shadow-ambient);
}
.gruender-foto img { display: block; width: 100%; height: auto; }
.gruender-zahlen { display: flex; gap: 26px; margin-top: 24px; flex-wrap: wrap; }
.gruender-zahlen div b { display: block; font-size: 24px; font-weight: 800; color: var(--red); line-height: 1; }
.gruender-zahlen div span { font-size: 12px; color: var(--text-muted); }

/* Vorschau des Dokuments, absichtlich weichgezeichnet */
/* Kein Weichzeichner (Elias 2026-08-22): das Bild ist ein Produktfoto, kein Inhalt.
   Unscharf verbirgt es nichts - es sieht nur nach einem Ladefehler aus. Verschlossen
   sind die Namen in der Liste daneben; hier ist die Ware zu sehen, nicht das Geheimnis. */
.vorschau { position: relative; display: block; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-ambient); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
a.vorschau:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(0,22,41,0.18); }
.vorschau img { display: block; width: 100%; height: auto; }
.vorschau-schild {
  position: absolute; inset: auto 0 0 0; padding: 20px;
  background: linear-gradient(to top, rgba(0,22,41,0.94), rgba(0,22,41,0));
  color: #fff; font-size: 14px; font-weight: 700; text-align: center;
}
.vorschau-aktion {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  background: var(--red); color: #fff; border-radius: 9999px; padding: 9px 18px; font-size: 13px;
}
.vorschau-schloss {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 9999px; background: var(--red);
  display: grid; place-items: center; color: #fff; font-size: 26px;
  box-shadow: 0 12px 30px rgba(183,16,42,0.4);
}

@media (max-width: 900px) {
  .zahlkarte { grid-template-columns: 1fr; gap: 20px; padding: 26px; }
  .wert { grid-template-columns: 1fr; }
  .gruender { grid-template-columns: 1fr; gap: 32px; }
  .gruender-foto { max-width: 340px; }
}

/* --- Ergebnis-Kopf: Positiv-Signal und Mobilentlastung ------------------- */
.result-badge.gut { background: var(--gruen-flaeche); color: var(--gruen); }
.result-badge.gut .material-symbols-outlined { color: var(--gruen); font-variation-settings: 'FILL' 1; }
.result-badge { flex-wrap: wrap; row-gap: 4px; }
.result-badge .code { font-variant-numeric: tabular-nums; white-space: nowrap; }
/* Elias 2026-08-22: die grosse Zahl bleibt im Brand-Rot. Gruen traegt in dieser
   Oberflaeche nur der Statusstreifen oben (Auswertung abgeschlossen) - eine zweite
   gruene Flaeche macht daraus eine Ampel, die niemand gebaut hat. */

/* Weiterlesen-Hinweis statt zweitem Knopf */
.weiterlesen {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 26px;
  font-size: 14px; font-weight: 700; color: var(--text-secondary);
  text-decoration: none;
}
.weiterlesen .material-symbols-outlined { color: var(--gruen); font-size: 20px; animation: tippen 2.4s ease-in-out infinite; }
@keyframes tippen { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .weiterlesen .material-symbols-outlined { animation: none; } }

/* Angaben als Akkordeon — die Tabelle offen war zu viel Scrollen */
details.angaben-klapp {
  background: var(--surface-white); border-radius: 14px; box-shadow: var(--shadow-card);
  overflow: hidden;
}
details.angaben-klapp > summary {
  cursor: pointer; list-style: none; padding: 18px 22px;
  display: flex; align-items: center; gap: 12px;
}
details.angaben-klapp > summary::-webkit-details-marker { display: none; }
details.angaben-klapp > summary::after {
  content: 'expand_more'; font-family: 'Material Symbols Outlined';
  font-size: 22px; color: var(--red); margin-left: auto; transition: transform 0.2s;
}
details.angaben-klapp[open] > summary::after { transform: rotate(180deg); }
.angaben-klapp-titel { font-size: 15.5px; font-weight: 700; color: var(--navy); }
.angaben-klapp-zahl {
  flex: 0 0 auto; background: var(--gruen-flaeche); color: var(--gruen);
  border-radius: 9999px; padding: 4px 11px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
}
.angaben-klapp-koerper { padding: 0 22px 20px; }

/* Storytelling-Kasten: ruhig, kein Verkaufskasten */
.vorstellung {
  background: var(--surface-white); border-radius: 18px; padding: 30px 32px;
  box-shadow: var(--shadow-card); border-left: 4px solid var(--gruen);
}
.vorstellung p { font-size: clamp(15.5px, 1.5vw, 17.5px); line-height: 1.72; }
.vorstellung p + p { margin-top: 14px; }

@media (max-width: 620px) {
  .result-head { padding-top: calc(var(--nav-h) + 30px); }
  .result-badge { font-size: 10px; padding: 7px 13px; }
  .zahlkarte { padding: 22px; }
  .zahlkarte .zahl { font-size: clamp(56px, 20vw, 78px); }
  .vorstellung { padding: 22px 20px; border-left-width: 3px; }
  details.angaben-klapp > summary { padding: 16px 17px; gap: 9px; }
  .angaben-klapp-koerper { padding: 0 17px 17px; }
  .angaben-klapp-titel { font-size: 14.5px; }
  .datenstand { padding: 18px 17px; }
  .datenstand-reihe { font-size: 13px; }
}
