/* ============================================================
   farefisi — Landingpage
   Übernimmt die App-Marke: Bordeaux #8E244D | Rosé #F8BBD0
   Beige #FFF8E1 | Dunkelbraun #4E342E | Gold #C9A227
   Display: Neuton · Body: Nunito (wie in der App)
   Beide Schriften liegen selbst gehostet in fonts/ - kein Aufruf mehr
   bei Google, keine IP-Übertragung dorthin (siehe Datenschutz Abschnitt 6).

   Design-System Phase 1 (siehe DESIGN-SYSTEM-PLAN.md): Schriften und
   Farb-Tokens (--focus, --gold, --pink, --bg, --bg-panel, --font-display,
   --font-body, ...) stehen nicht mehr hier, sondern zentral in
   tokens.css - dieselbe Datei, die auch style.css (App) einbindet. Alle
   Variablennamen bleiben unverändert nutzbar, nur ihre Definition liegt
   jetzt an einer einzigen Stelle statt doppelt.
   ============================================================ */
@import url('tokens.css?v=2026090604');

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

/* ---------- Runde 102: Dark Mode für die Landingpage ----------
   Der grösste Teil der Seite braucht dafür GAR NICHTS Zusätzliches: sie
   nutzt schon durchgehend die gemeinsamen Tokens aus tokens.css
   (--bg/--ink/--muted/--bg-panel/--card-border usw.), die dort bereits
   seit Runde 100 ihre Dunkelmodus-Werte haben (siehe dortige
   @media/[data-theme]-Regeln) - ein Klick auf den Schalter unten im
   Footer genügt, damit das automatisch mitzieht. Nur zwei Stellen hier
   hatten bisher fest verdrahtete, NICHT token-basierte Helltöne
   (.lp-header, .lp-lang-menu) - die brauchen eine eigene kleine
   Dark-Variante, siehe unten. Bewusst unverändert bleiben: der
   fotografische Hero und der "Von Generation zu Generation"-Streifen
   (beide ohnehin immer dunkel mit heller Schrift, unabhängig vom
   Seiten-Theme) sowie ein paar kleine, seltene Symbol-Badges
   (.status-icon, .trust-icon) - dieselbe bewusste, dokumentierte
   Zurückstellung wie --color-danger-alt in tokens.css. */
:root { --lp-header-bg: rgba(255, 248, 225, .86); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) { --lp-header-bg: rgba(28, 22, 19, .86); }
}
:root[data-theme="dark"] { --lp-header-bg: rgba(28, 22, 19, .86); }

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

/* ---------- Header ---------- */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  background: var(--lp-header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--card-border);
}
/* Das Symbol nimmt die Textfarbe der Kapsel an (fill="currentColor"),
   deshalb funktioniert es auf Bordeaux genauso wie auf hellem Grund. */
.lp-logo-icon { flex-shrink: 0; }
.lp-logo {
  display: flex; align-items: center; gap: 9px;
  background: var(--focus); border-radius: var(--radius-sm);
  padding: 6px 15px; color: #fff;
  /* Wortbild bewusst in Nunito (nicht in der Display-Schrift Neuton) -
     identisch zur App (.logo in style.css). */
  font-family: var(--font-body); font-weight: 800; font-size: 19px; letter-spacing: .2px;
  line-height: 1.25;
}

.lp-header-actions { display: flex; align-items: center; gap: 18px; }
/* ---------- Sprachwahl in der Kopfzeile ----------
   Zwei Sprachen, genau wie in der App. Das Kuerzel steht sichtbar
   daneben, damit man vor dem Aufklappen sieht, worauf man gerade ist. */
