/* =========================================================================
   Altersvorsorgedepot Nürnberg — Design System
   Farbwerte und Typografie sind am Onepager "Das neue Altersvorsorgedepot"
   (Stand Mai 2026) ausgerichtet. Die Bildmarke ist eine eigene Gestaltung -
   es wird kein fremdes Logo verwendet.
   Bewusst OHNE externe Ressourcen (keine Google Fonts, kein CDN, kein
   Tracking) -> keine Drittanbieter-Requests, kein Cookie-Banner nötig.
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Marke */
  --navy-900: #002849;
  --navy-800: #002B4D;
  --navy-700: #00325B;
  --cyan-500: #009EE3;
  --cyan-600: #0086C2;
  --cyan-050: #E6F5FC;
  --lime-500: #D3D800;
  --lime-700: #898C00;
  --teal-600: #00857A;

  /* Neutrale */
  --slate-500: #738EA5;
  --slate-600: #5A6B80;
  --line: #D9E0E6;
  --line-soft: #E5EAEF;
  --bg: #FFFFFF;
  --bg-soft: #F2F5F7;
  --bg-warm: #F5F5F1;

  /* Semantik */
  --text: var(--navy-800);
  --text-muted: var(--slate-600);
  --success: #00857A;
  --error: #C0392B;

  /* Typo */
  --font-sans: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;

  /* Maße */
  --wrap: 1140px;
  --wrap-narrow: 780px;
  --r-sm: 6px;
  --r: 12px;
  --r-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(0, 40, 73, .06), 0 2px 8px rgba(0, 40, 73, .05);
  --shadow: 0 2px 6px rgba(0, 40, 73, .07), 0 12px 32px rgba(0, 40, 73, .09);
  --shadow-lg: 0 4px 12px rgba(0, 40, 73, .09), 0 24px 60px rgba(0, 40, 73, .14);
  --header-h: 72px;
}

