/* =============================================
   ANTRAGS-ASSISTENT – antrag.css
   ============================================= */

.antrag-body {
  background: var(--warm-grey);
  min-height: 100vh;
}

/* ── HEADER ───────────────────────────────── */
.antrag-header {
  background: white;
  border-bottom: 1px solid var(--mid-grey);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.antrag-header__logo img { height: 40px; width: auto; }
.antrag-header__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.antrag-header__back:hover { color: var(--red); }

/* ── MAIN LAYOUT ──────────────────────────── */
.antrag-main {
  padding: 48px 24px 80px;
}
.antrag-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── INTRO ────────────────────────────────── */
.antrag-intro { text-align: center; }
.antrag-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: #166A22;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.antrag-intro__h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 10px;
}
.antrag-intro__lead {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── STEPPER ──────────────────────────────── */
.wizard-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.wizard-stepper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.wizard-stepper__circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--mid-grey);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.wizard-stepper__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
  transition: color 0.3s;
}
.wizard-stepper__line {
  flex: 1;
  height: 2px;
  background: var(--mid-grey);
  margin: 0 8px;
  margin-bottom: 22px;
  transition: background 0.3s;
  max-width: 80px;
}
/* Active step */
.wizard-stepper__item.active .wizard-stepper__circle {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.wizard-stepper__item.active .wizard-stepper__label { color: var(--red); font-weight: 700; }
/* Completed step */
.wizard-stepper__item.done .wizard-stepper__circle {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.wizard-stepper__item.done .wizard-stepper__label { color: var(--green); }
.wizard-stepper__item.done .wizard-stepper__circle::after { content: '✓'; font-size: 16px; }
.wizard-stepper__item.done .wizard-stepper__circle { font-size: 0; }
.wizard-stepper__line.done { background: var(--green); }

/* ── CARD ─────────────────────────────────── */
.wizard-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* ── PANELS ───────────────────────────────── */
.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: fadeInUp 0.3s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wizard-panel__h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}
.wizard-panel__lead {
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.65;
}
.wizard-panel__hint {
  font-size: 13px;
  color: var(--red);
  margin-top: 12px;
  min-height: 18px;
}

/* ── PACKAGE CARDS ────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pkg-card {
  position: relative;
  border: 2px solid var(--mid-grey);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  background: var(--warm-white);
  display: block;
}
.pkg-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.pkg-card.selected {
  border-color: var(--red);
  background: #fff8f8;
  box-shadow: 0 0 0 3px rgba(228,4,24,0.12);
}
.pkg-card--highlight {
  border-color: var(--red);
  background: #fff8f8;
}
.pkg-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.pkg-card__name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}
.pkg-card__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mid-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.pkg-card.selected .pkg-card__check,
.pkg-card:has(input:checked) .pkg-card__check {
  background: var(--green);
}
.pkg-card__price {
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 2px;
}
.pkg-card__price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}
.pkg-card__einmalig {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.pkg-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pkg-card__features li {
  font-size: 13px;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}
.pkg-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 11px;
}

/* ── FORM ─────────────────────────────────── */
.wform { display: flex; flex-direction: column; gap: 18px; }
.wform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wform__group { display: flex; flex-direction: column; gap: 5px; }
.wform__group--wide { grid-column: 1 / -1; }
.wform__group--plz { max-width: 140px; }
.wform__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.wform__label span { color: var(--red); }
.wform__input {
  padding: 12px 14px;
  border: 2px solid var(--mid-grey);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.wform__input:focus { border-color: var(--red); }
.wform__input.has-error { border-color: var(--red); background: #fff8f8; }
.wform__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237A7875' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.wform__textarea { resize: vertical; min-height: 90px; }
.wform__error {
  font-size: 12px;
  color: var(--red);
  min-height: 16px;
}

/* Radio cards */
.wform__radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.wform__radio-group--3 { grid-template-columns: repeat(3, 1fr); }
.wform__radio-card {
  border: 2px solid var(--mid-grey);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: block;
}
.wform__radio-card input { display: none; }
.wform__radio-card:has(input:checked) {
  border-color: var(--red);
  background: #fff8f8;
}
.wform__radio-card:hover { border-color: var(--red); }
.wform__radio-card__title {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}
.wform__radio-card__sub {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

/* Consent */
.wform__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
  cursor: pointer;
}
.wform__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}
.wform__consent span {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}
.wform__consent a { color: var(--red); text-decoration: underline; }

/* ── SUMMARY ──────────────────────────────── */
.summary {
  background: var(--warm-grey);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.summary__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.summary__value {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
}

/* ── NAVIGATION ───────────────────────────── */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.wizard-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  background: white;
  border: 2px solid var(--mid-grey);
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.wizard-nav__back:hover { border-color: var(--text-mid); color: var(--text); }
.wizard-nav__next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(228,4,24,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-left: auto;
}
.wizard-nav__next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(228,4,24,0.35);
}

/* ── SUCCESS ──────────────────────────────── */
.wizard-success {
  display: none;
  text-align: center;
  padding: 20px 0;
  animation: fadeInUp 0.4s ease;
}
.wizard-success.active { display: block; }
.wizard-success__icon {
  width: 72px;
  height: 72px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.wizard-success__h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}
.wizard-success__text {
  font-family: 'Source Serif 4', serif;
  font-size: 17px;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.wizard-success__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--green);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.wizard-success__btn:hover { opacity: 0.9; }

/* ── NEW FORM ELEMENTS ────────────────────── */

/* Info box (step 5 SEPA notice) */
.wform__info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #EDF7EF;
  border: 1px solid var(--green-mid);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #1A5C25;
  line-height: 1.55;
  margin-bottom: 4px;
}
.wform__info-box svg { flex-shrink: 0; margin-top: 1px; color: var(--green); }

/* Section label within a step */
.wform__section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--warm-grey);
  margin-bottom: 4px;
}
.wform__required-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--red-light);
  color: var(--red);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  text-transform: none;
  letter-spacing: 0;
}