.lp-lang { position: relative; }
.lp-lang-btn {
  display: flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 14px; font-weight: 700; color: var(--ink);
  background: none; border: 1px solid transparent; border-radius: var(--radius-full);
  padding: 7px 10px; cursor: pointer; min-height: 40px;
}
.lp-lang-btn:hover { background: var(--color-surface-hover); border-color: var(--card-border); }
.lp-lang-btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.lp-lang-chev { color: var(--muted); }
.lp-lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 60;
  min-width: 190px; padding: 5px;
  background: var(--color-surface); border: 1px solid var(--card-border); border-radius: var(--radius-card);
  box-shadow: 0 14px 34px rgba(78,52,46,.18);
  display: flex; flex-direction: column;
}
.lp-lang-menu.hidden { display: none; }
.lp-lang-menu button {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-family: inherit; font-size: 15px; font-weight: 600; color: var(--ink);
  background: none; border: none; cursor: pointer;
  padding: 11px 12px; border-radius: var(--radius-xs); min-height: 44px; text-align: left;
}
.lp-lang-menu button:hover { background: var(--color-surface-hover); }
.lp-lang-menu button.is-current { background: var(--color-surface-alt); font-weight: 800; }
.lp-lang-menu button i {
  font-style: normal; font-size: 12px; font-weight: 800; letter-spacing: .06em;
  color: var(--muted);
}