/* ---------- 2. Reset / Basis --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
/* Ohne diese Zeile hebeln display:flex/grid das hidden-Attribut aus */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; color: var(--navy-700); font-weight: 700; }
h1 { font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.9vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.15rem, 1.03rem + .5vw, 1.35rem); }
p { margin: 0 0 1em; }
a { color: var(--cyan-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy-700); }
/* Auf dunklem Grund würde die Navy-Hoverfarbe die Links unsichtbar machen */
.site-header a:hover, .hero a:hover,
.section--navy a, .section--navy a:hover,
.calc__result a:hover { color: #fff; }
.section--navy a { text-decoration: underline; text-underline-offset: 3px; }
.section--navy a:hover { text-decoration-thickness: 2px; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }
strong, b { font-weight: 700; color: var(--navy-700); }
/* Auf dunklem Grund würde die Navy-Regel oben unsichtbaren Text erzeugen */
.hero strong, .hero b,
.section--navy strong, .section--navy b,
.calc__result strong, .calc__result b,
.site-footer strong, .site-footer b { color: #fff; }
small { font-size: .82rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--navy-700); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 600; text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 0; color: #fff; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 40px, var(--wrap-narrow)); margin-inline: auto; }
@media (max-width: 640px) { .wrap, .wrap-narrow { width: calc(100% - 32px); } }

.section { padding: clamp(56px, 7vw, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.section--navy { background: var(--navy-700); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #C9D7E2; }

.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;
}

.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--cyan-500); margin: 0 0 .75rem;
}
.section--navy .eyebrow { color: var(--lime-500); }

.lead { font-size: clamp(1.02rem, .97rem + .3vw, 1.18rem); color: var(--text-muted); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head.is-center { margin-inline: auto; text-align: center; }

.num-serif { font-family: var(--font-serif); font-weight: 700; letter-spacing: -.01em; }

/* ---------- 3. Buttons --------------------------------------------------- */
.btn {
  --btn-bg: var(--cyan-500); --btn-fg: #fff; --btn-bd: var(--cyan-500);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font: inherit; font-weight: 700; font-size: 1rem; line-height: 1.25;
  padding: 15px 28px; min-height: 52px;
  border: 2px solid var(--btn-bd); border-radius: var(--r-sm);
  background: var(--btn-bg); color: var(--btn-fg);
  text-decoration: none; cursor: pointer;
  transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
  box-shadow: 0 2px 4px rgba(0, 40, 73, .12);
}
.btn:hover { --btn-bg: var(--cyan-600); --btn-bd: var(--cyan-600); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0, 158, 227, .3); }
.btn:active { transform: translateY(0); }
.btn--lg { font-size: 1.06rem; padding: 18px 34px; min-height: 60px; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy-700); --btn-bd: var(--line); box-shadow: none; }
.btn--ghost:hover { --btn-bg: var(--bg-soft); --btn-fg: var(--navy-700); --btn-bd: var(--slate-500); box-shadow: none; }
.btn--onnavy { --btn-bg: #fff; --btn-fg: var(--navy-700); --btn-bd: #fff; }
.btn--onnavy:hover { --btn-bg: var(--cyan-050); --btn-fg: var(--navy-700); --btn-bd: var(--cyan-050); }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }
.btn__arrow { font-size: 1.1em; line-height: 1; transition: transform .18s; }
.btn:hover .btn__arrow { transform: translateX(3px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; }

/* Sekundäre Aktion: bewusst leichter als der Haupt-CTA, damit die
   Aufmerksamkeit nicht zwischen zwei gleich starken Buttons zerfasert. */
.link-cta {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: 1rem; color: #C4D6E3; text-decoration: none;
  padding: 10px 2px; border-bottom: 1px solid rgba(255, 255, 255, .3);
  transition: color .15s, border-color .15s;
}
.link-cta:hover { color: #fff; border-color: #fff; }
.link-cta .btn__arrow { transition: transform .18s; }
.link-cta:hover .btn__arrow { transform: translateX(3px); }

/* ---------- 4. Header ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0, 50, 91, .97);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.header-inner { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: #fff; flex-shrink: 0; }
.brand img, .brand__sub { transition: opacity .15s, color .15s; }
.brand:hover .brand__sub { color: var(--cyan-500); }
.brand:hover img { opacity: .85; }
.brand img { height: 38px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 700; font-size: .95rem; letter-spacing: .01em; }
.brand__sub { font-size: .68rem; color: #93B2C9; letter-spacing: .06em; text-transform: uppercase; }

.main-nav { margin-left: auto; min-width: 0; }
.main-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 9px 11px; border-radius: var(--r-sm);
  color: #D3E1EC; text-decoration: none; font-size: .92rem; font-weight: 500;
  white-space: nowrap;          /* Menüpunkte nie umbrechen */
  transition: background-color .15s, color .15s;
}
.main-nav a:hover, .main-nav a:focus-visible { background: rgba(255, 255, 255, .1); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.main-nav + .header-actions { margin-left: 0; }

.lang-switch { display: flex; flex-shrink: 0; border: 1px solid rgba(255, 255, 255, .28); border-radius: var(--r-sm); overflow: hidden; }
.lang-switch button {
  font: inherit; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  padding: 7px 11px; border: 0; background: transparent; color: #B6CCDD; cursor: pointer;
  transition: background-color .15s, color .15s;
}
.lang-switch button:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.lang-switch button[aria-pressed="true"] { background: #fff; color: var(--navy-700); }

.header-cta { padding: 11px 20px; min-height: 44px; font-size: .92rem; white-space: nowrap; }

.nav-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255, 255, 255, .28); border-radius: var(--r-sm);
  cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: background-color .15s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff; transition: transform .2s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* Ab hier reicht der Platz für die volle Navigation nicht mehr */
@media (max-width: 1140px) {
  .nav-toggle { display: flex; order: 3; }
  .header-actions { margin-left: auto; order: 2; }
  .main-nav {
    order: 4; width: 100%; margin-left: 0;
    display: none; padding: 8px 0 18px; border-top: 1px solid rgba(255, 255, 255, .12);
  }
  .main-nav.is-open { display: block; }
  .header-inner { flex-wrap: wrap; padding-block: 10px; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 12px 10px; font-size: 1rem; }
  .header-cta { display: none; }
}
@media (max-width: 560px) {
  /* Auf schmalen Geräten muss Logo + Sprachwahl + Burger in eine Zeile passen,
     sonst wird der Header doppelt so hoch. */
  .header-inner { gap: 12px; }
  .brand img { height: 32px; }
  .brand__name { font-size: .85rem; }
  .brand__sub { font-size: .62rem; }
  .lang-switch button { padding: 7px 8px; font-size: .72rem; }
}
@media (max-width: 380px) {
  .brand__sub { display: none; }
}

/* ---------- 5. Hero ------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 520px at 82% -8%, rgba(0, 158, 227, .3), transparent 62%),
    linear-gradient(168deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: #fff;
  padding: clamp(52px, 6vw, 84px) 0 clamp(52px, 6vw, 80px);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: rgba(255, 255, 255, .12);
}
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(32px, 4vw, 64px); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 .accent { color: var(--cyan-500); display: block; font-family: var(--font-serif); }
.hero h1 .kicker { font-family: var(--font-serif); font-weight: 400; font-size: .55em; display: block; color: #C9DCEA; letter-spacing: 0; }
.hero__sub { font-size: clamp(1.02rem, .96rem + .38vw, 1.22rem); color: #C4D6E3; max-width: 56ch; margin-bottom: 1.6em; }
.hero__sub strong { color: #fff; }
.hero .cta-row { margin-bottom: 26px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(211, 216, 0, .14); border: 1px solid rgba(211, 216, 0, .42);
  color: var(--lime-500); font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 100px; margin-bottom: 22px;
}
.hero__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime-500); }

.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; padding: 0; margin: 0; }
.hero__trust li { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: #B9CEDD; margin: 0; }
.hero__trust svg { flex-shrink: 0; color: var(--cyan-500); }

/* Hero-Karte: Förderung auf einen Blick */
.hero-card {
  background: #fff; color: var(--text); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: clamp(24px, 2.4vw, 32px);
}
.hero-card__head { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-500); margin-bottom: 18px; }
.hero-card__big { font-family: var(--font-serif); font-weight: 700; font-size: 3.4rem; color: var(--navy-700); line-height: 1; }
/* Kleines „bis zu" vor den großen Zahlen – hochgestellt, damit es sich der
   Grundlinie der Serifenziffern unterordnet statt mit ihnen zu konkurrieren. */
.hero-card__pre {
  font-family: var(--font-sans); font-weight: 600; color: var(--slate-500);
  margin-right: .35em; white-space: nowrap;
}
.hero-card__big .hero-card__pre { font-size: 1rem; vertical-align: .55em; }
.hero-card__split .hero-card__pre { font-size: .8rem; vertical-align: .3em; }

.hero-card__big small { font-size: .95rem; font-family: var(--font-sans); color: var(--lime-700); font-weight: 600; display: block; margin-top: 6px; letter-spacing: 0; }
.hero-card__split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; padding: 18px 0; border-block: 1px solid var(--line); }
.hero-card__split div { text-align: left; }
.hero-card__split .v { font-family: var(--font-serif); font-weight: 700; font-size: 1.7rem; color: var(--navy-700); line-height: 1.1; }
.hero-card__split .l { font-size: .78rem; color: var(--lime-700); font-weight: 600; line-height: 1.35; }
.hero-card__note { font-size: .78rem; color: var(--slate-500); margin: 0; }
.hero-card__extra { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.hero-card__extra { align-items: baseline; }
.hero-card__extra .v { font-family: var(--font-serif); font-weight: 700; font-size: 1.35rem;
  color: var(--teal-600); white-space: nowrap; flex-shrink: 0; }
.hero-card__extra .l { font-size: .84rem; color: var(--text-muted); }

/* ---------- 6. Fakten-Band (wie Onepager) -------------------------------- */
.factbar { background: var(--cyan-500); color: #fff; }
.factbar ul {
  list-style: none; margin: 0; padding: 18px 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px 22px;
}
.factbar li { display: flex; align-items: flex-start; gap: 9px; font-size: .9rem; line-height: 1.3; margin: 0; }
.factbar li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, .75); flex-shrink: 0; margin-top: .42em; }
.factbar b { color: #fff; display: block; font-weight: 700; }
.factbar span { color: rgba(255, 255, 255, .88); }
@media (max-width: 900px) { .factbar ul { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .factbar ul { grid-template-columns: 1fr; } }

/* ---------- 7. Karten / Grids -------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(22px, 2.2vw, 30px); box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card--flat { box-shadow: none; }

/* Vorteils-Kachel: Ziffer in eigener Spalte, Text daneben – wie im Onepager.
   Das Raster sorgt zugleich dafür, dass der Text nicht am Rand klebt. */
.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 6px;
  align-items: start;
  padding: clamp(24px, 2.4vw, 32px);
}
.benefit__no {
  grid-column: 1; grid-row: 1 / span 2;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.6rem; line-height: 1.15;
  color: var(--teal-600); font-variant-numeric: tabular-nums;
}
.benefit h3 { grid-column: 2; grid-row: 1; font-size: 1.08rem; margin: 0; line-height: 1.3; }
.benefit p  { grid-column: 2; grid-row: 2; color: var(--text-muted); font-size: .95rem; margin: 0; }
@media (max-width: 420px) {
  .benefit { column-gap: 13px; }
  .benefit__no { font-size: 1.4rem; }
}

/* Eckdaten-Kacheln */
.stat {
  background: var(--bg-soft); border-radius: var(--r); padding: 26px 22px; text-align: center;
  border: 1px solid var(--line-soft);
}
.stat__v { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.5rem); line-height: 1; color: var(--navy-700); }
.stat__v.is-cyan { color: var(--cyan-500); }
.stat__v.is-lime { color: var(--lime-500); }
.stat__l { font-size: .87rem; color: var(--text-muted); margin-top: 10px; line-height: 1.4; }

/* Persona-Karten */
.persona { display: flex; flex-direction: column; }
.persona__tag {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px; margin-bottom: 14px;
  background: var(--cyan-050); color: var(--cyan-600);
}
.persona__tag.is-lime { background: #F7F8DC; color: var(--lime-700); }
.persona__tag.is-teal { background: #DFF2F0; color: var(--teal-600); }
.persona__hi {
  font-family: var(--font-serif); font-weight: 700; font-size: 2rem; color: var(--navy-700);
  line-height: 1; margin: 4px 0 2px;
}
.persona ul { list-style: none; padding: 0; margin: 14px 0 0; }
.persona li { position: relative; padding-left: 26px; font-size: .93rem; color: var(--text-muted); margin-bottom: 9px; }
.persona li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 14px; height: 8px;
  border-left: 2px solid var(--cyan-500); border-bottom: 2px solid var(--cyan-500);
  transform: rotate(-45deg);
}

/* ---------- 8. Rechner --------------------------------------------------- */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 44px); align-items: start; }
@media (max-width: 860px) { .calc { grid-template-columns: 1fr; } }

