/* beyond100 Longevity-Test · Funnel v2
   Grundschicht und Komponentenklassen stammen aus dem Designsystem
   "beyond100 Web" (website-redesign/ui/alles.css). Übernommen sind nur die
   sieben Komponenten, die der Funnel benutzt: Fortschritt, Logo, Knopf,
   Kicker, Chip, PrüfListe, NewsletterForm. Werte unverändert, damit die
   Seite zum restlichen Auftritt passt.
   Schriften liegen lokal unter assets/fonts, nie von Google Fonts. */

/* ---------- Tokens ---------- */
:root {
  --paper: #FBFAFE;
  --lavender: #F3EDFB;
  --lavender-deep: #E6DAF7;
  --line: #E3DAF0;
  --ink: #201731;
  --ink-soft: #5C4F73;
  --purple: #8E43F0;
  --purple-dark: #7331C9;
  --night: #22103C;
  --night-soft: #B9A3DD;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Instrument Sans", -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Schriften ---------- */
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 400; font-display: swap;
  src: url("./fonts/fraunces-normal.woff2") format("woff2"); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 600; font-display: swap;
  src: url("./fonts/fraunces-normal.woff2") format("woff2"); }
@font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 700; font-display: swap;
  src: url("./fonts/fraunces-normal.woff2") format("woff2"); }
@font-face { font-family: 'Fraunces'; font-style: italic; font-weight: 400; font-display: swap;
  src: url("./fonts/fraunces-italic.woff2") format("woff2"); }
@font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 400; font-display: swap;
  src: url("./fonts/instrument-sans-normal.woff2") format("woff2"); }
@font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 500; font-display: swap;
  src: url("./fonts/instrument-sans-normal.woff2") format("woff2"); }
@font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 600; font-display: swap;
  src: url("./fonts/instrument-sans-normal.woff2") format("woff2"); }
@font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 700; font-display: swap;
  src: url("./fonts/instrument-sans-normal.woff2") format("woff2"); }
@font-face { font-family: 'Instrument Sans'; font-style: italic; font-weight: 400; font-display: swap;
  src: url("./fonts/instrument-sans-italic.woff2") format("woff2"); }

/* ---------- Grundschicht ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--purple); color: #fff; }
img { max-width: 100%; display: block; }
a { color: var(--purple); }
a:hover { color: var(--purple-dark); }

/* ---------- Komponenten aus dem Designsystem ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 4px; background: var(--purple);
  width: 0%; z-index: 60; transition: width .25s ease;
}

.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.logo-word { font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: -.01em; }
.logo-word b { color: var(--purple); font-weight: 600; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  padding: 15px 30px; border-radius: 999px; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--purple); color: #fff;
  box-shadow: 0 10px 28px -10px rgba(142, 67, 240, .65);
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(115, 49, 201, .7); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--purple); color: var(--purple-dark); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.kicker {
  font-size: 14px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--purple-dark);
}

.chip {
  font-size: 13.5px; font-weight: 600; padding: 6px 13px; border-radius: 999px;
  background: var(--lavender); color: var(--purple-dark);
}

.check-list { list-style: none; margin-bottom: 34px; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 12px; font-size: 16px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 8px;
  border-left: 2.5px solid var(--purple); border-bottom: 2.5px solid var(--purple);
  transform: rotate(-45deg);
}

.news-form { display: flex; gap: 10px; margin-top: 8px; }
.news-form input {
  flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.07);
  border-radius: 999px; padding: 15px 22px; font-family: var(--sans); font-size: 16px; color: #fff;
  outline: none; transition: border .15s;
}
.news-form input::placeholder { color: rgba(255,255,255,.45); }
.news-form input:focus { border-color: var(--purple); }
.news-micro { font-size: 13.5px; color: var(--night-soft); margin-top: 14px; }

/* ---------- Hülle der Funnel-Seite ---------- */
.f-seite { min-height: 100vh; display: flex; flex-direction: column; background: var(--paper); }
.f-kopf { display: flex; justify-content: center; padding: 22px 20px 6px; }
.f-buehne { flex: 1; width: 100%; max-width: 560px; margin: 0 auto; padding: 0 20px 40px; }
.f-fuss {
  border-top: 1px solid var(--line); padding: 22px 20px 30px; text-align: center;
  font-size: 13.5px; color: var(--ink-soft);
}
.f-fuss a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.f-fuss a:hover { color: var(--purple-dark); }
.f-fuss-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
/* Namensnennung: beide Datenquellen der Regionalauswertung verlangen sie.
   Steht auf der Ergebnisseite unter dem Hinweistext, nicht in der Fusszeile. */