/* Checkbox rows */
.wform__checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  border: 2px solid var(--mid-grey);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.wform__checkbox-row:hover { border-color: var(--red); }
.wform__checkbox-row:has(input:checked) {
  border-color: var(--red);
  background: #fff8f8;
}
.wform__checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--red);
  cursor: pointer;
}
.wform__checkbox-row span { font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.wform__checkbox-row--spaced { margin-top: 6px; }

/* Add bezugsperson button */
.wform__add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 2px dashed var(--mid-grey);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  width: 100%;
  justify-content: center;
}
.wform__add-btn:hover { border-color: var(--red); color: var(--red); }

/* SEPA mandate text */
.wform__sepa-text {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  background: var(--warm-grey);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 4px;
}
.wform__sepa-text strong { color: var(--text-mid); }

/* IBAN input */
.wform__iban {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
  font-size: 16px !important;
}

/* Consents block (step 6) */
.wform__consents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

/* Order summary box (step 6) */
.wform__order-summary {
  background: var(--warm-grey);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wform__order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--text-mid);
}
.wform__order-line--highlight {
  font-size: 17px;
  color: var(--text);
  padding-top: 8px;
  border-top: 1px solid var(--mid-grey);
  margin-top: 4px;
}
.wform__order-line strong { color: var(--red); font-weight: 800; }
.wform__order-line--highlight strong { font-size: 20px; }

