/* =============================================================
   SEILER ASSISTENZ – Kunden-Funnel
   Design: Warme Sans-Serif Basis wie Bewerber-Funnel,
           angepasst für Senioren-Zielgruppe und pflegenden Kontext
           (Sie-Form, ruhige Animationen, WCAG-AAA, 64px Touch-Targets)
   ============================================================= */

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

:root {
  /* Brand */
  --sa-orange:        #E8751A;  /* Hauptfarbe (große Flächen / Buttons) */
  --sa-orange-dark:   #B84E0A;  /* WCAG AAA auf weiß, für Buttons im aktiven/Hover-State */
  --sa-orange-text:   #9E4308;  /* WCAG AAA für Text auf hellem Hintergrund */
  --sa-orange-light:  #FFF3EB;
  --sa-orange-glow:   rgba(232, 117, 26, 0.15);
  --sa-orange-subtle: rgba(232, 117, 26, 0.08);

  /* Neutrals — warmer Beige-Ton statt kalt-weiß */
  --white:            #FFFEFB;        /* Cremiges Weiß für Karten */
  --off-white:        #FAF4E8;        /* Sand/Beige-Hintergrund — wärmer als zuvor */
  --surface:          #F4ECDC;        /* Akzent-Surface noch wärmer */
  --border:           #E5DBCC;        /* Warme Border statt grau */
  --warm-glow:        rgba(232, 117, 26, 0.06);  /* Sanfte orange Aura */
  --text-primary:     #1A1A1A;
  --text-secondary:   #424242;  /* AAA auf off-white */
  --text-tertiary:    #616161;
  --text-inverse:     #FFFFFF;

  /* Semantic */
  --success:          #15803D;
  --success-bg:       #F0FDF4;
  --error:            #B91C1C;
  --error-bg:         #FEF2F2;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Touch / Sizing: Senioren-tauglich */
  --touch:            64px;

  /* Spacing */
  --gap-xs: 4px;
  --gap-sm: 8px;
  --gap-md: 16px;
  --gap-lg: 24px;
  --gap-xl: 32px;
  --gap-2xl: 48px;
  --gap-3xl: 64px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  /* Warmer Sand-Hintergrund mit sanfter Aura oben/unten — wirkt menschlich, nicht steril */
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 117, 26, 0.10), transparent 65%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(232, 117, 26, 0.06), transparent 60%),
    var(--off-white);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.65;
  /* Senioren-tauglich: mindestens 17px */
  font-size: clamp(17px, 1.2vw + 14px, 19px);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* === FOCUS === */
:focus-visible {
  outline: 3px solid var(--sa-orange);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gap-md);
  padding: 12px 16px;
  background: var(--text-primary);
  color: var(--text-inverse);
  border-radius: var(--radius-md);
  text-decoration: none;
  z-index: 999;
}
.skip-link:focus { top: var(--gap-md); }

/* === PROGRESS BAR (oben fixiert, Fortschritt durch den Funnel) === */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--border);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.progress--visible { opacity: 1; }
.progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sa-orange), var(--sa-orange-dark));
  border-radius: 0 2px 2px 0;
  width: 0;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === LOGO MARK (oben links) === */
.logo-mark {
  position: fixed;
  top: 16px;
  left: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark__img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.logo-mark__text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: none;
}
@media (min-width: 768px) {
  .logo-mark__img { height: 48px; }
  .logo-mark__text { display: block; }
}

/* === FUNNEL CONTAINER === */
.funnel {
  width: 100%;
  max-width: 640px;
  min-height: 100dvh;
  padding: 96px 20px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* === STEP-MASCHINE === */
.step {
  display: none;
  width: 100%;
  animation: stepIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.step--active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes stepOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-14px); }
}

.step__content { width: 100%; }
.step__content--center { text-align: center; }

