@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Bitter:ital,wght@0,400;0,500;0,600;1,400&family=Nunito+Sans:wght@400;600;700;800&display=swap');

:root {
  --night: #1b2a4a;
  --night-2: #101a30;
  --cream: #faf3e6;
  --paper: #fffbf3;
  --amber: #e2984a;
  --amber-deep: #c97b2e;
  --ink: #2b2420;
  --ink-soft: #5b5248;
  --dusk: #8577a0;
  --sage: #7c9473;
  --line: #e7dcc8;
  --radius: 20px;
  --shadow: 0 10px 30px -12px rgba(43, 36, 32, 0.25);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito Sans', system-ui, sans-serif;
  line-height: 1.5;
}

h1, h2, h3, .display {
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .3em;
}

a { color: inherit; }

button {
  font-family: inherit;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ---------- Hero / Night band ---------- */
.night-band {
  position: relative;
  background: radial-gradient(ellipse at 20% -10%, var(--night) 0%, var(--night-2) 70%);
  color: #f2ecdd;
  overflow: hidden;
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 10% 20%, #fff, transparent),
    radial-gradient(2px 2px at 80% 15%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 60% 40%, #ffe9c2, transparent),
    radial-gradient(1.5px 1.5px at 30% 70%, #fff, transparent),
    radial-gradient(2px 2px at 90% 60%, #ffe9c2, transparent),
    radial-gradient(1.5px 1.5px at 45% 85%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 15% 55%, #fff, transparent),
    radial-gradient(2px 2px at 70% 80%, #fff, transparent);
  background-repeat: no-repeat;
  opacity: .9;
  animation: twinkle 5s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .stars { animation: none; }
}

@keyframes twinkle {
  from { opacity: .55; }
  to { opacity: 1; }
}

.hero {
  padding: 64px 24px 56px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.logo {
  display: block;
  margin: 0 auto 16px;
  border-radius: 16px;
}

.hero .eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: #d9cef0;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.9rem);
  color: #fff;
  line-height: 1.15;
}

.hero p {
  color: #cfc7e0;
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 14px auto 0;
}

/* ---------- Layout ---------- */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.card + .card { margin-top: 28px; }

.card.night {
  background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  color: #f2ecdd;
  border: none;
}

.card.night h2 { color: #fff; }

.step-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 6px;
}

.card.night .step-label { color: #f0c88a; }

.field { margin-bottom: 22px; }

.field label.field-title {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1rem;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
}

.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: .95rem;
  font-family: inherit;
  color: var(--ink);
  resize: vertical;
  line-height: 1.5;
}

/* ---------- Lesetext für die Stimmprobe ---------- */
.reading-text {
  background: #fffef9;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  font-family: 'Bitter', Georgia, serif;
  font-size: .98rem;
  line-height: 1.65;
  color: var(--ink);
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 14px;
}

/* ---------- Aufnahme-Timer ---------- */
.timer-bar-track {
  margin-top: 12px;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #eee1c8;
  overflow: hidden;
}

.timer-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--amber);
  border-radius: 999px;
  transition: width .2s linear;
}

.timer-label {
  margin-top: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ---------- Modus-Umschalter (Baukasten / Freitext) ---------- */
.mode-toggle {
  display: flex;
  gap: 8px;
  background: #f1ece0;
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 24px;
}

.mode-btn {
  flex: 1;
  border: none;
  background: transparent;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
  font-size: .92rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.mode-btn.selected {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px -2px rgba(43, 36, 32, 0.2);
}

/* ---------- Chip grids ---------- */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
}

.chip-grid.animals {
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
}

.chip {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: border-color .15s, background .15s, transform .1s;
  text-align: center;
}

.chip:hover { border-color: var(--amber); }
.chip:active { transform: scale(.97); }

.chip svg { width: 40px; height: 40px; }

.chip.selected {
  border-color: var(--amber-deep);
  background: #fdf0dd;
  color: var(--ink);
}

.chip.text-chip {
  min-height: 44px;
  justify-content: center;
  padding: 10px 12px;
}

/* ---------- Select-like row (Zweck) ---------- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  color: var(--ink-soft);
}

.pill.selected {
  border-color: var(--amber-deep);
  background: var(--amber);
  color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .1s, box-shadow .15s, opacity .15s;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 18px -6px rgba(226, 152, 74, 0.55);
}

.btn-primary:hover { background: var(--amber-deep); }
.btn-primary:active { transform: scale(.98); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.card.night .btn-ghost {
  color: #f2ecdd;
  border-color: rgba(242, 236, 221, .35);
}

.btn-block { width: 100%; }

/* ---------- Voice step ---------- */
.voice-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.rec-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d0483f;
  display: inline-block;
  animation: pulse 1.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) { .rec-dot { animation: none; } }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fbf2df;
  border: 1px solid #eddcb4;
  border-radius: 12px;
  padding: 14px;
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 16px 0;
}

.consent input { margin-top: 3px; }

.voice-saved {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eef4ec;
  border: 1px solid #cfe0c9;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  color: #3f5d38;
}

/* ---------- Story text ---------- */
textarea#story-text {
  width: 100%;
  min-height: 260px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  padding: 18px;
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  resize: vertical;
  background: #fffef9;
}

/* ---------- Account-Leiste ---------- */
.hint {
  font-size: .85rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.account-bar {
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 20px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 700;
}

/* ---------- Fortsetzungs-Banner ---------- */
.continuation-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  background: #fdf0dd;
  border: 1px solid #eccd97;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 20px;
}

/* ---------- Bezahlmodell ---------- */
.billing-banner {
  max-width: 760px;
  margin: 20px auto 0;
  padding: 18px 22px;
  border-radius: 16px;
  font-size: .92rem;
  line-height: 1.5;
}

.billing-banner.free {
  background: #fdf0dd;
  border: 1px solid #eccd97;
  color: var(--ink);
}

.billing-banner.paywall {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.billing-banner h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.billing-banner .plans-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.billing-banner .plan-btn {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.billing-banner .plan-price {
  display: block;
  font-size: .78rem;
  font-weight: 400;
  opacity: .85;
  margin-top: 2px;
}

.pill.locked {
  opacity: .45;
  cursor: not-allowed;
}

/* ---------- Datenschutz-Hinweis ---------- */
.privacy-box {
  background: #eef4ec;
  border: 1px solid #cfe0c9;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: .88rem;
  color: #3f5d38;
  margin-bottom: 20px;
  line-height: 1.55;
}

/* ---------- Listen: Stimmen & Bibliothek ---------- */
.library-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.library-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.library-item .item-main {
  flex: 1;
  min-width: 0;
}

.library-item .item-title {
  font-weight: 800;
  color: var(--ink);
  display: block;
}

.library-item .item-sub {
  font-size: .8rem;
  color: var(--ink-soft);
  display: block;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-danger {
  background: transparent;
  color: #b3392c;
  border: 1.5px solid #e7bdb4;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn-danger:hover { background: #fbe7e4; }

.btn-small {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  white-space: nowrap;
  color: var(--ink);
}

.btn-small:hover { border-color: var(--amber); }

/* ---------- Chat (Nachbearbeitung) ---------- */
.chat-log {
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 2px;
  margin-bottom: 12px;
}

.chat-log:empty { margin-bottom: 0; }

.chat-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .92rem;
  line-height: 1.45;
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--amber);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-msg.ai {
  align-self: flex-start;
  background: #f1ece0;
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.chat-msg.ai.pending {
  color: var(--ink-soft);
  font-style: italic;
}

.chat-input-row {
  display: flex;
  gap: 10px;
}

.chat-input-row input[type="text"] {
  flex: 1;
}

.card.night .hint { color: #cfc7e0; }

/* ---------- Audio step ---------- */
audio {
  width: 100%;
  margin: 18px 0;
}

.kennzeichnung {
  font-size: .85rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 10px 14px;
  color: #e7ddc4;
}

.actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.spinner {
  width: 18px; height: 18px;
  border: 3px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: inline-block;
}

.btn-primary .spinner { border-color: rgba(255,255,255,.5); border-top-color: #fff; }

@keyframes spin { to { transform: rotate(360deg); } }

.error-box {
  background: #fbe7e4;
  border: 1px solid #eab8b0;
  color: #7c2c20;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .9rem;
  margin-top: 14px;
}

footer {
  text-align: center;
  padding: 30px 20px 40px;
  font-size: .82rem;
  color: #cfc7e0;
}

/* ---------- Mobile-Anpassungen ---------- */
@media (max-width: 600px) {
  .hero {
    padding: 40px 18px 40px;
  }
  .hero p {
    font-size: .95rem;
  }

  .card {
    padding: 20px 16px;
    border-radius: 16px;
    margin-top: -28px;
  }
  .card + .card { margin-top: 20px; }

  .account-bar {
    padding: 12px 16px 0;
    justify-content: space-between;
  }

  main {
    padding: 0 14px 60px;
  }

  /* Tier-Kacheln: kleiner, damit auf schmalen Screens 3 pro Reihe passen,
     aber weiterhin gut antippbar bleiben */
  .chip-grid.animals {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .chip {
    padding: 8px 4px;
  }
  .chip svg { width: 34px; height: 34px; }
  .chip span { font-size: .76rem; }

  .pill-row { gap: 8px; }
  .pill {
    padding: 10px 14px;
    font-size: .85rem;
  }

  .mode-toggle { padding: 4px; }
  .mode-btn { padding: 10px 8px; font-size: .85rem; }

  /* Aktionsreihen: gestapelt statt nebeneinander — auf schmalen Screens
     lässt sich ein voller Button leichter treffen als mehrere nebeneinander */
  .actions-row {
    flex-direction: column;
  }
  .actions-row .btn,
  .actions-row button {
    width: 100%;
  }

  .voice-row {
    flex-direction: column;
    align-items: stretch;
  }
  .voice-row .btn { width: 100%; }

  .library-item {
    flex-wrap: wrap;
  }
  .library-item .item-main {
    flex-basis: 100%;
    order: -1;
    margin-bottom: 6px;
  }

  .reading-text {
    font-size: .9rem;
    max-height: 150px;
  }

  textarea#story-text {
    min-height: 200px;
    font-size: 1rem;
    padding: 14px;
  }

  .chat-input-row {
    flex-direction: column;
  }
  .chat-input-row .btn { width: 100%; }

  .privacy-box { font-size: .85rem; padding: 12px 14px; }

  footer {
    padding: 24px 16px 30px;
    font-size: .78rem;
  }
}

@media (max-width: 380px) {
  .chip-grid.animals { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 1.7rem; }
}
@supports (padding: max(0px)) {
  .night-band {
    padding-top: env(safe-area-inset-top, 0);
  }
  footer {
    padding-bottom: max(40px, env(safe-area-inset-bottom, 0));
  }
  body {
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
  }
}

[hidden] { display: none !important; }

/* =============================================================================
   LANDINGPAGE-STYLES (index.html, about.html)
   ============================================================================= */

.nav {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  position: relative;
  z-index: 3;
}

.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}

.nav .brand img { width: 32px; height: 32px; border-radius: 9px; }

.nav .nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav .nav-links a {
  color: #d9cef0;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
}
.nav .nav-links a:hover { color: #fff; }

.nav .nav-cta {
  background: var(--amber);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 999px;
}

/* ---------- Hero (Landing) ---------- */
.landing-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 24px 90px;
  text-align: center;
  position: relative;
}

.landing-hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.1rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.landing-hero .lead {
  color: #cfc7e0;
  font-size: 1.15rem;
  max-width: 56ch;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- Störer-Badge ---------- */
.stoerer {
  position: absolute;
  top: -18px;
  right: -10px;
  background: var(--amber);
  color: #fff;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  line-height: 1.25;
  transform: rotate(11deg);
  box-shadow: 0 10px 24px -6px rgba(226, 152, 74, 0.7);
  border: 3px dashed rgba(255,255,255,.6);
}

@media (max-width: 640px) {
  .stoerer { position: static; margin: 18px auto 0; transform: rotate(-6deg); }
}

/* ---------- Sections (heller Bereich) ---------- */
.landing-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 24px;
}

.landing-section.tight { padding-top: 40px; padding-bottom: 40px; }

.section-eyebrow {
  text-align: center;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--amber-deep);
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  margin-bottom: 14px;
}

.section-lead {
  text-align: center;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---------- So funktioniert's: Schritte ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 10px;
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 14px;
  font-family: 'Baloo 2', sans-serif;
}

.step-icon { font-size: 2.2rem; margin-bottom: 10px; }

.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { color: var(--ink-soft); font-size: .92rem; line-height: 1.55; margin: 0; }

/* ---------- Charaktere-Grid (Landing, statisch) ---------- */
.char-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 16px;
}

.char-card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 16px 10px;
  text-align: center;
}
.char-card svg { width: 52px; height: 52px; color: var(--ink); }
.char-card span { display: block; margin-top: 8px; font-weight: 700; font-size: .85rem; color: var(--ink-soft); }

/* ---------- Free-Trial Callout ---------- */
.trial-callout {
  background: linear-gradient(135deg, #fdf0dd, #fbe4c4);
  border: 1px solid #eccd97;
  border-radius: 24px;
  padding: 44px 32px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.trial-callout h2 { margin-bottom: 10px; font-size: 1.5rem; }
.trial-callout p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 24px; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.price-card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: var(--amber-deep);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.price-card .featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-deep);
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 { margin: 0 0 4px; font-size: 1.15rem; }
.price-card .price { font-family: 'Baloo 2', sans-serif; font-size: 2.1rem; font-weight: 700; margin: 10px 0 4px; }
.price-card .price small { font-size: .95rem; font-weight: 400; color: var(--ink-soft); }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 26px; flex: 1; }
.price-card li { padding: 6px 0; color: var(--ink-soft); font-size: .9rem; }
.price-card li::before { content: "✓ "; color: var(--sage); font-weight: 800; }

/* ---------- Founder-Teaser (Landing -> Link zu About) ---------- */
.founder-teaser {
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 20px;
  padding: 30px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.founder-teaser .quote-mark { font-family: 'Baloo 2', sans-serif; font-size: 2.5rem; color: var(--amber); line-height: 1; }
.founder-teaser p { margin: 0 0 10px; color: var(--ink); line-height: 1.6; }
.founder-teaser a { color: var(--amber-deep); font-weight: 700; }

/* ---------- About-Seite ---------- */
.founder-photo-wrap {
  text-align: center;
  margin: -78px auto 8px;
  position: relative;
  z-index: 3;
}
.founder-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--paper);
  box-shadow: var(--shadow);
  display: block;
  margin: 0 auto 14px;
}
.founder-caption {
  font-weight: 700;
  color: var(--ink-soft);
  font-size: .9rem;
}

.about-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}
.about-content p {
  font-family: 'Bitter', Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 22px;
}
.about-content h1 { text-align: center; margin-bottom: 36px; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 4px 20px;
}

.faq-item summary {
  padding: 16px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.3rem;
  color: var(--amber-deep);
  flex-shrink: 0;
  transition: transform .15s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: .95rem;
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--amber-deep);
  font-weight: 700;
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
}

/* ---------- Landing-Footer ---------- */
.landing-footer {
  text-align: center;
  padding: 40px 20px 50px;
}
.landing-footer .foot-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.landing-footer .foot-links a { color: var(--ink-soft); text-decoration: none; font-weight: 700; font-size: .9rem; }
.landing-footer .foot-links a:hover { color: var(--ink); }
.landing-footer .foot-legal { color: var(--ink-soft); font-size: .8rem; max-width: 640px; margin: 0 auto; line-height: 1.6; }

/* ---------- Datenschutz-Vertrauens-Sektion (Landing) ---------- */
.trust-section {
  background: linear-gradient(135deg, #eef4ec, #e3efe0);
  border: 1px solid #cfe0c9;
  border-radius: 24px;
  padding: 48px 36px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
  margin-top: 34px;
}

.trust-item { text-align: center; }
.trust-icon { font-size: 2rem; margin-bottom: 10px; }
.trust-item h3 { font-size: 1rem; margin: 0 0 6px; color: #2f4a29; }
.trust-item p { font-size: .88rem; color: #4a6144; line-height: 1.55; margin: 0; }