.lp-header-signin {
  font-weight: 700; font-size: 14.5px; color: var(--ink);
  padding: 8px 4px; transition: color .15s ease;
}
.lp-header-signin:hover { color: var(--focus); }
.lp-header-cta {
  background: var(--focus); color: #fff; font-weight: 700; font-size: 14.5px;
  padding: 10px 20px; border-radius: var(--radius-full);
  box-shadow: 0 3px 10px rgba(142,36,77,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.lp-header-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(142,36,77,.32); }

/* ---------- Buttons ---------- */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 800; font-size: 16px;
  padding: 14px 28px; border-radius: var(--radius-full);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: var(--focus); color: #fff;
  box-shadow: 0 6px 18px rgba(142,36,77,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(142,36,77,.34); }
.btn-secondary {
  background: transparent; color: var(--focus); border: 1.8px solid var(--focus);
}
.btn-secondary:hover { background: rgba(142,36,77,.06); }
.btn-large { padding: 17px 34px; font-size: 18px; }

/* ---------- Hero ----------
   Ganzflächiges Familienfoto als Hintergrund statt der Baum-Grafik. Ein
   dunkler Verlauf (bordeaux-schwarz statt reinem Schwarz, bleibt so in der
   Markenfarbe) sitzt als eigene Bildebene VOR dem Foto und sorgt dafür,
   dass die helle Schrift auf jedem Foto lesbar bleibt - links kräftiger,
   wo der Text steht, nach rechts hin ausklingend, damit vom Foto selbst
   noch genug zu sehen ist. */
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  background-image:
    linear-gradient(100deg, rgba(26,10,17,.88) 0%, rgba(26,10,17,.72) 38%, rgba(26,10,17,.34) 68%, rgba(26,10,17,.12) 100%),
    url('images/hero-family.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-copy {
  position: relative;
  max-width: 1180px; margin: 0 auto; width: 100%;
  padding: 90px 28px 90px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 5vw, 60px); line-height: 1.1;
  letter-spacing: -0.5px; color: #fff; max-width: 640px;
}
.hero-sub {
  margin-top: 22px; font-size: 17.5px; color: rgba(255,255,255,.86); max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.btn-arrow { display: inline-block; margin-left: 2px; transition: transform .15s ease; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.hero-note { margin-top: 16px; font-size: 13.5px; color: rgba(255,255,255,.68); }

/* ---------- Von Generation zu Generation ----------
   Ersetzt den bisherigen schlichten CTA-Streifen ("Fang mit einer Person
   an...") ganz unten vor dem Footer - eigener Bordeaux-Verlauf statt der
   flachen --focus-Farbe, wirkt zusammen mit dem Foto etwas edler als die
   reine Flächenfarbe vorher. */
.generations {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--focus-dark), #3c0f22 70%);
  padding: 90px 28px; margin-top: 10px;
}
.generations::before {
  content: ''; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, #fff 0, transparent 40%),
    radial-gradient(circle at 85% 85%, #fff 0, transparent 40%);
}
.generations-inner {
  position: relative; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.generations-photo img {
  width: 100%; display: block; border-radius: 18px;
  box-shadow: 0 24px 55px rgba(0,0,0,.4);
}
.generations-copy h2 {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.28; color: #fff;
}
.generations-copy p {
  margin-top: 18px; font-size: 16.5px; color: rgba(255,255,255,.82); max-width: 420px;
}
.generations-copy .btn-primary {
  margin-top: 30px; background: #fff; color: var(--focus);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.generations-copy .btn-primary:hover { box-shadow: 0 10px 24px rgba(0,0,0,.32); }

/* ---------- Features ---------- */
.features { max-width: 1100px; margin: 0 auto; padding: 40px 28px 90px; text-align: center; }
/* Neuton liegt nur in EINEM Schnitt (400) vor - duenner geht nicht.
   Damit die Ueberschriften weniger schwer wirken, ist stattdessen die
   Groesse um rund ein Fuenftel zurueckgenommen. */
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 3vw, 35px); margin-bottom: 40px; letter-spacing: -.3px;
}
.features-lead {
  color: var(--muted); font-size: 16.5px; max-width: 620px; margin: -30px auto 42px;
  line-height: 1.65;
}
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left;
}
/* Die vier Hauptargumente stehen zu zweit nebeneinander - bei drei Spalten
   bliebe eine Karte allein in der zweiten Reihe stehen. */
.feature-grid-main { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-grid-main .feature-card { padding: 30px 28px; }
.feature-grid-main .feature-card h3 { font-size: 19px; line-height: 1.3; }
.feature-card {
  background: var(--bg-panel); border: 1px solid var(--card-border); border-radius: 18px;
  padding: 26px 24px; transition: transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(78,52,46,.09); }
.feature-card svg { color: var(--focus); margin-bottom: 14px; }
.feature-card:nth-of-type(2n) svg { color: var(--gold-dark); }
.feature-card:nth-of-type(3n) svg { color: var(--focus-dark); }
.feature-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature-card p { font-size: 15px; color: var(--muted); }

/* ---------- Preise ---------- */
.pricing { max-width: 1000px; margin: 0 auto; padding: 20px 28px 90px; text-align: center;
  scroll-margin-top: 90px; }
.pricing-lead {
  color: var(--muted); font-size: 16px; max-width: 560px; margin: -26px auto 42px;
  line-height: 1.6;
}
/* "Alles aus Kostenlos": kein Haken, sondern ein Pfeil - es ist kein
   einzelnes Merkmal, sondern der Verweis auf die Liste nebenan. */
.price-list li.all { font-weight: 800; color: var(--ink); }
.price-list li.all::before { content: '↑'; color: var(--gold-dark); }
/* align-items: stretch (statt start) - beide Karten sind gleich hoch,
   auch wenn die eine mehr Punkte auflistet als die andere. Der Knopf
   haengt darin unten (margin-top:auto weiter unten), damit beide auf
   derselben Linie stehen. */
.price-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  text-align: left; align-items: stretch;
}
.price-card {
  position: relative; background: var(--bg-panel);
  border: 1px solid var(--card-border); border-radius: 20px; padding: 30px 26px 28px;
  display: flex; flex-direction: column;
}
.price-card.is-plus {
  border: 2px solid var(--gold);
  box-shadow: 0 12px 34px rgba(201, 162, 39, .16);
}
.price-flag {
  position: absolute; top: -13px; left: 26px;
  background: var(--gold); color: #fff; border-radius: var(--radius-full); padding: 5px 14px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
}
.price-card h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 27px; margin-bottom: 10px;
}
.price-tag { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; min-height: 44px; }
/* Zahlen laufen in der Fliesstext-Schrift (Nunito) - dieselbe wie beim
   Jahrespreis darunter. Die Titelschrift ist für Überschriften da; Ziffern
   wirken darin unruhig. */