.f-quellen {
  text-align: center; margin: 10px auto 24px; max-width: 460px;
  font-size: 11.5px; line-height: 1.6; color: var(--ink-soft);
}
.f-quellen a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.f-quellen a:hover { color: var(--purple-dark); }

/* Meldung, wenn JavaScript aus ist oder die Daten fehlen */
.f-hinweis {
  margin: 40px auto; max-width: 460px; text-align: center; padding: 26px 24px;
  border: 1px solid var(--line); border-radius: 18px; background: #fff; color: var(--ink-soft);
}

@media (max-width: 620px) {
  .logo-word { font-size: 19px; }
  .news-form { flex-direction: column; }
  .news-form .btn { justify-content: center; }
}

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

/* ---------- Bildschirme des Funnels ----------
   Werte aus dem Design-Entwurf (Longevity-Test Funnel v2.dc.html), dort
   als Inline-Styles. Hier als Klassen, damit das Markup lesbar bleibt. */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.f-screen { animation: fadeUp 500ms ease both; padding-top: 20px; }
.f-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.f-mitte { text-align: center; }

.f-h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 7vw, 46px); line-height: 1.12; margin: 14px 0 16px;
}
.f-h1 em { font-style: italic; color: var(--purple); }

.f-lead {
  color: var(--ink-soft); font-size: 18px; line-height: 1.6;
  margin: 0 auto 32px; max-width: 480px; text-wrap: pretty;
}

.f-karte {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 26px 26px 24px; margin-bottom: 16px;
}
.f-karte-titel { margin: 0 0 14px; font-weight: 600; font-size: 15px; letter-spacing: .02em; }

.f-breit { width: 100%; justify-content: center; }
.f-karte .f-breit { margin-top: 20px; }

.f-fussnote { text-align: center; color: var(--ink-soft); font-size: 13px; margin: 0 0 32px; }

/* ---------- Gemeinsame Bausteine ---------- */
@keyframes popIn { from { opacity: 0; transform: scale(.7); } 60% { transform: scale(1.06); } to { opacity: 1; transform: scale(1); } }
@keyframes wachsen { from { width: 0; } }
@keyframes rein { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }

.f-h2 { font-family: var(--serif); font-weight: 500; font-size: 27px; line-height: 1.25; margin: 0 0 12px; }
.f-h2 em { font-style: italic; color: var(--purple); }
.f-h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 0 0 6px; }
.f-text { color: var(--ink-soft); font-size: 16.5px; line-height: 1.6; margin: 0 auto 22px; max-width: 420px; text-wrap: pretty; }
.f-klein { color: var(--ink-soft); font-size: 13.5px; margin: 0 0 16px; }
.f-links { text-align: left; margin-left: 0; }
.f-serif { font-family: var(--serif); }
.f-abstand { margin-top: 16px; }