.calc__panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 2.4vw, 32px); box-shadow: var(--shadow-sm); }
.calc__result { background: var(--navy-700); color: #fff; border-radius: var(--r-lg); padding: clamp(24px, 2.6vw, 34px); position: sticky; top: calc(var(--header-h) + 20px); }
@media (max-width: 860px) { .calc__result { position: static; } }

.field { margin-bottom: 26px; }
.field:last-child { margin-bottom: 0; }
.field__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.field label { font-weight: 600; font-size: .96rem; color: var(--navy-700); }
.field__val { font-family: var(--font-serif); font-weight: 700; font-size: 1.35rem; color: var(--cyan-600); white-space: nowrap; }
.field__hint { font-size: .8rem; color: var(--slate-500); margin: 8px 0 0; }
/* Hinweis, sobald der Beitrag über die Förderobergrenze läuft */
.field__warn {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; line-height: 1.45; color: #8A5200; font-weight: 500;
  background: #FFF4E0; border: 1px solid #F3D19B; border-radius: var(--r-sm);
  padding: 10px 13px; margin: 10px 0 0;
}
.field__warn::before { content: "!"; font-weight: 700; color: #C67A00; flex-shrink: 0; }
/* Regler wechselt jenseits der Grenze auf Orange */
input[type="range"].is-over::-webkit-slider-thumb { background: #E8912B; }
input[type="range"].is-over::-moz-range-thumb { background: #E8912B; }

input[type="range"] { width: 100%; -webkit-appearance: none; appearance: none; background: transparent; margin: 0; cursor: pointer; height: 26px; }
input[type="range"]::-webkit-slider-runnable-track { height: 6px; border-radius: 3px; background: var(--line); }
input[type="range"]::-moz-range-track { height: 6px; border-radius: 3px; background: var(--line); }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--cyan-500); border: 3px solid #fff; box-shadow: 0 1px 5px rgba(0, 40, 73, .3); margin-top: -10px;
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--cyan-500);
  border: 3px solid #fff; box-shadow: 0 1px 5px rgba(0, 40, 73, .3);
}

.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg button {
  font: inherit; font-size: .92rem; font-weight: 600; padding: 10px 17px; min-height: 44px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; color: var(--text-muted);
  cursor: pointer; transition: all .15s;
}
.seg button:hover { border-color: var(--slate-500); color: var(--navy-700); }
.seg button[aria-pressed="true"] { border-color: var(--cyan-500); background: var(--cyan-050); color: var(--cyan-600); }

.calc__result h3 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; }
.res-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.res-row:last-of-type { border-bottom: 0; }
.res-row .k { font-size: .92rem; color: #B7CEDF; }
.res-row .v { font-family: var(--font-serif); font-weight: 700; font-size: 1.2rem; color: #fff; white-space: nowrap; }
.res-row.is-total { border-top: 2px solid rgba(255, 255, 255, .3); border-bottom: 0; margin-top: 6px; padding-top: 15px; }
.res-row.is-total .v { color: var(--lime-500); font-size: 1.5rem; }
.res-row .v.is-cyan { color: var(--cyan-500); }

.quota { margin: 22px 0 6px; }
.quota__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.quota__head .k { font-size: .92rem; color: #B7CEDF; }
.quota__head .v { font-family: var(--font-serif); font-weight: 700; font-size: 1.6rem; color: var(--lime-500); }
.quota__bar { height: 10px; border-radius: 5px; background: rgba(255, 255, 255, .16); overflow: hidden; }
.quota__fill { height: 100%; background: linear-gradient(90deg, var(--cyan-500), var(--lime-500)); border-radius: 5px; transition: width .4s ease; width: 0; }

.split-out {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 22px 0 4px; padding: 18px 0 0; border-top: 1px solid rgba(255, 255, 255, .18);
}
.split-out__v { font-family: var(--font-serif); font-weight: 700; font-size: 1.7rem;
  line-height: 1.1; color: #fff; margin: 0; }
.split-out__v.is-lime { color: var(--lime-500); }
.split-out__l { font-size: .84rem; color: #B7CEDF; margin: 6px 0 0; line-height: 1.35; }

.projection { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .18); }
.projection__v { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2.2rem, 1.7rem + 2vw, 3rem); color: #fff; line-height: 1; }
.projection__l { font-size: .88rem; color: #B7CEDF; margin-top: 8px; }
.projection__of { font-size: .82rem; color: #93B2C9; margin-top: 12px; }

.disclaimer-box {
  background: var(--bg-warm); border: 1px solid var(--line); border-left: 3px solid var(--slate-500);
  border-radius: var(--r-sm); padding: 16px 18px; font-size: .82rem; color: var(--text-muted); line-height: 1.55;
}
.disclaimer-box p { margin: 0; }
.disclaimer-box p + p { margin-top: .6em; }
.disclaimer-box strong { color: var(--navy-700); }

/* ---------- 9. Timeline -------------------------------------------------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; margin-top: 20px; }
.timeline::before {
  content: ""; position: absolute; top: 11px; left: 12.5%; right: 12.5%; height: 2px; background: var(--line);
}
.tl { position: relative; padding-top: 40px; text-align: center; }
.tl::before {
  content: ""; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: var(--slate-500); border: 3px solid var(--bg-soft);
}
.tl.is-next::before { background: #fff; border-color: var(--cyan-500); box-shadow: 0 0 0 3px rgba(0, 158, 227, .2); }
.tl.is-goal::before { background: var(--cyan-500); border-color: var(--bg-soft); }
.tl__date { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-500); margin-bottom: 6px; }
.tl.is-next .tl__date, .tl.is-goal .tl__date { color: var(--cyan-500); }
.tl__txt { font-size: .93rem; color: var(--text-muted); line-height: 1.45; }
.tl__txt b { display: block; color: var(--navy-700); }
@media (max-width: 720px) {
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { top: 8px; bottom: 30px; left: 8px; right: auto; width: 2px; height: auto; }
  .tl { padding: 0 0 26px 34px; text-align: left; }
  .tl::before { top: 4px; left: 0; transform: none; }
}

/* ---------- 10. Prozess -------------------------------------------------- */
.steps { counter-reset: s; display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 62px; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem;
  background: var(--cyan-050); color: var(--cyan-600); border: 1.5px solid var(--cyan-500);
}
.section--navy .step::before { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .4); }
.step h3 { font-size: 1.05rem; margin-bottom: .3em; }
.step p { font-size: .94rem; color: var(--text-muted); margin: 0; }

/* ---------- 11. Berater -------------------------------------------------- */
.advisor { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 3.5vw, 56px); align-items: center; }
@media (max-width: 780px) { .advisor { grid-template-columns: 1fr; } }
.advisor__photo {
  /* Der Verlauf ist nur die Fläche, bis das Bild geladen ist */
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  border-radius: var(--r-lg); aspect-ratio: 4 / 5; overflow: hidden;
  box-shadow: var(--shadow);
}
.advisor__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.advisor__contact { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.advisor__contact li { display: flex; align-items: center; gap: 11px; font-size: .96rem; margin: 0; }
.advisor__contact svg { flex-shrink: 0; color: var(--cyan-500); }

/* ---------- 12. FAQ ------------------------------------------------------ */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line); background: transparent;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative;
  font-weight: 600; font-size: 1.03rem; color: var(--navy-700); line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--cyan-500); border-bottom: 2px solid var(--cyan-500);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:hover { color: var(--cyan-600); }
.faq__body { padding: 0 44px 22px 0; color: var(--text-muted); font-size: .97rem; }
.faq__body p:last-child { margin-bottom: 0; }

/* ---------- 13. Funnel --------------------------------------------------- */
.funnel-section { background: var(--bg-soft); }
.funnel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); overflow: hidden; max-width: 780px; margin-inline: auto;
}
.funnel__bar { height: 5px; background: var(--line-soft); }
.funnel__bar div { height: 100%; background: linear-gradient(90deg, var(--cyan-500), var(--lime-500)); width: 0; transition: width .35s ease; }
.funnel__inner { padding: clamp(26px, 3.2vw, 44px); }
.funnel__meta { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; }
.funnel__count { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-500); }
.funnel__back {
  font: inherit; font-size: .88rem; font-weight: 600; color: var(--text-muted); background: none;
  border: 0; cursor: pointer; padding: 6px 10px; border-radius: var(--r-sm); display: inline-flex; align-items: center; gap: 6px;
}
.funnel__back:hover { background: var(--bg-soft); color: var(--navy-700); }