/* Error state (parallel to success) */
.wizard-error {
  text-align: center;
  padding: 20px 0;
  animation: fadeInUp 0.4s ease;
}
.wizard-error__icon {
  width: 72px;
  height: 72px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.wizard-error__h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.wizard-error__text { font-size: 16px; color: var(--text-mid); margin-bottom: 24px; line-height: 1.65; }

/* Success hint text */
.wizard-success__hint {
  font-size: 13px;
  color: var(--text-light);
  margin-top: -16px;
  margin-bottom: 24px;
}

/* Loading state on next button */
.wizard-nav__next.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}
.wizard-nav__next.loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 640px) {
  .wizard-card { padding: 24px 20px; }
  .pkg-grid { grid-template-columns: 1fr; }
  .wform__row { grid-template-columns: 1fr; }
  .wform__group--plz { max-width: 100%; }
  .wform__radio-group--3 { grid-template-columns: 1fr; }
  .summary { grid-template-columns: 1fr; }
  .wizard-stepper__line { max-width: 40px; }
  .wizard-stepper__label { font-size: 11px; }
}
@media (max-width: 400px) {
  .antrag-main { padding: 24px 16px 60px; }
  .wizard-stepper__line { display: none; }
}

/* ── GESUNDHEITS-CHECKBOXEN ──────────────── */
.wform__check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 8px;
  margin-top: 6px;
}
.wform__check-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1.5px solid #e0e4ea;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-mid);
  transition: border-color .15s, background .15s;
}
.wform__check-tile:hover { border-color: var(--red); background: #fff5f5; }
.wform__check-tile:has(input:checked) {
  border-color: var(--red);
  background: #fff0f0;
  color: var(--text-dark);
  font-weight: 600;
}
.wform__check-tile input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--red); flex-shrink: 0; }
.wform__divider { border: none; border-top: 1px solid #e8eaef; margin: 24px 0 20px; }

/* ── WIDERRUFSBELEHRUNG BOX ──────────────── */
.wform__widerruf-box {
  background: #fffbf0;
  border: 1.5px solid #f0c040;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-dark);
}
.wform__widerruf-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #8a6200;
  margin-bottom: 12px;
}
.wform__widerruf-box p { margin-bottom: 8px; }
.wform__widerruf-box address {
  font-style: normal;
  background: #fff8e0;
  border-radius: 6px;
  padding: 10px 14px;
  margin: 8px 0;
  border-left: 3px solid #f0c040;
}
.wform__widerruf-hinweis {
  font-size: 12.5px;
  color: #8a6200;
  font-style: italic;
  margin-top: 8px !important;
}

/* ── UNTERSCHRIFT ──────────────────────────────────────── */
.wform__signature-wrap {
  margin: 24px 0 20px;
  border: 2px solid #e0e4ea;
  border-radius: 12px;
  padding: 20px;
  background: #fafbfc;
}
.wform__signature-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.wform__signature-hint {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
}
.wform__signature-canvas-wrap {
  position: relative;
  background: #fff;
  border: 2px solid #d0d5dd;
  border-radius: 8px;
  overflow: hidden;
  cursor: crosshair;
}
.wform__signature-canvas-wrap.has-sig {
  border-color: var(--red);
}
.wform__signature-canvas {
  display: block;
  width: 100%;
  height: 140px;
  touch-action: none;
}
.wform__signature-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #b0b8c4;
  pointer-events: none;
  transition: opacity .2s;
}
.wform__signature-placeholder.hidden { opacity: 0; }
.wform__signature-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.wform__signature-clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
  background: none;
  border: 1px solid #e0e4ea;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.wform__signature-clear:hover {
  color: var(--red);
  border-color: var(--red);
}

/* ═══════════════════════════════════════════════════════════════════
   ANTRAG ACCESSIBILITY OVERHAUL
   Optimiert für Senioren:
   - Größere Schrift (min 16px für alle Inputs)
   - Mehr Kontrast
   - Klarere Pflichtfeld-Markierung
   - Größere Touch-Targets (min 48px)
   - Deutliche Fehlermeldungen
   - Bessere Abstände
═══════════════════════════════════════════════════════════════════ */

