/* caricly.de: „Tinte & Papier"
   Ein Stylesheet für alle Seiten. Keine Media Queries: flex-wrap, auto-fit, clamp().
   Erhöhung ausschließlich über harte Versatzschatten (nie Blur).
   Regeln siehe DESIGN_SYSTEM.md im Handoff. */

/* ---------- Schriften (self-hosted, variabel) ---------- */
@font-face {
  font-family: "Fredoka";
  src: url("../fonts/fredoka-latin-var.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/nunito-sans-latin-var.woff2") format("woff2");
  font-weight: 200 1000;
  font-display: swap;
  font-style: normal;
}

/* ---------- Tokens ---------- */
:root {
  --bg-canvas: #FBF7EF;
  --bg-sunken: #F3EADA;
  --bg-raised: #FFFFFF;

  --ink-strong: #181512;
  --ink-muted: #6B6157;
  --ink-faint: #9C9198;
  --ink-body: #3C343F;          /* nur Textseiten, dunkler als in der App */
  --ink-placeholder: #8E8178;

  --accent: #E1442B;
  --accent-press: #B72F1C;
  --accent-wash: #FCE7E1;
  --accent-deep: #7A2313;

  --success: #2E7D6E;
  --success-wash: #E7F1EE;
  --success-deep: #1F4F46;

  --line-soft: #DED3C6;
  --line-dashed: #C9BDAE;

  --footer-bg: #181512;
  --footer-line: #2E2822;
  --footer-muted: #7A6F66;
  --footer-text: #A79C93;
  --footer-dashed: #4A423B;

  --kante: 2.5px solid var(--ink-strong);
  --versatz: 4px 4px 0 var(--ink-strong);
  --versatz-klein: 3px 3px 0 var(--ink-strong);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --breite: 1160px;
  --rand: 20px;
  --header-hoehe: 130px;        /* Header darf zweizeilig werden */

  --display: "Fredoka", system-ui, sans-serif;
  --text: "Nunito Sans", system-ui, sans-serif;
}

/* ---------- Grundgerüst ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--bg-canvas);
  color: var(--ink-strong);
  font-family: var(--text);
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; }

img, svg { display: block; max-width: 100%; }

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
a:hover { color: var(--accent-press); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }

/* iOS färbt Buttons und Icons sonst blau */
button { color: inherit; font: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

.zentriert {
  width: 100%;
  max-width: var(--breite);
  margin: 0 auto;
  padding-left: var(--rand);
  padding-right: var(--rand);
}

/* Ankerziele unter dem sticky Header */
[id] { scroll-margin-top: var(--header-hoehe); }

/* Einzige Media Query der Seite, und sie betrifft kein Layout: unterhalb von
   360px bricht die Kopfleiste in vier Reihen um und wird ~185px hoch. Ohne
   diesen größeren Versatz verschwindet das angesprungene Ziel dahinter. */
@media (max-width: 360px) {
  :root { --header-hoehe: 195px; }
}

/* Nur für Screenreader */
.nur-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.sprung {
  position: absolute;
  left: -9999px;
  z-index: 100;
}
.sprung:focus {
  left: var(--rand);
  top: 8px;
  padding: 10px 14px;
  background: var(--bg-canvas);
  border: var(--kante);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--ink-strong);
}

/* ---------- Kopfleiste ---------- */
.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 239, .92);
  backdrop-filter: blur(8px);
  border-bottom: var(--kante);
}

.kopf-reihe {
  display: flex;
  flex-wrap: wrap;      /* Pflicht: sonst schiebt der CTA bei 390px aus dem Viewport */
  align-items: center;
  gap: 10px 14px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.marke {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-strong);
  text-decoration: none;
}
.marke:hover { color: var(--ink-strong); }

.marke-zeichen {
  width: 32px; height: 32px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink-strong);
  border-radius: var(--r-sm);
  background: var(--bg-canvas);
}

.marke-wort {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.4px;
}

.marke-badge {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--ink-muted);
  border: 2px solid var(--line-soft);
  border-radius: var(--r-pill);
  padding: 4px 9px;
  white-space: nowrap;
}

.kopf-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.kopf-link {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-muted);
  text-decoration: none;
}
.kopf-link:hover { color: var(--ink-strong); }

