/* ============================================================
   Cookie-Consent-Banner — Welle 11.37.0-cookie
   ============================================================
   - Bottom-fixed, glass-look, brand-konsistent (#0c1320 + amber)
   - Sichtbar NUR fuer EEA + UK + CH (Detection in cookie-consent.js)
   - 3 gleichgewichtige Buttons (DSGVO/BGH 2020)
   - Mobile-Bottom-Nav-aware via CSS-Var
   - z-index 2147483600 (unter Section-Indicator 646, ueber alles andere)
   ============================================================ */

.gos-consent {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(var(--m-bottom-nav-h, 0px) + 12px);
  max-width: 720px;
  margin: 0 auto;
  z-index: 2147483600;
  background: rgba(12, 19, 32, 0.94);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 14px;
  padding: 18px 20px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #e8edf4;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .28s ease, transform .28s cubic-bezier(.4, 0, .2, 1);
}
.gos-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gos-consent-title {
  font-size: 15px;
  font-weight: 600;
  color: #f5f9ff;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gos-consent-title::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
}

.gos-consent-text {
  margin: 0 0 14px;
  color: #c8d3e0;
  font-size: 13.5px;
}
.gos-consent-text a {
  color: #f59e0b;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gos-consent-text a:hover { color: #fbbf24; }

.gos-consent-btns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.gos-consent-btn {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #e8edf4;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  text-align: center;
}
.gos-consent-btn:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.5);
}

.gos-consent-btn.is-primary {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #0c1320;
  font-weight: 600;
}
.gos-consent-btn.is-primary:hover {
  background: #fbbf24;
  border-color: #fbbf24;
}

/* Mobile: Buttons untereinander wenn knapp */
@media (max-width: 480px) {
  .gos-consent {
    left: 8px;
    right: 8px;
    padding: 14px 16px 14px;
    bottom: calc(var(--m-bottom-nav-h, 0px) + 8px);
  }
  .gos-consent-btns {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .gos-consent-btn { padding: 11px 14px; }
}

/* ============================================================
   Modal "Auswahl" — granulare Cookie-Kategorien
   ============================================================ */

.gos-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483601;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.gos-consent-modal.is-visible {
  display: flex;
  animation: gosFadeIn .2s ease;
}
@keyframes gosFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.gos-consent-modal-card {
  background: #151f30;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 22px 22px 18px;
  color: #e8edf4;
  font-family: 'Inter', system-ui, sans-serif;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}
.gos-consent-modal-h {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.gos-consent-modal-lead {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: #c8d3e0;
}

.gos-consent-cat {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: space-between;
}
.gos-consent-cat-info { flex: 1; }
.gos-consent-cat-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
}
.gos-consent-cat-desc {
  font-size: 12.5px;
  color: #9bafc7;
  margin: 0;
  line-height: 1.45;
}

/* Toggle-Switch */
.gos-consent-toggle {
  --w: 42px;
  --h: 24px;
  width: var(--w);
  height: var(--h);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s ease;
}
.gos-consent-toggle::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px; left: 3px;
  transition: left .18s cubic-bezier(.4,0,.2,1);
}
.gos-consent-toggle.is-on {
  background: #f59e0b;
}
.gos-consent-toggle.is-on::after {
  left: 21px;
  background: #0c1320;
}
.gos-consent-toggle.is-locked {
  background: rgba(245, 158, 11, 0.4);
  cursor: not-allowed;
  opacity: 0.7;
}
.gos-consent-toggle.is-locked::after { left: 21px; background: #fff; }

.gos-consent-modal-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

/* Re-Open-Link in Footer (Datenschutz-Seite) */
.gos-consent-reopen {
  background: none;
  border: none;
  color: #f59e0b;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

/* ============================================================
   R3 — Affiliate-Disclosure-Reorder (Welle 11.38.0-r-rest)
   ============================================================
   FTC-Guideline + DE-UWG: Disclosure muss "close to the link"
   und idealerweise davor erscheinen. Default-CSS hatte .aff-note
   nach product-box-grid → wir flexibilisieren product-box und
   reordern: head → disclosure → grid.
   ============================================================ */

.product-box {
  display: flex;
  flex-direction: column;
}
.product-box-head { order: 0; }
.product-box .aff-note {
  order: 1;
  margin: 0 0 14px;
  padding: 9px 13px;
  background: rgba(245, 158, 11, 0.06);
  border-left: 3px solid #f59e0b;
  border-radius: 6px;
  font-style: normal;
  font-size: 0.83rem;
  color: rgba(232, 237, 244, 0.88);
  line-height: 1.45;
}
.product-box-grid { order: 2; }

/* ============================================================
   Welle 11.39.0-journey-page — Wizard-Endseite mit Progress-Checkliste
   ============================================================
   - Endowed-Progress-Effekt (Nunes/Drèze): sichtbarer Fortschritt
   - 5 Action-Cards (1 Adaptive-Primary + 4 in 2x2 Grid)
   - Goal-Gradient + Cialdini Commitment-Consistency
   ============================================================ */

.wz-btn-finish {
  display: block;
  width: 100%;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #0c1320;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.01em;
  margin-top: 16px;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wz-btn-finish:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
}

.wz-jrn {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 18px 28px;
  color: #e8edf4;
  font-family: 'Inter', system-ui, sans-serif;
}
.wz-jrn-back {
  background: transparent;
  border: none;
  color: rgba(232, 237, 244, 0.7);
  cursor: pointer;
  font-size: 13.5px;
  padding: 6px 4px;
  margin: 0 0 14px;
  font-family: inherit;
}
.wz-jrn-back:hover { color: #f59e0b; }

.wz-jrn-headline {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
  color: #f5f9ff;
}
.wz-jrn-lead {
  font-size: 13.5px;
  color: rgba(232, 237, 244, 0.7);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wz-jrn-checklist {
  list-style: none;
  padding: 14px 16px;
  margin: 0 0 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.wz-jrn-chk-item {
  font-size: 14px;
  padding: 5px 0;
  color: rgba(232, 237, 244, 0.65);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wz-jrn-chk-item.is-done {
  color: #e8edf4;
}
.wz-jrn-chk-on {
  color: #10b981;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  width: 20px;
}
.wz-jrn-chk-off {
  color: rgba(255, 255, 255, 0.25);
  font-size: 16px;
  display: inline-block;
  width: 20px;
}

.wz-jrn-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wz-jrn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .wz-jrn-grid { grid-template-columns: 1fr; }
}

.wz-jrn-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(21, 31, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: all 0.2s ease;
  position: relative;
  width: 100%;
}
.wz-jrn-card:hover:not(.is-done) {
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.06);
  transform: translateY(-2px);
}
/* Welle 11.39.13 B2: Primary-Card visuell deutlich prominenter (Hick's Law).
   Audit fordert "1 Haupt-Action visuell hervorheben". Größeres Padding, stärkerer
   Glow, größerer Title via .wz-jrn-card.is-primary .wz-jrn-card-title. */
.wz-jrn-card.is-primary {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22), rgba(249, 115, 22, 0.12));
  border: 2px solid rgba(245, 158, 11, 0.55);
  padding: 22px 26px;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.18),
              0 0 0 1px rgba(245, 158, 11, 0.10) inset,
              0 0 36px rgba(245, 158, 11, 0.10);
  margin-bottom: 4px;
}
.wz-jrn-card.is-primary:hover {
  border-color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.30), rgba(249, 115, 22, 0.16));
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.28),
              0 0 0 1px rgba(245, 158, 11, 0.18) inset,
              0 0 48px rgba(245, 158, 11, 0.16);
  transform: translateY(-3px);
}
.wz-jrn-card.is-primary .wz-jrn-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fef3c7;
}
.wz-jrn-card.is-primary .wz-jrn-card-sub {
  color: rgba(254, 243, 199, 0.78);
  font-size: 13.5px;
}
/* Welle 11.39.13 B2: Sekundär-Cards visuell dezenter — weniger Visual-Weight,
   damit Primary klar dominiert. Audit: "4 andere Cards visuell dezenter". */