/* === HERO (Step 0) === */
.step__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #FFE8D2, #FFF3EB);
  color: var(--sa-orange-text);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--gap-lg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(232, 117, 26, 0.18), inset 0 0 0 1px rgba(232, 117, 26, 0.12);
}
.step__badge svg { width: 14px; height: 14px; }

.hero__title {
  font-size: clamp(1.9rem, 4.5vw + 0.5rem, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--gap-md);
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.hero__title .accent { color: var(--sa-orange); }

.hero__sub {
  font-size: clamp(1rem, 1vw + 0.8rem, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--gap-xl);
  max-width: 520px;
}

/* Hero Benefits (2-col grid) */
.hero-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
  margin-top: var(--gap-lg);
  margin-bottom: var(--gap-xl);
}
.hero-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);   /* sanfter, weicher als md */
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(184, 78, 10, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hero-benefit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 78, 10, 0.10);
}
.hero-benefit__icon {
  width: 22px;
  height: 22px;
  color: var(--sa-orange);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .hero-benefits { grid-template-columns: 1fr; }
}

/* === PRIMARY BUTTON (CTA groß) === */
.btn-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--touch);
  padding: 18px 36px;
  background: linear-gradient(135deg, #F08838, var(--sa-orange) 50%, var(--sa-orange-dark));
  color: var(--text-inverse);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px rgba(232, 117, 26, 0.38), 0 2px 8px rgba(184, 78, 10, 0.20);
}
.btn-start svg { width: 20px; height: 20px; }
.btn-start:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232, 117, 26, 0.45), 0 3px 12px rgba(184, 78, 10, 0.25); }
.btn-start:active { transform: translateY(0); }

/* Micro-Trust unter Hero-CTA */
.step__micro {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
  margin-top: var(--gap-md);
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-tertiary);
}
.step__micro span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.step__micro svg { width: 14px; height: 14px; }
@media (max-width: 480px) {
  .step__micro { flex-direction: column; gap: var(--gap-xs); }
}

/* === FRAGE-STEPS === */
.step__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sa-orange-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--gap-sm);
}

.step__title {
  font-size: clamp(1.35rem, 2.2vw + 0.7rem, 1.7rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--gap-sm);
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.step__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--gap-lg);
}

.step__hint {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: var(--gap-xl);
  line-height: 1.55;
}

/* === OPTIONEN (Single/Multi-Select) === */
.options {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.option {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  min-height: var(--touch);
  padding: 18px 56px 18px 20px;  /* rechts Platz für Check-Circle */
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: left;
  width: 100%;
  position: relative;
}

.option:hover {
  border-color: var(--sa-orange);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(232, 117, 26, 0.18);
}

.option--selected {
  border-color: var(--sa-orange);
  background: var(--sa-orange-light);
  box-shadow: 0 0 0 1px var(--sa-orange);
}

/* Check-Indikator für Single-Select */
.option::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: all 0.18s ease;
}

.option--selected::after {
  border-color: var(--sa-orange);
  background: var(--sa-orange);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

/* Multi-Select: Checkbox-Optik statt Kreis */
.options--multi .option::after {
  border-radius: 6px;
  width: 24px;
  height: 24px;
}

.option__icon {
  width: 26px;
  height: 26px;
  color: var(--sa-orange);
  flex-shrink: 0;
}

.option__body {
  flex: 1;
  min-width: 0;
}

.option__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  line-height: 1.35;
}

.option__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 3px;
  display: block;
  line-height: 1.5;
}

/* Info-Icon innerhalb einer Option (Pflegegrad-Tooltips) */
.option__info {
  position: absolute;
  right: 54px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  cursor: help;
  transition: background 0.15s ease, color 0.15s ease;
}
.option__info svg { width: 18px; height: 18px; }
.option__info:hover { background: var(--white); color: var(--sa-orange-text); }
.option__info:focus-visible { outline: 2px solid var(--sa-orange); outline-offset: 2px; background: var(--white); color: var(--sa-orange-text); }