/* Sprachumschalter */
.sprachen {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 2px solid var(--line-soft);
  border-radius: var(--r-sm);
  background: var(--bg-sunken);
}
.sprachen a {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 7px;
  line-height: 1.3;
}
.sprachen a:hover { color: var(--ink-strong); }
.sprachen a[aria-current="true"] {
  background: var(--bg-raised);
  border: 2px solid var(--ink-strong);
  color: var(--ink-strong);
  padding: 1px 6px;
}

/* ---------- Buttons ---------- */
.knopf-primaer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: var(--kante);
  border-radius: 12px;
  box-shadow: var(--versatz-klein);
  padding: 10px 16px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .12s ease-out, box-shadow .12s ease-out, background .12s ease-out;
}
.knopf-primaer:hover { color: #fff; }
.knopf-primaer:active {
  background: var(--accent-press);
  box-shadow: 1px 1px 0 var(--ink-strong);
  transform: translate(2px, 2px);
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(28px, 6vw, 72px);
  padding-bottom: clamp(36px, 6vw, 64px);
}

.hero-text {
  flex: 1 1 340px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(40px, 7.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -2px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-underline-offset: 8px;
}

.hero-lead {
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 44ch;
}
.hero-lead b { color: var(--ink-strong); }

.laden {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
}

.laden-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.laden-text b {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}
.laden-text span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-muted);
}

.vertrauen {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink-muted);
}
.vertrauen i {
  font-style: normal;
  color: var(--line-soft);
}

.hero-bild {
  flex: 1 1 380px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-bild p {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-muted);
}
.hero-bild p.leise {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-faint);
}

/* ---------- Vorher/Nachher-Schieber ---------- */
.vergleich {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-sunken);
  border: var(--kante);
  border-radius: var(--r-lg);
  box-shadow: 8px 8px 0 var(--ink-strong);
  touch-action: none;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.vergleich img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Ausschnitt über clip-path am Wrapper, nie über eine schmalere Breite,
   sonst verzerrt das Original und das Paar ist nicht mehr deckungsgleich. */
.vergleich-original {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--split, 50%)) 0 0);
}

.vergleich-trenner {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split, 50%);
  width: 4px;
  transform: translateX(-2px);
  background: var(--bg-canvas);
  box-shadow: 0 0 12px rgba(0, 0, 0, .35);   /* einzige erlaubte Weichzeichnung */
  z-index: 4;
  pointer-events: none;
}

.vergleich-knopf {
  position: absolute;
  left: var(--split, 50%);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-canvas);
  border: var(--kante);
  box-shadow: var(--versatz-klein);
  color: var(--accent);
  font-size: 19px;
  font-weight: 900;
  z-index: 5;
  cursor: ew-resize;
}

.vergleich-tag {
  position: absolute;
  top: 12px;
  background: rgba(24, 21, 18, .72);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 11px;
  border-radius: var(--r-sm);
  pointer-events: none;
  z-index: 3;
}
.vergleich-tag.links { left: 12px; }
.vergleich-tag.rechts { right: 12px; }

/* ---------- Bänder (So geht's / Zusagen) ---------- */
.band {
  background: var(--bg-sunken);
  border-top: var(--kante);
  border-bottom: var(--kante);
}

.schritte {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(32px, 5vw, 56px);
}

.schritt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.schritt-nr {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--kante);
  border-radius: var(--r-md);
  background: var(--bg-canvas);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}
.schritt-nr.laut {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--versatz-klein);
}
.schritt b {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}
.schritt p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* ---------- Abschnittsköpfe ---------- */
.abschnitt {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
}

