/* ============================================
   SOLDATSEIN LANDING /start  v5
   Dark Mode, Mobile-first, Design-Tokens der App
   ============================================ */

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

:root {
  --gold:        #E5B800;
  --gold-hover:  #F5CA10;
  --bg:          #0A0A0A;
  --bg-2:        #111111;
  --bg-3:        #181818;
  --card-bg:     #161616;
  --card-border: rgba(255,255,255,0.08);
  --fg:          #FFFFFF;
  --muted-fg:    rgba(255,255,255,0.62);
  --dim-fg:      rgba(255,255,255,0.38);
  --border:      rgba(255,255,255,0.1);
  --green:       #00B67A;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-sm:   8px;
  --max-w:       720px;
  --max-w-wide:  1080px;
  --header-h:    56px;
  --font:        'General Sans', system-ui, -apple-system, sans-serif;
  /* Eigene Kurven: die eingebauten CSS-Easings sind zu weich */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }
ul, ol { list-style: none; }
blockquote { quotes: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #000; padding: 0.75rem 1.25rem;
  font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--wide { max-width: var(--max-w-wide); }

.section { padding: 3.5rem 0; }
.section-dark { background: var(--bg-2); }

@media (min-width: 900px) {
  .section { padding: 5.5rem 0; }
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 240ms var(--ease-out);
}
.header--hidden { transform: translateY(-100%); }

.header-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0.6875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.header-logo img { border-radius: 6px; }
.header-store-btns { display: flex; gap: 0.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 150ms var(--ease-out), transform 140ms var(--ease-out), background 150ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn:hover { opacity: 0.9; }

.btn-sm { padding: 0.5rem 0.875rem; font-size: 0.8125rem; border-radius: 8px; }
.btn-primary { background: var(--gold); color: #000; border-radius: 10px; }
.btn-store-mini { background: var(--gold); color: #000; }

.btn-store {
  padding: 0.6875rem 1.25rem;
  border-radius: 12px;
  gap: 0.625rem;
  font-size: 0.75rem;
  line-height: 1.3;
  min-width: 165px;
}
.btn-store span { display: block; text-align: left; }
.btn-store-ios { background: var(--gold); color: #000; }
.btn-store-ios:hover { background: var(--gold-hover); opacity: 1; }
.btn-store-android {
  background: rgba(255,255,255,0.06);
  color: var(--fg);
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn-store-android:hover { background: rgba(255,255,255,0.12); opacity: 1; }
.store-icon { flex-shrink: 0; }
.store-label { font-size: 0.6875rem; font-weight: 400; opacity: 0.75; }
.store-name { font-size: 0.9375rem; font-weight: 700; }

.store-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem auto 0;
}

.cta-note {
  font-size: 0.78125rem;
  color: var(--muted-fg);
  text-align: center;
  margin-top: 0.75rem;
}

/* ---- HERO ----
   Wichtig: Bild darf den Viewport auf dem Handy NICHT komplett fuellen.
   Headline und Store-Buttons muessen ohne Scrollen sichtbar sein. */
.hero {
  position: relative;
  display: flex;
  /* center statt flex-end: sonst sammelt sich der gesamte Ueberschuss OBEN
     und reisst eine Luecke von ueber 100px unter den Header. */
  align-items: center;
  /* min-height nah an der echten Inhaltshoehe, damit kaum Ueberschuss entsteht */
  min-height: 580px;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 2.5rem;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,10,10,0.60) 0%,
      rgba(10,10,10,0.38) 22%,
      rgba(10,10,10,0.78) 58%,
      rgba(10,10,10,0.97) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Trust bar */
.trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 0.4375rem 0.9375rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.125rem;
  flex-wrap: wrap;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.trust-item { display: inline-flex; align-items: center; gap: 0.375rem; }
.trust-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.22); }
.trust-divider--wide { display: none; }
.stars-row { color: var(--green); letter-spacing: 1px; font-size: 0.8rem; }

.hero-title {
  font-size: clamp(2rem, 8.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 0.875rem;
  text-wrap: balance;
}
.text-gold { color: var(--gold); }

.hero-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .hero { min-height: 76svh; align-items: center; }
  .hero-sub { font-size: 1.0625rem; }
  .trust-divider--wide { display: inline-block; }
  .trust-item.trust-divider--wide { display: inline-flex; }
}

/* ---- PRESSE ---- */
.section-press { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.press-known-label {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim-fg);
  text-align: center; margin-bottom: 1rem;
}
.press-logos-img {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem 2rem; flex-wrap: wrap;
}
.press-logo-img {
  height: 34px; width: auto; max-width: 140px;
  object-fit: contain; opacity: 0.7; border-radius: 4px;
  transition: opacity 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .press-logo-img:hover { opacity: 1; }
}
.press-ad-label {
  display: inline-block; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-fg);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 3px;
  padding: 1px 5px; vertical-align: middle; margin-left: 0.4rem; opacity: 0.6;
}

/* ---- Section-Typo ---- */
.eyebrow {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.625rem;
}
.section-title {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 700; letter-spacing: -0.028em; line-height: 1.18;
  margin-bottom: 0.75rem; text-wrap: balance;
}
.section-sub {
  font-size: 0.9375rem; color: var(--muted-fg);
  line-height: 1.65; margin-bottom: 1.5rem; text-wrap: pretty;
}
.section-sub--lead { max-width: 620px; }

/* ---- PHASEN ---- */
.phasen {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  counter-reset: phase;
}
@media (min-width: 640px) { .phasen { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (min-width: 960px) { .phasen { grid-template-columns: repeat(3, 1fr); } }

.phase-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .phase-card:hover { border-color: rgba(229,184,0,0.35); transform: translateY(-2px); }
}
.phase-card--hot { border-color: rgba(229,184,0,0.45); background: linear-gradient(160deg, rgba(229,184,0,0.09), var(--card-bg) 60%); }

.phase-key {
  display: inline-block;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(229,184,0,0.3); border-radius: 100px;
  padding: 0.1875rem 0.5625rem; margin-bottom: 0.75rem;
}
.phase-title { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.375rem; }
.phase-text { font-size: 0.84375rem; color: var(--muted-fg); line-height: 1.6; }

/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1rem;
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .team-card:hover { border-color: rgba(229,184,0,0.3); transform: translateY(-2px); }
}

.team-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  background: var(--bg-3);
}
.team-name { font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.015em; line-height: 1.25; }
.team-role { font-size: 0.75rem; font-weight: 600; color: var(--gold); margin-top: 0.125rem; margin-bottom: 0.5rem; }
.team-text { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.55; }

.team-hinweis {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--dim-fg);
  line-height: 1.6;
  max-width: 700px;
}