.wz-jrn-grid .wz-jrn-card:not(.is-primary):not(.is-done) {
  background: rgba(21, 31, 48, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
}
.wz-jrn-grid .wz-jrn-card:not(.is-primary):not(.is-done) .wz-jrn-card-title {
  font-size: 14.5px;
  font-weight: 600;
  color: #cbd5e1;
}
.wz-jrn-grid .wz-jrn-card:not(.is-primary):not(.is-done) .wz-jrn-card-sub {
  font-size: 12.5px;
  color: rgba(148, 163, 184, 0.85);
}
.wz-jrn-grid .wz-jrn-card-icon { font-size: 22px; width: 32px; }
/* Welle 11.39.13 B2: EMPFOHLEN-Pill prominenter — Spotlight-Effekt am Primary. */
.wz-jrn-pill {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0b0705;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}
/* Welle 11.39.7h: is-done bleibt KLICKBAR + sophisticated muted green.
   Brand-Glas-Look mit dezentem gruenen Hauch (kein "giftig"-gruen mehr).
   Card selbst stays neutral-glas, nur Check-Badge ist subtil-gruen. */
.wz-jrn-card.is-done {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(148, 163, 184, 0.22);
  cursor: pointer;
  opacity: 1;
}
.wz-jrn-card.is-done:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.30);
  transform: translateY(-1px);
}
.wz-jrn-card.is-done .wz-jrn-card-title { color: #cbd5e1; }
.wz-jrn-card.is-done .wz-jrn-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 50%;
  color: #6ee7b7;
  flex-shrink: 0;
}
.wz-jrn-card.is-done .wz-jrn-check svg { width: 14px; height: 14px; }

.wz-jrn-card-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.wz-jrn-card.is-primary .wz-jrn-card-icon { font-size: 36px; width: 48px; }

.wz-jrn-card-body { flex: 1; min-width: 0; }
.wz-jrn-card-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #f5f9ff;
  margin: 0;
  letter-spacing: 0.005em;
}
.wz-jrn-card.is-primary .wz-jrn-card-title { font-size: 18px; }
.wz-jrn-card-sub {
  font-size: 12.5px;
  color: rgba(232, 237, 244, 0.6);
  margin-top: 4px;
  line-height: 1.4;
}

