/* Geburtstagsfuchs v2 – Designsystem fuer ALLE Seiten der Neugestaltung.
   Eigenes Stylesheet, damit die alte Seite (style.css) unberuehrt bleibt.
   Richtung: moderne App-Landingpage – warm und verspielt im Ton, aber mit
   ruhiger Typografie, gezeichneten Icons (keine Emoji-Icons) und einem
   konsistenten Raster fuer Knoepfe, Karten und Abstaende. */

/* Selbst gehostete Schrift (SIL OFL) – bewusst KEIN Google-Fonts-Embed (DSGVO). */
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/static/fonts/nunito-latin.woff2") format("woff2");
}

:root {
  --brand:       #e8590c;   /* Fuchs-Orange, eine Spur satter */
  --brand-dark:  #c2410c;
  --brand-deep:  #9a3412;
  --tint:        #fdeede;   /* zarte Orange-Flaeche fuer Icon-Kacheln */
  --tint-line:   #f8dcc2;
  --gold:        #ffc439;   /* nur fuer PayPal */
  --bg:          #fdf8f2;   /* warmer, ruhiger Seitengrund */
  --surface:     #ffffff;
  --ink:         #26190e;
  --muted:       #83705f;
  --line:        #eee1d3;
  --ok:          #15803d;
  --wa:          #22c55e;
  --tg:          #29a9eb;
  --r-lg:        26px;
  --r:           16px;
  --r-sm:        12px;
  --shadow:      0 1px 2px rgba(38,25,14,.05), 0 10px 30px -10px rgba(38,25,14,.12);
  --shadow-sm:   0 1px 2px rgba(38,25,14,.07);
  --shadow-lift: 0 2px 4px rgba(38,25,14,.06), 0 20px 45px -12px rgba(38,25,14,.20);
  --maxw:        70rem;
  --maxw-text:   44rem;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  margin: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;   /* Deko darf nie einen Querscroller erzeugen */
}

.wrap        { max-width: var(--maxw);      margin: 0 auto; padding: 0 1.25rem; }
.wrap-text   { max-width: var(--maxw-text); margin: 0 auto; padding: 0 1.25rem; }

a { color: var(--brand); }