/* ---- FEATURE LAYOUT ---- */
.feature-tag {
  display: inline-block; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}

.feature-layout { display: flex; flex-direction: column; gap: 2.5rem; }
.feature-text { order: 1; }
.feature-visual { order: 2; }

@media (min-width: 900px) {
  .feature-layout {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    max-width: var(--max-w-wide);
  }
  .feature-text { flex: 1 1 50%; order: 1; }
  .feature-visual { flex: 1 1 50%; order: 2; }
  .feature-layout--reverse .feature-text { order: 2; }
  .feature-layout--reverse .feature-visual { order: 1; }
}

.phone-shot {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.65);
}

.feature-visual--duo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.75rem;
}
/* Beide Phones muessen zusammen in die Spalte passen, sonst laufen sie
   auf dem Handy ueber den Rand. */
.feature-visual--duo .phone-shot {
  max-width: none;
  width: calc(50% - 0.375rem);
  margin: 0;
}
.phone-shot--offset { transform: translateY(1.75rem); }

@media (min-width: 900px) {
  .feature-visual--duo .phone-shot { width: calc(50% - 0.375rem); max-width: 230px; }
}

.feature-checklist { display: flex; flex-direction: column; gap: 0.625rem; }
/* Kein display:flex auf dem li: sonst wird ein <strong> zum eigenen Flex-Item
   und der Punkt bricht sichtbar in zwei Spalten. */