.wz-jrn-pill {
  display: inline-block;
  background: #f59e0b;
  color: #0c1320;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.wz-jrn-check {
  color: #10b981;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  align-self: center;
  width: 24px;
  text-align: center;
}

/* ============================================================
   Welle 11.39.3-result-focused — Lucide-Icon-Polish + Result-CTA
   ============================================================ */

.wz-result-actions-v2 {
  margin-top: 22px;
  text-align: center;
}
.wz-btn-finish .wz-arrow {
  display: inline-block;
  transition: transform .2s ease;
  margin-left: 4px;
}
.wz-btn-finish:hover .wz-arrow { transform: translateX(4px); }

/* Lucide-Icon-Sizing in Journey-Cards */
.wz-jrn-card-icon { font-size: 0; line-height: 0; }
.wz-jrn-card-icon i,
.wz-jrn-card-icon svg {
  width: 26px;
  height: 26px;
  color: #f59e0b;
  display: inline-block;
}
.wz-jrn-card.is-primary .wz-jrn-card-icon i,
.wz-jrn-card.is-primary .wz-jrn-card-icon svg {
  width: 32px;
  height: 32px;
}

.wz-jrn-card.is-done .wz-jrn-card-icon i,
.wz-jrn-card.is-done .wz-jrn-card-icon svg {
  color: #94a3b8;  /* Welle 11.39.7h: Card-Icon dezent slate (nicht gruen) */
}

/* Welle 11.39.7f: Checklist-Icons sichtbar machen (Lucide-Init war race-y).
   Inline-SVGs jetzt - + Farbe (gruen=done, dim=offen) */
.wz-jrn-checklist {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.wz-jrn-chk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 500;
}
.wz-jrn-chk-item.is-done {
  color: #f1f5f9;
}
.wz-jrn-chk-on,
.wz-jrn-chk-off {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.wz-jrn-chk-on svg,
.wz-jrn-chk-off svg {
  width: 100%;
  height: 100%;
}
.wz-jrn-chk-on { color: #6ee7b7; }  /* sanftes Mint statt giftig-gruen */
.wz-jrn-chk-off { color: #475569; }

/* Back-Button mit Icon */
.wz-jrn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wz-jrn-back i,
.wz-jrn-back svg {
  width: 14px;
  height: 14px;
}

/* Checklist Icons */
.wz-jrn-chk-on i,
.wz-jrn-chk-on svg,
.wz-jrn-chk-off i,
.wz-jrn-chk-off svg {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -3px;
}
.wz-jrn-chk-on i,
.wz-jrn-chk-on svg { color: #10b981; }
.wz-jrn-chk-off i,
.wz-jrn-chk-off svg { color: rgba(255, 255, 255, 0.25); }

/* Check-Mark im Card-Done-State */
.wz-jrn-check i,
.wz-jrn-check svg {
  width: 18px;
  height: 18px;
  color: #10b981;
}

/* Welle 11.39.7e-ratgeber-modal: Glas-Modal-Overlay auf Journey-Page
   fuer "Wie willst du den Ratgeber?" mit Download + Email-Optionen. */
.wz-rg-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: wzRgFadeIn .22s ease-out both;
}
@keyframes wzRgFadeIn { from { opacity: 0; } to { opacity: 1; } }
.wz-rg-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 12, 20, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.wz-rg-modal-card {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overflow-x: hidden; /* Welle 11.39.7h: keine horizontalen Scrollbars */
  /* Welle 11.39.12 TODO 2 Fix: voll-opaker Background (statt 0.98) damit
     Backdrop-Blur darunter NICHT durch Card scheint = Disclaimer sauber lesbar. */
  background: linear-gradient(180deg,
    rgba(20, 28, 44, 1) 0%,
    rgba(12, 19, 32, 1) 100%);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 18px;
  padding: 28px 24px 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(255, 255, 255, 0.04) inset,
              0 0 60px rgba(245, 158, 11, 0.12);
  /* Welle 11.39.12 TODO 2 Fix: isolation:isolate erstellt sauberen Stacking-Context,
     verhindert backdrop-filter-Doppel-Effekt vom Modal-Backdrop durchscheinen.
     backdrop-filter auf Card entfernt (war redundant — Backdrop hat schon blur(8px),
     Card-BG ist jetzt voll-opak). */
  isolation: isolate;
  animation: wzRgPop .28s cubic-bezier(.2, .8, .2, 1) both;
  /* Brand-konformer Scrollbar (analog wz-body) */
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.45) rgba(255, 255, 255, 0.04);
}
.wz-rg-modal-card::-webkit-scrollbar { width: 6px; }
.wz-rg-modal-card::-webkit-scrollbar-track { background: transparent; }
.wz-rg-modal-card::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.45), rgba(245, 158, 11, 0.20));
  border-radius: 3px;
}
@keyframes wzRgPop {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1);     }
}
.wz-rg-modal-x {
  position: absolute; top: 10px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #f1f5f9;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.wz-rg-modal-x:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}
.wz-rg-modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #f59e0b;
  margin: 0 0 8px;
}
.wz-rg-modal-title {
  font-family: var(--font-display, 'Barlow Condensed', system-ui, sans-serif);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  color: #f1f5f9;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.wz-rg-modal-sub {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0 0 20px;
}
.wz-rg-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.wz-rg-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease,
              border-color .18s ease, box-shadow .18s ease;
  border: 1px solid;
  text-decoration: none;
  white-space: nowrap;
}
.wz-rg-modal-btn:disabled { cursor: not-allowed; opacity: 0.7; }
.wz-rg-modal-btn:hover:not(:disabled) { transform: translateY(-1px); }
.wz-rg-modal-btn:active:not(:disabled) { transform: translateY(0); }
.wz-rg-modal-btn i, .wz-rg-modal-btn svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.wz-rg-modal-btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  border-color: rgba(245, 158, 11, 0.6);
  color: #0b0705;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.30);
}
.wz-rg-modal-btn-primary:hover:not(:disabled) {
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
}
.wz-rg-modal-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f1f5f9;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.wz-rg-modal-btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.14);
}
/* Welle 11.39.13 B1: PDF-Direct-Download visuell verstärken (Primary, full-width, größerer Padding).
   Plus: sekundärer Email-Link als Text-Style statt zweitem Button — Anti-Reactance, Hick's Law. */
