/* ============================================================
   Kidni – Marketing-Webseite
   Palette und Radien folgen der App (AppColors.kt, helle Palette).
   ============================================================ */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --coral: #D96E4F;
  --coral-soft: #FBE7DE;
  --coral-deep: #B3543A;
  --coral-mid: #C9613F;
  --sage: #6B8E6A;
  --sage-soft: #E4EDE0;
  --sage-light: #8FB98D;
  --amber: #C9923B;
  --amber-soft: #F6EAD1;
  --rose: #B35466;
  --rose-soft: #F5DDE1;
  --sky: #6F8FAE;
  --sky-soft: #E3EBF2;
  --bg: #FBF7F2;
  --surface: #FFFFFF;
  --surface-alt: #F3EDE4;
  --ink: #2A1F18;
  --ink-muted: #7A6A5E;
  --ink-faint: #B0A194;
  --border: #EDE5DA;
  --divider: #F0E8DF;
  /* Dunkler Abschnitt (dunkle App-Palette) */
  --dark-bg: #2A1F18;
  --dark-surface: #201A16;
  --dark-border: #362D27;
  --dark-ink: #F4EAE1;
  --dark-ink-muted: #B6A79A;

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Instrument Sans", "Segoe UI", system-ui, sans-serif;

  --radius-card: 20px;
  --radius-field: 14px;
  --radius-chip: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

a { color: var(--coral-deep); text-decoration: none; }
a:hover { color: var(--coral); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { margin: 0; font-family: var(--font-display); letter-spacing: -0.02em; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 0 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.section-intro {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 14px 0 0;
  max-width: 680px;
}

/* ---------- Buttons und Chips ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn svg { flex: none; }
.btn-primary { background: var(--coral); color: #FFFFFF; }
.btn-primary:hover { background: var(--coral-mid); color: #FFFFFF; }
.btn-dark { background: var(--ink); color: #FFFFFF; }
.btn-dark:hover { background: #403126; color: #FFFFFF; }
.btn-outline { background: var(--surface); color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--ink-faint); color: var(--ink); }
.btn-small { font-size: 14px; padding: 10px 20px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--ink-muted);
}
.chip-coral { background: var(--coral-soft); color: var(--coral-deep); }
.chip-sage { background: var(--sage-soft); color: var(--sage); }
.chip-sky { background: var(--sky-soft); color: var(--sky); }
.chip-amber { background: var(--amber-soft); color: var(--amber); }
.chip-rose { background: var(--rose-soft); color: var(--rose); }

/* ---------- Kopfzeile ---------- */

.site-header {
  border-bottom: 1px solid var(--divider);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.brand-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--ink-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-muted);
}
.site-nav a:hover { color: var(--ink); }
.site-nav .btn { color: #FFFFFF; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--ink);
}

/* ---------- Hero ---------- */

.hero { overflow: hidden; }
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
  padding-top: 72px;
  padding-bottom: 84px;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.hero-copy .chip-coral { margin: 0; }
.hero-title {
  font-size: clamp(37px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16.5px, 2vw, 19px);
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-faint);
}
.hero-trust li { display: flex; align-items: center; gap: 7px; list-style: none; }
.hero-trust { padding: 0; margin-bottom: 0; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--coral-soft);
  top: 90px;
  opacity: 0.55;
}

/* ---------- Telefon-Mockup ---------- */

.phone {
  position: relative;
  width: 340px;
  max-width: 100%;
  background: var(--bg);
  border: 9px solid var(--ink);
  border-radius: 46px;
  box-shadow: 0 32px 64px rgba(42, 31, 24, 0.18);
  overflow: hidden;
}
.phone-inner { padding: 26px 18px 0; display: flex; flex-direction: column; gap: 14px; }
.phone-head { display: flex; justify-content: space-between; align-items: center; }
.phone-date { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-faint); }
.phone-greet { font-size: 21px; font-weight: 700; }
.phone-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--coral-soft); color: var(--coral-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.phone-phase {
  background: var(--amber-soft);
  border-radius: 16px;
  padding: 13px 15px;
}
.phone-phase-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--amber); }
.phone-phase-name { font-size: 17px; font-weight: 700; }
.phone-phase-sub { font-size: 12px; color: var(--ink-muted); }
.phone-section-title { font-size: 15px; font-weight: 700; }
.phone-card {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(42, 31, 24, 0.06);
  padding: 4px 14px;
}
.phone-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; }
.phone-row + .phone-row { border-top: 1px solid var(--divider); }
.phone-icon {
  width: 34px; height: 34px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.phone-row-title { font-size: 13px; font-weight: 600; }
.phone-row-sub { font-size: 11px; color: var(--ink-muted); }
.phone-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.phone-stat {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(42, 31, 24, 0.06);
  padding: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.phone-stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--ink-muted); }