.price-amount {
  font-family: var(--font-body); font-size: 32px; font-weight: 800;
  letter-spacing: -.5px; white-space: nowrap;
}
.price-per { color: var(--muted); font-size: 14px; font-weight: 600; }
.price-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }

.price-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.price-list li {
  position: relative; padding-left: 27px; font-size: 15px; line-height: 1.45;
}
.price-list li::before {
  position: absolute; left: 0; top: -1px; font-weight: 800; font-size: 15px;
}
.price-list li.yes::before { content: '✓'; color: var(--color-success-alt); }
.price-list li.no::before  { content: '–'; color: #c2b3a3; }
.price-list li.no { color: var(--muted); }

.price-cta { width: 100%; margin-top: auto; }
.price-note { margin-top: 12px; font-size: 12.5px; color: var(--muted); text-align: center; }

@media (max-width: 860px) {
  .price-grid { grid-template-columns: 1fr; }
  /* Plus stand hier frueher zuoberst. Seit die Plus-Liste mit "Alles aus
     Kostenlos" beginnt, muss der kostenlose Tarif zuerst kommen - sonst
     verweist der erste Punkt auf etwas, das noch gar nicht dastand. */
}
@media (max-width: 560px) {
  .pricing { padding: 10px 20px 60px; }
  .pricing-lead { margin-bottom: 32px; }
}

.price-year { font-size: 14.5px; color: var(--muted); margin: -2px 0 14px; }
.price-year strong.price-amount { font-size: 15.5px; color: var(--ink); font-weight: 800; letter-spacing: 0; }
.price-saving {
  background: var(--color-success-bg); color: var(--color-success-dark); border-radius: var(--radius-full);
  padding: 2px 9px; font-size: 12.5px; font-weight: 800; white-space: nowrap;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--focus); color: #fff; text-align: center;
  padding: 76px 28px; margin-top: 10px;
}
.cta-band h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.2; margin-bottom: 32px;
}
.cta-band .btn-primary { background: #fff; color: var(--focus); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.cta-band .btn-primary:hover { box-shadow: 0 10px 24px rgba(0,0,0,.24); }

/* ---------- Footer ---------- */
.lp-footer { padding: 30px 28px 40px; border-top: 1px solid var(--card-border); }
.lp-footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13.5px; color: var(--muted);
}
.lp-footer-links { display: flex; gap: 20px; }
.lp-footer-links a:hover { color: var(--focus); text-decoration: underline; }
/* Runde 106: Rechtliche Links + Schalter zusammen als EINE Gruppe rechts,
   statt als drittes eigenes flex-Element (das hatte die Links durch
   justify-content:space-between mittig statt rechts wandern lassen -
   Albans Vorgabe: "wie sie waren", also wieder rechts, Schalter direkt
   daneben). */
.lp-footer-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ---------- Runde 105: Hell/Dunkel-Schalter ganz unten im Footer ----------
   Ersetzt die drei Kreis-Knöpfe aus Runde 102 (Hell/Dunkel/System) durch
   einen einzigen, simplen Schalter mit nur zwei Zuständen (Albans
   Vorgabe: "ganz simpel, entweder hell oder dunkel ohne system") - Sonne/
   Mond fest sichtbar in der Spur, der weisse Kreis (Thumb) rutscht je
   nach Zustand auf die jeweils andere Seite, die Spurfarbe wechselt
   Gold/Dunkelbraun mit. Kein "System" mehr auf der Landingpage - Standard
   bleibt Hell. */