.option__hint {
  display: none;
  margin-top: var(--gap-sm);
  padding: 14px 16px;
  background: var(--sa-orange-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-primary);
}
.option__hint--visible { display: block; }

/* === Pflegegrad-Tooltip-Panel === */
.pflegegrad-tooltip {
  position: relative;
  margin-top: var(--gap-md);
  padding: 18px 44px 18px 20px;
  background: var(--sa-orange-light);
  border: 1px solid rgba(232, 117, 26, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(184, 78, 10, 0.08);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.pflegegrad-tooltip--visible {
  opacity: 1;
  transform: translateY(0);
}
.pflegegrad-tooltip__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sa-orange-text);
  margin-bottom: 6px;
  line-height: 1.35;
}
.pflegegrad-tooltip__text {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
}
.pflegegrad-tooltip__disclaimer {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.pflegegrad-tooltip__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.pflegegrad-tooltip__close svg { width: 18px; height: 18px; }
.pflegegrad-tooltip__close:hover { background: rgba(0,0,0,0.05); color: var(--text-primary); }
.pflegegrad-tooltip__close:focus-visible { outline: 2px solid var(--sa-orange); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .pflegegrad-tooltip { transition: none; }
}

/* Gruppenüberschrift für zusammengesetzte Fragen (z.B. Q5 Bedarf + Wohnen) */
.step__group-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: var(--gap-xl) 0 var(--gap-sm);
}

/* === CHIPS (availability, special_topics) === */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
}
.chip {
  min-height: 48px;
  padding: 10px 18px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.18s ease;
}
.chip:hover {
  border-color: var(--sa-orange);
  color: var(--sa-orange-text);
}
.chip--selected {
  border-color: var(--sa-orange);
  background: var(--sa-orange-light);
  color: var(--sa-orange-text);
}

/* === FREITEXT-INPUT NACH "ANDERE" === */
.inline-input {
  margin-top: var(--gap-sm);
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}
.inline-input:focus { border-color: var(--sa-orange); box-shadow: 0 0 0 3px var(--sa-orange-glow); }

/* === NAV-BUTTONS (Weiter / Zurück) === */
.btn-row {
  display: flex;
  gap: var(--gap-sm);
  margin-top: var(--gap-lg);
  flex-wrap: wrap;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: var(--touch);
  padding: 14px 22px;
  background: var(--white);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn-ghost:hover { border-color: var(--text-secondary); color: var(--text-primary); }
.btn-ghost svg { width: 18px; height: 18px; }

.btn-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--touch);
  padding: 16px 28px;
  background: var(--sa-orange);
  color: var(--text-inverse);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
  flex: 1;
  opacity: 0.45;
  pointer-events: none;
}
.btn-continue--active { opacity: 1; pointer-events: auto; }
.btn-continue:hover { background: var(--sa-orange-dark); transform: translateY(-1px); }
.btn-continue svg { width: 18px; height: 18px; }

/* === RESULT (Zwischenstopp vor Kontakt) === */
.step--result { text-align: center; }
.result-check {
  width: 82px;
  height: 82px;
  margin: 0 auto var(--gap-lg);
  position: relative;
}
.result-check svg { width: 100%; height: 100%; }
.result-check__circle {
  stroke: var(--sa-orange);
  stroke-width: 2.5;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  fill: none;
  animation: checkCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.15s forwards;
}
.result-check__path {
  stroke: var(--sa-orange);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  fill: none;
  animation: checkPath 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.7s forwards;
}
@keyframes checkCircle { to { stroke-dashoffset: 0; } }
@keyframes checkPath   { to { stroke-dashoffset: 0; } }

.result__title {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: var(--gap-md);
  letter-spacing: -0.02em;
}
.result__sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto var(--gap-xl);
}