.phone-stat-value { font-size: 21px; font-weight: 800; }
.phone-stat-value small { font-size: 12px; font-weight: 600; color: var(--ink-muted); }
.phone-badge {
  align-self: flex-start;
  background: var(--sage-soft); color: var(--sage);
  font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px;
}
.phone-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 6px 18px;
  border-top: 1px solid var(--divider);
  margin-top: 2px;
}
.phone-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.phone-nav-item span { font-size: 9px; font-weight: 600; color: var(--ink-faint); }
.phone-nav-item.active span { color: var(--coral-deep); font-weight: 700; }
.phone-nav-pill { background: var(--coral-soft); border-radius: 999px; padding: 5px 13px; }

/* ---------- Abschnitte ---------- */

.section { padding: 88px 0; }
.section-white { background: var(--surface); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.section-head { max-width: 680px; margin-bottom: 44px; }

/* Phasen */
.phase-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.phase-card {
  border-radius: var(--radius-card);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.phase-icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.phase-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }
.phase-name { font-size: 19px; font-weight: 700; font-family: var(--font-body); }
.phase-text { font-size: 14px; line-height: 1.55; color: var(--ink-muted); margin: 0; }
.phase-sage { background: var(--sage-soft); }
.phase-sage .phase-icon { background: var(--sage); }
.phase-sage .phase-label { color: var(--sage); }
.phase-sky { background: var(--sky-soft); }
.phase-sky .phase-icon { background: var(--sky); }
.phase-sky .phase-label { color: var(--sky); }
.phase-amber { background: var(--amber-soft); }
.phase-amber .phase-icon { background: var(--amber); }
.phase-amber .phase-label { color: var(--amber); }
.phase-rose { background: var(--rose-soft); }
.phase-rose .phase-icon { background: var(--rose); }
.phase-rose .phase-label { color: var(--rose); }

/* Funktionen */
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.feature-head { display: flex; align-items: center; justify-content: space-between; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
}
.feature-title { font-size: 19px; font-weight: 700; font-family: var(--font-body); }
.feature-text { font-size: 14.5px; line-height: 1.6; color: var(--ink-muted); margin: 0; }
.pro-chip {
  background: var(--coral-soft); color: var(--coral-deep);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 999px;
}

.pro-banner {
  margin-top: 24px;
  display: flex; align-items: center; gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px 28px;
}
.pro-banner-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--coral-soft);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.pro-banner-title { font-size: 16px; font-weight: 700; }
.pro-banner-text { font-size: 14.5px; color: var(--ink-muted); margin: 3px 0 0; }

/* Datenschutz-Abschnitt */
.privacy-section { background: var(--dark-bg); padding: 84px 0; }
.privacy-section .container {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}
.privacy-section .eyebrow { color: #E8836A; }
.privacy-section .section-title { color: var(--dark-ink); }
.privacy-section .section-intro { color: var(--dark-ink-muted); }
.privacy-list { display: flex; flex-direction: column; gap: 14px; }
.privacy-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 15.5px; font-weight: 500;
  color: var(--dark-ink);
}
.privacy-item svg { flex: none; margin-top: 1px; }

/* Geschichte */
.story-section .container {
  display: flex; flex-direction: column; align-items: center;
  gap: 22px; text-align: center; max-width: 800px;
}
.story-icon {
  width: 52px; height: 52px; border-radius: 17px;
  background: var(--coral-soft);
  display: flex; align-items: center; justify-content: center;
}
.story-title { font-size: clamp(26px, 4vw, 34px); font-weight: 700; line-height: 1.2; text-wrap: balance; }
.story-text { font-size: clamp(15.5px, 2vw, 18px); line-height: 1.7; color: var(--ink-muted); margin: 0; text-wrap: pretty; }
.story-note { font-size: 14px; font-weight: 600; color: var(--ink-faint); }