.lp-theme-switch { display: inline-flex; cursor: pointer; flex-shrink: 0; }
.lp-theme-switch input {
  position: absolute; opacity: 0; width: 1px; height: 1px; overflow: hidden;
}
.lp-theme-switch-track {
  position: relative; width: 54px; height: 28px; border-radius: var(--radius-full);
  background: var(--gold); transition: background .2s ease;
  display: flex; align-items: center; padding: 0 7px; justify-content: space-between;
}
.lp-theme-switch input:checked + .lp-theme-switch-track { background: #2a231d; }
.lp-theme-switch-icon { font-size: 12px; line-height: 1; position: relative; z-index: 1; }
.lp-theme-switch-thumb {
  position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.3);
  transition: transform .2s cubic-bezier(.34, 1.4, .64, 1);
}
.lp-theme-switch input:checked ~ .lp-theme-switch-track .lp-theme-switch-thumb {
  transform: translateX(26px);
}
.lp-theme-switch input:focus-visible + .lp-theme-switch-track { outline: 2px solid var(--focus); outline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { min-height: 560px; background-position: center 22%; }
  .hero-copy { padding: 64px 24px 64px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .generations-inner { grid-template-columns: 1fr; gap: 36px; }
  .generations-copy { text-align: center; }
  .generations-copy p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .lp-header { padding: 14px 18px; }
  .lp-logo span { display: none; }
  .lp-header-actions { gap: 10px; }
  .hero { min-height: 92vh; background-position: center 16%; }
  .hero-copy { padding: 48px 20px 52px; }
  .hero h1 { font-size: 32px; max-width: 320px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .feature-grid { grid-template-columns: 1fr; }
  .generations { padding: 60px 20px; }
  .cta-band { padding: 56px 22px; }
  .lp-footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Legal pages (Impressum / Datenschutz / AGB) ---------- */
.legal-wrap { max-width: 740px; margin: 0 auto; padding: 56px 28px 110px; }
.legal-wrap h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4.4vw, 44px); letter-spacing: -.3px; margin-bottom: 6px;
}
.legal-updated { color: var(--muted); font-size: 13.5px; margin-bottom: 30px; }
.legal-notice-box {
  background: var(--bg-panel); border: 1.5px dashed var(--gold);
  border-radius: var(--radius-card); padding: 16px 20px; margin-bottom: 38px;
  font-size: 14px; color: var(--muted);
}
.legal-notice-box strong { color: var(--ink); }
.legal-wrap h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 24px; margin: 36px 0 12px;
}
.legal-wrap p, .legal-wrap li { font-size: 15.5px; color: var(--ink); margin-bottom: 12px; }
.legal-wrap ul { padding-left: 22px; margin-bottom: 16px; }
.legal-wrap a.inline-link { color: var(--focus); text-decoration: underline; }
/* Gelbe Platzhalter in den Rechtstexten ("DATUM EINTRAGEN" o. ae.).
   white-space: nowrap stand hier frueher - die langen Platzhalter
   schoben damit die ganze Seite auf schmalen Geraeten in die Breite
   (waagrechtes Scrollen). Sie duerfen umbrechen. */
.placeholder {
  background: #fff3b0; padding: 1px 6px; border-radius: 4px;
  font-weight: 700; color: #6f5300;
  overflow-wrap: anywhere;
}
.legal-back { display: inline-block; margin-bottom: 30px; font-weight: 700; color: var(--focus); }
.legal-back:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   Rückkehr aus dem Bezahlvorgang (/plus/erfolg, /plus/abgebrochen)
   ------------------------------------------------------------
   Eine schmale, mittige Karte in derselben Bildsprache wie der Rest der
   Seite (Kopfzeile, Fusszeile, Schriften, Farben) - nur ohne alles
   drumherum: wer hier landet, kommt gerade von der Bezahlseite zurück und
   soll genau EINE Auskunft bekommen und genau EINEN nächsten Schritt
   sehen.
   ============================================================ */
.status-wrap { max-width: 560px; margin: 0 auto; padding: 72px 28px 110px; text-align: center; }
.status-card {
  background: var(--bg-panel); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 44px 32px 34px;
  box-shadow: 0 2px 4px rgba(78,52,46,.06), 0 14px 34px rgba(78,52,46,.10);
}
.status-icon {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 22px;
  display: grid; place-items: center;
}
/* Grün nur für den bestätigten Erfolg. Der Abbruch ist KEIN Fehler -
   deshalb dort bewusst kein Rot, sondern der neutrale Gold-Ton: es ist
   nichts schiefgegangen, es wurde nur nichts gekauft. */
