/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS – identisch mit Hauptwebsite
════════════════════════════════════════════════════════════ */
:root {
  --bg:           #fbf5f8;
  --surface:      #ffffff;
  --surface-alt:  #fff7fb;
  --text:         #2f1830;
  --muted:        #6d5869;
  --line:         rgba(139, 13, 77, 0.12);
  --primary:      #ad1160;
  --primary-dark: #8b0d4d;
  --primary-soft: rgba(173, 17, 96, 0.10);
  --accent:       #f4d7e6;
  --shadow:       0 24px 60px rgba(94, 14, 56, 0.14);
  --shadow-soft:  0 14px 34px rgba(94, 14, 56, 0.10);
  --radius-xl:    32px;
  --radius-lg:    24px;
  --radius-md:    18px;
  --radius-pill:  999px;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; padding: 0; }

:focus-visible {
  outline: 3px solid rgba(173, 17, 96, 0.35);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════════════════ */
.fcontainer {
  width: min(calc(100% - 2rem), 600px);
  margin: 0 auto;
}

.fcontainer--hero {
  width: min(calc(100% - 2rem), 1100px);
}

/* ═══════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.fh {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.fh__inner {
  height: 100%;
  width: min(calc(100% - 2rem), 1100px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fh__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fh__logo {
  height: 56px;
  width: auto;
  display: block;
}

.fh__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fh__badge {
  display: inline-flex;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.fh__back-link {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.18s;
}

.fh__back-link:hover { color: var(--primary); }

@media (max-width: 480px) {
  .fh__back-link { display: none; }
  .fh__badge { font-size: 0.78rem; }
}

/* ═══════════════════════════════════════════════════════════
   PROGRESS BAR
════════════════════════════════════════════════════════════ */
.fp {
  padding: 0.6rem 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.fp__track {
  max-width: 560px;
  margin: 0 auto;
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(173, 17, 96, 0.1);
  overflow: hidden;
}

.fp__bar {
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0%;
}

.fp__label {
  margin: 0.4rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════
   STEP ANIMATION
════════════════════════════════════════════════════════════ */
@keyframes stepIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes stepInBack {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.fs {
  display: none;
}

.fs.is-active {
  display: block;
  animation: stepIn 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.fs.is-active.is-back {
  animation: stepInBack 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ═══════════════════════════════════════════════════════════
   SCHRITT 1 – HERO
════════════════════════════════════════════════════════════ */
.s1 {
  position: relative;
  overflow-x: clip;
}

.s1::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  pointer-events: none;
}

.s1::after {
  content: "";
  position: absolute;
  inset: auto -5% -1px;
  height: 5rem;
  background: var(--surface);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
  pointer-events: none;
}

.s1__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,0.85fr);
  align-items: center;
  gap: 2rem;
  padding: 4rem 0 3rem;
  min-height: calc(100dvh - 64px);
}

.s1__copy {
  color: #fff;
}

.s1__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.18);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.s1__headline {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.s1__sub {
  margin: 0 0 2rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
}

.s1__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
}

/* Visual / Image Side */
.s1__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 420px;
}

.s1__person {
  width: clamp(240px, 36vw, 420px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(46, 8, 30, 0.36));
  position: relative;
  z-index: 2;
}

.s1__stat {
  position: absolute;
  z-index: 3;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
  color: var(--text);
  min-width: 120px;
}

.s1__stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
}

.s1__stat span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.s1__stat--1 {
  top: 16%;
  left: -4%;
}

.s1__stat--2 {
  bottom: 22%;
  right: 2%;
}