/* Ratgeber-Teaser */
.teaser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}
.teaser-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.teaser-copy .eyebrow { margin: 0; }
.teaser-title { font-size: clamp(25px, 3vw, 32px); font-weight: 700; line-height: 1.15; }
.teaser-text { font-size: 16px; line-height: 1.6; color: var(--ink-muted); margin: 0; }
.teaser-demo { display: flex; flex-direction: column; gap: 12px; }
.teaser-search {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-field);
  padding: 14px 18px;
  font-size: 15px; color: var(--ink-faint);
}
.teaser-chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------- Ratgeber-Seite ---------- */

.guide-hero .container {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
  padding-top: 64px; padding-bottom: 44px;
}
.guide-title {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.guide-sub {
  font-size: clamp(15.5px, 2vw, 18px);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 680px;
  margin: 0;
  text-wrap: pretty;
}
.search-wrap { width: 720px; max-width: 100%; display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.search-box {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px 8px;
  padding-inline-start: 22px;
  box-shadow: 0 10px 30px rgba(42, 31, 24, 0.07);
}
.search-box svg { flex: none; }
.search-box input {
  flex: 1 1 auto;
  min-width: 0;
  border: none; outline: none; background: transparent;
  font-family: var(--font-body);
  font-size: 16.5px;
  color: var(--ink);
  padding: 14px 0;
}
.search-box input::placeholder { color: var(--ink-faint); }
.search-clear {
  display: none;
  background: var(--surface-alt);
  color: var(--ink-muted);
  border: none;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  padding: 9px 16px;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
}
.search-clear:hover { color: var(--ink); }
.search-topics { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.search-topics button {
  border: none; cursor: pointer; font-family: var(--font-body);
}

.search-results { display: none; max-width: 900px; margin: 0 auto; padding: 8px 20px 96px; }
.search-count { font-size: 14px; font-weight: 600; color: var(--ink-muted); padding: 0 4px; margin: 0 0 14px; }
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 14px;
}
.result-head { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 9px; }
.result-chapter {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 11px; border-radius: 999px;
}
.result-title { font-size: 17px; font-weight: 700; line-height: 1.3; }
.result-text { font-size: 14.5px; line-height: 1.6; color: var(--ink-muted); margin: 0; }
.result-empty { text-align: center; padding: 34px; }
.result-empty h3 { font-family: var(--font-body); font-size: 17px; margin-bottom: 10px; }
.result-empty p { font-size: 14.5px; color: var(--ink-muted); max-width: 460px; margin: 0 auto; }

body.searching .search-results { display: block; }
body.searching .guide-content { display: none; }
body.searching .search-clear { display: inline-block; }

/* Notfallkarte */
.emergency-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-bottom: 30px;
}
.emergency-head .eyebrow { color: var(--rose); }
.emergency-call {
  display: flex; align-items: center; gap: 14px;
  background: var(--rose-soft);
  border-radius: 16px;
  padding: 16px 24px;
}
.emergency-call strong { font-size: 20px; font-weight: 800; color: var(--rose); display: block; }
.emergency-call span { font-size: 12.5px; color: var(--ink-muted); }
.emergency-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.emergency-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex; gap: 16px;
}
.emergency-icon {
  width: 40px; height: 40px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.emergency-card h3 { font-family: var(--font-body); font-size: 16.5px; margin-bottom: 5px; }
.emergency-card p { font-size: 14px; line-height: 1.6; color: var(--ink-muted); margin: 0; }

/* Erkenntnisse */
.insight-list { display: flex; flex-direction: column; gap: 12px; }
.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 26px;
  display: flex; gap: 20px; align-items: flex-start;
}
.insight-num {
  width: 34px; height: 34px; border-radius: 11px;
  background: var(--coral-soft); color: var(--coral-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
  flex: none;
}
.insight-card h3 { font-family: var(--font-body); font-size: 16.5px; margin-bottom: 4px; }
.insight-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-muted); margin: 0; }