/* ── Intro: größerer Lead-Text ──────────────────────────────────── */
.antrag-intro__lead {
  font-size: 18px !important;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Fortschrittsleiste: größer und lesbarer ───────────────────── */
.wizard-stepper__circle {
  width: 42px !important;
  height: 42px !important;
  font-size: 16px !important;
  font-weight: 700;
}
.wizard-stepper__label {
  font-size: 13px !important;
  font-weight: 600;
  margin-top: 4px;
}
.wizard-stepper__item.active .wizard-stepper__label { color: var(--red); }
.wizard-stepper__item.done  .wizard-stepper__label { color: #2d8a4e; }

/* ── Panel Titel ───────────────────────────────────────────────── */
.wizard-panel__h2 {
  font-size: clamp(22px, 3.5vw, 32px) !important;
  font-weight: 800;
  margin-bottom: 6px;
}
.wizard-panel__lead {
  font-size: 16px !important;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ── Pflichtfeld-Hinweis oben im Panel ─────────────────────────── */
.wform::before {
  content: '* Pflichtfelder müssen ausgefüllt werden.';
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid var(--red);
}

/* ── Form Group: mehr Abstand ──────────────────────────────────── */
.wform__group {
  gap: 8px !important;
}
.wform__row {
  gap: 16px !important;
}

/* ── Labels: größer, kontrastreicher ─────────────────────────────  */
.wform__label {
  font-size: 16px !important;
  font-weight: 700;
  color: #1a1a2e !important;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* Pflichtfeld-Sternchen: groß und rot */
.wform__label span[aria-hidden="true"],
.wform__label .req-star {
  color: #c0392b !important;
  font-size: 18px !important;
  margin-left: 3px;
  vertical-align: middle;
  font-weight: 900;
}

/* Optional-Hinweis: grau und kleiner */
.wform__label span[style*="font-weight:400"] {
  font-size: 13px !important;
  color: #888 !important;
  font-weight: 400 !important;
}

/* ── Inputs: größer, besser greifbar ────────────────────────────── */
.wform__input {
  padding: 14px 16px !important;
  font-size: 17px !important;
  border: 2.5px solid #cdd0d8 !important;
  border-radius: 10px !important;
  min-height: 52px !important;
  line-height: 1.4 !important;
  transition: border-color 0.15s, box-shadow 0.15s !important;
  color: #1a1a2e !important;
}

/* Focus: deutlicher Ring */
.wform__input:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
  outline: none;
}

/* Placeholder: lesbarer */
.wform__input::placeholder {
  color: #9ca3b0 !important;
  font-size: 15px !important;
}

/* Fehler-State */
.wform__input.has-error {
  border-color: #c0392b !important;
  background: #fff5f5 !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
}

/* Textarea */
.wform__textarea {
  min-height: 100px !important;
  line-height: 1.6 !important;
}

/* Select Arrow */
.wform__select {
  background-position: right 16px center !important;
  padding-right: 44px !important;
}

/* ── Fehlermeldungen: groß und klar ─────────────────────────────── */
.wform__error {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #c0392b !important;
  min-height: 20px !important;
  line-height: 1.5 !important;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 2px;
}
/* Fehler-Icon automatisch */
.wform__error:not(:empty)::before {
  content: '⚠';
  font-size: 16px;
  flex-shrink: 0;
}

/* ── Radio-Karten: größer und besser klickbar ───────────────────── */
.wform__radio-card {
  min-height: 60px !important;
  padding: 14px 16px !important;
  border-radius: 10px !important;
  cursor: pointer;
  transition: all 0.15s;
}
.wform__radio-card__title {
  font-size: 16px !important;
  font-weight: 700 !important;
}
.wform__radio-card__sub {
  font-size: 14px !important;
  line-height: 1.4 !important;
  color: #666 !important;
  margin-top: 3px;
}
.wform__radio-card:has(input:checked) {
  border-color: var(--red) !important;
  background: #fff5f5 !important;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2) !important;
}

/* ── Checkboxen: größer ────────────────────────────────────────── */
.wform__checkbox-row {
  padding: 12px 14px !important;
  font-size: 15px !important;
  border-radius: 8px !important;
  min-height: 44px !important;
  align-items: center !important;
  gap: 12px !important;
}
.wform__checkbox-row input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  accent-color: var(--red);
  cursor: pointer;
}
.wform__checkbox-row span {
  font-size: 15px !important;
  line-height: 1.5 !important;
}

/* ── Section Labels: besser lesbar ─────────────────────────────── */
.wform__section-label {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  padding-bottom: 8px !important;
  border-bottom: 2px solid #eee !important;
  margin-bottom: 16px !important;
  letter-spacing: 0.02em !important;
}

/* Required-Badge */
.wform__required-badge {
  font-size: 12px !important;
  padding: 2px 8px !important;
  background: #fff0f0 !important;
  color: #c0392b !important;
  border-radius: 4px !important;
  border: 1px solid #fcc !important;
  font-weight: 600 !important;
}

/* ── Info-Box: größer ───────────────────────────────────────────── */
.wform__info-box {
  font-size: 15px !important;
  padding: 14px 16px !important;
  border-radius: 10px !important;
  line-height: 1.6 !important;
}

/* ── Zustimmungs-Checkboxen: extra groß ─────────────────────────── */
.wform__consent {
  padding: 14px !important;
  border-radius: 10px !important;
  border: 2px solid #e8eaef !important;
  margin-bottom: 10px !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer;
  transition: background 0.15s;
}
.wform__consent:hover { background: #fafbfc !important; }
.wform__consent:has(input:checked) {
  background: #f0fff4 !important;
  border-color: #2d8a4e !important;
}
.wform__consent input[type="checkbox"] {
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  margin-top: 2px !important;
  accent-color: #2d8a4e;
  cursor: pointer;
}
.wform__consent span {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #333 !important;
}
.wform__consent a {
  color: var(--red) !important;
  text-decoration: underline !important;
  font-weight: 600;
}

/* ── Weiter-Button: größer und klarer ───────────────────────────── */
.wizard-nav__next {
  padding: 16px 32px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  min-height: 56px !important;
  border-radius: 12px !important;
  letter-spacing: 0.02em;
}
.wizard-nav__back {
  padding: 14px 24px !important;
  font-size: 16px !important;
  min-height: 52px !important;
}

/* ── Zusammenfassung: größer ────────────────────────────────────── */
.summary__label {
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #888 !important;
}
.summary__value {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #1a1a2e !important;
}

/* ── Widerrufsbelehrung: lesbarer ───────────────────────────────── */
.wform__widerruf-box {
  font-size: 14px !important;
  line-height: 1.7 !important;
  padding: 20px 22px !important;
}
.wform__widerruf-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 14px !important;
}
.wform__widerruf-box p { margin-bottom: 10px !important; }

/* ── Gesundheitsinfos Check-Grid ────────────────────────────────── */
.wform__check-tile {
  padding: 11px 14px !important;
  font-size: 14px !important;
  min-height: 44px !important;
  align-items: center !important;
  gap: 10px !important;
}
.wform__check-tile input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--red);
}