.fstep { display: none; }
.fstep.is-active { display: block; animation: fadeUp .32s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.fstep h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); margin-bottom: .35em; }
.fstep__hint { color: var(--text-muted); font-size: .95rem; margin-bottom: 24px; }

.opts { display: grid; gap: 11px; }
.opts--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .opts--2 { grid-template-columns: 1fr; } }
.opt {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  font: inherit; font-size: 1rem; font-weight: 600; color: var(--navy-700);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r);
  padding: 17px 20px; min-height: 62px; cursor: pointer;
  transition: border-color .15s, background-color .15s, transform .1s, box-shadow .15s;
}
.opt:hover { border-color: var(--cyan-500); background: var(--cyan-050); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.opt[aria-pressed="true"], .opt.is-sel { border-color: var(--cyan-500); background: var(--cyan-050); box-shadow: inset 0 0 0 1px var(--cyan-500); }
.opt__ic {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg-soft); font-size: 1.1rem;
}
.opt[aria-pressed="true"] .opt__ic, .opt.is-sel .opt__ic { background: #fff; }
.opt__tx { display: flex; flex-direction: column; gap: 2px; }
.opt__tx small { font-weight: 500; color: var(--text-muted); font-size: .84rem; line-height: 1.35; }
.opt__check {
  margin-left: auto; flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
  border: 1.5px solid var(--line); display: grid; place-items: center; color: transparent; font-size: .78rem; font-weight: 700;
}
.opt[aria-pressed="true"] .opt__check { background: var(--cyan-500); border-color: var(--cyan-500); color: #fff; }

/* Kompakte Variante für Schritt 5 – dort stehen viele Kacheln nebeneinander */
.opts--compact .opt { padding: 13px 17px; min-height: 0; font-size: .95rem; }
.opts--compact .opt__tx small { font-size: .8rem; }
.opts--compact .opt__check { width: 20px; height: 20px; }

/* Aufklappbare Zweitliste in Schritt 5 – hält die Auswahl übersichtlich */
.opts-more { margin-top: 12px; }
.opts-more > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  font-size: .92rem; font-weight: 600; color: var(--cyan-600);
  padding: 8px 2px;
}
.opts-more > summary::-webkit-details-marker { display: none; }
.opts-more > summary::after {
  content: ""; width: 8px; height: 8px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg); transition: transform .2s;
}
.opts-more[open] > summary::after { transform: translateY(1px) rotate(-135deg); }
.opts-more > summary:hover { color: var(--navy-700); }

