/* ─────────────────────────────────────────────────────────────
   Onboarding-Funnel · FK-Jetzt Brand DNA
   Tokens kommen aus fkj-base.css (--color-gold, --color-teal,
   --bg, --text*, --r-*, --s-*, --t-*, --shadow-*).
   ───────────────────────────────────────────────────────────── */

/* ─── Calendly Inline-Embed (kein Doppel-Scroll) ─── */
/* Höhe groß genug damit Calendly nicht intern scrollt; JS justiert je nach Calendly-Phase. */

.calendly-inline-widget {
  min-width: 320px;
  width: 100%;
  height: 1100px;
  transition: height 0.25s ease;
}

@media (max-width: 768px) {
  .calendly-inline-widget {
    height: 1500px;
  }
}

/* ─── Layout-Grundgeruest ─── */

.onboarding-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  position: relative;
  overflow-x: hidden;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 100;
}

.progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-teal) 100%);
  transition: width var(--t-slow);
  box-shadow: 0 0 16px rgba(242, 205, 92, 0.6);
}

/* ─── Header ─── */

.onb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 10;
}

.onb-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.onb-header__logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.onb-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.onb-header__step {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.onb-header__step .gradient-text {
  font-weight: 700;
  font-size: 15px;
  margin: 0 2px;
}

/* ─── Main + Form-Container ─── */

.onb-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(24px, 5vw, 56px) clamp(16px, 4vw, 24px);
  position: relative;
  z-index: 1;
}

.onb-form {
  width: 100%;
  max-width: 720px;
}

/* ─── Step-Card (Glass §3.4 Pattern) ─── */

.step {
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: var(--s-6);
  animation: stepEnter 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes stepEnter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step--done {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  margin: 0 0 var(--s-3);
}

.step__headline {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
  color: var(--text-bright);
}

.step__sub {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 var(--s-7);
}

/* ─── Fields ─── */

.field {
  margin-bottom: var(--s-6);
}

.field-row {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}

.field-row .field {
  margin-bottom: 0;
  flex: 1 1 200px;
}

.field--narrow { flex: 0 1 140px; }
.field--grow   { flex: 2 1 280px; }

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: var(--s-2);
  letter-spacing: -0.005em;
}

.req {
  color: var(--color-gold);
  margin-left: 2px;
}

.opt {
  font-weight: 400;
  color: var(--text-dim);
  font-size: 12.5px;
  margin-left: 4px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field textarea {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.field textarea {
  height: auto;
  min-height: 90px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.5;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}

.field input:hover,
.field textarea:hover {
  border-color: var(--border-bright);
  background: rgba(255, 255, 255, 0.06);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px var(--color-teal-soft);
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: var(--warning);
  background: rgba(239, 120, 80, 0.05);
}

.field__hint {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.45;
}

.field__err {
  display: block;
  min-height: 0;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--warning);
  line-height: 1.4;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.field__err.is-visible {
  opacity: 1;
  min-height: 18px;
}

/* ─── Radio-Group (Pill-Style) ─── */

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-fast);
  user-select: none;
}

.radio:hover {
  border-color: var(--border-bright);
  background: rgba(255, 255, 255, 0.07);
}

.radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio__visual {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-bright);
  background: rgba(0, 0, 0, 0.15);
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.radio__visual::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.radio input:checked ~ .radio__visual {
  border-color: var(--color-teal);
}

.radio input:checked ~ .radio__visual::after {
  opacity: 1;
  transform: scale(1);
}

.radio:has(input:checked) {
  border-color: var(--color-teal);
  background: var(--color-teal-soft);
}

.radio__text {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-bright);
}

/* ─── Upload-Drop-Zone ─── */

.upload {
  position: relative;
}

.upload__zone {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1.5px dashed var(--border-bright);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t-fast);
}

.upload__zone:hover,
.upload__zone.is-drag {
  border-color: var(--color-gold);
  background: rgba(242, 205, 92, 0.05);
  transform: translateY(-1px);
}

.upload.has-file .upload__zone {
  border-style: solid;
  border-color: var(--color-teal);
  background: var(--color-teal-soft);
}

.upload__icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.upload.has-file .upload__icon {
  color: var(--color-teal);
}

.upload__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.upload__text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-bright);
}

.upload__text span {
  font-size: 12.5px;
  color: var(--text-dim);
}

.upload__status {
  margin-top: var(--s-3);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  gap: 10px;
}

