/* Öffentliche Qualifizierungs-Landingpage – bewusst schlank, mobile-first (Anzeigen-Traffic). */

.bwc-funnel-wrap * { box-sizing: border-box; }

.bwc-funnel-wrap {
  /* Markenfarben von schwester-bianca.de: Lila für Überschriften/Akzente,
     Lime-Grün für den Haupt-Button (identisch zum "Jetzt bewerben!"-Button dort). */
  --bwc-accent: #93117e;
  --bwc-accent-soft: #f5e8f2;
  --bwc-cta: #c6d100;
  --bwc-cta-text: #1a1a1a;
  --bwc-cta-soft: #f4f7d9;
  --bwc-bg: #f7f8f7;
  --bwc-text: #333333;
  --bwc-text-muted: #6b6b6b;
  --bwc-danger: #b3432b;
  --bwc-danger-soft: #fbe9e4;
  --bwc-border: #dde3df;

  font-family: MontserratRegular, Montserrat, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bwc-bg);
  color: var(--bwc-text);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}

.bwc-funnel-card {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 20px 48px;
}

.bwc-funnel-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--bwc-border);
  overflow: hidden;
  margin-bottom: 24px;
}
.bwc-funnel-progress-bar {
  height: 100%;
  background: var(--bwc-accent);
  transition: width .25s ease;
}

.bwc-funnel-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--bwc-accent);
  margin: 0 0 6px;
}
.bwc-funnel-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px;
}
.bwc-funnel-desc {
  font-size: 15px;
  color: var(--bwc-text-muted);
  line-height: 1.5;
  margin: 0 0 24px;
  white-space: pre-line;
}

.bwc-funnel-question {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 18px;
}

.bwc-funnel-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.bwc-funnel-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: 1.5px solid var(--bwc-border);
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.bwc-funnel-option:hover,
.bwc-funnel-option:focus-visible {
  border-color: var(--bwc-accent);
  background: var(--bwc-accent-soft);
  outline: none;
}
.bwc-funnel-option.is-selected {
  border-color: var(--bwc-accent);
  background: var(--bwc-accent-soft);
}

.bwc-funnel-textarea,
.bwc-funnel-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--bwc-border);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: var(--bwc-text);
}
.bwc-funnel-textarea:focus,
.bwc-funnel-input:focus {
  outline: none;
  border-color: var(--bwc-accent);
}
.bwc-funnel-textarea { min-height: 110px; resize: vertical; margin-bottom: 14px; }

.bwc-funnel-field { margin-bottom: 14px; }
.bwc-funnel-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--bwc-text-muted); }
.bwc-funnel-error { font-size: 13px; color: var(--bwc-danger); margin: -8px 0 12px; }

.bwc-funnel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: none;
  border-radius: 4px;
  background: var(--bwc-cta);
  color: var(--bwc-cta-text);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}
.bwc-funnel-btn:disabled { opacity: .5; cursor: not-allowed; }
.bwc-funnel-btn-secondary {
  background: transparent;
  color: var(--bwc-text-muted);
  font-weight: 500;
  margin-top: 10px;
}

.bwc-funnel-back {
  background: none;
  border: none;
  color: var(--bwc-text-muted);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 6px;
}

.bwc-funnel-result {
  text-align: center;
  padding: 32px 0 8px;
}
.bwc-funnel-result-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 28px;
}
.bwc-funnel-result.is-success .bwc-funnel-result-icon { background: var(--bwc-cta-soft); color: #6b7400; }
.bwc-funnel-result.is-decline .bwc-funnel-result-icon { background: var(--bwc-danger-soft); color: var(--bwc-danger); }

.bwc-funnel-hp { position: absolute; left: -9999px; top: -9999px; }

.bwc-funnel-note { font-size: 13px; color: var(--bwc-text-muted); margin-top: 16px; text-align: center; }