/* Handlungsaufforderung am Abschnittsende */
.cta-band { margin-top: clamp(28px, 3vw, 40px); display: flex; justify-content: center; }
.section--navy .cta-band .btn { --btn-bg: #fff; --btn-fg: var(--navy-700); --btn-bd: #fff; }

/* Zwischenschritt „vermutlich nicht förderberechtigt“ – informierend, nicht
   alarmierend: Die Aussage ist eine Einordnung, kein Fehler. */
.verdict {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-left: 4px solid var(--cyan-500); border-radius: var(--r);
  padding: clamp(20px, 2.2vw, 26px);
}
.verdict__ic {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-700); color: #fff; display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.35rem; line-height: 1;
}
.verdict h3 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.35rem); margin-bottom: .45em; }
.verdict p { font-size: .95rem; color: var(--text-muted); }
.verdict p:last-child { margin-bottom: 0; }
@media (max-width: 520px) {
  .verdict { flex-direction: column; gap: 14px; }
}

.funnel__nav { margin-top: 24px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.funnel__skip { font-size: .88rem; color: var(--slate-500); background: none; border: 0; cursor: pointer; font: inherit; font-size: .88rem; padding: 8px; }
.funnel__skip:hover { color: var(--navy-700); text-decoration: underline; }

/* Kontaktformular */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.inp-wrap { display: flex; flex-direction: column; gap: 6px; }
.inp-wrap label { font-size: .88rem; font-weight: 600; color: var(--navy-700); }
.inp-wrap label .req { color: var(--error); }
.inp-wrap input, .inp-wrap textarea, .inp-wrap select {
  font: inherit; font-size: 1rem; padding: 13px 15px; min-height: 50px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; color: var(--text);
  transition: border-color .15s, box-shadow .15s; width: 100%;
}
.inp-wrap textarea { min-height: 96px; resize: vertical; }
.inp-wrap input:hover, .inp-wrap textarea:hover, .inp-wrap select:hover { border-color: var(--slate-500); }
.inp-wrap input:focus, .inp-wrap textarea:focus, .inp-wrap select:focus { border-color: var(--cyan-500); box-shadow: 0 0 0 3px rgba(0, 158, 227, .15); outline: none; }
.inp-wrap input[aria-invalid="true"], .inp-wrap textarea[aria-invalid="true"] { border-color: var(--error); }
.inp-err { font-size: .8rem; color: var(--error); font-weight: 600; min-height: 0; }
.inp-err:empty { display: none; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin: 4px 0 0; }
.consent input[type="checkbox"] { width: 22px; height: 22px; margin: 2px 0 0; flex-shrink: 0; accent-color: var(--cyan-500); cursor: pointer; }
.consent label { font-size: .87rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.consent a { font-weight: 600; }

/* Auswahl mit Radiobuttons – groesser und kontrastreicher als .consent,
   weil es hier um die Hauptentscheidung auf der Seite geht. */
.choice { display: flex; gap: 12px; align-items: flex-start; margin: 0 0 12px;
          padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px;
          cursor: pointer; transition: border-color .15s, background .15s; }
.choice:hover { border-color: var(--cyan-500); background: var(--cyan-050); }
.choice:has(input:checked) { border-color: var(--cyan-500); background: var(--cyan-050); }
.choice input[type="radio"] { width: 20px; height: 20px; margin: 2px 0 0;
          flex-shrink: 0; accent-color: var(--cyan-500); cursor: pointer; }
.choice > span { font-size: .93rem; line-height: 1.5; color: var(--text-muted); }
.choice strong { color: var(--navy-700); font-weight: 600; }

/* Aktionshinweis auf einer Fragebogen-Kachel. Sitzt unter der Beschreibung
   und faellt durch die Farbflaeche auf, ohne die Kachel zu sprengen. */
.opt__promo { display: inline-block; margin-top: 8px; padding: 5px 10px;
              border-radius: 6px; background: var(--cyan-050);
              color: var(--teal-600); font-size: .78rem; font-weight: 600;
              line-height: 1.35; }
/* Ausgewaehlte Kacheln sind selbst cyan-050 – dann hebt sich Weiss ab. */
.opt[aria-pressed="true"] .opt__promo, .opt.is-sel .opt__promo { background: #fff; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.summary-box {
  background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: var(--r);
  padding: 18px 20px; margin-bottom: 24px;
}
.summary-box h4 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-500); margin: 0 0 12px; }
.summary-box dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; margin: 0; font-size: .89rem; }
.summary-box dt { color: var(--text-muted); }
.summary-box dd { margin: 0; font-weight: 600; color: var(--navy-700); text-align: right; }
.summary-box .hl { color: var(--cyan-600); }

