/* ============================================================
   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).
   ============================================================ */
@font-face {
  font-family: 'Neuton'; font-style: normal; font-weight: 400;
  font-display: swap; src: url('fonts/neuton-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Neuton'; font-style: italic; font-weight: 400;
  font-display: swap; src: url('fonts/neuton-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 400;
  font-display: swap; src: url('fonts/nunito-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 600;
  font-display: swap; src: url('fonts/nunito-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 700;
  font-display: swap; src: url('fonts/nunito-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 800;
  font-display: swap; src: url('fonts/nunito-800.woff2') format('woff2');
}

:root {
  --focus: #8E244D;
  --focus-dark: #6f1c3c;
  --pink: #F8BBD0;
  --gold: #C9A227;
  --gold-dark: #a4841f;
  --ink: #4E342E;
  --muted: #8d7468;
  --card-border: #ecdfc4;
  --bg: #FFF8E1;
  --bg-panel: #fffdf6;
  /* Titelschrift der Landingpage und des Logos. Bewusst anders als in der
     App (dort bleibt Nunito) - Neuton wirkt wie aus einem Familienbuch
     und passt zum Thema Herkunft. Durchgängig in Normalstärke (400)
     gesetzt - in höheren Schnitten wirkt Neuton zu klobig. Willst du eine
     andere Schrift, reicht es, diese Zeile plus die @font-face-Regeln
     oben zu ändern. */
  --font-display: 'Neuton', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
}

* { 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;
}

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: rgba(255, 248, 225, 0.86);
  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: 10px;
  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: 999px;
  padding: 7px 10px; cursor: pointer; min-height: 40px;
}
.lp-lang-btn:hover { background: #f6efd9; 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: #fff; border: 1px solid var(--card-border); border-radius: 12px;
  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: 8px; min-height: 44px; text-align: left;
}
.lp-lang-menu button:hover { background: #f6efd9; }
.lp-lang-menu button.is-current { background: #f3ede0; 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: 999px;
  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: 999px;
  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, #6f1c3c, #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: 999px; 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: #1f9d5c; }
.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: #e4f1e8; color: #2e6b45; border-radius: 999px;
  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; }

/* ---------- 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: 12px; 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: #fffdf6;
}
.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: 999px;
  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: 16px;
  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; }

/* ---------- 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; }
}
@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; }
}