/* ── Signature Pad ──────────────────────────────────────────────── */
.wform__signature-header {
  font-size: 17px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}
.wform__signature-hint {
  font-size: 15px !important;
  color: #666 !important;
}
.wform__signature-canvas {
  height: 160px !important;
}
.wform__signature-clear {
  font-size: 15px !important;
  padding: 8px 16px !important;
  min-height: 40px !important;
}

/* ── Erfolgs-/Fehlermeldungen ───────────────────────────────────── */
.wizard-success__h2 { font-size: 26px !important; }
.wizard-success__text { font-size: 17px !important; line-height: 1.7 !important; }
.wizard-success__btn { font-size: 17px !important; padding: 16px 32px !important; }
.wizard-error__h2 { font-size: 22px !important; }
.wizard-error__text { font-size: 16px !important; }

/* ── Paket-Karten ───────────────────────────────────────────────── */
.pkg-card__name { font-size: 20px !important; font-weight: 800 !important; }
.pkg-card__price { font-size: 32px !important; }
.pkg-card__price span { font-size: 16px !important; }
.pkg-card__features li { font-size: 15px !important; padding: 4px 0 !important; }

/* ── IBAN-Feld ──────────────────────────────────────────────────── */
.wform__iban {
  font-size: 18px !important;
  letter-spacing: 0.08em !important;
  font-family: 'Courier New', monospace !important;
}