.wz-rg-modal-btn-xl {
  padding: 18px 22px;
  font-size: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.32),
              0 0 0 1px rgba(245, 158, 11, 0.12) inset;
}
.wz-rg-modal-btn-xl:hover:not(:disabled) {
  box-shadow: 0 14px 36px rgba(245, 158, 11, 0.50),
              0 0 0 1px rgba(245, 158, 11, 0.20) inset;
}
.wz-rg-modal-btn-xl i, .wz-rg-modal-btn-xl svg {
  width: 22px; height: 22px;
}
.wz-rg-modal-actions-direct {
  margin-bottom: 6px;
}
.wz-rg-modal-email-link-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 4px;
}
.wz-rg-modal-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: color .18s ease, background .18s ease;
}
.wz-rg-modal-email-link svg {
  width: 14px; height: 14px;
  opacity: 0.7;
}
.wz-rg-modal-email-link:hover {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.06);
}
.wz-rg-modal-email-link:hover svg {
  opacity: 1;
}
.wz-rg-modal-emailform[hidden] { display: none; }
.wz-rg-modal-emailform {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: wzRgFadeIn .22s ease-out both;
}
.wz-rg-modal-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
/* Welle 11.39.7i: Email-Form als saubere Vertikal-Komposition.
   Input voll-breit oben, Button voll-breit unten als klare Primary-CTA.
   Pattern wie Mailchimp/Substack/Newsletter-Forms. Eliminates cramped flex-row. */
.wz-rg-modal-emailrow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.wz-rg-modal-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #f1f5f9;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  box-sizing: border-box;
}
.wz-rg-modal-input::placeholder { color: rgba(241, 245, 249, 0.42); }
.wz-rg-modal-input:hover { background: rgba(0, 0, 0, 0.36); border-color: rgba(255, 255, 255, 0.20); }
.wz-rg-modal-input:focus {
  outline: none;
  border-color: rgba(245, 158, 11, 0.65);
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}
.wz-rg-modal-input.is-invalid {
  border-color: rgba(239, 68, 68, 0.7);
  background: rgba(239, 68, 68, 0.08);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.wz-rg-modal-send {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
}
.wz-rg-modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.45;
  margin-bottom: 10px;
  cursor: pointer;
}
.wz-rg-modal-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #f59e0b;
  cursor: pointer;
}
.wz-rg-modal-disclaimer {
  font-size: 11.5px;
  /* Welle 11.39.12 TODO 2: #94a3b8 statt #64748b — bessere Lesbarkeit auf dark-card,
     bleibt aber sub-saturated (Standing Rule SSS). */
  color: #94a3b8;
  line-height: 1.5;
  margin: 8px 0 0;
}
@media (max-width: 480px) {
  .wz-rg-modal-card { padding: 24px 18px 18px; border-radius: 16px; }
  .wz-rg-modal-title { font-size: 22px; }
  .wz-rg-modal-input { padding: 12px 14px; font-size: 14px; }
  .wz-rg-modal-send { padding: 12px 16px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .wz-rg-modal, .wz-rg-modal-card, .wz-rg-modal-emailform { animation: none; }
}

/* ============================================================
   Welle 11.39.9b — Nudge + Rail Polish
   ============================================================
   - K1: Toast section-indicator-aware via --section-indicator-h
   - K5: CTA single-hue gradient (Brand: amber, kein rot-Sprung)
   - P1: 44pt touch-target
   - P2: Rail width responsive
   - P4: Mobile slide-in translateY(110%) (full off-screen → smoother)
   - P5: focus-visible state
   - Brand: border-radius 16px unified, border-alpha 0.20 unified, brand-glow
   ============================================================ */

/* Section-Indicator Höhe als CSS-Variable (Mobile-Bottom-Bar default 64px;
   gerendert in sections.dev.css ~min-height 44 + padding 8 + safe-area).
   Falls Page kein Section-Indicator hat → 0px (Toast sitzt nur über Bottom-Nav). */
:root {
  --section-indicator-h: 0px;
}
@media (max-width: 768px) {
  /* Mobile: Section-Indicator ist sticky-Bottom-Bar, ~64px effektiv */
  :root { --section-indicator-h: 64px; }
}

/* Welle 11.39.9-nudge: Mobile-Toast (rechts unten / über Bottom-Nav + Section-Indicator) */
.gos-nudge {
  position: fixed;
  /* K1: Stack-aware — Bottom-Nav + Section-Indicator + 12px Atemraum */
  bottom: calc(env(safe-area-inset-bottom, 0px) + var(--m-bottom-nav-h, 68px) + var(--section-indicator-h, 0px) + 12px);
  right: 18px;
  z-index: 8500;
  width: min(360px, calc(100vw - 36px));
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px 14px 14px;
  background: linear-gradient(180deg, rgba(20, 28, 44, 0.96), rgba(12, 19, 32, 0.96));
  /* Brand-coherence: alpha 0.20 statt 0.32 (sub-saturated, premium) */
  border: 1px solid rgba(245, 158, 11, 0.20);
  /* Brand-coherence: border-radius 16px (= sections, cards) statt 14px */
  border-radius: 16px;
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    /* Brand-glow: subtiler amber-Schein wie ein Spotlight */
    0 0 28px rgba(245, 158, 11, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-family: var(--font-body, -apple-system, BlinkMacSystemFont, sans-serif);
  color: #f1f5f9;
  opacity: 0;
  /* P4: Vollständig off-screen unten → smoother slide-in als 20px */
  transform: translateY(110%);
  transition: opacity .32s ease, transform .32s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
}
.gos-nudge.is-shown { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* P1: 44pt touch-target (WCAG 2.5.5 AA) */
.gos-nudge-x {
  position: absolute;
  top: 4px; right: 4px;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: #94a3b8;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.gos-nudge-x:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
}
/* P5: focus-visible — sichtbarer Keyboard-Ring */
.gos-nudge-x:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.55);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.06);
  color: #f1f5f9;
}
.gos-nudge-x svg { width: 16px; height: 16px; }