.upload__status.is-error {
  border-color: rgba(239, 120, 80, 0.4);
  background: rgba(239, 120, 80, 0.08);
  color: var(--warning);
}

.upload__status .spinner {
  width: 14px;
  height: 14px;
  border: 2px solid var(--border-bright);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

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

.upload__remove {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: var(--r-xs);
  transition: color var(--t-fast), background var(--t-fast);
}

.upload__remove:hover {
  color: var(--warning);
  background: rgba(239, 120, 80, 0.1);
}

/* ─── Step-Nav (Buttons unten) ─── */

.step__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  color: #0B1D2A;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(242, 205, 92, 0.35),
    0 0 50px rgba(242, 205, 92, 0.18),
    0 0 80px rgba(111, 191, 177, 0.12);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 100% { left: -100%; }
  50%      { left: 150%; }
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 8px 28px rgba(242, 205, 92, 0.45),
    0 0 70px rgba(242, 205, 92, 0.28),
    0 0 100px rgba(111, 191, 177, 0.18);
}

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-teal);
  transform: translateY(-1px);
}

/* ─── Review-Liste (Step 7) ─── */

.review {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}

.review__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-4);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.review__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  width: 40%;
  min-width: 140px;
}

.review__value {
  font-size: 14.5px;
  color: var(--text-bright);
  word-break: break-word;
  flex: 1;
  text-align: right;
}

.review__value--empty {
  color: var(--text-faint);
  font-style: italic;
}

/* ─── Consent-Checkbox ─── */

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--s-6);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.consent:hover {
  border-color: var(--border-bright);
}

.consent input {
  position: absolute;
  opacity: 0;
}

.consent__visual {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-bright);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: all var(--t-fast);
}

.consent__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1D2A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.consent input:checked ~ .consent__visual {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  border-color: transparent;
}

.consent input:checked ~ .consent__visual::after {
  opacity: 1;
  transform: scale(1);
}

.consent__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

.consent__text a {
  color: var(--color-teal);
  text-decoration: underline;
  text-decoration-color: var(--color-teal-border);
  text-underline-offset: 2px;
}

.consent__text a:hover { color: var(--color-teal-light); }

/* ─── Done-Step ─── */

.done-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--s-4);
}

.step--done .btn-secondary {
  margin-top: var(--s-5);
}

/* ─── Submit-Status ─── */

.submit__status {
  margin: var(--s-4) 0 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  min-height: 18px;
}

.submit__status.is-error {
  color: var(--warning);
}

/* ─── Footer ─── */

.onb-footer {
  margin-top: auto;
  padding: 24px clamp(20px, 4vw, 48px) 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.onb-footer__links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.onb-footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}

.onb-footer__links a:hover { color: var(--color-teal); }

.onb-footer__brand {
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

/* ─── Ambient Blobs ─── */

.blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  animation: blobFloat 22s ease-in-out infinite alternate;
}

.blob--gold {
  width: 58vmin; height: 58vmin;
  top: -10vmin; right: -14vmin;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 65%);
  opacity: 0.18;
}

.blob--petrol {
  width: 78vmin; height: 78vmin;
  top: 30vh; left: -22vmin;
  background: radial-gradient(circle, var(--color-petrol) 0%, transparent 68%);
  opacity: 0.4;
}

.blob--teal {
  width: 60vmin; height: 60vmin;
  bottom: -14vmin; right: 12vmin;
  background: radial-gradient(circle, var(--color-teal) 0%, transparent 65%);
  opacity: 0.18;
}

@keyframes blobFloat {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(3%, -4%, 0) scale(1.04); }
  100% { transform: translate3d(-3%, 3%, 0) scale(0.98); }
}

/* ─── Gradient-Text ─── */