/* ── Hilfetext ──────────────────────────────────────────────────── */
.wform__hint-text {
  font-size: 13px !important;
  color: #777 !important;
  line-height: 1.5 !important;
  font-style: italic;
}

/* ── Monatlicher Beitrag ────────────────────────────────────────── */
.wform__order-summary { padding: 16px 20px !important; }
.wform__order-line { font-size: 16px !important; }
.wform__order-line strong { font-size: 22px !important; color: var(--red) !important; }

/* ── Responsive: Mobile ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .wform__label { font-size: 15px !important; }
  .wform__input { font-size: 16px !important; min-height: 50px !important; }
  .wizard-nav__next { font-size: 16px !important; padding: 15px 24px !important; }
  .wform__consent { padding: 12px !important; }
  .pkg-card__price { font-size: 28px !important; }
}

/* ── High Contrast Focus Ring ────────────────────────────────────── */
*:focus-visible {
  outline: 3px solid #005fcc !important;
  outline-offset: 2px !important;
}

/* ── Optional-Tag & Step-Hint ──────────────────────────────────── */
.wform__opt-tag {
  display: inline-block;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #888;
  background: #f3f4f6;
  border-radius: 4px;
  padding: 1px 7px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.01em;
}
.wform__step-hint {
  font-size: 14px;
  color: #666;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.5;
  border-left: 3px solid #ddd;
}
.wform__req-marker { color: var(--red); font-weight: 900; font-size: 16px; }

/* ── Field hint (unter Inputs) ──────────────────────────────────── */
.wform__field-hint {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
  line-height: 1.4;
  font-style: italic;
}

/* ── Pflichtfeld: Sternchen auch im wform__label ─────────────────── */
.wform__label .req-star {
  color: #c0392b;
  font-size: 18px;
  margin-left: 3px;
  vertical-align: middle;
  font-weight: 900;
}

/* ─── Wizard-Stepper: übersprungener Schritt (Mobil-Flow) ─────────────────── */
.wizard-stepper__item.skipped .wizard-stepper__circle {
  background: transparent;
  border-color: #d0d4dc;
  color: #b0b5bf;
}
.wizard-stepper__item.skipped .wizard-stepper__label {
  color: #b0b5bf;
}
.wizard-stepper__line.skipped {
  background: #e4e6eb;
}

/* ─── pkg-card: regionale Notiz unter Standard ────────────────────────────── */
.pkg-card__regional-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
  padding: 6px 10px;
  background: #f4f6fa;
  border-radius: 6px;
}
.pkg-card__regional-note svg {
  flex-shrink: 0;
  opacity: .7;
}

/* ─── bw-opt: hervorgehobene Option (Mobiler Notruf) ──────────────────────── */
.bw-opt--featured {
  border: 1.5px solid var(--red);
  background: #fff8f8;
}
.bw-opt--featured .bw-opt__name {
  color: var(--red);
  font-weight: 600;
}
.bw-opt--featured.bw-opt--checked {
  background: #fee;
  border-color: var(--red);
}

/* ─── bw-opt: Beschreibungstext ──────────────────────────────────────────── */
.bw-opt__desc {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 2px;
  line-height: 1.4;
}