/* Mobile hero */
@media (max-width: 768px) {
  .s1__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2.5rem 0 0;
    gap: 0;
  }

  .s1__copy {
    text-align: center;
  }

  .s1__eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .s1__headline {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .s1__sub {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .s1__trust {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  /* Visual: Bild zentriert, volle Körpergröße */
  .s1__visual {
    justify-content: center;
    align-items: flex-end;
    min-height: 340px;
    margin-top: 0.5rem;
    padding-bottom: 0;
  }

  .s1__person {
    width: min(84%, 320px);
    height: auto;
    object-fit: initial;
    object-position: initial;
  }

  /* Stat-Cards auf Mobile ausblenden – Bogen überlagert sie */
  .s1__stat {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   GEMEINSAME SCHRITT-STILE (Steps 2–4)
════════════════════════════════════════════════════════════ */
.fs__head {
  padding: 2.5rem 0 1.75rem;
  text-align: center;
}

.fs__q {
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.fs__hint {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   AUSWAHL-KARTEN (.fc)
════════════════════════════════════════════════════════════ */
.fc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.fc-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.fc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.25rem 0.9rem;
  min-height: 110px;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(94, 14, 56, 0.06);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.fc:hover {
  border-color: rgba(173, 17, 96, 0.32);
  background: var(--surface-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.fc:active {
  transform: translateY(0) scale(0.97);
}

.fc[aria-checked="true"] {
  border-color: var(--primary);
  border-width: 2px;
  background: var(--primary-soft);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-soft);
  transform: translateY(-2px);
}

.fc--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: flex-start;
  padding: 1rem 1.25rem;
  min-height: 64px;
}

.fc__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  transition: background 0.18s ease, color 0.18s ease;
}

.fc--wide .fc__icon {
  width: 40px;
  height: 40px;
}

.fc[aria-checked="true"] .fc__icon {
  background: rgba(173, 17, 96, 0.18);
  color: var(--primary);
}

.fc__label {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  transition: color 0.18s ease;
}

.fc[aria-checked="true"] .fc__label {
  color: var(--primary-dark);
}

/* Sonstiges text field */
.fc-extra {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   JA / NEIN BUTTONS
════════════════════════════════════════════════════════════ */
.f-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.f-yesno {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.f-yn {
  flex: 1;
  min-height: 52px;
  padding: 0 1rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.f-yn:hover {
  border-color: rgba(173, 17, 96, 0.32);
  background: var(--surface-alt);
  transform: translateY(-1px);
}

.f-yn:active {
  transform: translateY(0) scale(0.97);
}

.f-yn[aria-checked="true"] {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary-dark);
  box-shadow: 0 0 0 1px var(--primary);
}

/* ═══════════════════════════════════════════════════════════
   TRENNLINIE & HINWEIS
════════════════════════════════════════════════════════════ */
.f-divider {
  height: 1px;
  background: var(--line);
  margin: 1.75rem 0;
}

.f-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  border: 1px solid rgba(173, 17, 96, 0.2);
  color: var(--primary-dark);
  font-size: 0.93rem;
  line-height: 1.5;
}

.f-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.f-notice p {
  margin: 0;
}

.f-notice--error {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.3);
  color: #b91c1c;
}

.f-notice--error a {
  color: inherit;
  font-weight: 700;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   FORMULAR-ELEMENTE
════════════════════════════════════════════════════════════ */
.f-group {
  margin-bottom: 1.1rem;
}

.f-group--gdpr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.f-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.f-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
}

.f-sublabel {
  margin: -0.3rem 0 0.55rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.f-req {
  color: var(--primary);
}

.f-optional {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--muted);
  margin-left: 0.25rem;
}

/* Text / Tel / Email input */
.f-input {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(139, 13, 77, 0.2);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.f-input::placeholder { color: rgba(109, 88, 105, 0.55); }

.f-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(173, 17, 96, 0.12);
}

.f-input.is-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Input with icon (WhatsApp) */
.f-input-wrap {
  position: relative;
}

.f-input-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  border-radius: 4px;
}

.f-input--icon {
  padding-left: 2.85rem;
}

/* Select */
.f-select-wrap {
  position: relative;
}

.f-select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  pointer-events: none;
}

.f-select {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  border: 1.5px solid rgba(139, 13, 77, 0.2);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.f-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(173, 17, 96, 0.12);
}

.f-select.is-error {
  border-color: #dc2626;
}

/* Checkbox (DSGVO) */
.f-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  line-height: 1.5;
}

.f-check {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.f-check-box {
  flex-shrink: 0;
  position: relative;
  top: 2px;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(139, 13, 77, 0.28);
  border-radius: 6px;
  background: var(--surface);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.f-check:checked + .f-check-box {
  background: var(--primary);
  border-color: var(--primary);
}

.f-check:checked + .f-check-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
}

.f-check:focus-visible + .f-check-box {
  outline: 3px solid rgba(173, 17, 96, 0.35);
  outline-offset: 3px;
}

.f-check.is-error + .f-check-box {
  border-color: #dc2626;
}

.f-check-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.f-check-text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   FEHLERMELDUNGEN
════════════════════════════════════════════════════════════ */
.f-err {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: #dc2626;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════ */
.btn-f {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 56px;
  padding: 0 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-f:hover  { transform: translateY(-2px); }
.btn-f:active { transform: translateY(0) scale(0.97); }

.btn-f--full {
  width: 100%;
  margin-top: 0.5rem;
}

/* Primär (Berry-Gradient) */
.btn-f--primary,
.btn-f--cta {
  background: linear-gradient(138deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(139, 13, 77, 0.28);
}

.btn-f--primary:hover,
.btn-f--cta:hover {
  box-shadow: 0 16px 36px rgba(139, 13, 77, 0.36);
}

/* Hero-CTA: größer + leuchtendes Border */
.btn-f--cta {
  min-height: 60px;
  font-size: 1.1rem;
  border-color: rgba(255,255,255,0.36);
  box-shadow:
    0 10px 28px rgba(139, 13, 77, 0.28),
    0 0 0 1px rgba(255,255,255,0.28),
    0 0 18px rgba(255,255,255,0.22);
}

/* Sekundär (Outlined) */
.btn-f--secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}

.btn-f--secondary:hover {
  background: var(--primary-soft);
  box-shadow: none;
}

/* Submit-Button */
.btn-f--submit {
  background: linear-gradient(138deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 1.05rem;
  min-height: 60px;
  box-shadow: 0 12px 32px rgba(139, 13, 77, 0.30);
  margin-top: 0.25rem;
}

.btn-f--submit:hover {
  box-shadow: 0 18px 40px rgba(139, 13, 77, 0.38);
}

.btn-f--submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.f-submit-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   SCHRITT 5 – THANK YOU
════════════════════════════════════════════════════════════ */
.s5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 0 4rem;
  gap: 0;
}

.s5__mascot {
  width: clamp(140px, 30vw, 200px);
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 16px 32px rgba(94, 14, 56, 0.2));
}

.s5__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.s5__headline {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 7vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.s5__sub {
  margin: 0 0 2rem;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 48ch;
}

.s5__trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 440px;
}

.s5__trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--text);
  font-weight: 600;
  text-align: left;
}

.s5__trust-item svg {
  flex-shrink: 0;
  color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.ff {
  padding: 1.5rem 0;
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.ff__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ff__copy {
  font-size: 0.85rem;
  color: var(--muted);
}

.ff__nav {
  display: flex;
  gap: 1.25rem;
}

.ff__nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.18s;
}

.ff__nav a:hover { color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – Tablet & Mobile
════════════════════════════════════════════════════════════ */
@media (max-width: 520px) {
  .f-row {
    grid-template-columns: 1fr;
  }

  .f-date-row {
    grid-template-columns: 1fr;
  }

  .fc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .fc {
    min-height: 96px;
    padding: 1rem 0.7rem;
    gap: 0.5rem;
  }

  .fc__icon {
    width: 44px;
    height: 44px;
  }

  .fc__label {
    font-size: 0.88rem;
  }

  .fc--wide {
    min-height: 56px;
    padding: 0.9rem 1rem;
  }

  .fs__q {
    font-size: 1.5rem;
  }

  .ff__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 380px) {
  .fc-grid {
    grid-template-columns: 1fr;
  }

  .fc--wide {
    grid-column: 1;
  }
}

/* Body-Hintergrund für Form-Schritte */
#step2, #step3, #step4, #step5 {
  min-height: calc(100dvh - 64px - 52px);
  padding-bottom: 3rem;
  background:
    radial-gradient(circle at top right, rgba(173, 17, 96, 0.05), transparent 40%),
    var(--bg);
}