.gos-nudge-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.20);
  border-radius: 10px;
  color: #f59e0b;
  margin-top: 2px;
}
.gos-nudge-icon svg { width: 18px; height: 18px; }
.gos-nudge-body { flex: 1 1 auto; min-width: 0; padding-right: 44px; padding-top: 4px; }
.gos-nudge-text {
  font-size: 13.5px;
  line-height: 1.45;
  color: #e2e8f0;
  margin-bottom: 10px;
  font-weight: 500;
}

/* K5: Single-hue gradient (amber → amber-darker, kein rot-Sprung mehr) */
.gos-nudge-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* P1: min 44pt Höhe (WCAG-konform via padding + line-height) */
  min-height: 36px;
  padding: 9px 16px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: 0;
  border-radius: 999px;
  color: #0b0705;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.gos-nudge-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
}
.gos-nudge-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .gos-nudge {
    left: 12px;
    right: 12px;
    width: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gos-nudge { transition: opacity .2s; transform: translateY(0); }
  .gos-nudge.is-shown { transform: translateY(0); }
}

/* ============================================================
   Welle 11.39.9b: Desktop Side-Rail Journey-Checkliste
   - Links, persistent ≥1280px
   - P2: width responsive 200/240
   - Brand: border-radius 16px, alpha 0.20, brand-glow
   ============================================================ */
.gos-rail {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(-12px);
  z-index: 6000;
  width: 200px;  /* P2: schmaler default (1280-1439) */
  background: linear-gradient(180deg, rgba(20, 28, 44, 0.92), rgba(12, 19, 32, 0.92));
  /* Brand-coherence: alpha 0.20 (= Nudge) */
  border: 1px solid rgba(245, 158, 11, 0.20);
  /* Brand-coherence: border-radius 16px */
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    /* Brand-glow: subtiler amber-Schein */
    0 0 32px rgba(245, 158, 11, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-family: var(--font-body, -apple-system, BlinkMacSystemFont, sans-serif);
  color: #f1f5f9;
  opacity: 0;
  pointer-events: none;
  /* K3-related: Max-Höhe damit bei sehr kleinen Viewports nicht aus dem Bild fällt */
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  transition: opacity .35s ease, transform .35s cubic-bezier(.2, .8, .2, 1);
}

/* P2: Wider Variant ab 1440px (Desktop-Premium) */
@media (min-width: 1440px) {
  .gos-rail { width: 240px; left: 32px; }
}

.gos-rail.is-shown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.gos-rail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #f59e0b;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 6px;
}

/* P1: 44pt touch-target — auch auf Desktop konsistent */
.gos-rail-close {
  width: 28px; height: 28px;
  background: transparent;
  border: 0;
  color: #64748b;
  cursor: pointer;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.gos-rail-close:hover { background: rgba(255, 255, 255, 0.06); color: #cbd5e1; }
.gos-rail-close:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.55);
  outline-offset: 2px;
  color: #cbd5e1;
}
.gos-rail-close svg { width: 12px; height: 12px; }

.gos-rail-rows { display: flex; flex-direction: column; gap: 2px; }

.gos-rail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #94a3b8;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  text-align: left;
  cursor: default;
  transition: background .15s, color .15s, transform .15s;
}