/* GFR-Stadien */
.gfr-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.gfr-card { border-radius: var(--radius-field); overflow: hidden; border: 1px solid var(--border); }
.gfr-bar { height: 8px; }
.gfr-body { padding: 16px 14px; background: var(--bg); display: flex; flex-direction: column; gap: 4px; }
.gfr-stage { font-size: 17px; font-weight: 800; }
.gfr-range { font-size: 13px; font-weight: 700; }
.gfr-desc { font-size: 12.5px; line-height: 1.5; color: var(--ink-muted); }
.gfr-note { font-size: 13px; color: var(--ink-faint); margin: 30px 0 0; }

/* Kapitel */
.chapter-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.chapter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px;
  display: flex; flex-direction: column; gap: 10px;
}
.chapter-meta { display: flex; align-items: center; gap: 10px; }
.chapter-dot { width: 12px; height: 12px; border-radius: 4px; }
.chapter-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--ink-muted); }
.chapter-card h3 { font-family: var(--font-body); font-size: 18px; }
.chapter-card p { font-size: 14px; line-height: 1.6; color: var(--ink-muted); margin: 0; }

/* Hinweisbox */
.notice-box {
  background: var(--surface-alt);
  border-radius: 18px;
  padding: 26px 30px;
  display: flex; gap: 18px; align-items: flex-start;
}
.notice-box svg { flex: none; margin-top: 2px; }
.notice-box h3 { font-family: var(--font-body); font-size: 15.5px; margin-bottom: 6px; }
.notice-box p { font-size: 14px; line-height: 1.65; color: var(--ink-muted); margin: 0; }

/* ---------- Rechtsseiten ---------- */

.legal-main { max-width: 800px; margin: 0 auto; padding: 56px 20px 88px; }
.legal-main h1 { font-size: clamp(30px, 4vw, 40px); font-weight: 800; margin-bottom: 8px; }
.legal-updated { color: var(--ink-muted); font-size: 14.5px; margin: 0 0 36px; }
.legal-main section { margin-top: 34px; }
.legal-main h2 { font-family: var(--font-body); font-size: 20px; margin-bottom: 10px; }
.legal-main p, .legal-main li { font-size: 15.5px; line-height: 1.7; color: var(--ink); }
.legal-main p { margin: 0 0 12px; }
.legal-main ul { margin: 0 0 12px; padding-inline-start: 22px; }
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-field);
  padding: 22px 26px;
  margin: 16px 0;
}
.legal-card p { margin: 0; }

/* ---------- Fußzeile ---------- */

.site-footer { background: var(--surface); border-top: 1px solid var(--divider); }
.site-footer .container { padding-top: 52px; padding-bottom: 44px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 420px; display: flex; flex-direction: column; gap: 12px; }
.footer-brand .brand img { width: 30px; height: 30px; border-radius: 10px; }
.footer-brand .brand-name { font-size: 18px; }
.footer-disclaimer { font-size: 13.5px; line-height: 1.6; color: var(--ink-faint); margin: 0; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col h3 {
  font-family: var(--font-body);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.footer-col a { color: var(--ink-muted); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--divider);
  margin-top: 28px;
  padding-top: 20px;
  display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-faint);
}

/* ============================================================
   Responsive – bricht auf die Mobil-Artboards um
   ============================================================ */

@media (max-width: 1020px) {
  .phase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chapter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gfr-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero .container { gap: 48px; }
}

@media (max-width: 860px) {
  .section { padding: 56px 0; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--divider);
    padding: 8px 20px 16px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 4px; font-size: 16px; }
  .site-nav .btn { margin-top: 8px; justify-content: center; }
  .nav-toggle { display: block; }

  .hero .container {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 40px;
    padding-bottom: 48px;
    gap: 36px;
  }
  .hero-actions { flex-direction: column; align-self: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 9px; }
  .hero-visual::before { width: 360px; height: 360px; top: 120px; }

  .phase-grid, .feature-grid, .chapter-grid { grid-template-columns: minmax(0, 1fr); }
  .emergency-grid { grid-template-columns: minmax(0, 1fr); }
  .gfr-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .pro-banner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .privacy-section { padding: 56px 0; }
  .privacy-section .container { grid-template-columns: minmax(0, 1fr); gap: 24px; }

  .teaser-card { grid-template-columns: minmax(0, 1fr); padding: 28px 24px; gap: 20px; }
  .teaser-copy .btn { width: 100%; }


  .insight-card { padding: 18px 20px; gap: 14px; }

  .footer-cols { gap: 24px; }
  .footer-col { min-width: 140px; }
}