.gradient-text {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─── Glass-Card Override (mit Backdrop-Blur) ─── */

.glass-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

/* ─── Mobile-Anpassungen ─── */

@media (max-width: 640px) {
  .onb-header {
    padding: 16px 20px;
  }

  .onb-header__step {
    font-size: 12px;
  }

  .logo-sub {
    display: none;
  }

  .step {
    padding: 24px 20px;
    border-radius: var(--r-md);
  }

  .step__headline {
    font-size: 26px;
  }

  .step__nav {
    flex-direction: column-reverse;
    gap: var(--s-3);
  }

  .step__nav .btn-primary,
  .step__nav .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .field-row {
    flex-direction: column;
    gap: 0;
  }

  .field-row .field {
    margin-bottom: var(--s-6);
  }

  .field-row .field:last-child {
    margin-bottom: 0;
  }

  .review__item {
    flex-direction: column;
    gap: 4px;
  }

  .review__label {
    width: auto;
  }

  .review__value {
    text-align: left;
  }
}

/* ─── Reduced Motion ─── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ────────────────────────────────────────────────────────────────
   NEU 2026-05-21 — Vollstaendiger Funnel-Klon Komponenten
   ──────────────────────────────────────────────────────────────── */

/* Banner (success / warning oben in Step) */
.banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  font-size: 14.5px;
  line-height: 1.5;
}
.banner__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.banner--success {
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  color: var(--text-bright);
}
.banner--success .banner__icon {
  background: var(--color-teal);
  color: #0B1D2A;
}
.banner--warning {
  background: rgba(242, 205, 92, 0.10);
  border: 1px solid var(--color-gold-border);
  color: var(--text-bright);
}
.banner--warning .banner__icon {
  background: var(--color-gold);
  color: #0B1D2A;
}

/* Big-Choice (Ja/Nein, Doppel-Button) */
.big-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin: var(--s-3) 0 var(--s-5);
}
.big-choice__btn {
  position: relative;
  cursor: pointer;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-bright);
  border-radius: var(--r-md);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-bright);
  transition: all var(--t-fast);
  user-select: none;
}
.big-choice__btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--color-teal);
  transform: translateY(-1px);
}
.big-choice__btn input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.big-choice__btn:has(input:checked) {
  background: var(--color-teal-soft);
  border-color: var(--color-teal);
  color: var(--text-bright);
  box-shadow: 0 0 0 3px var(--color-teal-soft);
}

/* Quick-Select (Umkreis-Buttons) */
.quick-select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  margin: var(--s-3) 0 var(--s-5);
}
.quick-select__btn {
  position: relative;
  cursor: pointer;
  padding: 16px 20px;
  background: var(--color-teal);
  color: #0B1D2A;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-md);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  transition: all var(--t-fast);
  user-select: none;
}
.quick-select__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}
.quick-select__btn input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.quick-select__btn:has(input:checked) {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  box-shadow: 0 6px 20px rgba(242, 205, 92, 0.35);
  transform: translateY(-1px);
}
@media (min-width: 480px) {
  .quick-select { grid-template-columns: repeat(4, 1fr); }
}

/* Code-Block (E-Mail-Vorlage) */
.code-block {
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 22px 20px 22px;
  margin: var(--s-4) 0 var(--s-6);
}
.code-block pre {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-bright);
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
}
.code-block__copy {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(111, 191, 177, 0.15);
  border: 1px solid var(--color-teal-border);
  color: var(--color-teal-light);
  border-radius: var(--r-xs);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
}
.code-block__copy:hover {
  background: var(--color-teal-soft);
  color: var(--text-bright);
}
.code-block__copy.is-copied {
  background: var(--color-teal);
  color: #0B1D2A;
}

/* Steps-List (nummerierte 1-2-3 Liste) */
.steps-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-bright);
}
.steps-list__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  color: #0B1D2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.steps-list a {
  color: var(--color-teal);
  text-decoration: underline;
}
.steps-list code {
  background: rgba(111, 191, 177, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  color: var(--color-teal-light);
}

/* Info-Box */
.info-box {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: var(--s-4) 0;
}
.info-box--success {
  border-left-color: var(--color-teal);
  background: var(--color-teal-soft);
  color: var(--text-bright);
}
.info-box--warning {
  border-left-color: var(--color-gold);
  background: rgba(242, 205, 92, 0.06);
  color: var(--text-bright);
}
.info-box a { color: var(--color-teal); text-decoration: underline; }

/* How-To Box */
.how-to {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin: var(--s-3) 0 var(--s-5);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.how-to__title {
  font-weight: 700;
  color: var(--text-bright);
  margin: 0 0 6px;
}
.how-to p { margin: 0; }
.how-to em {
  background: rgba(111, 191, 177, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
  font-style: normal;
  font-weight: 600;
  color: var(--color-teal-light);
}

/* Example-Box (Foto-Beispiel) */
.example-box {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin: var(--s-4) 0;
}
.example-box__text {
  font-size: 13.5px;
  color: var(--text-bright);
  margin: 0;
}
.example-box__img {
  width: 100%;
  max-width: 280px;
  border-radius: var(--r-sm);
  align-self: center;
  display: block;
}

/* Material-Liste (Fotos selbst) */
.material-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.material-list li {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--r-sm);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}
.material-list strong {
  color: var(--text-bright);
  display: block;
  margin-bottom: 2px;
}

/* Sub-Headline */
.sub-headline {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin: var(--s-6) 0 var(--s-3);
}

/* Step-Nav Variants */
.step__nav--single { justify-content: center; padding-top: var(--s-3); border-top: none; }
.step__nav--centered { justify-content: center; }
.step__nav-group { display: flex; gap: var(--s-3); align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.btn-ghost {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--r-xs);
  transition: color var(--t-fast);
}
.btn-ghost:hover { color: var(--text-bright); }

/* Primary CTA — Large + Sub */
.btn-primary--lg {
  padding: 18px 32px;
  font-size: 17px;
  flex-direction: column;
  gap: 4px;
}
.btn-primary--gold {
  padding: 14px 28px;
}
.btn-sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.75;
}

/* Step-Hint */
.step__hint {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.55;
  text-align: center;
  margin: var(--s-3) 0 0;
}
.step__hint a { color: var(--color-teal); text-decoration: underline; }

/* AV-Download Button */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(242, 205, 92, 0.12);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold);
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
  transition: all var(--t-fast);
}
.btn-download:hover {
  background: rgba(242, 205, 92, 0.18);
  transform: translateY(-1px);
}