/* ─── bw-price-preview: monatlicher Gesamtbeitrag unter Optionen ─────────── */
.bw-price-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: #EDF7EF;
  border: 1px solid var(--green-mid, #80BC4C);
  border-radius: 8px;
  font-size: 14px;
  color: #1a4a1a;
}
.bw-price-preview svg {
  flex-shrink: 0;
  color: var(--green-mid, #80BC4C);
}

/* ─── bw-service-block: Dienste-Infos in Schritt 5 ──────────────────────── */
.bw-service-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: #f4f6fa;
  border: 1px solid #e0e3eb;
}
.bw-service-block--info {
  background: #EDF7EF;
  border-color: var(--green-mid, #80BC4C);
}
.bw-service-block--green {
  background: #f0faf2;
  border-color: #6db86d;
}
.bw-service-block--warn {
  background: #fffbf0;
  border-color: #e8c252;
}
.bw-service-block__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.bw-service-block__body { flex: 1; }
.bw-service-block__title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue, #0a1833);
  margin-bottom: 4px;
}
.bw-service-block__text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* ─── wform__divider ─────────────────────────────────────────────────────── */
.wform__divider {
  height: 1px;
  background: #e8eaf0;
  margin: 20px 0;
}

/* ─── wform__check-grid: Erkrankungs-Kacheln ────────────────────────────── */
.wform__check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}
.wform__check-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1.5px solid #e0e3eb;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  transition: border-color .15s, background .15s;
  background: white;
}
.wform__check-tile:hover {
  border-color: var(--red);
  background: #fff8f8;
}
.wform__check-tile input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--red);
}
.wform__check-tile:has(input:checked) {
  border-color: var(--red);
  background: #fff8f8;
}

/* ─── wform__radio-card ──────────────────────────────────────────────────── */
.wform__radio-card {
  display: flex;
  align-items: stretch;
  cursor: pointer;
}
.wform__radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.wform__radio-card__inner {
  display: flex;
  flex-direction: column;
  padding: 9px 16px;
  border: 1.5px solid #e0e3eb;
  border-radius: 8px;
  background: white;
  transition: border-color .15s, background .15s;
  min-width: 90px;
  text-align: center;
}
.wform__radio-card:has(input:checked) .wform__radio-card__inner {
  border-color: var(--red);
  background: #fff8f8;
}
.wform__radio-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}
.wform__radio-card__sub {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.wform__radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ─── wform__field-hint ──────────────────────────────────────────────────── */
.wform__field-hint {
  font-size: 12px;
  color: var(--text-light);
  margin: 4px 0 0;
}

/* ─── wform__sepa-text ───────────────────────────────────────────────────── */
.wform__sepa-text {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  padding: 12px 14px;
  background: #f4f6fa;
  border-radius: 8px;
  margin-top: 16px;
  border: 1px solid #e0e3eb;
}

/* ─── wform__widerruf-box ────────────────────────────────────────────────── */
.wform__widerruf-box {
  background: #f9f9fc;
  border: 1px solid #dde0ea;
  border-radius: 10px;
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 13px;
  color: #333;
  line-height: 1.6;
}
.wform__widerruf-box p { margin: 0 0 8px; }
.wform__widerruf-box p:last-child { margin-bottom: 0; }
.wform__widerruf-box address {
  font-style: normal;
  margin: 8px 0 8px 12px;
  padding: 8px 12px;
  border-left: 3px solid var(--red);
  background: white;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
}
.wform__widerruf-hinweis {
  font-size: 12px;
  color: var(--text-light);
  padding-top: 8px;
  border-top: 1px solid #e8eaef;
  margin-top: 8px;
}
.wform__widerruf-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 12px;
}

/* ─── wform__consents ────────────────────────────────────────────────────── */
.wform__consents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.wform__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  cursor: pointer;
}
.wform__consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  accent-color: var(--red);
}
.wform__consent a {
  color: var(--red);
  text-decoration: underline;
}