/* ============================================================
   Sprachumschalter – ohne JavaScript, <details> genügt
   ============================================================ */

.lang-switch { position: relative; }
.lang-switch summary {
  display: inline-flex; align-items: center; gap: 7px;
  list-style: none; cursor: pointer;
  font-size: 15px; font-weight: 500;
  color: var(--ink-muted);
  padding: 6px 0;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary:hover { color: var(--ink); }
.lang-switch[open] summary { color: var(--ink); }
.lang-menu {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 10px);
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 14px 36px rgba(42, 31, 24, 0.14);
}
.lang-menu a {
  font-size: 14.5px;
  color: var(--ink-muted);
  padding: 8px 12px;
  border-radius: 9px;
  white-space: nowrap;
}
.lang-menu a:hover { background: var(--surface-alt); color: var(--ink); }
.lang-menu a[aria-current="true"] { background: var(--coral-soft); color: var(--coral-deep); font-weight: 600; }

.footer-langs {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px;
  margin-top: 32px; padding-top: 22px;
  border-top: 1px solid var(--divider);
  font-size: 13.5px;
}
.footer-langs-label {
  font-weight: 700; font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-faint); text-transform: uppercase;
}
.footer-langs a { color: var(--ink-muted); }
.footer-langs a:hover { color: var(--ink); }
.footer-langs a[aria-current="true"] { color: var(--coral-deep); font-weight: 600; }

/* ============================================================
   Support-Seite
   ============================================================ */

.support-hero .container {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; text-align: center;
  padding-top: 64px; padding-bottom: 36px;
}
.support-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 6px; }
.support-note { font-size: 14px; color: var(--ink-faint); margin: 0; max-width: 520px; }

.support-alert {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--rose-soft);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 8px;
}
.support-alert svg { flex: none; margin-top: 2px; }
.support-alert h2 { font-family: var(--font-body); font-size: 16px; margin-bottom: 6px; letter-spacing: 0; }
.support-alert p { font-size: 14.5px; line-height: 1.65; color: var(--ink); margin: 0; }

.faq-group { margin-top: 34px; }
.faq-group-title {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; cursor: pointer;
  font-size: 16px; font-weight: 600; line-height: 1.4;
  padding: 18px 22px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 9px; height: 9px;
  border-inline-end: 2px solid var(--ink-faint);
  border-block-end: 2px solid var(--ink-faint);
  transform: rotate(45deg);
  margin-block-end: 4px;
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-block: 4px 0; }
.faq-item summary:hover { background: var(--surface-alt); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { font-size: 15px; line-height: 1.7; color: var(--ink-muted); margin: 0 0 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer em { color: var(--ink); font-style: normal; font-weight: 600; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 24px;
}
.contact-card h3 { font-family: var(--font-body); font-size: 17px; margin: 16px 0 8px; }
.contact-card p { font-size: 15px; margin: 0 0 8px; }
.contact-sub { font-size: 14px; line-height: 1.65; color: var(--ink-muted); }
.contact-list { margin: 0; padding-inline-start: 20px; }
.contact-list li { font-size: 14px; line-height: 1.6; color: var(--ink-muted); margin-bottom: 7px; }

.legal-note {
  background: var(--surface-alt);
  border-radius: var(--radius-field);
  padding: 14px 18px;
  margin: 0 0 30px;
  font-size: 14px;
  color: var(--ink-muted);
}

/* ============================================================
   Rechts-nach-links (Arabisch)
   ============================================================ */

[dir="rtl"] .arrow-end { transform: scaleX(-1); }
[dir="rtl"] .faq-item summary::after { transform: rotate(-45deg); }
[dir="rtl"] .faq-item[open] summary::after { transform: rotate(135deg); }
[dir="rtl"] .phone-stat-value small { unicode-bidi: isolate; }

@media (max-width: 1020px) {
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 860px) {
  .lang-switch summary { padding: 12px 4px; font-size: 16px; }
  .lang-menu {
    position: static;
    box-shadow: none;
    margin-bottom: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .support-alert { padding: 20px; }
  .faq-item summary { padding: 16px 18px; font-size: 15.5px; }
  .faq-answer { padding: 0 18px 18px; }
}