.feature-checklist li {
  position: relative;
  padding-left: 1.625rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.85); line-height: 1.55;
}
.feature-checklist li strong { color: #fff; }
.feature-checklist li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 17px; height: 17px;
  background: var(--gold); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}

.feature-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--dim-fg);
  line-height: 1.6;
}

/* ---- MID CTA ---- */
.section-cta-mid { background: var(--bg-2); text-align: center; }
.mid-cta-title {
  font-size: clamp(1.5rem, 5vw, 2.125rem);
  font-weight: 700; letter-spacing: -0.028em; margin-bottom: 0.5rem;
}
.mid-cta-sub { font-size: 0.9375rem; color: var(--muted-fg); }

/* ---- BEWERTUNGEN ---- */
.reviews-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.reviews-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.8125rem; font-weight: 700;
  background: rgba(0,182,122,0.1); border: 1px solid rgba(0,182,122,0.25);
  padding: 0.3125rem 0.75rem; border-radius: 100px;
  color: var(--green); white-space: nowrap;
}
.reviews-subtitle { font-size: 0.8125rem; color: var(--muted-fg); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (min-width: 960px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--green); font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 0.75rem; }
.review-text {
  font-size: 0.875rem; line-height: 1.65;
  color: rgba(255,255,255,0.88); font-style: italic;
  margin-bottom: 0.875rem; flex: 1;
}
.review-text::before { content: '\201E'; }
.review-text::after { content: '\201C'; }
.review-author { font-size: 0.6875rem; color: var(--muted-fg); font-weight: 500; }

.review-card--stats {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  background: linear-gradient(160deg, rgba(229,184,0,0.1), var(--card-bg) 65%);
  border-color: rgba(229,184,0,0.28);
}
.review-stat-value { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.03em; color: var(--gold); line-height: 1.1; }
.review-stat-label { font-size: 0.75rem; color: var(--muted-fg); margin-bottom: 0.875rem; }
.review-card--stats .review-stat-label:last-child { margin-bottom: 0; }

/* ---- TRUST NUMBERS ---- */
.trust-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 700px) { .trust-numbers { grid-template-columns: repeat(4, 1fr); } }

.trust-num { display: flex; flex-direction: column; gap: 0.25rem; }
.trust-num-value {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--gold); line-height: 1.1;
}
.trust-num-label { font-size: 0.78125rem; color: var(--muted-fg); line-height: 1.4; }

.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.625rem 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.trust-badge-item {
  display: inline-flex; align-items: center; gap: 0.4375rem;
  font-size: 0.78125rem; color: var(--muted-fg); font-weight: 500;
}
.trust-badge-item svg { color: var(--gold); flex-shrink: 0; }

/* ---- ZIELGRUPPEN ---- */
.zielgruppen {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 700px) { .zielgruppen { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

.zielgruppe {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.375rem;
}
.zielgruppe-title { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.5rem; }
.zielgruppe-text { font-size: 0.84375rem; color: var(--muted-fg); line-height: 1.6; }
.zielgruppe-link {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.8125rem; font-weight: 600; color: var(--gold);
  border-bottom: 1px solid rgba(229,184,0,0.4); padding-bottom: 1px;
}

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.5rem; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] { border-color: rgba(229,184,0,0.28); }
.faq-question {
  font-size: 0.9375rem; font-weight: 600;
  padding: 1rem 2.75rem 1rem 1.125rem;
  cursor: pointer; position: relative; list-style: none;
  line-height: 1.45;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: ''; position: absolute; right: 1.125rem; top: 1.25rem;
  width: 11px; height: 11px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); transition: transform 200ms var(--ease-out);
}
.faq-item[open] .faq-question::after { transform: rotate(-135deg); top: 1.4375rem; }
.faq-answer { padding: 0 1.125rem 1.125rem; }
.faq-answer p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }
.faq-answer a { color: var(--gold); text-decoration: underline; }