/* ─── wform__signature-wrap ──────────────────────────────────────────────── */
.wform__signature-wrap {
  margin-top: 20px;
}
.wform__signature-header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
}
.wform__signature-hint {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.wform__signature-canvas-wrap {
  position: relative;
  border: 1.5px solid #c8cdd8;
  border-radius: 10px;
  background: white;
  overflow: hidden;
  min-height: 180px;
}
.wform__signature-canvas {
  display: block;
  width: 100%;
  touch-action: none;
}
.wform__signature-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  color: #c0c5d0;
  pointer-events: none;
  user-select: none;
}
.wform__signature-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.wform__signature-clear {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.wform__signature-clear:hover {
  color: var(--red);
  background: #fff0f0;
}

/* ─── wform__order-summary ───────────────────────────────────────────────── */
.wform__order-summary {
  padding: 14px 18px;
  background: #f4f6fa;
  border-radius: 10px;
  margin-top: 16px;
}
.wform__order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-light);
}
.wform__order-line--highlight {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
}
.wform__order-line--highlight strong {
  font-size: 20px;
  color: var(--red);
}

/* ─── wform__checkbox-row--spaced ────────────────────────────────────────── */
.wform__checkbox-row--spaced {
  padding: 10px 12px;
  border: 1.5px solid #e0e3eb;
  border-radius: 8px;
  background: white;
}
.wform__checkbox-row--spaced:has(input:checked) {
  border-color: var(--red);
  background: #fff8f8;
}

/* ─── Wizard-Erfolg ──────────────────────────────────────────────────────── */
.wizard-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}
.wizard-success__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #EDF7EF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.wizard-success__h2 {
  font-size: clamp(20px, 3.5vw, 26px);
  color: var(--blue);
  margin-bottom: 12px;
}
.wizard-success__text {
  font-size: 15px;
  color: var(--text-light);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.wizard-success__hint {
  font-size: 13px;
  color: #a0a5b0;
  margin-bottom: 24px;
}
.wizard-success__btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--red);
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .15s;
}
.wizard-success__btn:hover { background: #c50314; }

/* ─── Wizard-Fehler ──────────────────────────────────────────────────────── */
.wizard-error {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}
.wizard-error__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.wizard-error__h2 {
  font-size: clamp(18px, 3vw, 22px);
  color: var(--blue);
  margin-bottom: 10px;
}
.wizard-error__text {
  font-size: 14px;
  color: var(--text-light);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ─── bw-choice-grid & bw-choice-card (Step 0) ───────────────────────────── */
.bw-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.bw-choice-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 22px 20px;
  border: 2px solid #e0e3eb;
  border-radius: 14px;
  cursor: pointer;
  background: white;
  transition: border-color .18s, box-shadow .18s;
  text-decoration: none;
  color: inherit;
}
.bw-choice-card:hover,
.bw-choice-card--selected {
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(228,4,24,.10);
}
.bw-choice-card--recommended {
  border-color: var(--red);
}
.bw-choice-card__check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e0e3eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}
.bw-choice-card--selected .bw-choice-card__check,
.bw-choice-card:has(input:checked) .bw-choice-card__check {
  background: var(--red);
}
.bw-choice-card__badge-top {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: white;
  background: var(--red);
  border-radius: 20px;
  padding: 2px 10px;
  margin-bottom: 10px;
  align-self: flex-start;
  letter-spacing: .3px;
}
.bw-choice-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f4f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--red);
}
.bw-choice-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 8px;
  line-height: 1.3;
}
.bw-choice-card__desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}
.bw-choice-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bw-choice-card__features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-light);
}
.bw-choice-card__features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2380BC4C' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* ─── bw-kosten-hinweis ──────────────────────────────────────────────────── */
.bw-kosten-hinweis {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px 16px;
  background: #fffbf0;
  border: 1px solid #e8c252;
  border-radius: 8px;
  font-size: 13px;
  color: #6b5900;
  line-height: 1.5;
}
.bw-kosten-hinweis svg { flex-shrink: 0; margin-top: 1px; }

/* ─── summary blocks ─────────────────────────────────────────────────────── */
.summary {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e0e3eb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.summary__block {
  padding: 12px 18px;
  border-bottom: 1px solid #e0e3eb;
}
.summary__block:last-child { border-bottom: none; }
.summary__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-light);
  margin: 0 0 4px;
}
.summary__value {
  font-size: 14px;
  color: var(--blue);
  margin: 0;
  line-height: 1.5;
}