.status-icon.is-ok { background: #e7f5ec; color: #1f7a4d; }
.status-icon.is-neutral { background: #f5efe1; color: var(--gold-dark); }
.status-wrap h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 4vw, 38px); letter-spacing: -.3px; margin-bottom: 12px;
}
.status-text { font-size: 16.5px; color: var(--muted); line-height: 1.6; }
.status-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.status-hint {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--card-border);
  font-size: 13.5px; color: var(--muted); line-height: 1.55;
}
.status-hint a { color: var(--focus); font-weight: 700; }
@media (max-width: 520px) {
  .status-actions { flex-direction: column; }
  .status-actions .btn-primary, .status-actions .btn-secondary { width: 100%; }
}

/* ============================================================
   "So einfach beginnt eure Familiengeschichte"
   ------------------------------------------------------------
   Vier Schritte in einer Reihe. Die Verbindungspfeile stecken bewusst in
   ::after der Schritte statt in eigenen Elementen - dadurch bleibt die
   Liste eine saubere Aufzaehlung (auch fuer Vorleseprogramme), und der
   Pfeil kann auf schmalen Bildschirmen einfach von -> auf v wechseln,
   wenn die Reihe untereinander umbricht.
   ============================================================ */
/* Der frühere Schritt-für-Schritt-Abschnitt ("In vier Schritten") ist
   entfallen - direkt nach dem Hero kommt jetzt der Baukasten zum
   Ausprobieren. Sein CSS wurde mit entfernt.
   Die Kopfzeile bleibt beim Scrollen stehen - ohne diesen Abstand
   verschwindet die Ueberschrift beim Sprung auf den Anker darunter. */
.demo { scroll-margin-top: 84px; }

/* ============================================================
   Baukasten zum Ausprobieren
   ------------------------------------------------------------
   Der Rahmen ahmt ein schlichtes Fenster nach, damit sofort klar ist:
   das da drin ist die App und nicht ein Bild davon.
   ============================================================ */