.kicker {
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.abschnitt-kopf {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 56ch;
}
.abschnitt-kopf h2 {
  font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -1.2px;
}
.abschnitt-kopf p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* ---------- Stile ---------- */
.stil-gruppen {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: clamp(24px, 3vw, 36px);
}

.stil-gruppe {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gruppen-kopf {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gruppen-kopf h3 {
  font-size: 19px;
  font-weight: 600;
}
.gruppen-kopf hr {
  flex: 1;
  height: 2.5px;
  border: 0;
  border-radius: 2px;
  background: var(--line-soft);
  margin: 0;
}

.chip {
  font-size: 12.5px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.chip.frech { background: var(--accent-wash); color: var(--accent-press); }
.chip.freundlich { background: var(--success-wash); color: var(--success); }

.stil-raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.stil {
  overflow: hidden;
  background: var(--bg-sunken);
  border: var(--kante);
  border-radius: 18px;
  box-shadow: var(--versatz);
}
.stil img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 22%;   /* Gesichter sitzen oben */
}
.stil-fuss {
  padding: 12px 14px;
  border-top: var(--kante);
  background: var(--bg-canvas);
}
.stil-fuss b {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}
.stil-fuss span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-muted);
}

/* ---------- Zusagen (Datenschutz-Block) ---------- */
/* Klassennamen bewusst neutral und deutsch: privacy-*, cookie-*, consent-*
   und Konsorten werden von Kosmetikfiltern pauschal ausgeblendet. */
.zusagen-band {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
}

.zusagen-text {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.zusagen-text h2 {
  font-size: clamp(28px, 4.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -1.2px;
}
.zusagen-text p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 42ch;
}
.zusagen-text a {
  font-size: 15px;
  font-weight: 800;
  text-underline-offset: 4px;
  width: fit-content;
}

.zusagen {
  flex: 1 1 380px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zusage {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg-canvas);
  border: var(--kante);
  border-radius: var(--r-md);
}
.zusage.pointe { background: var(--success-wash); }

.haken {
  width: 24px; height: 24px;
  flex: none;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.zusage.pointe .haken { background: var(--success); }

.zusage b {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}
.zusage span {
  line-height: 1.35;
}
.zusage small {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-muted);
}

/* ---------- Abschluss ---------- */
.abschluss {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding-top: clamp(44px, 7vw, 88px);
  padding-bottom: clamp(44px, 7vw, 88px);
}
.abschluss h2 {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.03;
  letter-spacing: -1.4px;
  max-width: 22ch;
  text-wrap: balance;
}
.abschluss p {
  font-size: clamp(15.5px, 1.8vw, 18px);
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 46ch;
}
.abschluss .leise {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-faint);
}

/* ---------- Platzhalter ---------- */
/* Gestrichelt, nie mit Blindtext gefüllt: man sieht auf einen Blick, was fehlt. */
.platzhalter {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 20px;
  background: var(--bg-sunken);
  border: 2.5px dashed var(--line-dashed);
  border-radius: var(--r-md);
}
.platzhalter b {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-placeholder);
}
.platzhalter span {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-faint);
  line-height: 1.6;
}

.platzhalter-badge {
  flex: none;
  width: 200px; height: 66px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  border-radius: 15px;
  text-align: center;
}
.platzhalter-badge.gross {
  width: 220px; height: 72px;
  border-radius: 16px;
  margin-top: 6px;
}
.platzhalter-badge span { font-size: 11px; }

/* ---------- Fußbereich ---------- */
.fuss {
  border-top: var(--kante);
  background: var(--footer-bg);
  color: var(--bg-canvas);
}

.fuss-reihe {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.fuss-marke {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fuss-marke .marke { color: var(--bg-canvas); }
.fuss-marke .marke-zeichen {
  width: 30px; height: 30px;
  background: var(--bg-canvas);
  border: 0;
}
.fuss-marke p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--footer-text);
  max-width: 34ch;
}

.fuss-block {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fuss-block .kicker { color: var(--footer-muted); font-size: 11px; letter-spacing: .7px; }
.fuss-block a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--bg-canvas);
  text-decoration: none;
}
.fuss-block a:hover { color: #fff; text-decoration: underline; }
/* Echte Kontaktadresse im Fuss. Ohne den gestrichelten Rahmen, den der
   frühere Platzhalter trug: gestrichelt heisst auf dieser Seite "fehlt noch". */
.fuss-block .fuss-mail {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--bg-canvas);
}
.fuss-block small {
  font-size: 13px;
  font-weight: 700;
  color: var(--footer-muted);
}

.fuss-leiste { border-top: 2px solid var(--footer-line); }
.fuss-leiste div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--footer-muted);
}

/* ---------- Textseiten (Datenschutz, Impressum, Support) ---------- */
.textseite {
  display: flex;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px) var(--rand) clamp(48px, 7vw, 96px);
}

.textseite article {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
}