.result-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-xl);
  text-align: left;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.result-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-10px);
  animation: benefitSlide 0.4s ease forwards;
}
.result-benefit:nth-child(1) { animation-delay: 0.9s; }
.result-benefit:nth-child(2) { animation-delay: 1.05s; }
.result-benefit:nth-child(3) { animation-delay: 1.2s; }
.result-benefit:nth-child(4) { animation-delay: 1.35s; }
.result-benefit__icon {
  width: 22px; height: 22px;
  color: var(--sa-orange);
  flex-shrink: 0;
}
@keyframes benefitSlide {
  to { opacity: 1; transform: translateX(0); }
}

/* === CONTACT FORM === */
.contact-form {
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.form-field { margin-bottom: var(--gap-md); }
.form-field > label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-field > label .req { color: var(--sa-orange-text); font-weight: 700; margin-left: 2px; }

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  min-height: 56px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 1rem;
  color: var(--text-primary);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--sa-orange);
  box-shadow: 0 0 0 3px var(--sa-orange-glow);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-tertiary); }

.form-field input.error,
.form-field textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}
.field-error {
  display: block;
  font-size: 0.85rem;
  color: var(--error);
  margin-top: 6px;
  min-height: 18px;
}
.field-hint {
  display: block;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 6px;
}

/* Consent-Checkbox */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin: var(--gap-md) 0 var(--gap-lg);
  cursor: pointer;
  line-height: 1.55;
}
.consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--sa-orange);
  cursor: pointer;
}
.consent__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.consent__text a { color: var(--sa-orange-text); text-decoration: underline; }
.consent--error { border-color: var(--error); background: var(--error-bg); }

/* Submit-Button */
.btn-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--touch);
  padding: 18px 24px;
  margin-top: var(--gap-sm);
  background: linear-gradient(135deg, #F08838, var(--sa-orange) 50%, var(--sa-orange-dark));
  color: var(--text-inverse);
  border: none;
  border-radius: var(--radius-lg);   /* etwas weicher */
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
  box-shadow: 0 6px 24px rgba(232, 117, 26, 0.36), 0 2px 8px rgba(184, 78, 10, 0.22);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232, 117, 26, 0.4); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn-submit__text {
  font-size: 1.08rem;
  font-weight: 700;
}
.btn-submit__sub {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 4px;
}
.btn-submit .spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit--loading .spinner { display: block; }
.btn-submit--loading .btn-submit__text,
.btn-submit--loading .btn-submit__sub { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
  margin-top: var(--gap-md);
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}
.form-trust span { display: inline-flex; align-items: center; gap: 4px; }
.form-trust svg { width: 14px; height: 14px; }

/* === THANK-YOU === */
.step--thank { text-align: center; }
.success-burst {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto var(--gap-xl);
}
.success-burst__ring {
  position: absolute;
  inset: -12px;
  border: 2px solid var(--sa-orange);
  border-radius: 50%;
  opacity: 0;
  animation: burstRing 1.2s cubic-bezier(0, 0.5, 0.5, 1) 0.3s forwards;
}
.success-burst__ring--2 { inset: -24px; animation-delay: 0.5s; border-color: var(--sa-orange-light); }
.success-burst__core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sa-orange-light);
  border-radius: 50%;
  color: var(--sa-orange-dark);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}