.f-ring { position: relative; margin: 26px auto 18px; }
.f-ring-bogen { transition: stroke-dashoffset 1.2s cubic-bezier(.25,.7,.25,1); }
.f-ring-mitte { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.f-ring-klein { font-size: 20px; color: var(--ink-soft); }
.f-ring-wert { font-family: var(--serif); font-size: 40px; font-weight: 500; white-space: nowrap; }

.f-balken { position: relative; height: 7px; background: var(--lavender-deep); border-radius: 99px; }
.f-balken-hoch { height: 8px; }
.f-balken-fuell { height: 100%; border-radius: 99px; transition: width 1s ease 300ms; }
.f-avg-marke { position: absolute; top: -3px; width: 2.5px; height: 14px; background: var(--ink-soft); border-radius: 2px; }

/* ---------- Frage ---------- */
.f-screen-q { padding-top: 28px; }
.f-q-kopf { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.f-q-zaehler { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 15px; white-space: nowrap; }
.f-q-koerper { animation: rein 300ms ease both; }
.f-q-text {
  font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 5vw, 30px);
  line-height: 1.25; margin: 0 0 26px; min-height: 76px; text-wrap: pretty;
}
.f-optionen { display: flex; flex-direction: column; gap: 10px; }
.f-skala { display: flex; gap: 8px; }

.f-option {
  display: block; width: 100%; text-align: left; padding: 16px 18px;
  border: 1.5px solid var(--line); background: #fff; border-radius: 14px;
  font: inherit; font-size: 16.5px; color: var(--ink); cursor: pointer;
  transition: background .15s, border-color .15s;
}
.f-option:hover { border-color: var(--purple); }
.f-option.f-aktiv { border-color: var(--purple); background: var(--lavender); }
.f-skala .f-option {
  flex: 1; text-align: center; padding: 16px 6px; border-radius: 12px;
  font-size: 13.5px; font-weight: 500; line-height: 1.3;
}
.f-option-klein { flex: 1; text-align: center; padding: 13px 4px; border-radius: 12px; font-size: 14px; font-weight: 500; }

.f-schieber-karte { background: #fff; border: 1.5px solid var(--line); border-radius: 16px; padding: 28px 22px 22px; }
.f-schieber-wert { text-align: center; font-family: var(--serif); font-size: 40px; font-weight: 500; margin: 0 0 20px; }
.f-schieber-einheit { font-size: 17px; color: var(--ink-soft); }
.f-schieber-karte input[type=range] { width: 100%; accent-color: var(--purple); height: 32px; cursor: pointer; }
.f-schieber-enden { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }

.f-q-fuss { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.f-zurueck { border: none; background: none; font: inherit; font-size: 14px; color: var(--ink-soft); cursor: pointer; padding: 6px 0; }
.f-zurueck:hover { color: var(--purple-dark); }
.f-q-hinweis { font-size: 13px; color: var(--ink-soft); align-self: center; text-align: right; }

/* ---------- Zwischenanalyse ---------- */
.f-zwischen { padding-top: 32px; animation: fadeUp 450ms ease both; }

/* ---------- Persönliche Frage ---------- */
.f-persoenlich { padding-top: 32px; animation: fadeUp 400ms ease both; }
.f-persoenlich .f-h2 { margin: 12px 0 8px; }
.f-persoenlich .f-text { font-size: 15.5px; margin: 0 0 24px; max-width: none; }
.f-felder { display: grid; gap: 14px; margin-bottom: 24px; }
.f-feld { display: grid; gap: 6px; font-size: 14px; font-weight: 600; }
.f-feld input {
  border: 1.5px solid var(--line); border-radius: 12px; padding: 14px 16px;
  font: inherit; font-weight: 400; background: #fff; color: var(--ink); outline-color: var(--purple);
}
.f-geschlecht { display: flex; gap: 6px; }
.f-ueberspringen { text-align: center; margin: 14px 0 0; }
.f-link { border: none; background: none; font: inherit; font-size: 14px; color: var(--ink-soft); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.f-link:hover { color: var(--purple-dark); }

/* ---------- Studien-Fact ---------- */
.f-fakt { padding-top: 40px; animation: fadeUp 450ms ease both; }
.f-fakt-wert {
  font-family: var(--serif); font-style: italic; font-size: clamp(64px, 16vw, 96px);
  font-weight: 500; color: var(--purple); margin: 22px 0 6px; line-height: 1;
  animation: popIn 700ms cubic-bezier(.2,.8,.3,1.2) both;
}
.f-fakt-strich { height: 6px; width: 120px; background: var(--purple); border-radius: 99px; margin: 0 auto 26px; animation: wachsen 900ms ease both 200ms; }
.f-fakt-text { font-size: 19px; line-height: 1.55; max-width: 440px; margin: 0 auto 10px; text-wrap: pretty; }
.f-fakt-quelle { color: var(--ink-soft); font-size: 13px; margin: 0 0 36px; font-style: italic; font-family: var(--serif); }

/* ---------- Ergebnis ---------- */
.f-ergebnis { padding-top: 30px; animation: fadeUp 500ms ease both; }
.f-h1-klein { font-size: clamp(30px, 6vw, 40px); line-height: 1.15; margin: 12px 0 26px; }
.f-score { font-family: var(--serif); font-size: 64px; font-weight: 500; line-height: 1; }
.f-score-von { font-size: 14px; color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.f-stufe { font-family: var(--serif); font-style: italic; font-size: 22px; margin: 0 0 10px; color: var(--purple); }
.f-perzentil { font-size: 15px; margin: 0 0 36px; }
.f-perzentil strong { color: var(--purple); }
.f-schaetzung { color: var(--ink-soft); font-size: 13px; display: block; margin-top: 2px; }

.f-kennzahlen { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 36px; }
.f-kennzahl { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; text-align: center; }
.f-kennzahl-akzent { background: var(--lavender); border-color: transparent; }
.f-kennzahl-titel { margin: 0 0 6px; font-size: 12.5px; color: var(--ink-soft); letter-spacing: .05em; text-transform: uppercase; }
.f-kennzahl-wert { margin: 0; font-family: var(--serif); font-size: 40px; font-weight: 500; }
.f-lila { color: var(--purple-dark); }
.f-kennzahl-fuss { margin: 6px 0 0; font-size: 13px; color: var(--ink-soft); }

.f-region { padding: 26px; margin-bottom: 36px; }
.f-region-kicker { margin: 0 0 6px; font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); }
.f-region-kopf { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.f-region-kopf .f-h3 { font-size: 23px; margin: 0; }
.f-region-le { font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--purple-dark); }
.f-region-le-klein { font-size: 15px; color: var(--ink-soft); }
.f-region-vergleich { margin: 0 0 18px; font-size: 14px; color: var(--ink-soft); text-wrap: pretty; }
.f-region-balken { display: grid; gap: 10px; margin-bottom: 22px; }
.f-balken-kopf { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 4px; }
.f-balken-kopf span:first-child { font-weight: 600; }
.f-region-nachbar-titel { margin: 0 0 10px; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.f-region-nachbarn { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.f-pille { border: 1px solid var(--line); border-radius: 99px; padding: 6px 14px; font-size: 13.5px; background: var(--paper); }
.f-region-link { margin: 0; font-size: 13.5px; }

.f-radar-huelle { display: flex; justify-content: center; margin-bottom: 36px; }

.f-saeulen { display: grid; gap: 10px; margin-bottom: 44px; }
.f-saeule { background: #fff; border: 1.5px solid var(--line); border-radius: 16px; padding: 16px 18px; }
.f-saeule-hebel { background: var(--lavender); border-color: var(--purple); }
.f-saeule-kopf { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.f-saeule-name { font-size: 15.5px; font-weight: 600; }
.f-saeule-name em { font-family: var(--serif); font-style: italic; color: var(--purple); margin-right: 8px; }
.f-saeule-rechts { display: flex; gap: 10px; align-items: baseline; }
.f-hebel-tag { font-size: 12px; font-weight: 600; color: var(--purple); letter-spacing: .04em; text-transform: uppercase; }
.f-saeule-pct { font-size: 18px; }
.f-saeule-fuss { margin: 8px 0 0; font-size: 12.5px; color: var(--ink-soft); }

.f-massnahmen { display: grid; gap: 14px; margin-bottom: 48px; }
.f-massnahme { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; }
.f-massnahme-nr { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--purple); line-height: 1; }
.f-massnahme-saeule { margin: 0 0 4px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.f-massnahme-text { margin: 0; font-size: 16px; line-height: 1.5; text-wrap: pretty; }

.f-weiter { padding: 26px; margin-bottom: 40px; }
.f-weiter .f-h3 { font-size: 22px; margin: 0 0 18px; }
.f-schritte { display: grid; gap: 14px; }
.f-schritt { display: flex; gap: 14px; align-items: baseline; }
.f-schritt > span { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--purple); min-width: 24px; }
.f-schritt p { margin: 0; font-size: 15.5px; line-height: 1.5; }

/* ---------- Newsletter ---------- */
.f-news { background: var(--night); border-radius: 24px; padding: 34px 28px; margin-bottom: 48px; position: relative; overflow: hidden; }
.f-news-schein { position: absolute; top: -60px; right: -40px; width: 220px; height: 220px; background: radial-gradient(closest-side, rgba(150,110,255,.35), transparent); pointer-events: none; }
.f-news .kicker { color: var(--night-soft); position: relative; }
.f-news-titel { font-size: 26px; line-height: 1.25; margin: 12px 0 10px; color: #fff; position: relative; }
.f-news-text { color: var(--night-soft); font-size: 16px; line-height: 1.6; margin: 0 0 22px; text-wrap: pretty; position: relative; }
.f-news .news-form, .f-news .news-micro, .f-news-status { position: relative; }
.f-news .news-micro a { color: #fff; }
.f-honig { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.f-news-status { font-size: 16px; line-height: 1.55; color: #fff; margin: 0; }
.f-news-ok { color: #fff; }
.f-news-fehler { color: #FFD2D2; }

/* ---------- Guides ---------- */
.f-guide-kopf { margin-bottom: 22px; }
.f-guide-kopf .f-h2 { font-size: 28px; line-height: 1.2; margin: 10px 0 10px; }
.f-guide-kopf .f-text { font-size: 16px; max-width: 440px; margin-bottom: 0; }

.f-guide-empf { background: var(--lavender); border: 1.5px solid var(--purple); border-radius: 18px; padding: 22px 18px 18px; position: relative; margin-bottom: 14px; }
.f-guide-tag { position: absolute; top: -11px; left: 20px; background: var(--purple); color: #fff; font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 4px 12px; border-radius: 99px; }
.f-guide-meta { margin: 0 0 2px; font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.f-guide-titel { margin: 0 0 4px; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.f-guide-titel-klein { font-size: 17.5px; line-height: 1.2; }
.f-guide-sub { margin: 0 0 10px; font-size: 13.5px; line-height: 1.45; color: var(--ink-soft); text-wrap: pretty; }
.f-guide-preis { margin: 0 0 14px; display: flex; gap: 10px; align-items: baseline; }
.f-preis { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--purple-dark); }
.f-preis-klein { font-size: 20px; }
.f-preis-hinweis { font-size: 12.5px; color: var(--ink-soft); }

.f-guide-raster { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.f-guide-karte { background: #fff; border: 1.5px solid var(--line); border-radius: 16px; padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.f-guide-karte .f-guide-preis { margin-top: auto; margin-bottom: 10px; }
.f-guide-knopf { display: block; border: 1.5px solid var(--purple); border-radius: 10px; padding: 9px 4px; text-align: center; font-size: 14px; font-weight: 600; text-decoration: none; color: var(--purple-dark); }
.f-guide-knopf:hover { background: var(--lavender); }

/* Guide-Cover. Weit unten auf der Seite, deshalb loading="lazy" im Markup. */
.f-guide-reihe { display: flex; gap: 16px; margin-bottom: 16px; }
.f-guide-text { flex: 1; min-width: 0; }
.f-guide-empf .f-guide-bild {
  width: 100px; height: 124px; flex-shrink: 0;
  object-fit: cover; object-position: top; border-radius: 12px; display: block;
}
.f-guide-karte .f-guide-bild {
  width: 100%; height: 150px; object-fit: cover; object-position: top;
  border-radius: 10px; display: block; margin-bottom: 4px;
}
.f-bundle-bild { width: 100%; height: auto; border-radius: 12px; display: block; margin-bottom: 18px; }
.f-guide-empf .f-guide-preis { margin-bottom: 0; }

.f-bundle { background: var(--night); border-radius: 18px; padding: 24px; margin-bottom: 48px; }
.f-bundle-kopf { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.f-bundle-titel { margin: 0 0 4px; font-family: var(--serif); font-size: 20px; font-weight: 500; color: #fff; }
.f-bundle-sub { margin: 0; font-size: 14px; color: var(--night-soft); }
.f-bundle-preis { font-family: var(--serif); font-size: 28px; font-weight: 500; color: #fff; }
.f-bundle-knopf { display: block; background: #fff; color: var(--night); text-align: center; padding: 13px; border-radius: 12px; font-weight: 600; text-decoration: none; font-size: 15.5px; }
.f-bundle-knopf:hover { color: var(--purple-dark); }

.f-aktionen { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.f-disclaimer { text-align: center; color: var(--ink-soft); font-size: 12.5px; line-height: 1.6; max-width: 460px; margin: 0 auto 20px; }

/* ---------- Gespeichertes Ergebnis: löschen ---------- */
.f-loesch-start { text-align: center; margin: 0 0 24px; }
.f-loesch {
  border: 1.5px solid var(--line); border-radius: 16px; padding: 20px;
  margin: 0 0 24px; background: #fff; text-align: center;
}
.f-loesch p { margin: 0 0 14px; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }
.f-loesch-knoepfe { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; }
.f-loesch-ja {
  border: 1.5px solid #C0392B; background: #fff; color: #C0392B;
  border-radius: 999px; padding: 10px 20px; font: inherit; font-size: 14.5px;
  font-weight: 600; cursor: pointer;
}
.f-loesch-ja:hover { background: #C0392B; color: #fff; }
.f-loesch-hinweis {
  text-align: center; margin: 0 0 24px; padding: 16px; border-radius: 14px;
  background: var(--lavender); font-size: 14.5px; color: var(--ink-soft);
}

/* ---------- Druck ---------- */
@media print {
  .progress, .f-fuss, .f-news, .f-guide-kopf, .f-guide-empf, .f-guide-raster,
  .f-bundle, .f-aktionen, .f-weiter, .f-loesch, .f-loesch-start { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .f-buehne { max-width: none; padding: 0; }
  .f-screen, .f-ergebnis { animation: none !important; }
  .f-ring-bogen { transition: none !important; }
  .f-saeule, .f-massnahme, .f-kennzahl, .f-region { break-inside: avoid; }
  .f-region, .f-saeulen, .f-massnahmen { margin-bottom: 18px; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
  @page { size: A4; margin: 16mm; }
}