.funnel-done { text-align: center; padding: clamp(12px, 2vw, 24px) 0; }
.funnel-done__ic {
  width: 76px; height: 76px; border-radius: 50%; background: #DFF2F0; color: var(--teal-600);
  display: grid; place-items: center; margin: 0 auto 22px; font-size: 2.2rem;
}
.funnel-done h3 { font-size: 1.6rem; }
.funnel-done ol { text-align: left; max-width: 460px; margin: 24px auto 0; color: var(--text-muted); font-size: .95rem; }

.form-status { margin-top: 16px; font-size: .92rem; font-weight: 600; }
.form-status.is-err { color: var(--error); }

/* ---------- 14. Cross-Sell / Leistungen ---------------------------------- */
.svc { display: flex; gap: 16px; align-items: flex-start; }
.svc__ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); color: var(--cyan-500);
}
.svc h3 { font-size: 1.02rem; margin-bottom: .25em; }
.svc p { font-size: .92rem; margin: 0; }

/* ---------- 15. Footer --------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #A9C1D3; font-size: .92rem; padding: clamp(48px, 5vw, 72px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #A9C1D3; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 2px; }
/* Tippziele im Fußbereich auf mindestens 24 px bringen (WCAG 2.2) */
.site-footer li a { display: inline-block; padding: 6px 0; min-height: 24px; }
.footer-bottom a { display: inline-block; padding: 6px 0; min-height: 24px; }
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.6; color: #90AAC0; }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .12); padding: 26px 0 32px;
  font-size: .84rem; color: #9DB4C6; line-height: 1.65;
}
.footer-legal p { max-width: 90ch; }
.footer-legal p { margin: 0 0 .8em; }
.footer-legal p:last-child { margin: 0; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; align-items: center; padding-top: 14px; }