.demo { max-width: 1100px; margin: 0 auto; padding: 78px 28px 20px; text-align: center; }
.demo-sub {
  max-width: 620px; margin: -30px auto 34px; font-size: 16px; color: var(--muted);
}
.demo-frame {
  border: 1px solid var(--card-border); border-radius: 18px; overflow: hidden;
  background: var(--bg-panel); box-shadow: 0 18px 45px rgba(78,52,46,.12);
}
.demo-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-bottom: 1px solid var(--card-border);
  background: var(--bg-panel);
}
.demo-dots { display: flex; gap: 6px; }
.demo-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--card-border); }
.demo-title {
  font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .02em;
}
.demo-reset {
  margin-left: auto; font-family: inherit; font-size: 13px; font-weight: 700;
  color: var(--focus); background: transparent;
  border: 1px solid var(--card-border); border-radius: var(--radius-full);
  padding: 6px 14px; cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.demo-reset:hover { background: #fdf2f6; border-color: var(--pink); }
.demo-stage { position: relative; height: 560px; background: var(--bg); }
.demo-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 15px; color: var(--muted); margin: 0;
}
/* Ohne diese Zeile bliebe der Hinweis stehen: das display:grid oben ist
   staerker als die Browser-Regel fuer das hidden-Attribut. */
.demo-placeholder[hidden] { display: none; }
.demo-iframe {
  width: 100%; height: 100%; border: 0; display: block;
  opacity: 0; transition: opacity .3s ease;
}
.demo-iframe.is-ready { opacity: 1; }
.demo-note { margin-top: 16px; font-size: 13.5px; color: var(--muted); }
.demo-cta { margin-top: 26px; }

/* ---------- Schmale Bildschirme ---------- */
@media (max-width: 640px) {
  .demo { padding-top: 58px; }
  .demo-stage { height: 460px; }
  .demo-title { display: none; }
  .demo-reset { margin-left: auto; }
}

/* ============================================================
   Abschnitte aus dem Landingpage-Umbau
   ============================================================ */

/* ---------- Mehr entdecken ----------
   Kompakte Liste mit kleinen Symbolen: n&uuml;tzlich, aber f&uuml;r den ersten
   Eindruck nicht entscheidend - deshalb bewusst KEINE grossen Karten,
   sonst konkurrieren diese Punkte optisch mit den vier Hauptargumenten
   darueber. */
.more {
  max-width: 1100px; margin: 0 auto; padding: 10px 28px 90px; text-align: center;
  scroll-margin-top: 90px;
}
.more-lead {
  color: var(--muted); font-size: 16px; max-width: 520px; margin: -30px auto 40px;
}
.more-grid {
  list-style: none; padding: 0; margin: 0; text-align: left;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 28px;
}
.more-item { display: flex; gap: 12px; align-items: flex-start; }
.more-item svg { color: var(--focus); flex-shrink: 0; margin-top: 3px; }
.more-item:nth-child(3n-1) svg { color: var(--gold-dark); }
.more-item:nth-child(3n) svg { color: var(--focus-dark); }
.more-item strong { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 2px; }
.more-item span { display: block; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- Ohne Anmeldung starten ----------
   Als Vertrauens-Argument gesetzt, nicht als weitere Funktion: eigener
   Hintergrund, eigene Zeile, damit es zwischen den Listen nicht untergeht. */
.trust { padding: 0 28px 90px; }
.trust-inner {
  max-width: 860px; margin: 0 auto; display: flex; gap: 22px; align-items: flex-start;
  background: var(--bg-panel); border: 1px solid var(--card-border); border-radius: 20px;
  padding: 34px 34px 32px;
  box-shadow: 0 10px 30px rgba(78,52,46,.07);
}
.trust-icon {
  flex-shrink: 0; width: 58px; height: 58px; border-radius: var(--radius-lg);
  display: grid; place-items: center;
  background: #f6ecd9; color: var(--gold-dark);
}
.trust-copy h2 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -.3px; margin-bottom: 10px;
}
.trust-copy p { color: var(--muted); font-size: 16px; line-height: 1.65; margin-bottom: 20px; }
.trust-cta { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Warum jetzt ----------
   Der ernsteste Satz der Seite - er steht allein, ohne Knopf daneben.
   Ein Aufruf direkt darunter wuerde ihn zur Verkaufsmasche machen. */
.urgency {
  max-width: 760px; margin: 0 auto; padding: 10px 28px 84px; text-align: center;
}
.urgency h2 {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(27px, 3.6vw, 40px); line-height: 1.25; letter-spacing: -.3px;
  color: var(--ink); margin-bottom: 16px;
}
.urgency p { color: var(--muted); font-size: 16.5px; line-height: 1.6; }

/* ---------- Runde 86: kleine Vertrauenssignale bei den Haupt-CTAs ----------
   Steht auf dem dunklen Hero-Foto, deshalb helle, gedaempfte Farbe wie
   .hero-note - keine eigenen Icons/SVGs, die Emoji tragen die Aussage
   schon leichtgewichtig genug. */
.trust-signals {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
}
.trust-signals li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.78);
}

/* ---------- Warum Farefisi? (Positionierung + Vergleich) ---------- */
.why { max-width: 900px; margin: 0 auto; padding: 20px 28px 90px; text-align: center; }
.why-lead {
  color: var(--muted); font-size: 16.5px; max-width: 560px; margin: -30px auto 36px;
  line-height: 1.65;
}
.why-perks {
  list-style: none; padding: 0; margin: 0 0 56px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px;
  text-align: left;
}
.why-perks li {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-panel); border: 1px solid var(--card-border); border-radius: var(--radius-card);
  padding: 14px 16px; font-size: 14.5px; font-weight: 700; color: var(--ink);
}
.why-perks li span:first-child { font-size: 19px; flex-shrink: 0; }
.why-compare-title {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2.4vw, 26px);
  margin-bottom: 20px;
}
.why-compare-wrap { overflow-x: auto; }
.why-compare {
  width: 100%; max-width: 640px; margin: 0 auto; border-collapse: collapse;
  background: var(--bg-panel); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden;
}
.why-compare th, .why-compare td {
  padding: 13px 20px; font-size: 14.5px; text-align: left; border-bottom: 1px solid var(--card-border);
}
.why-compare th {
  font-weight: 800; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted);
}
.why-compare th:last-child, .why-compare td:last-child { color: var(--focus); font-weight: 700; }
.why-compare tr:last-child td { border-bottom: none; }