/* Section-Label gold variant */
.section-label--gold {
  color: var(--color-gold);
  background: rgba(242, 205, 92, 0.10);
  border-color: var(--color-gold-border);
}

/* Contact-Card (Laura/Niklaas) */
.contact-card {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin: var(--s-5) 0;
}
.contact-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-teal-border);
}
.contact-card__info { font-size: 13.5px; }
.contact-card__name {
  font-weight: 700;
  color: var(--text-bright);
  font-size: 15.5px;
  margin-bottom: 4px;
}
.contact-card__row { color: var(--text-muted); margin: 2px 0; }
.contact-card__row a { color: var(--color-teal); text-decoration: none; }
.contact-card__row a:hover { text-decoration: underline; }

/* Checklist + Agenda */
.checklist-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-bright);
  margin: var(--s-7) 0 var(--s-4);
  text-align: center;
}
.checklist {
  list-style: none;
  counter-reset: c;
  padding: 0;
  margin: 0 0 var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.checklist li {
  counter-increment: c;
  position: relative;
  padding: 14px 16px 14px 56px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--r-sm);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}
.checklist li::before {
  content: counter(c);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #0B1D2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.checklist strong { color: var(--text-bright); }

.agenda {
  list-style: none;
  counter-reset: a;
  padding: 0;
  margin: 0 0 var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.agenda > li {
  counter-increment: a;
  position: relative;
  padding: 16px 18px 16px 56px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.agenda > li::before {
  content: counter(a);
  position: absolute;
  left: 14px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  color: #0B1D2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.agenda > li > strong { color: var(--text-bright); font-size: 15px; }
.agenda ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.agenda ul li {
  padding: 4px 0 4px 18px;
  position: relative;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.agenda ul li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--color-teal);
}

/* Partner-Card (Mission Benefits) */
.partner-card {
  margin: var(--s-9) 0 var(--s-6);
  padding: 28px;
  background: linear-gradient(180deg, rgba(242, 205, 92, 0.04) 0%, rgba(111, 191, 177, 0.04) 100%);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--r-lg);
  text-align: center;
}
.partner-card .section-label { display: inline-block; }
.partner-card__headline {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-bright);
  margin: var(--s-3) 0 var(--s-3);
}
.partner-card > p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0 0 var(--s-5);
}
.partner-card__photo {
  max-width: 280px;
  width: 100%;
  border-radius: var(--r-md);
  margin: var(--s-4) auto;
  display: block;
}
.partner-card__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: var(--s-3) 0 var(--s-5);
}
.partner-card__brand strong {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--text-bright);
}
.partner-card__brand span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 var(--s-6);
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.benefits-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 13.5px;
  color: var(--text-bright);
  line-height: 1.45;
}
.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-teal);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1D2A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Step-Counter mobile-fix */
@media (max-width: 640px) {
  .big-choice { grid-template-columns: 1fr; }
  .partner-card { padding: 20px 16px; }
  .partner-card__headline { font-size: 18px; }
  .checklist-title { font-size: 18px; }
}