.gos-rail-row.is-clickable { cursor: pointer; color: #cbd5e1; }
.gos-rail-row.is-clickable:hover {
  background: rgba(245, 158, 11, 0.08);
  color: #f1f5f9;
  transform: translateX(2px);
}
/* P5: focus-visible auf clickable-Rows */
.gos-rail-row.is-clickable:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.55);
  outline-offset: -2px;
  background: rgba(245, 158, 11, 0.10);
  color: #f1f5f9;
}

.gos-rail-row.is-done { color: #cbd5e1; }

/* 11.39.9d: Recalc-Row als Re-Engagement-Hook am Ende, visuell abgesetzt */
.gos-rail-recalc {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #f59e0b !important;
  font-weight: 600 !important;
}
.gos-rail-recalc .gos-rail-row-icon { color: #f59e0b !important; }
.gos-rail-recalc:hover {
  background: rgba(245, 158, 11, 0.12) !important;
  color: #fbbf24 !important;
}
.gos-rail-recalc:hover .gos-rail-row-icon { color: #fbbf24 !important; }

/* 11.39.9h: Primary-Row "Berechnung starten" wenn User Wizard abgebrochen hat.
   Hervorgehoben mit amber-Akzent damit User klar sieht wo er weitermachen soll. */
.gos-rail-primary {
  color: #f59e0b !important;
  font-weight: 600 !important;
  background: rgba(245, 158, 11, 0.06);
}
.gos-rail-primary .gos-rail-row-icon { color: #f59e0b !important; }
.gos-rail-primary:hover {
  background: rgba(245, 158, 11, 0.14) !important;
  color: #fbbf24 !important;
}
.gos-rail-primary:hover .gos-rail-row-icon { color: #fbbf24 !important; }
.gos-rail-row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: #475569;
}
.gos-rail-row-icon svg { width: 100%; height: 100%; }
.gos-rail-row.is-done .gos-rail-row-icon { color: #6ee7b7; }
.gos-rail-row-label { flex: 1 1 auto; }

@media (max-width: 1279px) { .gos-rail { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .gos-rail { transition: opacity .2s; transform: translateY(-50%) translateX(0); }
  .gos-rail.is-shown { transform: translateY(-50%) translateX(0); }
}

/* ============================================================
   Welle 11.39.15 C3 — Hero Mini-Preview
   ============================================================
   Subtile Glas-Card direkt unter dem Hero-CTA. Zeigt konkretes
   Beispiel ("Bei +30% Brent zahlt 2-Pers-Haushalt ~€85/Monat")
   um Commitment-Hurdle vor Wizard-Open zu reduzieren.
   Brand-konsistent zu Decoy-Tier-Pattern (Welle 1B+ Phase 3,
   Standing Rule SSS: sub-saturated Brand-Color, kein Neon).
*/
.hero-preview {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 520px;
  margin: 18px auto 0;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero-preview:hover,
.hero-preview:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.40);
  transform: translateY(-1px);
  outline: none;
}
.hero-preview-ico {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-preview-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.hero-preview-lead {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(232, 237, 244, 0.72);
}
.hero-preview-val {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  color: #f5f9ff;
}
.hero-preview-amount {
  color: #f59e0b;
}
.hero-preview-cta {
  font-size: 12px;
  line-height: 1.3;
  color: rgba(232, 237, 244, 0.55);
  margin-top: 2px;
}
@media (max-width: 480px) {
  .hero-preview {
    padding: 10px 14px;
    gap: 10px;
    margin-top: 14px;
  }
  .hero-preview-lead { font-size: 12px; }
  .hero-preview-val  { font-size: 14px; }
  .hero-preview-cta  { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-preview { transition: none; }
  .hero-preview:hover { transform: none; }
}

/* ============================================================
   Welle 11.39.16 C6 — Result-Page Vergleichs-Kontext (Anchoring)
   ============================================================
   Eine Zeile unter der Big-Number die User-Wert gegen Country-
   Durchschnitt anchorft. Loss-Variante (User > Avg): subtle Amber.
   Hope-Variante (User < Avg): Mint. Even-Variante: neutral.
   Standing Rule SSS: sub-saturated Brand-Color (kein Neon).
*/
.wz-result-compare {
  margin-top: 12px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.45;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(232, 237, 244, 0.78);
}
.wz-result-compare--loss {
  border-color: rgba(245, 158, 11, 0.22);
  background: rgba(245, 158, 11, 0.05);
}
.wz-result-compare--hope {
  border-color: rgba(110, 231, 183, 0.22);
  background: rgba(110, 231, 183, 0.05);
  color: rgba(220, 250, 235, 0.84);
}
.wz-result-compare--even {
  /* neutral default */
}
/* Night-Audit P2 #420: Methodologie-Info-Icon */
.wz-compare-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: rgba(245, 158, 11, 0.7);
  text-decoration: none;
  vertical-align: middle;
  transition: color .15s ease, background .15s ease;
}
.wz-compare-method:hover,
.wz-compare-method:focus-visible {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  outline: none;
}
.wz-compare-method i[data-lucide], .wz-compare-method svg.lucide {
  width: 13px;
  height: 13px;
}
@media (max-width: 480px) {
  .wz-result-compare {
    font-size: 12.5px;
    padding: 8px 12px;
    margin-top: 10px;
  }
}

/* ============================================================
   Welle 11.39.19 C4 — Desktop Sticky Mini-CTA
   ============================================================
   Bottom-right Sticky-Pill, erscheint wenn Hero aus dem
   Viewport scrollt. Mobile = ausgeblendet (Bottom-Nav hat
   bereits Calc-CTA). Re-Engagement für Discovery-User die
   nach unten scrollen aber nicht klicken.
   Brand-konsistent: Glas + Amber-Border + Bolt-Icon.
*/
.hero-sticky-cta {
  display: none;
}
@media (min-width: 769px) {
  .hero-sticky-cta {
    display: inline-flex;
    position: fixed;
    bottom: 24px;
    right: 24px;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(245, 158, 11, 0.85));
    color: #0b0705;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    box-shadow:
      0 8px 28px rgba(245, 158, 11, 0.32),
      0 2px 8px rgba(0, 0, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, box-shadow .2s ease;
    z-index: 9990;
    will-change: opacity, transform;
  }
  .hero-sticky-cta.is-shown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .hero-sticky-cta:hover,
  .hero-sticky-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow:
      0 12px 36px rgba(245, 158, 11, 0.45),
      0 3px 10px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
    outline: none;
  }
  .hero-sticky-cta-ico {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .hero-sticky-cta-label {
    white-space: nowrap;
  }
  .hero-sticky-cta-arrow {
    flex-shrink: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-sticky-cta { transition: opacity .15s; transform: none; }
  .hero-sticky-cta:hover { transform: none; }
  .hero-sticky-cta.is-shown { transform: none; }
}

/* ============================================================
   Welle 11.39.20 — Lucide-Icon Sizing für C3 Hero-Preview + C4 Sticky-CTA
   ============================================================
   Lucide-init ersetzt <i data-lucide="X"> durch <svg>. Hier konsistente
   Sizes setzen damit Icons matchen.
*/
.hero-preview-ico {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #f59e0b;
}
.hero-preview-ico svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}
@media (min-width: 769px) {
  .hero-sticky-cta-ico,
  .hero-sticky-cta-arrow {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }
  .hero-sticky-cta-ico svg { width: 16px; height: 16px; stroke-width: 2.4; }
  .hero-sticky-cta-arrow svg { width: 14px; height: 14px; stroke-width: 2.4; }
}
.wz-skip-icon {
  display: inline-flex;
  align-items: center;
  color: #f59e0b;
}
.wz-skip-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* ============================================================
   Welle 11.39.21 C5 — Inline-CTAs in High-Intent FAQ-Antworten
   ============================================================
   Kontextuelle Wizard-Trigger DIREKT in der FAQ-Antwort. Format:
   subtle Glas-Pill mit Amber-Border. Klick öffnet Wizard.
*/
.faq-inline-cta {
  /* Welle 11.39.21c: mittig zentriert mit ordentlichem Abstand zum Antwort-Text */
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 18px auto 0;
  padding: 7px 14px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  color: #f59e0b;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, border-color .18s, transform .18s;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.faq-inline-cta:hover,
.faq-inline-cta:focus-visible {
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.45);
  transform: translateY(-1px);
  outline: none;
}
.faq-inline-cta svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
  flex-shrink: 0;
  transition: transform .18s;
}
.faq-inline-cta:hover svg {
  transform: translateX(2px);
}
@media (max-width: 480px) {
  .faq-inline-cta {
    font-size: 12.5px;
    padding: 6px 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-inline-cta { transition: none; }
  .faq-inline-cta:hover { transform: none; }
  .faq-inline-cta:hover svg { transform: none; }
}

/* ============================================================
   Welle 11.39.22 C7 — Mobile Journey-Page Polish (360-480px)
   ============================================================
   Tightere Spacings, kleinere Headlines, Primary-Card bleibt
   prominent aber nicht überdimensioniert. Touch-Targets ≥44px.
*/
@media (max-width: 480px) {
  .wz-jrn {
    padding: 20px 14px 24px;
  }
  .wz-jrn-headline {
    font-size: 1.45rem;
    line-height: 1.2;
  }
  .wz-jrn-lead {
    font-size: 12.5px;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
  }
  .wz-jrn-checklist {
    padding: 12px 14px;
    margin-bottom: 18px;
  }
  .wz-jrn-chk-item {
    font-size: 13px;
    padding: 4px 0;
    gap: 8px;
  }
  .wz-jrn-chk-on svg,
  .wz-jrn-chk-off svg {
    width: 15px;
    height: 15px;
  }
  /* Primary-Card kompakter aber visuell weiter dominant */
  .wz-jrn-card.is-primary {
    padding: 18px 18px;
  }
  .wz-jrn-card.is-primary .wz-jrn-card-title {
    font-size: 16px;
    line-height: 1.25;
  }
  .wz-jrn-card.is-primary .wz-jrn-card-sub {
    font-size: 12.5px;
    line-height: 1.4;
  }
  /* Sekundär-Cards tighter */
  .wz-jrn-grid .wz-jrn-card:not(.is-primary):not(.is-done) {
    padding: 13px 14px;
  }
  .wz-jrn-grid .wz-jrn-card:not(.is-primary):not(.is-done) .wz-jrn-card-title {
    font-size: 13.5px;
    line-height: 1.25;
  }
  .wz-jrn-grid .wz-jrn-card:not(.is-primary):not(.is-done) .wz-jrn-card-sub {
    font-size: 11.5px;
    line-height: 1.35;
  }
  .wz-jrn-grid .wz-jrn-card-icon {
    font-size: 18px;
    width: 26px;
    flex-shrink: 0;
  }
  /* Primary-Card-Icon bleibt prominent */
  .wz-jrn-card.is-primary .wz-jrn-card-icon {
    font-size: 24px;
    width: 32px;
    flex-shrink: 0;
  }
  .wz-jrn-pill {
    font-size: 9.5px;
    padding: 3px 8px;
    letter-spacing: 1px;
  }
  /* Touch-Target-Minimum 44px für alle Cards */
  .wz-jrn-card {
    min-height: 44px;
  }
  /* Card-Gap tighter */
  .wz-jrn-cards { gap: 10px; }
  .wz-jrn-grid { gap: 10px; }
}
@media (max-width: 360px) {
  /* Extreme-narrow: iPhone SE 1st gen */
  .wz-jrn { padding: 16px 10px 20px; }
  .wz-jrn-headline { font-size: 1.3rem; }
  .wz-jrn-card.is-primary { padding: 16px 14px; }
  .wz-jrn-grid .wz-jrn-card:not(.is-primary):not(.is-done) { padding: 11px 12px; }
}

/* ============================================================
   Welle 11.39.23 D2 — Quick-Sim-Pills auf Result-Page
   ============================================================
   3 Pills (+30/+50/+80) für inline Szenario-Wechsel.
   Loss-Aversion-Verstärker (Behavioral-Economics-Stack Punkt 6).
*/
.wz-result-quicksim {
  margin: 14px 0 4px;
  text-align: center;
}
.wz-quicksim-label {
  font-size: 12.5px;
  color: rgba(232, 237, 244, 0.6);
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.wz-quicksim-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.wz-quicksim-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  color: rgba(232, 237, 244, 0.85);
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .18s, color .18s;
  min-width: 64px;
  justify-content: center;
}
.wz-quicksim-pill:hover,
.wz-quicksim-pill:focus-visible {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.42);
  color: #f59e0b;
  transform: translateY(-1px);
  outline: none;
}
.wz-quicksim-pill.is-active {
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.55);
  color: #f59e0b;
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.22);
}
@media (max-width: 480px) {
  .wz-quicksim-label { font-size: 11.5px; margin-bottom: 7px; }
  .wz-quicksim-pill { font-size: 12.5px; padding: 6px 14px; min-width: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  .wz-quicksim-pill { transition: none; }
  .wz-quicksim-pill:hover { transform: none; }
}

/* ============================================================
   Welle 11.39.25 D1 — Privacy-Toggle für Share-Widget
   ============================================================
*/
.wz-share-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 14px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(232, 237, 244, 0.78);
  transition: background .15s, border-color .15s;
  user-select: none;
}
.wz-share-privacy:hover {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
}
.wz-share-privacy input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(245, 158, 11, 0.5);
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
  margin: 0;
}
.wz-share-privacy input[type="checkbox"]:checked {
  background: #f59e0b;
  border-color: #f59e0b;
}
.wz-share-privacy input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #0c1320;
  border-bottom: 2px solid #0c1320;
  transform: rotate(45deg);
}
.wz-share-privacy-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wz-share-privacy-label svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
  color: rgba(245, 158, 11, 0.7);
}
@media (max-width: 480px) {
  .wz-share-privacy { font-size: 12.5px; padding: 7px 10px; }
}