.text-kopf {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-kopf h1 {
  font-size: clamp(32px, 5.6vw, 48px);
  line-height: 1.03;
  letter-spacing: -1.4px;
}
.text-kopf .lead {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 52ch;
}

.marken-zeile {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.stand {
  font-size: 12.5px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: var(--bg-sunken);
  border: 2px solid var(--line-soft);
  color: var(--ink-muted);
}
.pflicht-badge {
  font-size: 12.5px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: var(--accent-wash);
  border: 2px solid var(--accent);
  color: var(--accent-press);
}
.pflicht-badge.gruen {
  background: var(--success-wash);
  border-color: var(--success);
  color: var(--success);
}

.strich {
  height: 2.5px;
  border: 0;
  border-radius: 2px;
  background: var(--ink-strong);
  margin: 0;
}
.strich.leise { background: var(--line-soft); margin-top: 8px; }

.inhalt-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  background: var(--bg-sunken);
  border: var(--kante);
  border-radius: 16px;
}
.inhalt-nav b {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}
.inhalt-nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.inhalt-nav a { font-size: 14.5px; font-weight: 700; }

.textseite section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Kein eigenes scroll-margin-top: die 20px hier haben die Regel [id] weiter
     oben ueberstimmt (hoehere Spezifitaet), und die Anker der Inhaltsnavigation
     landeten unter der klebenden Kopfleiste. Jetzt gilt --header-hoehe. */
}
.textseite h2 {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -.7px;
}
.textseite h3 {
  font-size: clamp(17px, 2.2vw, 19px);
  letter-spacing: -.3px;
}
/* Postanschrift im Impressum und beim Verantwortlichen. Eigene Klasse, weil
   die Zeilen eng stehen sollen und nicht wie Fliesstext auseinanderlaufen. */
.anschrift {
  line-height: 1.45;
}

.textseite p,
.textseite li {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--ink-body);
}
.textseite ul {
  margin: 0;
  padding-left: 22px;
  line-height: 1.7;
}
.textseite ul li { margin-bottom: 4px; }

/* Hervorgehobene Kästen. Neutrale Klassennamen: siehe Kommentar bei .zusagen. */
.kasten {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 16px;
  border: var(--kante);
}
.kasten .marke-kreis {
  width: 26px; height: 26px;
  flex: none;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.kasten > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kasten b {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.kasten.gruen {
  border-color: var(--success);
  background: var(--success-wash);
}
.kasten.gruen .marke-kreis { background: var(--success); }
.kasten.gruen b, .kasten.gruen p { color: var(--success-deep); }
.kasten.gruen p { font-size: 15.5px; line-height: 1.55; }

.kasten.rot {
  border-color: var(--accent);
  background: var(--accent-wash);
  padding: 18px 20px;
}
.kasten.rot .marke-kreis { background: var(--accent); font-size: 15px; }
.kasten.rot p {
  flex: 1;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
  color: var(--accent-deep);
}

/* Nummerierte Schrittliste (Löschweg) */
.schrittliste {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: schritt;
}
.schrittliste li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-canvas);
  border: var(--kante);
  border-radius: var(--r-md);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-body);
}
/* Der Text muss in einem einzigen <span> stehen: Kinder eines Flex-Containers
   werden sonst je zu einem eigenen Flex-Element, und jedes <b> im Satz reißt
   die Zeile in eine eigene schmale Spalte. */
.schrittliste li > span { flex: 1; }
.schrittliste li::before {
  counter-increment: schritt;
  content: counter(schritt);
  width: 30px; height: 30px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-sunken);
  border: 2px solid var(--ink-strong);
  border-radius: var(--r-sm);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-strong);
}
.schrittliste li:last-child::before {
  background: var(--accent);
  color: #fff;
  box-shadow: 2px 2px 0 var(--ink-strong);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-eintrag {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 20px;
  background: var(--bg-canvas);
  border: var(--kante);
  border-radius: 16px;
}
.faq-eintrag b {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}
.faq-eintrag p { font-size: 15.5px; line-height: 1.55; }

.hinweis {
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 700;
  color: var(--ink-muted);
}

.text-fuss {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}
.text-fuss a { font-size: 14.5px; font-weight: 700; }
.text-fuss .zurueck {
  margin-left: auto;
  color: var(--ink-muted);
  text-decoration: none;
}
.text-fuss .zurueck:hover { color: var(--ink-strong); }