.success-burst__core svg { width: 44px; height: 44px; }
@keyframes burstRing { 0% { transform: scale(0.5); opacity: 0.8; } 100% { transform: scale(1.3); opacity: 0; } }
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.thank__title {
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--gap-md);
}
.thank__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--gap-xl);
  line-height: 1.6;
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  margin: 0 auto var(--gap-xl);
  max-width: 420px;
  text-align: left;
}
.next-step {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.next-step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sa-orange-light);
  color: var(--sa-orange-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.cta-phone {
  display: block;
  margin: 0 auto;
  padding: 18px 24px;
  background: var(--white);
  border: 2px solid var(--sa-orange-light);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 420px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cta-phone:hover { border-color: var(--sa-orange); transform: translateY(-1px); }
.cta-phone__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.cta-phone__number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sa-orange-text);
}
.cta-phone__number svg { width: 22px; height: 22px; }

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--gap-md);
  padding: 10px 18px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  text-decoration: none;
}
.cta-whatsapp svg { width: 18px; height: 18px; color: #25D366; }
.cta-whatsapp:hover { color: var(--text-primary); }
.cta-whatsapp__label { font-size: 0.85rem; color: var(--text-tertiary); }

/* === FOOTER === */
.footer-mark {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 20px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-tertiary);
  background: linear-gradient(transparent, var(--off-white) 50%);
  z-index: 10;
}
.footer-mark a { color: var(--text-tertiary); text-decoration: none; }
.footer-mark a:hover { color: var(--sa-orange-text); text-decoration: underline; }
.footer-sep { margin: 0 8px; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  z-index: 200;
  display: none;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}
.cookie-banner--visible { display: flex; }
.cookie-banner__content {
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}
.cookie-banner__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.cookie-banner__text a { color: var(--sa-orange-text); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}
.cookie-btn {
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  flex: 1;
  min-width: 140px;
}
.cookie-btn--accept { background: var(--sa-orange); color: white; }
.cookie-btn--accept:hover { background: var(--sa-orange-dark); }
.cookie-btn--reject { background: var(--surface); color: var(--text-secondary); border: 1px solid var(--border); }
.cookie-btn--reject:hover { border-color: var(--text-tertiary); color: var(--text-primary); }

/* === RESPONSIVE === */
@media (max-width: 480px) {
  .funnel { padding: 80px 16px 110px; }
  .btn-start { width: 100%; }
  .option { padding: 16px 52px 16px 18px; }
  .option__icon { width: 24px; height: 24px; }
  .cookie-banner__actions { flex-direction: column; }
}

/* === MOTION REDUCTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === HERO VIDEO TRIGGER (Poster + Play-Overlay) === */
.video-trigger {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto var(--gap-xl);
  aspect-ratio: 16 / 9;
  border: 4px solid var(--white);
  border-radius: var(--radius-xl);   /* generöser Rundung = sanfter Eindruck */
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  /* Warmer Schatten (orange-Tint) statt kühl-grauem Drop-Shadow */
  box-shadow: 0 12px 36px rgba(184, 78, 10, 0.18), 0 2px 8px rgba(184, 78, 10, 0.08);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.video-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(184, 78, 10, 0.25), 0 4px 12px rgba(184, 78, 10, 0.12);
}
.video-trigger:hover .video-trigger__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--sa-orange);
}

.video-trigger__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-trigger__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(232, 117, 26, 0.95);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.2s ease;
}
.video-trigger__play svg {
  width: 36px;
  height: 36px;
  margin-left: 4px; /* visual centering of play triangle */
}

.video-trigger__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  border-radius: var(--radius-sm);
  text-align: left;
  backdrop-filter: blur(4px);
}
.video-trigger__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}
.video-trigger__sub {
  display: block;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 2px;
}

@media (max-width: 480px) {
  .video-trigger { margin-bottom: var(--gap-lg); }
  .video-trigger__play { width: 64px; height: 64px; }
  .video-trigger__play svg { width: 30px; height: 30px; }
}

/* === VIDEO MODAL === */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap-md);
  animation: fadeIn 0.2s ease;
}
.video-modal[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.video-modal__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: black;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-modal__video {
  width: 100%;
  height: 100%;
  display: block;
  background: black;
}

.video-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: background 0.18s ease, transform 0.18s ease;
}
.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}
.video-modal__close svg { width: 22px; height: 22px; }

@media (max-width: 640px) {
  .video-modal { padding: 0; }
  .video-modal__inner { border-radius: 0; max-height: 100dvh; }
  .video-modal__close { top: 12px; right: 12px; width: 44px; height: 44px; }
}

/* Body-Scroll-Lock wenn Modal offen */
body.video-modal--open {
  overflow: hidden;
}
