/* Briefklar — Design System
   Prinzipien: Vertrauen, Klarheit, Barrierefreiheit (BFSG/WCAG AA),
   Mobile-First, deutschsprachige Microcopy. */

:root {
  /* Farben — ruhig, seriös, "deutsche Finanz-App" */
  --ink: #0e2a25;
  --body: #33453f;
  --muted: #64746e;
  --paper: #f6f5f1;
  --card: #ffffff;
  --border: #e2dfd5;
  --primary: #0b7a63;
  --primary-dark: #095f4d;
  --primary-soft: #e3f2ee;
  --warn-bg: #fdf1e1;
  --warn-border: #f0d8b8;
  --warn-text: #8a4700;
  --ok: #0f7a4d;
  --ok-bg: #e4f4ec;
  --danger: #b3261e;
  --danger-bg: #fdeceb;
  --dark-bg: #0e2a25;
  --dark-text: #d9e6e2;
  --radius: 14px;
  --shadow: 0 10px 34px rgba(14, 42, 37, .08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--ink); line-height: 1.2; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { max-width: 68ch; }
em.acc { font-style: normal; color: var(--primary); }

a { color: var(--primary); }
::selection { background: var(--primary); color: #fff; }

/* Fokus für Tastatur-Navigation sichtbar (WCAG 2.4.7) */
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

/* Touch-Ziele mind. 44–48px */
button, .btn, input[type=email] { min-height: 48px; }

/* Longhands statt Shorthand: section-Selector setzt oben/unten,
   .wrap nur links/rechts — kein Spezifitäts-Konflikt mehr */
.wrap { max-width: 1080px; margin: 0 auto; padding-left: 22px; padding-right: 22px; }

/* Einheitlicher vertikaler Rhythmus für ALLE Sektionen — kompakt, damit
   Inhalt ohne Scrollen sichtbar bleibt */
section { padding: 48px 0; }
/* Anker-Navigation: Titel nicht unter dem Sticky-Header verstecken */
section[id] { scroll-margin-top: 88px; }
@media (max-width: 720px) { section { padding: 36px 0; } }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; max-width: 60ch; }
.center { text-align: center; }
.center p { margin: 0 auto; }

/* ---------------------------------------------------------------- Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 245, 241, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.logo { font-weight: 800; font-size: 1.3rem; color: var(--ink); text-decoration: none; }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a:not(.btn) { color: var(--body); text-decoration: none; font-size: .95rem; font-weight: 500; }
.nav-links a:not(.btn):hover { color: var(--primary); }
@media (max-width: 720px) { .nav-links a:not(.btn) { display: none; } }

/* ---------------------------------------------------------------- Buttons & Forms */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  padding: 14px 26px; font-size: 1rem; font-weight: 600; border-radius: 12px;
  text-decoration: none; font-family: inherit; transition: background .15s;
}
.btn:hover { background: var(--primary-dark); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-ghost {
  background: transparent; color: var(--primary); border: 2px solid var(--primary);
}
.btn-ghost:hover { background: var(--primary-soft); }
.btn[disabled] { opacity: .55; cursor: wait; }

.input {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 2px solid var(--border); border-radius: 12px;
  padding: 12px 16px; width: 100%;
}
.input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px var(--primary-soft); }
.form-row { display: flex; gap: 10px; flex-wrap: wrap; }
.form-row .input { flex: 1 1 240px; }
.msg { margin-top: 12px; font-weight: 600; min-height: 24px; }
.msg.ok { color: var(--ok); }
.msg.err { color: var(--danger); }