/* ---- FINAL CTA ---- */
.final-cta-section { position: relative; text-align: center; overflow: hidden; }
.final-cta-glow {
  position: absolute; top: 50%; left: 50%;
  width: 620px; height: 620px; max-width: 140vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(229,184,0,0.14) 0%, transparent 62%);
  pointer-events: none;
}
.final-cta-section .container { position: relative; z-index: 1; }
.final-cta-title {
  font-size: clamp(1.75rem, 6vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.12;
  margin-bottom: 0.5rem; text-wrap: balance;
}
.final-trust-row {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1.25rem; font-size: 0.78125rem; color: var(--muted-fg);
  flex-wrap: wrap;
}

/* ---- STICKY MOBILE CTA ---- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: rgba(14,14,14,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 0.625rem 1rem calc(0.625rem + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 280ms var(--ease-out);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex; align-items: center; gap: 0.75rem;
  max-width: var(--max-w); margin: 0 auto;
}
.sticky-cta-logo { border-radius: 8px; flex-shrink: 0; }
.sticky-cta-text { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.sticky-cta-text strong { font-size: 0.875rem; }
.sticky-cta-text span { font-size: 0.6875rem; color: var(--muted-fg); }
.sticky-cta-btn { padding: 0.5625rem 1.25rem; font-size: 0.875rem; flex-shrink: 0; }

@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 calc(5.5rem + env(safe-area-inset-bottom));
}
@media (min-width: 900px) { .footer { padding-bottom: 2.5rem; } }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }

.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-head {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dim-fg); margin-bottom: 0.25rem;
}
.footer-col a { font-size: 0.84375rem; color: var(--muted-fg); transition: color 150ms var(--ease-out); }
.footer-col a:hover { color: var(--fg); }

.footer-disclaimer {
  font-size: 0.71875rem; color: var(--dim-fg); line-height: 1.6;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  max-width: 720px;
}
.footer-copy { font-size: 0.71875rem; color: var(--dim-fg); margin-top: 0.75rem; }

/* ---- SCROLL REVEAL ----
   Nur wenn JS laeuft (html.js). Ohne JS bleibt alles sichtbar.
   app.js entfernt die Klasse zusaetzlich per Failsafe-Timer. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
  will-change: opacity, transform;
}
.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .sticky-cta { transition: none; }
  .phase-card:hover, .team-card:hover { transform: none; }
}

/* ============================================
   NUR /landing: Zielgruppen-Hub
   ============================================ */

/* Hero-Bild der Landing ist Hochformat mit Kopffreiheit oben */
.hero-img--landing { object-position: center 62%; }

/* ---- Zielgruppen-Karten ---- */
.zg-liste { display: flex; flex-direction: column; gap: 0.875rem; }

.zg-karte {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .zg-karte:hover { border-color: rgba(229,184,0,0.32); transform: translateY(-2px); }
}

.zg-bild {
  width: 76px;
  height: 76px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 14px;
  background: var(--bg-3);
  flex-shrink: 0;
}

.zg-titel { font-size: 1.1875rem; font-weight: 700; letter-spacing: -0.02em; }
.zg-lead {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  margin-top: 0.25rem;
  margin-bottom: 0.875rem;
  line-height: 1.5;
}

.zg-punkte { display: flex; flex-direction: column; gap: 0.4375rem; margin-bottom: 0.875rem; }
.zg-punkte li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.84375rem;
  color: var(--muted-fg);
  line-height: 1.55;
}
.zg-punkte li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.zg-person {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.zg-link {
  display: inline-block;
  font-size: 0.84375rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(229,184,0,0.4);
  padding-bottom: 1px;
}
.zg-link:hover { border-bottom-color: var(--gold); }

.zg-hinweis {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--dim-fg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.25rem 0.6875rem;
}

@media (min-width: 700px) {
  .zg-karte { flex-direction: row; align-items: flex-start; gap: 1.5rem; padding: 1.75rem; }
  .zg-bild { width: 128px; height: 128px; border-radius: 16px; }
  .zg-inhalt { flex: 1; }
  .zg-punkte { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4375rem 1.5rem; }
}

/* ---- Unabhängigkeits-Hinweis ---- */
.section-unabhaengig { padding: 2rem 0; }
.unabhaengig-karte {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(150deg, rgba(229,184,0,0.07), var(--card-bg) 65%);
  border: 1px solid rgba(229,184,0,0.25);
  border-radius: var(--radius-lg);
  padding: 1.375rem;
}
.unabhaengig-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.unabhaengig-text { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.65; }
.unabhaengig-text strong { display: block; color: var(--fg); font-size: 0.9375rem; margin-bottom: 0.25rem; }

/* ---- Funktions-Gruppen ---- */
.funktion-gruppen {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 700px) { .funktion-gruppen { grid-template-columns: 1fr 1fr; gap: 2rem 3rem; } }

.funktion-titel {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border);
}