/* ============================================================
   Welle 11.39.26 D4 — Saisonale Recalc-Prompts Banner
   ============================================================
   Glas-Banner zwischen Hero und News-Section. Nur in saisonal
   relevanten Monaten sichtbar (Mai-Juli, Sep-Okt, Jan-Feb).
*/
.season-prompt {
  margin: 18px 0 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.season-prompt.is-shown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.season-prompt-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.10), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
}
.season-prompt-ico {
  display: inline-flex;
  flex-shrink: 0;
  color: #f59e0b;
}
.season-prompt-ico svg {
  width: 22px; height: 22px; stroke-width: 2;
}
.season-prompt-body {
  flex: 1;
  min-width: 0;
}
.season-prompt-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #f5f9ff;
  line-height: 1.25;
}
.season-prompt-sub {
  font-size: 12.5px;
  color: rgba(232, 237, 244, 0.72);
  line-height: 1.4;
  margin-top: 2px;
}
.season-prompt-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #f59e0b;
  color: #0b0705;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.season-prompt-cta:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}
.season-prompt-close {
  appearance: none;
  background: transparent;
  border: none;
  color: rgba(232, 237, 244, 0.5);
  cursor: pointer;
  padding: 13px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color .15s;
}
.season-prompt-close:hover { color: #f5f9ff; }
.season-prompt-close svg { width: 18px; height: 18px; stroke-width: 2; }
@media (max-width: 600px) {
  .season-prompt-card {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
  }
  .season-prompt-body { flex-basis: calc(100% - 50px); }
  .season-prompt-cta { width: 100%; justify-content: center; order: 3; }
  .season-prompt-title { font-size: 13.5px; }
  .season-prompt-sub { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .season-prompt { transition: opacity .15s; transform: none; }
}