/* ---------------------------------------------------------------- Hero */
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero .lead { font-size: 1.2rem; color: var(--muted); margin: 18px 0 28px; }
.hero-form { margin-bottom: 16px; }
.proof { font-size: .92rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.proof strong { color: var(--primary); }
.proof::before { content: "✓"; color: var(--ok); font-weight: 800; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* Phone-Mockup — echtes Mobile-App-Design, responsiv (skaliert mit dem Viewport) */
.phone {
  width: min(300px, 74vw); aspect-ratio: 9 / 19; margin: 0 auto;
  background: #101312; border-radius: 48px; padding: 10px;
  box-shadow: var(--shadow), 0 30px 60px rgba(14, 42, 37, .16);
}
.phone-screen {
  position: relative; height: 100%; background: var(--paper);
  border-radius: 38px; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-island {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 24px; background: #000; border-radius: 12px; z-index: 2;
}
.phone-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px 4px; font-size: 11.5px; font-weight: 700; color: var(--ink);
}
.phone-app { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.app-head { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px 8px; }
.app-logo { font-weight: 800; font-size: 15px; color: var(--ink); }
.app-logo span { color: var(--primary); }
.app-live { font-size: 10px; font-weight: 700; color: var(--ok); background: var(--ok-bg); padding: 3px 9px; border-radius: 999px; }
.app-card {
  flex: 1; margin: 0 12px 8px; background: #fff; border-radius: 16px;
  padding: 14px; display: flex; flex-direction: column; gap: 10px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(14, 42, 37, .08);
}
.pc-sender { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.pc-title { font-size: 15px; font-weight: 800; color: var(--ink); line-height: 1.25; }
.pc-summary { font-size: 11.5px; color: var(--body); line-height: 1.5; }
.pc-chip { align-self: flex-start; background: var(--warn-bg); border: 1px solid var(--warn-border); color: var(--warn-text); font-size: 10.5px; font-weight: 700; padding: 5px 10px; border-radius: 8px; }
.pc-row { display: flex; gap: 8px; font-size: 10.5px; line-height: 1.45; }
.pc-lbl { flex: 0 0 74px; font-size: 8.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding-top: 2px; }
.phone .badge { font-size: 10px; padding: 3px 9px; }
.pc-cta { background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; text-align: center; padding: 8px; border-radius: 10px; }
.phone-homebar { width: 110px; height: 4px; background: rgba(0, 0, 0, .18); border-radius: 2px; margin: 4px auto 8px; }

/* ---------------------------------------------------------------- Answer-Card (Produkt) */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.card .sender {
  font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); margin-bottom: 6px;
}
.card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.card .summary { font-size: 1.02rem; }
.card .row { display: flex; gap: 12px; margin-top: 16px; align-items: flex-start; }
.card .lbl {
  flex: 0 0 96px; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); padding-top: 5px;
}
.card .frist-chip {
  background: var(--warn-bg); border: 1px solid var(--warn-border); color: var(--warn-text);
  border-radius: 10px; padding: 7px 12px; font-weight: 700; font-size: .95rem;
}
.card .frist-meta { display: block; font-weight: 400; font-size: .8rem; color: var(--muted); margin-top: 3px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; border-radius: 999px;
  padding: 6px 14px; font-weight: 700; font-size: .88rem;
}
.badge.warn { background: var(--warn-bg); color: var(--warn-text); border: 1px solid var(--warn-border); }
.badge.ok { background: var(--ok-bg); color: var(--ok); border: 1px solid #bfe5d2; }
.badge.danger { background: var(--danger-bg); color: var(--danger); border: 1px solid #f2c6c3; }
.card ol.steps { margin: 6px 0 0; padding-left: 22px; display: grid; gap: 6px; }
.card .template { margin-top: 18px; }
.card .template details { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.card .template summary {
  cursor: pointer; padding: 12px 16px; font-weight: 600; font-size: .95rem;
  background: var(--paper); user-select: none;
}
.card .template pre {
  white-space: pre-wrap; font-family: inherit; font-size: .9rem; padding: 14px 16px;
  background: var(--card); color: var(--body); max-height: 280px; overflow: auto;
}
.copy-row { display: flex; justify-content: flex-end; padding: 8px 12px; }
.copy-btn {
  background: none; border: 1px solid var(--border); border-radius: 8px; cursor: pointer;
  font-family: inherit; font-size: .82rem; font-weight: 600; color: var(--primary);
  padding: 7px 14px; min-height: 36px;
}
.copy-btn:hover { background: var(--primary-soft); }
.scam-note {
  margin-top: 14px; background: var(--danger-bg); border: 1px solid #f2c6c3; color: var(--danger);
  border-radius: 10px; padding: 10px 14px; font-size: .9rem; font-weight: 600;
}

/* ---------------------------------------------------------------- Schritte */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff;
  font-weight: 700; font-size: .95rem; margin-bottom: 14px;
}
.step p { font-size: .98rem; color: var(--muted); }

/* ---------------------------------------------------------------- Upload */
.upload-box {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 30px 16px; border: 2px dashed var(--border); border-radius: var(--radius);
  background: #fbfaf7; cursor: pointer; text-align: center;
  transition: border-color .15s, background .15s;
}
.upload-box:hover { border-color: var(--primary); background: var(--primary-soft); }
/* Der Input liegt unsichtbar ÜBER der ganzen Box -> Tipp öffnet nativ die
   Systemauswahl (Kamera/Galerie). Zuverlässig auf iOS + Android. */
.upload-input {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; z-index: 1; font-size: 0;
}
.upload-icon { font-size: 2.2rem; }
.upload-text { font-size: .92rem; color: var(--muted); pointer-events: none; }
.upload-text strong { color: var(--ink); }
.or { text-align: center; color: var(--muted); font-size: .85rem; margin: 14px 0 10px; }

/* Vorschau-Galerie: hochgeladene Seiten */
.upload-preview { margin-top: 14px; }
.upload-preview:not(.has-files) { display: none; }
.preview-inner { display: flex; gap: 10px; flex-wrap: wrap; }
.preview-thumb {
  position: relative; width: 92px; height: 122px; border-radius: 10px;
  border: 1px solid var(--border); overflow: hidden; background: var(--card);
  box-shadow: 0 2px 8px rgba(14, 42, 37, .08);
}
.thumb-img { width: 100%; height: 100%; background-size: cover; background-position: center; }
.thumb-num {
  position: absolute; left: 4px; bottom: 4px; background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 700; border-radius: 999px; padding: 1px 7px;
}
.thumb-remove {
  position: absolute; top: 4px; right: 4px; width: 24px; height: 24px;
  border: none; border-radius: 50%; background: rgba(14, 42, 37, .75); color: #fff;
  font-size: 12px; line-height: 1; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
}
.thumb-remove:hover { background: var(--danger); }
.preview-analyze { margin-top: 14px; width: 100%; }

/* ================================================================ APP-SEITE /app */
.app-body { background: var(--paper); }
.app-header { border-bottom: 1px solid var(--border); background: var(--card); }
.app-header-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 22px; }

.app-main {
  max-width: 1200px; margin: 0 auto; padding: 28px 22px 60px;
  display: grid; grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr); gap: 28px; align-items: start;
}
@media (max-width: 900px) { .app-main { grid-template-columns: 1fr; } }

.app-input-panel {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 24px; position: sticky; top: 24px;
}
@media (max-width: 900px) { .app-input-panel { position: static; } }
.app-input-title { font-size: 1.2rem; margin-bottom: 16px; }
.app-textarea {
  width: 100%; min-height: 140px; resize: vertical; font-family: inherit; font-size: 1rem;
  line-height: 1.55; color: var(--ink); border: 2px solid var(--border); border-radius: 12px;
  padding: 14px; background: #fbfaf7;
}
.app-textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px var(--primary-soft); }
.or-app { text-align: center; color: var(--muted); font-size: .85rem; margin: 14px 0 10px; }
.app-input-actions { display: flex; align-items: center; gap: 12px; margin: 14px 0; flex-wrap: wrap; }
.app-lang-label { font-weight: 600; font-size: .9rem; }
.app-lang-select {
  font-family: inherit; font-size: .95rem; color: var(--ink); border: 2px solid var(--border);
  border-radius: 10px; padding: 8px 12px; background: #fff; min-height: 44px;
}
.app-lang-select:focus { border-color: var(--primary); outline: none; }
.btn-analyze { width: 100%; }
.app-input-note { margin-top: 14px; font-size: .82rem; color: var(--muted); text-align: center; }

.app-result-panel { min-height: 420px; position: sticky; top: 24px; }
.app-empty-state {
  border: 2px dashed var(--border); border-radius: 18px; padding: 60px 30px;
  text-align: center; color: var(--muted); display: flex; flex-direction: column;
  align-items: center; gap: 10px; background: var(--card);
}
.app-empty-icon { font-size: 3rem; }
.app-empty-state h3 { font-size: 1.15rem; }
.app-empty-state p { max-width: 36ch; margin: 0 auto; }
/* Wenn die Antwortkarte kommt, verschwindet der Leerzustand -> Grid bleibt bündig */
.app-result-panel:has(.answer-card) .app-empty-state { display: none; }

/* ================================================================ NEUE ANTWORTKARTE */
.answer-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow); padding: 26px; display: flex; flex-direction: column; gap: 18px;
}
.ac-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.ac-sender {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted);
}
.ac-type { font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.ac-summary {
  background: var(--primary-soft); border-left: 5px solid var(--primary);
  border-radius: 0 12px 12px 0; padding: 16px 18px; font-size: 1.08rem;
  line-height: 1.55; color: var(--ink);
}

/* Status-Banner */
.ac-status {
  display: flex; gap: 12px; align-items: flex-start; border-radius: 12px; padding: 14px 16px;
}
.ac-status-icon { font-size: 1.4rem; line-height: 1.2; }
.ac-status strong { display: block; font-size: 1rem; }
.ac-status p { margin: 2px 0 0; font-size: .92rem; }
.ac-status-warn { background: var(--warn-bg); border: 1px solid var(--warn-border); color: var(--warn-text); }
.ac-status-ok { background: var(--ok-bg); border: 1px solid #bfe5d2; color: var(--ok); }
.ac-status-danger { background: var(--danger-bg); border: 1px solid #f2c6c3; color: var(--danger); }

/* Frist-Box */
.ac-deadline {
  background: var(--warn-bg); border: 1px solid var(--warn-border); border-radius: 12px;
  padding: 16px 18px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.ac-deadline-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--warn-text); display: block; }
.ac-deadline-big { font-size: 1.5rem; font-weight: 800; color: var(--warn-text); line-height: 1.1; }
.ac-deadline-meta { flex: 1 1 100%; font-size: .8rem; color: var(--muted); margin-top: 2px; }
.ac-deadline-raw { font-size: .85rem; color: var(--warn-text); opacity: .85; }

/* Info-Grid */
.ac-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .ac-grid { grid-template-columns: 1fr; } }
.ac-box { background: var(--paper); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.ac-box h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 6px; }
.ac-box p { font-size: .95rem; margin: 0; }

/* Schritte-Timeline */
.ac-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.ac-steps li { display: flex; gap: 14px; padding-bottom: 16px; position: relative; }
.ac-steps li:not(:last-child)::before {
  content: ""; position: absolute; left: 15px; top: 34px; bottom: 0; width: 2px; background: var(--border);
}
.ac-step-num {
  flex: 0 0 32px; height: 32px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem;
  position: relative; z-index: 1;
}
.ac-steps li p { margin: 4px 0 0; font-size: .95rem; }

/* Vorlage */
.ac-template { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.ac-template summary {
  cursor: pointer; padding: 14px 16px; font-weight: 700; font-size: .95rem;
  background: var(--paper); list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.ac-template summary::-webkit-details-marker { display: none; }
.ac-template summary::after { content: "＋"; font-size: 1.2rem; color: var(--primary); }
.ac-template[open] summary::after { content: "－"; }
.ac-template pre {
  white-space: pre-wrap; font-family: inherit; font-size: .9rem; padding: 14px 16px;
  max-height: 300px; overflow: auto; margin: 0; border-top: 1px solid var(--border);
}
.ac-template-copy { display: flex; justify-content: flex-end; padding: 10px 12px; border-top: 1px solid var(--border); }

/* Scam-Warnung */
.ac-scam {
  background: var(--danger-bg); border: 1px solid #f2c6c3; color: var(--danger);
  border-radius: 12px; padding: 12px 16px; font-weight: 600; font-size: .9rem;
}

/* ---------------------------------------------------------------- Demo */
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 900px) { .demo-grid { grid-template-columns: 1fr; } }
.demo-panel { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; }
.demo-panel h3 { margin-bottom: 12px; }
textarea {
  width: 100%; min-height: 250px; resize: vertical; font-family: inherit; font-size: 1rem;
  line-height: 1.55; color: var(--ink); border: 2px solid var(--border); border-radius: 12px;
  padding: 14px; background: #fbfaf7;
}
textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px var(--primary-soft); }
.samples { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 16px; }
.sample-chip {
  border: 1px solid var(--border); background: var(--paper); border-radius: 999px;
  padding: 7px 14px; font-size: .85rem; font-weight: 600; color: var(--body);
  cursor: pointer; font-family: inherit; min-height: 38px;
}
.sample-chip:hover { border-color: var(--primary); color: var(--primary); }
.demo-out { min-height: 380px; flex: 1; display: flex; flex-direction: column; }
.empty-state {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--muted); gap: 8px; padding: 30px; border: 2px dashed var(--border);
  border-radius: var(--radius);
}
.empty-state .big { font-size: 2.2rem; }
.loading { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--muted); }
.spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 4px solid var(--primary-soft); border-top-color: var(--primary);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.demo-error { background: var(--danger-bg); color: var(--danger); border: 1px solid #f2c6c3; border-radius: 10px; padding: 14px; }

/* ---------------------------------------------------------------- Briefarten (SEO) */
.letter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.letter-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.letter-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.letter-card p { font-size: .95rem; color: var(--muted); }

/* ---------------------------------------------------------------- Warum */
.why-list { list-style: none; display: grid; gap: 14px; max-width: 720px; }
.why-list li { display: flex; gap: 14px; font-size: 1.05rem; }
.why-list .check {
  flex: 0 0 28px; height: 28px; border-radius: 50%; background: var(--primary-soft);
  color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 800;
  margin-top: 3px;
}

/* ---------------------------------------------------------------- Sprachen-Band (unter dem Hero, volle Breite) */
.lang-band {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 22px; box-shadow: 0 4px 14px rgba(14, 42, 37, .05);
  margin-top: 36px;
}
.lang-band .lang-title { font-weight: 700; color: var(--ink); font-size: .95rem; margin: 0; }
.lang-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.lang-pill {
  background: var(--primary-soft); border: 1px solid #cfe7df; color: var(--primary-dark);
  border-radius: 999px; padding: 5px 12px; font-weight: 600; font-size: .85rem;
}

/* ---------------------------------------------------------------- Datenschutz */
.privacy { background: var(--dark-bg); color: var(--dark-text); border-radius: 22px; padding: 44px 36px; }
.privacy h2 { color: #fff; }
.privacy p { font-size: 1.05rem; max-width: 70ch; }
.privacy .pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.privacy .pill {
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px; padding: 8px 16px; font-size: .9rem; font-weight: 600;
}

/* ---------------------------------------------------------------- FAQ */
.faq details {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--primary); font-weight: 400; transition: transform .15s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 18px; color: var(--muted); max-width: 72ch; }

/* ---------------------------------------------------------------- Waitlist */
.waitlist-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 22px;
  padding: 40px 32px; text-align: center; box-shadow: var(--shadow);
}
.waitlist-card p { margin: 0 auto 24px; color: var(--muted); }

/* ---------------------------------------------------------------- Footer */
footer { border-top: 1px solid var(--border); padding: 32px 0 56px; color: var(--muted); font-size: .88rem; }
footer .fine { margin-top: 10px; max-width: 78ch; }
footer .logo { font-size: 1.05rem; }

/* ---------------------------------------------------------------- Utilities */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