/* ---------- Datenschutz/Vertrauen ---------- */
.privacy-trust {
  max-width: 860px; margin: 0 auto; padding: 10px 28px 90px; text-align: center;
}
.privacy-trust-icon { font-size: 34px; display: block; margin-bottom: 12px; }
.privacy-trust-lead {
  color: var(--muted); font-size: 16px; max-width: 520px; margin: -30px auto 36px; line-height: 1.6;
}
.privacy-qa {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px;
  text-align: left; margin: 0 0 28px;
}
.privacy-qa dt { font-weight: 800; font-size: 14.5px; color: var(--ink); margin-bottom: 4px; }
.privacy-qa dd { font-size: 14px; color: var(--muted); line-height: 1.55; }
.privacy-trust-link { font-weight: 700; color: var(--focus); }
.privacy-trust-link:hover { text-decoration: underline; }

/* ---------- Haeufige Fragen ---------- */
.faq { max-width: 760px; margin: 0 auto; padding: 20px 28px 90px; text-align: center; }
.faq-list { text-align: left; display: grid; gap: 10px; }
.faq-item {
  background: var(--bg-panel); border: 1px solid var(--card-border); border-radius: 14px;
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer; padding: 16px 26px 16px 0; position: relative;
  font-weight: 700; font-size: 15.5px; color: var(--ink); list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 14px;
  font-size: 22px; font-weight: 400; color: var(--focus); transition: transform .15s ease;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { color: var(--muted); font-size: 14.5px; line-height: 1.6; padding: 0 0 18px; }

/* ---------- Schmalere Bildschirme ---------- */
@media (max-width: 900px) {
  .more-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .feature-grid-main { grid-template-columns: 1fr; }
  .privacy-qa { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .more { padding-bottom: 64px; }
  .more-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust { padding-bottom: 64px; }
  .trust-inner { flex-direction: column; gap: 16px; padding: 26px 22px 24px; text-align: left; }
  .urgency { padding-bottom: 60px; }
  .why { padding-bottom: 64px; }
  .why-compare th, .why-compare td { padding: 11px 14px; font-size: 13.5px; }
  .privacy-trust { padding-bottom: 64px; }
  .faq { padding-bottom: 64px; }
}

/* ---------- Cookie-Hinweis (nur Landingpage, reiner Hinweis ohne
   Blocker - Google Analytics laedt unabhaengig davon sofort, die Notiz
   informiert nur und verschwindet dauerhaft nach Klick auf "OK", per
   localStorage gemerkt). Bewusst klein und dezent gehalten: schwebende
   Pille unten, kein Overlay, kein Abdunkeln der Seite. ---------- */
.cookie-notice {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 460px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  background: var(--color-surface); color: var(--muted);
  border: 1px solid var(--card-border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 12px 12px 16px;
  font-size: 12.5px; line-height: 1.45;
  transform: translateY(calc(100% + 24px)); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
}
.cookie-notice.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-notice p { margin: 0; flex: 1; }
.cookie-notice a { color: var(--ink); text-decoration: underline; }
.cookie-notice-ok {
  flex: none; border: none; cursor: pointer;
  background: var(--color-primary); color: #fff;
  font: inherit; font-weight: 700; font-size: 12.5px;
  padding: 7px 16px; border-radius: var(--radius-full);
}
.cookie-notice-ok:hover { background: var(--color-primary-dark); }
@media (max-width: 560px) {
  .cookie-notice { left: 10px; right: 10px; bottom: 10px; padding: 10px 10px 10px 14px; }
}