/* ---- Link unter den Bewertungen ---- */
.reviews-mehr { text-align: center; margin-top: 1.5rem; }
.reviews-mehr a {
  font-size: 0.84375rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(229,184,0,0.4);
  padding-bottom: 1px;
}

/* Footer der Landing hat vier Spalten */
@media (min-width: 900px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
/* ============================================
   Zielgruppen-Seiten
   ============================================ */
.hero--zielgruppe {
  min-height: auto; align-items: center;
  padding-top: calc(var(--header-h) + 3.5rem); padding-bottom: 3rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229,184,0,0.10), transparent 70%), var(--bg);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .hero--zielgruppe { padding-top: calc(var(--header-h) + 5rem); padding-bottom: 4.5rem; } }
.hero-eyebrow { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.trust-bar--unten { margin-top: 1.75rem; margin-bottom: 0; }

.problem-liste { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .problem-liste { grid-template-columns: 1fr 1fr; gap: 1rem; } }
.problem-karte { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1.25rem; border-left: 3px solid rgba(229,184,0,0.5); }
.problem-titel { font-size: 1rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.4375rem; }
.problem-text { font-size: 0.84375rem; color: var(--muted-fg); line-height: 1.6; }

.coach-karte { display: flex; flex-direction: column; gap: 1.25rem; background: linear-gradient(155deg, rgba(229,184,0,0.08), var(--card-bg) 60%); border: 1px solid rgba(229,184,0,0.25); border-radius: var(--radius-lg); padding: 1.5rem; }
.coach-bild { width: 96px; height: 96px; object-fit: cover; object-position: center 15%; border-radius: 16px; background: var(--bg-3); flex-shrink: 0; }
.coach-name { font-size: 1.375rem; font-weight: 700; letter-spacing: -0.025em; }
.coach-rolle { font-size: 0.8125rem; font-weight: 600; color: var(--gold); margin-top: 0.125rem; margin-bottom: 0.75rem; }
.coach-text { font-size: 0.9375rem; color: var(--muted-fg); line-height: 1.65; }
@media (min-width: 700px) { .coach-karte { flex-direction: row; align-items: flex-start; gap: 2rem; padding: 2rem; } .coach-bild { width: 150px; height: 150px; border-radius: 18px; } }

.bereich-links { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.5rem; }
.bereich-links a { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 100px; padding: 0.625rem 1.125rem; transition: border-color 0.2s, background 0.2s; }
.bereich-links a::after { content: ''; width: 6px; height: 6px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.bereich-links a:hover { border-color: rgba(229,184,0,0.4); background: var(--bg-3); }

/* ---- Druck-Feedback: jedes antippbare Element muss reagieren ---- */
.faq-question { transition: background 150ms var(--ease-out); }
.faq-item[open] > .faq-question,
.faq-question:active { background: rgba(255,255,255,0.03); }

.zg-link, .zielgruppe-link, .reviews-mehr a {
  transition: border-bottom-color 150ms var(--ease-out), transform 140ms var(--ease-out);
}
.zg-link:active, .zielgruppe-link:active, .reviews-mehr a:active { transform: scale(0.98); }

.bereich-links a:active { transform: scale(0.98); }

.header-logo { transition: transform 140ms var(--ease-out); }
.header-logo:active { transform: scale(0.98); }

@media (prefers-reduced-motion: reduce) {
  .zg-link:active, .zielgruppe-link:active, .reviews-mehr a:active,
  .bereich-links a:active, .header-logo:active { transform: none; }
}