/* ---------- 16. Legal-Seiten --------------------------------------------- */
.page-head { background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); color: #fff; padding: clamp(44px, 5vw, 76px) 0; }
.page-head h1 { color: #fff; margin-bottom: .2em; }
.page-head p { color: #B9CEDD; margin: 0; }
.legal { padding: clamp(40px, 5vw, 72px) 0; }
.legal h2 { font-size: 1.5rem; margin-top: 2.2em; padding-top: .3em; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin-top: 1.8em; }
.legal p, .legal li { font-size: .97rem; }
.legal address { font-style: normal; margin-bottom: 1em; }
.legal .toc { background: var(--bg-soft); border-radius: var(--r); padding: 22px 26px; margin-bottom: 40px; }
.legal .toc h2 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-500); margin: 0 0 12px; }
.legal .toc ol { margin: 0; padding-left: 1.3em; font-size: .93rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 1em 0 1.6em; font-size: .93rem; }
.legal th, .legal td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal th { background: var(--bg-soft); font-weight: 700; color: var(--navy-700); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.todo {
  background: #FFF8E1; border: 1px solid #F0D98A; border-left: 4px solid #E0B62E;
  border-radius: var(--r-sm); padding: 18px 20px; margin: 0 0 32px; font-size: .9rem; color: #6B5416;
}
.todo strong { color: #4E3D0C; }
.todo p:last-child { margin-bottom: 0; }
.ph-val { background: #FFF0C4; border-bottom: 1px dashed #C9A227; padding: 0 3px; font-weight: 600; color: #6B5416; }

/* ---------- 16b. Anlage Produktpartner ----------------------------------- */
.partner-anlage { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 2px solid var(--line); }
.partner-anlage > p { font-size: .93rem; color: var(--text-muted); }

.pp {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  margin-bottom: 10px; background: #fff;
}
.pp[open] { box-shadow: var(--shadow-sm); }
.pp > summary {
  list-style: none; cursor: pointer; padding: 15px 44px 15px 18px; position: relative;
  font-weight: 600; font-size: .97rem; color: var(--navy-700); border-radius: var(--r-sm);
}
.pp > summary::-webkit-details-marker { display: none; }
.pp > summary::after {
  content: ""; position: absolute; right: 18px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--cyan-500); border-bottom: 2px solid var(--cyan-500);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.pp[open] > summary::after { transform: translateY(-30%) rotate(-135deg); }
.pp > summary:hover { background: var(--bg-soft); }
.pp__n {
  display: inline-block; margin-left: 6px; padding: 2px 9px; border-radius: 100px;
  background: var(--bg-soft); color: var(--slate-600); font-size: .8rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.pp__body { padding: 4px 18px 18px; border-top: 1px solid var(--line-soft); }
.pp__cols {
  columns: 3; column-gap: 30px; list-style: none; padding: 14px 0 0; margin: 0;
}
@media (max-width: 900px) { .pp__cols { columns: 2; } }
@media (max-width: 600px) { .pp__cols { columns: 1; } }
.pp__cols li {
  break-inside: avoid; -webkit-column-break-inside: avoid;
  font-size: .84rem; line-height: 1.45; color: var(--text-muted);
  margin-bottom: 8px; padding-left: 13px; position: relative;
}
.pp__cols li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--cyan-500); opacity: .55;
}
.pp__foot { font-size: .84rem; color: var(--text-muted); margin-top: 20px; line-height: 1.6; }

/* ---------- 17. Sprachumschaltung ---------------------------------------- */
[data-lang-block] { display: none; }
html[lang="de"] [data-lang-block="de"],
html[lang="en"] [data-lang-block="en"] { display: block; }
html[lang="de"] li[data-lang-block="de"],
html[lang="en"] li[data-lang-block="en"] { display: list-item; }
html[lang="de"] span[data-lang-block="de"],
html[lang="en"] span[data-lang-block="en"] { display: inline; }

/* ---------- 18. Utilities ------------------------------------------------ */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.4rem; }
.mt-3 { margin-top: 2.2rem; }
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.nowrap { white-space: nowrap; }

@media print {
  .site-header, .funnel-section, .nav-toggle, .btn { display: none !important; }
  body { font-size: 11pt; }
}