/* Gezeichnete Icons: immer stroke in aktueller Textfarbe */
.ic { width: 1.35em; height: 1.35em; flex: none; }
.ic path, .ic circle, .ic rect, .ic line, .ic polyline {
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,248,242,.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(238,225,211,.9);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: .7rem 1.25rem;
  display: flex; align-items: center; gap: 1.1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 900; font-size: 1.12rem; letter-spacing: -.01em;
  color: var(--ink); text-decoration: none;
}
.brand .logo { font-size: 1.45rem; line-height: 1; display: inline-block; transform: rotate(-8deg); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.nav-links > a {
  color: var(--muted); text-decoration: none; font-weight: 700; font-size: .92rem;
  padding: .5rem .8rem; border-radius: 999px;
}
.nav-links > a:hover { color: var(--ink); background: rgba(38,25,14,.05); }
.nav-cta {
  background: var(--ink); color: #fff !important;
  padding: .5rem 1.1rem !important; margin-left: .35rem;
}
.nav-cta:hover { background: #000 !important; }
.nav-support { background: var(--gold); color: #241a00 !important; padding: .5rem 1rem !important; }
.nav-support:hover { background: #f5b71f !important; }
.nav-support .ic { width: 1.05em; height: 1.05em; margin-right: .3rem; vertical-align: -2px; }
@media (max-width: 720px) {
  .nav-links > a:not(.nav-cta):not(.nav-support) { display: none; }
  .nav-support .nav-support-text { display: none; }
  .nav-support { padding: .5rem .75rem !important; }
  .nav-support .ic { margin-right: 0; }
}

/* ---------- Knoepfe (ein System fuer alle Seiten) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 3rem; padding: .7rem 1.5rem; border-radius: 999px; border: 0;
  font-family: inherit; font-size: 1rem; font-weight: 800; line-height: 1.25;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: transform .06s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { min-height: 3.4rem; padding: .85rem 2rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -8px rgba(194,65,12,.55); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-secondary { background: var(--surface); color: var(--ink); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: #ddc8b2; }
.btn-ghost { background: transparent; color: var(--muted); font-weight: 700; }
.btn-ghost:hover { color: var(--ink); background: rgba(38,25,14,.05); }
.btn-danger { background: #dc2626; color: #fff; box-shadow: var(--shadow-sm); }
.btn-danger:hover { background: #b91c1c; }

/* Anbieter-Knoepfe (Google / iCloud): neutral, wie ein Login-Knopf */
.btn-google, .btn-icloud, .btn-provider {
  background: #fff; color: #1f1f1f; border: 1.5px solid #dadce0;
  border-radius: var(--r-sm); box-shadow: var(--shadow-sm); font-weight: 700;
}
.btn-google:hover, .btn-icloud:hover, .btn-provider:hover { background: #f8f9fa; }
.btn-google svg, .btn-icloud svg, .btn-provider svg { width: 19px; height: 19px; flex: none; }

/* PayPal: klassisches Gold nur dort, wo PayPal gemeint ist */
.btn-paypal { background: var(--gold); color: #111; box-shadow: var(--shadow-sm); }
.btn-paypal:hover { background: #f5b71f; transform: translateY(-1px); }
/* Weisse Variante fuer dunkle/orange Flaechen */
.btn-paypal-light { background: #fff; color: var(--ink); box-shadow: 0 12px 30px -10px rgba(0,0,0,.35); }
.btn-paypal-light:hover { transform: translateY(-1px); }
.pp-mark { font-style: italic; font-weight: 900; letter-spacing: -.02em; }
.pp-mark .pp1 { color: #003087; }
.pp-mark .pp2 { color: #0070ba; }

/* dezenter Abmelde-Link (Success-Fusszeile) */
.unsub-link { color: var(--muted); text-decoration: underline; font-size: .82rem; }
.unsub-link:hover { color: var(--ink); }

/* ---------- Hero (Startseite) ---------- */
.hero { position: relative; padding: 4rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) {
  .hero { padding-top: 2.4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.6rem; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--tint); border: 1px solid var(--tint-line); border-radius: 999px;
  padding: .34rem .95rem; font-size: .82rem; font-weight: 800; color: var(--brand-deep);
}
.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.6rem); line-height: 1.06;
  letter-spacing: -.025em; font-weight: 900; margin: 1rem 0 1.1rem;
}
/* Handgezeichneter Schwung unter dem Schluesselwort */
.mark { position: relative; display: inline-block; }
.mark svg.swash {
  position: absolute; left: 2%; right: 2%; width: 96%; height: .32em;
  bottom: -.18em; overflow: visible;
}
.mark svg.swash path {
  fill: none; stroke: var(--brand); stroke-width: 7; stroke-linecap: round; opacity: .85;
}
.hero .lead {
  color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.2rem); font-weight: 500;
  max-width: 33rem; margin: 0 0 1.8rem;
}
.hero .lead b { color: var(--ink); font-weight: 800; }
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

/* Fakten-Zeile unter den CTAs */
.hero-facts { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 2rem 0 0; padding: 0; list-style: none; }
.hero-facts li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 700; color: var(--muted); }
.hero-facts .ic { color: var(--brand); width: 1.15rem; height: 1.15rem; }

/* Hero-Buehne: Telefon leicht gedreht auf weicher Farbkachel */
.hero-stage { position: relative; display: grid; place-items: center; padding: 1.5rem 0; }
.stage-tile {
  position: absolute; inset: 0 6%;
  background: linear-gradient(150deg, #ffe3c7 0%, #fdeede 55%, #ffd9b8 100%);
  border-radius: 40px; transform: rotate(3deg);
}
.stage-ring {
  position: absolute; border: 2.5px solid rgba(232,89,12,.28); border-radius: 50%;
}
.ring-1 { width: 4.4rem; height: 4.4rem; top: 6%; left: 8%; }
.ring-2 { width: 2.6rem; height: 2.6rem; bottom: 9%; right: 9%; border-color: rgba(232,89,12,.2); }
.stage-spark { position: absolute; color: var(--brand); }
.spark-1 { width: 2rem; height: 2rem; top: 11%; right: 13%; animation: schweben 5.5s ease-in-out infinite; }
.spark-2 { width: 1.4rem; height: 1.4rem; bottom: 15%; left: 12%; color: #f0a04a; animation: schweben 6.5s ease-in-out 1s infinite; }
.stage-spark path { fill: currentColor; stroke: none; }
@keyframes schweben { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-9px) rotate(8deg); } }
.hero-stage .phone { position: relative; transform: rotate(-3deg); }

/* Das Hero-Telefon behaelt IMMER Telefon-Proportionen – ohne diese Regeln
   greift auf schmalen Displays die width:100%-Regel der Flow-Vorschau. */
.hero-stage .phone { width: min(238px, 62vw); }
.hero-stage .phone-screen { min-height: min(112vw, 430px); }

/* ---------- Abschnitte ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 720px) { .section { padding: 3.4rem 0; } }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 2.8rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--tint); color: var(--brand-deep); border: 1px solid var(--tint-line);
  border-radius: 999px; padding: .3rem .95rem; font-size: .8rem; font-weight: 800;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem); letter-spacing: -.02em;
  line-height: 1.12; font-weight: 900; margin: .9rem 0 .6rem;
}
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; font-weight: 500; }

/* ---------- Schritt-Karten ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 980px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: 1.6rem 1.4rem;
}
.step-kopf { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.it {
  width: 2.9rem; height: 2.9rem; border-radius: 14px; display: grid; place-items: center;
  background: var(--tint); border: 1px solid var(--tint-line); color: var(--brand);
}
.it .ic { width: 1.45rem; height: 1.45rem; }
.step-nr { font-size: .8rem; font-weight: 800; color: #c9b8a6; letter-spacing: .08em; }
.step-card h3 { margin: 0 0 .35rem; font-size: 1.08rem; font-weight: 800; letter-spacing: -.01em; }
.step-card p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.55; }
.step-card p b { color: var(--ink); font-weight: 800; }

/* ---------- Vorschau (Demo-Panel mit Telefonen) ---------- */
.demo-panel {
  background: linear-gradient(160deg, #fff3e4 0%, #fdeede 100%);
  border: 1px solid var(--tint-line); border-radius: 34px;
  padding: 2.6rem 1.6rem 2.4rem; position: relative; overflow: hidden;
}
.toggle-row { display: flex; justify-content: center; margin-bottom: 2.2rem; }
.toggle {
  display: inline-flex; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .3rem; gap: .25rem; box-shadow: var(--shadow-sm);
}
.toggle button {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 0; background: transparent; border-radius: 999px;
  padding: .55rem 1.2rem; font: inherit; font-weight: 800; font-size: .95rem;
  color: var(--muted); cursor: pointer; transition: background .15s, color .15s;
}
.toggle button svg { width: 17px; height: 17px; }
.toggle button[aria-pressed="true"] { background: var(--ink); color: #fff; }

.flow { display: flex; gap: 1.6rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.flow[hidden] { display: none; }   /* display:flex wuerde sonst hidden aushebeln */
.flow-step { margin: 0; flex: 0 1 auto; }
.flow-step figcaption {
  font-size: .84rem; font-weight: 600; color: var(--muted); text-align: center;
  margin: .9rem auto 0; max-width: 220px; line-height: 1.45;
}
.flow-arrow { color: var(--brand); flex: none; }
.flow-arrow .ic { width: 2rem; height: 2rem; }

.phone {
  width: 225px; max-width: 100%; margin: 0 auto; background: #26190e;
  border-radius: 36px; padding: 9px; box-shadow: var(--shadow-lift);
}
.phone-screen {
  background: linear-gradient(165deg, #5b4437 0%, #241d15 100%);
  border-radius: 28px; padding: .95rem .55rem 1.2rem;
  min-height: 425px;   /* hochkant wie ein echtes Telefon */
}
.phone-bar { width: 56px; height: 4px; border-radius: 99px; background: rgba(255,255,255,.28); margin: 0 auto 1rem; }
.phone-time { color: #fff; text-align: center; font-size: 2rem; font-weight: 300; line-height: 1; }
.phone-date { color: rgba(255,255,255,.72); text-align: center; font-size: .74rem; margin: .3rem 0 1.2rem; }

.notif {
  background: rgba(255,255,255,.96); border-radius: 15px; padding: .55rem .6rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.22); text-align: left;
  display: flex; gap: .5rem; align-items: flex-start;
}
.notif-icon {
  width: 23px; height: 23px; border-radius: 6px; background: #1f9e78; flex: none;
  display: grid; place-items: center;
}
.notif-icon svg { width: 14px; height: 14px; fill: #fff; display: block; }
.notif-main { min-width: 0; }
.notif-head { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .12rem; }
.notif-app { font-size: .62rem; color: #78716c; text-transform: uppercase; letter-spacing: .04em; }
.notif-time { font-size: .62rem; color: #a8a29e; margin-left: auto; }
.notif-title { font-weight: 800; font-size: .82rem; margin-bottom: .1rem; line-height: 1.25; }
/* Das Betriebssystem kuerzt lange Texte auf dem Sperrbildschirm – nachbilden */
.notif-body {
  font-size: .75rem; color: #44403c; line-height: 1.4;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  overflow: hidden;
}

.chat-screen {
  background: #ece5dd; border-radius: 28px; min-height: 425px;
  display: flex; flex-direction: column; overflow: hidden;
}
.chat-top {
  background: #f7f5f2; border-bottom: 1px solid #ded7cf; padding: .6rem .65rem;
  display: flex; align-items: center; gap: .5rem;
}
.chat-back { color: var(--muted); font-size: 1.05rem; line-height: 1; }
.chat-avatar {
  width: 24px; height: 24px; border-radius: 50%; background: #cbbfb3; color: #fff;
  font-size: .72rem; display: grid; place-items: center; font-weight: 800;
}
.chat-name { font-size: .84rem; font-weight: 700; }
.chat-body { flex: 1; }
.chat-input { display: flex; align-items: flex-end; gap: .4rem; padding: .5rem; }
.chat-field {
  flex: 1; background: #fff; border-radius: 15px; padding: .5rem .65rem;
  font-size: .75rem; line-height: 1.4; color: var(--ink); text-align: left;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  min-width: 0; overflow-wrap: break-word;   /* laengstes Wort darf den Rahmen nicht sprengen */
}
.chat-caret { display: inline-block; width: 1px; height: .8em; background: var(--wa); vertical-align: -1px; margin-left: 1px; }
.chat-send {
  width: 32px; height: 32px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; font-size: .85rem; flex: none;
}
/* Kern der Vorschau: die Nachricht ist ein ENTWURF, kein Versand */
.chat-entwurf {
  display: block; font-size: .57rem; font-weight: 800; letter-spacing: .03em;
  text-transform: uppercase; color: #b45309; margin-bottom: .2rem;
}
.chat-send.betont { position: relative; }
.chat-send.betont::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--brand);   /* lenkt den Blick auf DEINEN Tipp */
}
.chat-hinweis {
  margin: 0; padding: 0 .5rem .55rem; text-align: center;
  font-size: .65rem; line-height: 1.35; color: #57534e;
}
.chat-screen.tg { background: #e7ebf0; }
.chat-screen.tg .chat-top { background: #fff; border-bottom-color: #dfe4ea; }
.chat-screen.tg .chat-avatar { background: var(--tg); }
.chat-screen.tg .chat-send { background: var(--tg); }
.chat-screen.tg .chat-caret { background: var(--tg); }

.preview-caption {
  font-size: .95rem; font-weight: 600; color: var(--muted);
  margin: 2rem auto 0; text-align: center; max-width: 30rem;
}
.preview-caption b { color: var(--ink); font-weight: 800; }

/* Schmale Displays: beide Telefone bleiben NEBENEINANDER (der ganze Sinn der
   Vorher/Nachher-Darstellung); alles skaliert stufenlos mit clamp(vw). */
@media (max-width: 560px) {
  .demo-panel { padding: 1.8rem .8rem 1.6rem; border-radius: 24px; }
  .flow { flex-wrap: nowrap; align-items: flex-start; gap: .4rem; }
  .flow-step { flex: 1 1 0; min-width: 0; }
  .flow-arrow { align-self: center; margin-top: -1.5rem; }
  .flow-arrow .ic { width: 1.2rem; height: 1.2rem; }
  .flow-step figcaption { font-size: clamp(9px, 2.4vw, 12.5px); margin-top: .5rem; }

  .phone { width: 100%; padding: 5px; border-radius: 22px; }
  .phone-screen, .chat-screen { min-height: clamp(250px, 82vw, 425px); }
  .phone-screen { border-radius: 17px; padding: .55rem .3rem .7rem; }
  .phone-bar { width: 34px; height: 3px; margin-bottom: .6rem; }
  .phone-time { font-size: clamp(15px, 4.6vw, 30px); }
  .phone-date { font-size: clamp(7px, 2vw, 11.5px); margin: .2rem 0 .75rem; }

  .notif { padding: .35rem .4rem; border-radius: 10px; gap: .3rem; }
  .notif-icon { width: 15px; height: 15px; border-radius: 4px; }
  .notif-icon svg { width: 9px; height: 9px; }
  .notif-app, .notif-time { font-size: clamp(6.5px, 1.8vw, 9.6px); }
  .notif-title { font-size: clamp(9px, 2.5vw, 12.8px); }
  .notif-body { font-size: clamp(8px, 2.3vw, 11.8px); }

  .chat-screen { border-radius: 17px; }
  .chat-top { padding: .35rem .4rem; gap: .25rem; }
  .chat-back { font-size: .75rem; }
  .chat-avatar { width: 16px; height: 16px; font-size: clamp(6.5px, 1.8vw, 11.2px); }
  .chat-name { font-size: clamp(8px, 2.2vw, 13px); }
  .chat-input { padding: .3rem; gap: .22rem; }
  .chat-field { font-size: clamp(8px, 2.3vw, 11.8px); padding: .32rem .4rem; border-radius: 10px; }
  .chat-entwurf { font-size: clamp(6.5px, 1.8vw, 8.9px); }
  .chat-send { width: 22px; height: 22px; font-size: .6rem; }
  .chat-hinweis { font-size: clamp(7px, 2vw, 10px); padding: 0 .3rem .35rem; }
}

/* ---------- Vertrauen ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
@media (max-width: 800px) { .trust-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.trust-item h3 { display: flex; align-items: center; gap: .65rem; margin: 0 0 .45rem; font-size: 1.08rem; font-weight: 800; }
.trust-item p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.6; }
.trust-item p b { color: var(--ink); font-weight: 800; }
.trust-more { text-align: center; margin: 2.4rem 0 0; font-size: .95rem; font-weight: 600; color: var(--muted); }
.trust-more a { color: var(--brand); font-weight: 800; }

/* ---------- Start / Quellenauswahl ---------- */
.start-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lift);
  padding: 2.2rem 1.8rem; max-width: 33rem; margin: 0 auto;
}
@media (max-width: 560px) { .start-card { padding: 1.6rem 1.1rem; } }
.start-card h3 { text-align: center; font-size: 1.2rem; font-weight: 800; margin: 0 0 1.3rem; letter-spacing: -.01em; }

.choice-grid { display: flex; gap: .8rem; }
.choice {
  flex: 1 1 0; display: flex; flex-direction: column; align-items: center; gap: .35rem;
  background: #fff; border: 2px solid var(--line); border-radius: var(--r);
  padding: 1.15rem .7rem 1rem; cursor: pointer; font: inherit; color: var(--ink);
  text-align: center; transition: border-color .15s, background .15s, transform .06s, box-shadow .15s;
}
.choice:hover { border-color: #ddc8b2; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.choice:active { transform: translateY(0); }
.choice[aria-pressed="true"] { border-color: var(--brand); background: #fff6ec; }
.choice-icon { width: 32px; height: 32px; display: grid; place-items: center; }
.choice-icon svg { width: 100%; height: 100%; }
.choice-name { font-weight: 800; font-size: 1rem; }
.choice-desc { font-size: .78rem; font-weight: 600; color: var(--muted); line-height: 1.35; }

.choice-panel { margin-top: 1.25rem; }
.choice-panel .hint { text-align: center; font-size: .85rem; font-weight: 600; color: var(--muted); margin: .9rem 0 0; }
.choice-hint {
  font-size: .87rem; font-weight: 600; color: var(--muted); text-align: center;
  margin: 1.2rem 0 0; padding-top: 1.05rem; border-top: 1px solid var(--line);
}
.choice-hint a { color: var(--brand); font-weight: 800; }

/* ---------- FAQ ---------- */
.faq { max-width: var(--maxw-text); margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 1.15rem .3rem; font-weight: 800; font-size: 1.02rem;
  list-style: none; display: flex; align-items: center; gap: .7rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic {
  margin-left: auto; color: var(--brand); width: 1.15rem; height: 1.15rem;
  transition: transform .18s ease;
}
.faq details[open] summary .ic { transform: rotate(45deg); }
.faq .faq-body { padding: 0 .3rem 1.15rem; color: var(--muted); font-size: .95rem; }
.faq .faq-body p { margin: 0 0 .5rem; } .faq .faq-body p:last-child { margin-bottom: 0; }
.faq .faq-body a { color: var(--brand); font-weight: 700; }

/* ---------- Unterstuetzen-Panel ---------- */
.support-panel {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, #f97b2f 0%, var(--brand) 45%, #b13c0a 100%);
  border-radius: 34px; box-shadow: var(--shadow-lift);
  padding: 3rem 2.6rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
}
@media (max-width: 800px) { .support-panel { flex-direction: column; text-align: center; padding: 2.4rem 1.5rem; } }
.support-panel::before {
  /* Dezentes Konfetti aus reinen Farbverlaeufen – kein Bild, kein Request */
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image:
    radial-gradient(circle 3px at 15% 25%, #ffe4b8 98%, transparent),
    radial-gradient(circle 2.5px at 38% 78%, #ffd7ae 98%, transparent),
    radial-gradient(circle 3px at 55% 12%, #ffe4b8 98%, transparent),
    radial-gradient(circle 2.5px at 72% 85%, #ffd7ae 98%, transparent),
    radial-gradient(circle 3px at 88% 35%, #ffe4b8 98%, transparent);
}
.support-panel > * { position: relative; }
.support-text h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 900; letter-spacing: -.02em; margin: 0 0 .5rem; }
.support-text p { margin: 0; max-width: 30rem; opacity: .95; font-size: 1rem; font-weight: 500; }
.support-cta { flex: none; display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.support-note { font-size: .82rem; font-weight: 600; opacity: .9; margin: 0; }
.support-note a { color: #fff; font-weight: 800; }

/* ---------- Unterseiten: Kopf + Karten + Formulare ---------- */
.page-hero { text-align: center; padding: 3.4rem 0 2.2rem; }
.page-hero .chip { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); font-weight: 900; letter-spacing: -.02em; margin: .3rem 0 .7rem; line-height: 1.1; }
.page-hero .lead { color: var(--muted); font-size: 1.08rem; font-weight: 500; margin: 0 auto; max-width: 34rem; }
.page-hero .lead b { color: var(--ink); font-weight: 800; }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
  padding: 1.7rem 1.6rem; margin-bottom: 1.1rem;
}
@media (max-width: 560px) { .card { padding: 1.4rem 1.1rem; } }
.card h2 { font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em; margin: 0 0 .8rem; }
.card > p { font-size: .97rem; }
.muted { color: var(--muted); }

.zurueck-row { text-align: center; margin: 1.8rem 0 0; }

/* Formulare (iCloud-Verbinden, Verwalten) */
.form label { display: block; font-size: .85rem; font-weight: 800; color: var(--ink); margin-bottom: .3rem; }
.form input {
  width: 100%; padding: .78rem .9rem; margin-bottom: .95rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); font-size: .98rem;
  font-family: inherit; background: #fffdfb; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.form input::placeholder { color: #c1b3a4; }
.form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(232,89,12,.15); }
.form .btn { width: 100%; }
.form-fehler {
  background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c;
  border-radius: var(--r-sm); padding: .65rem .9rem; font-size: .92rem; font-weight: 600;
  margin: 0 0 1rem;
}

/* Nummerierte Schrittlisten (Hilfe, iCloud) */
.steps { list-style: none; margin: 0; padding: 0; }
.steps li { display: flex; gap: .85rem; align-items: flex-start; padding: .55rem 0; }
.num {
  flex: none; width: 1.85rem; height: 1.85rem; border-radius: 50%;
  background: var(--tint); color: var(--brand); border: 1px solid var(--tint-line);
  display: grid; place-items: center; font-size: .95rem; font-weight: 800;
}
.steps li b { display: block; font-weight: 800; }
.steps li .desc { color: var(--muted); font-size: .93rem; }
.steps li .desc b { display: inline; color: var(--ink); }
.steps li .desc a { color: var(--brand); font-weight: 700; }
.step-head { display: flex; align-items: center; gap: .65rem; font-weight: 800; font-size: 1.05rem; margin-bottom: 1rem; }
.step-head .num { width: 1.75rem; height: 1.75rem; }

/* Erfolgs-Badge */
.badge-ok {
  display: inline-flex; align-items: center; gap: .45rem; background: #f0fdf4;
  color: var(--ok); border: 1px solid #bbf7d0; border-radius: 999px;
  padding: .3rem .85rem; font-size: .85rem; font-weight: 800; margin-bottom: .8rem;
}

/* App-Store-Knoepfe */
.stores { display: flex; gap: .7rem; flex-wrap: wrap; }
.store {
  flex: 1 1 45%; text-decoration: none; text-align: center;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: .7rem .5rem;
  color: var(--ink); font-weight: 800; font-size: .95rem; background: #fff;
  box-shadow: var(--shadow-sm);
}
.store:hover { border-color: #ddc8b2; }
.store span { display: block; font-size: .74rem; font-weight: 600; color: var(--muted); }

/* QR + Deep-Link + Kopieren (Success-Seite) */
.applink {
  display: block; text-align: center; background: var(--brand); color: #fff;
  text-decoration: none; font-weight: 800; padding: .95rem 1rem; border-radius: var(--r-sm);
  margin-bottom: .3rem; box-shadow: var(--shadow-sm);
}
.applink small { display: block; font-weight: 600; opacity: .92; font-size: .74rem; margin-top: .15rem; }

/* Adaptive Anzeige der Abo-Wege je Plattform (data-os wird per JS gesetzt) */
.step2-android { display: none; }
:root[data-os="android"] .step2-android { display: block; }
:root[data-os="android"] .step2-qr,
:root[data-os="android"] .step2-divider,
:root[data-os="android"] .step2-manual { display: none; }
:root[data-os="android"] .store-ios { display: none; }
:root[data-os="ios"] .step2-qr,
:root[data-os="ios"] .step2-divider { display: none; }
:root[data-os="ios"] .store-android { display: none; }

.qr-hint { text-align: center; color: var(--muted); font-weight: 600; font-size: .9rem; margin: 0 0 .4rem; }
.qr { width: 210px; max-width: 68%; margin: .3rem auto .7rem; }
.qr svg { width: 100%; height: auto; display: block; }

.divider { text-align: center; color: var(--muted); font-weight: 600; font-size: .82rem; margin: 1.2rem 0 1rem; position: relative; }
.divider::before, .divider::after { content: ""; position: absolute; top: 50%; width: 32%; height: 1px; background: var(--line); }
.divider::before { left: 0; } .divider::after { right: 0; }

.idrow { display: flex; gap: .5rem; align-items: stretch; }
code.topic {
  flex: 1; background: #faf5ef; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: .6rem .8rem; font-size: .82rem; overflow-x: auto; white-space: nowrap;
  display: flex; align-items: center; font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
button.copy {
  flex: none; background: var(--brand); color: #fff; border: 0; border-radius: var(--r-sm);
  padding: 0 1.1rem; font-family: inherit; font-weight: 800; cursor: pointer; font-size: .9rem;
}
button.copy:active { transform: translateY(1px); }
.openlink { display: inline-block; margin-top: .8rem; color: var(--brand); font-weight: 800; text-decoration: none; font-size: .92rem; }

/* Inline-Code in Fliesstexten (Hilfe) */
code.inline {
  background: #faf5ef; border: 1px solid var(--line); border-radius: 6px;
  padding: .08rem .4rem; font-size: .88em;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; white-space: nowrap;
}

/* Hinweis-Boxen (Hilfe: Auslandsnummern, Notizen-Datenschutz) */
.notice {
  display: flex; gap: .7rem; align-items: flex-start;
  background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--r-sm);
  padding: .8rem .95rem; font-size: .9rem; color: #78350f; margin: .9rem 0 0;
}
.notice .ic { color: #d97706; margin-top: .15rem; }
.notice b { color: #451a03; }
.notice a { color: #b45309; font-weight: 700; }

/* Gelber Platzhalter-Hinweis (nur solange PAYPAL_URL fehlt) */
.placeholder-note {
  text-align: center; font-size: .85rem; font-weight: 600; margin: .9rem 0 0;
  background: #fef9c3; border: 1px solid #fde047; border-radius: var(--r-sm);
  padding: .55rem .8rem; color: #854d0e;
}
.pay-options { display: grid; gap: .8rem; }
.pay-note { text-align: center; font-size: .85rem; font-weight: 600; color: var(--muted); margin: 1.05rem 0 0; }
.honest-list { margin: 0; padding-left: 1.25rem; color: var(--muted); font-size: .95rem; }
.honest-list li { margin-bottom: .55rem; }
.honest-list li:last-child { margin-bottom: 0; }
.honest-list b { color: var(--ink); font-weight: 800; }

/* Rechtstexte (Impressum/Datenschutz): ruhige Prosa statt Kartenstapel */
.prose { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 2.2rem 2rem; }
@media (max-width: 560px) { .prose { padding: 1.6rem 1.2rem; } }
.prose h2 { font-size: 1.1rem; font-weight: 800; letter-spacing: -.01em; margin: 1.9rem 0 .5rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose p, .prose li { font-size: .93rem; color: #4d4237; }
.prose ul { padding-left: 1.25rem; }
.prose .stand { color: var(--muted); font-size: .85rem; margin-top: 0; }

/* ---------- Fusszeile ---------- */
.footer { margin-top: 5rem; background: #1f1409; color: #cfc0b1; }
.footer-main {
  max-width: var(--maxw); margin: 0 auto; padding: 3rem 1.25rem 2.2rem;
  display: flex; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap;
}
.footer .brand { color: #fff; }
.footer-tagline { margin: .6rem 0 0; font-size: .9rem; color: #a6957f; max-width: 20rem; }
.footer-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer-col h4 { margin: 0 0 .7rem; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #8a7863; }
.footer-col a { display: block; color: #cfc0b1; text-decoration: none; font-weight: 600; font-size: .92rem; padding: .22rem 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.1rem 1.25rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: #8a7863;
}
@media (max-width: 640px) {
  .footer-main { flex-direction: column; gap: 2rem; padding-top: 2.4rem; }
  .footer-cols { gap: 2rem; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ---------- Cookie-Hinweis (Markup kommt aus cookie.js) ---------- */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  background: #26190e; color: #f5efe8; box-shadow: 0 -2px 14px rgba(0,0,0,.18);
}
.cookie-inner {
  max-width: var(--maxw-text); margin: 0 auto; padding: .85rem 1.25rem;
  display: flex; gap: .9rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie-text { margin: 0; font-size: .85rem; line-height: 1.45; flex: 1 1 60%; }
.cookie-text a { color: #fdba74; }
.cookie-ok {
  flex: none; background: var(--brand); color: #fff; border: 0; border-radius: 999px;
  padding: .55rem 1.3rem; font-family: inherit; font-weight: 800; cursor: pointer; font-size: .9rem;
}
.cookie-ok:hover { background: var(--brand-dark); }
.cookie-ok:active { transform: translateY(1px); }

/* ---------- Einblenden beim Scrollen ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.sichtbar { opacity: 1; transform: none; }

/* Wer weniger Bewegung will, bekommt weder Schweben noch Einblenden */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .spark-1, .spark-2 { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .choice { transition: none; }
}
