/* ============================================================
   Schübeler Consulting — Funnel-spezifische Styles
   Wird nur auf Funnel-Seiten geladen (Zusammenarbeit, Anfrage, Danke)

   STYLE-AGNOSTISCH: Nutzt ausschließlich Base-Theme-Variablen
   (--electric-blue, --deep-purple, --neutral-*), die in allen
   3 Design-Stilen (Bold Modern, Tech Premium, Classic Trust)
   definiert sind.

   KONTRAST-STRATEGIE:
   - --funnel-text = --neutral-900 → für ALLES Lesbare
   - --funnel-text-muted = --neutral-800 → NUR für Hints/Captions
   - Kein color-mix() für Text — zu riskant bei Fallback
   - Alle Fließtexte bekommen explizite Farben (kein Inheritance)
   - !important wo nötig, um WP-Theme-Overrides zu blockieren
   ============================================================ */

/* ===== DESIGN VARIABLES =====
   Fallback-Kette: --text-primary / --surface / --text-secondary existieren nur
   in Tech Premium. In Bold Modern / Classic Trust sind sie undefined → Fallback
   auf --neutral-*, die dort die richtigen (Light-Theme) Werte haben.
   So funktioniert der Funnel in ALLEN Design-Styles korrekt. */
body.schuebeler-funnel-page {
  --funnel-accent: var(--electric-blue);
  --funnel-accent-alt: var(--blue-700, #156199); /* CI-Blau-Tint statt Lila */
  --funnel-surface: var(--surface, var(--neutral-100));
  --funnel-text: var(--text-primary, var(--neutral-900));
  --funnel-text-muted: var(--text-secondary, var(--neutral-800));

  /* Transparente Akzentfarben (color-mix nur für Deko, nicht für Text) */
  --funnel-border: color-mix(in srgb, var(--electric-blue) 15%, transparent);
  --funnel-border-hover: color-mix(in srgb, var(--electric-blue) 40%, transparent);
  --funnel-glow: color-mix(in srgb, var(--electric-blue) 30%, transparent);
  --funnel-accent-soft: color-mix(in srgb, var(--electric-blue) 10%, transparent);
  --funnel-accent-subtle: color-mix(in srgb, var(--electric-blue) 8%, transparent);
  --funnel-accent-border: color-mix(in srgb, var(--electric-blue) 20%, transparent);

  /* Oberflächen-Transparenzen */
  --funnel-surface-card: color-mix(in srgb, var(--surface, var(--neutral-100)) 60%, transparent);
  --funnel-surface-hover: color-mix(in srgb, var(--surface, var(--neutral-100)) 80%, transparent);

  /* Button/Checkbox auf Gradient: immer dunkel */
  --funnel-btn-text: var(--navy, #0B1430);

  /* Error */
  --funnel-error: #EF4444;
}

/* Fallbacks: Falls color-mix() nicht unterstützt wird,
   definiere solide Fallback-Werte für Deko-Variablen */
@supports not (color: color-mix(in srgb, red 50%, blue)) {
  body.schuebeler-funnel-page {
    --funnel-border: rgba(128, 128, 128, 0.15);
    --funnel-border-hover: rgba(128, 128, 128, 0.4);
    --funnel-glow: rgba(128, 128, 128, 0.3);
    --funnel-accent-soft: rgba(128, 128, 128, 0.1);
    --funnel-accent-subtle: rgba(128, 128, 128, 0.08);
    --funnel-accent-border: rgba(128, 128, 128, 0.2);
    --funnel-surface-card: var(--neutral-100);
    --funnel-surface-hover: var(--neutral-100);
  }
}

/* ===== GLOBAL TEXT RESET =====
   Überschreibt JEDE WP-Theme-Regel auf p, li, span, h1-h3
   innerhalb von Funnel-Seiten. !important ist hier gewollt,
   weil design-tech-premium.css selbst !important nutzt.
   Ohne !important hier → unleserliche Texte. */
body.schuebeler-funnel-page .schuebeler-main p,
body.schuebeler-funnel-page .schuebeler-main li,
body.schuebeler-funnel-page .schuebeler-main span {
  color: var(--funnel-text) !important;
  -webkit-text-fill-color: var(--funnel-text) !important;
}

body.schuebeler-funnel-page .schuebeler-main h1,
body.schuebeler-funnel-page .schuebeler-main h2,
body.schuebeler-funnel-page .schuebeler-main h3,
body.schuebeler-funnel-page .schuebeler-main h4 {
  color: var(--funnel-text) !important;
  -webkit-text-fill-color: var(--funnel-text) !important;
}

/* Ausnahmen: Elemente, die bewusst NICHT --funnel-text bekommen */
body.schuebeler-funnel-page .funnel-btn-primary,
body.schuebeler-funnel-page .funnel-cta-btn {
  color: var(--funnel-btn-text) !important;
  -webkit-text-fill-color: var(--funnel-btn-text) !important;
}

body.schuebeler-funnel-page .funnel-check-icon {
  color: var(--funnel-accent) !important;
  -webkit-text-fill-color: var(--funnel-accent) !important;
}

body.schuebeler-funnel-page .funnel-faq-question .toggle {
  color: var(--funnel-accent) !important;
  -webkit-text-fill-color: var(--funnel-accent) !important;
}

body.schuebeler-funnel-page .funnel-fit-list.positive .icon {
  color: var(--funnel-accent) !important;
  -webkit-text-fill-color: var(--funnel-accent) !important;
}

body.schuebeler-funnel-page .funnel-bafa-box strong {
  color: var(--funnel-accent) !important;
  -webkit-text-fill-color: var(--funnel-accent) !important;
}

body.schuebeler-funnel-page .funnel-process-step .step-number {
  color: var(--funnel-accent) !important;
  -webkit-text-fill-color: var(--funnel-accent) !important;
}

body.schuebeler-funnel-page .funnel-progress-step.active {
  color: var(--funnel-btn-text) !important;
  -webkit-text-fill-color: var(--funnel-btn-text) !important;
}

body.schuebeler-funnel-page .funnel-progress-step.done {
  color: var(--funnel-accent) !important;
  -webkit-text-fill-color: var(--funnel-accent) !important;
}

body.schuebeler-funnel-page .funnel-field .error-msg {
  color: var(--funnel-error) !important;
  -webkit-text-fill-color: var(--funnel-error) !important;
}

body.schuebeler-funnel-page .funnel-field .hint {
  color: var(--funnel-text-muted) !important;
  -webkit-text-fill-color: var(--funnel-text-muted) !important;
}

body.schuebeler-funnel-page .funnel-small-note {
  color: var(--funnel-text-muted) !important;
  -webkit-text-fill-color: var(--funnel-text-muted) !important;
}

body.schuebeler-funnel-page .funnel-field label .optional {
  color: var(--funnel-text-muted) !important;
  -webkit-text-fill-color: var(--funnel-text-muted) !important;
}

/* ===== FUNNEL CONTAINERS ===== */
.funnel-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  position: relative;
  z-index: 1;
}

.funnel-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  position: relative;
  z-index: 1;
}

.funnel-section + .funnel-section {
  border-top: 1px solid var(--funnel-border);
}

/* ===== BUTTONS ===== */
.funnel-btn {
  padding: 0.85rem 2rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
}

.funnel-btn-primary {
  background: var(--vivid-orange);
  color: var(--funnel-btn-text) !important;
  flex: 1;
}

.funnel-btn-primary:hover {
  box-shadow: 0 0 40px var(--funnel-glow);
  transform: translateY(-2px);
}

.funnel-btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.funnel-btn-back {
  background: transparent;
  color: var(--funnel-text-muted) !important;
  border: 1px solid var(--funnel-border);
  padding: 0.85rem 1.5rem;
}

.funnel-btn-back:hover {
  color: var(--funnel-text) !important;
  border-color: var(--funnel-border-hover);
}

.funnel-btn-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* CTA Button (Landingpage) */
.funnel-cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--vivid-orange);
  color: var(--funnel-btn-text) !important;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.funnel-cta-btn:hover {
  color: var(--funnel-btn-text) !important;
  box-shadow: 0 0 40px var(--funnel-glow);
  transform: translateY(-3px);
}

/* ===== FORM ELEMENTS ===== */
.funnel-field {
  margin-bottom: 1.5rem;
}

.funnel-field label {
  display: block;
  font-size: 0.9rem;
  color: var(--funnel-text) !important;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.funnel-field label .optional {
  color: var(--funnel-text-muted) !important;
  font-weight: 400;
  font-size: 0.8rem;
}

.funnel-field input[type="text"],
.funnel-field input[type="email"],
.funnel-field input[type="url"],
.funnel-field select,
.funnel-field textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--funnel-surface);
  border: 1px solid var(--funnel-border);
  border-radius: 12px;
  color: var(--funnel-text) !important;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.funnel-field input:focus,
.funnel-field select:focus,
.funnel-field textarea:focus {
  border-color: var(--funnel-accent);
  box-shadow: 0 0 0 3px var(--funnel-accent-soft);
}

.funnel-field input::placeholder,
.funnel-field textarea::placeholder {
  color: var(--funnel-text-muted) !important;
  opacity: 0.6;
}

.funnel-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.funnel-field select option {
  background: var(--funnel-surface);
  color: var(--funnel-text);
}

.funnel-field textarea {
  min-height: 100px;
  resize: vertical;
}

.funnel-field .hint {
  font-size: 0.8rem;
  color: var(--funnel-text-muted) !important;
  margin-top: 0.35rem;
}

.funnel-field .error-msg {
  font-size: 0.8rem;
  color: var(--funnel-error) !important;
  margin-top: 0.35rem;
  display: none;
}

.funnel-field.has-error input,
.funnel-field.has-error select,
.funnel-field.has-error textarea {
  border-color: var(--funnel-error);
}

.funnel-field.has-error .error-msg { display: block; }

/* ===== RADIO GROUPS ===== */
.funnel-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.funnel-radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--funnel-surface);
  border: 1px solid var(--funnel-border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.funnel-radio-option:hover {
  background: var(--funnel-surface-hover);
  border-color: var(--funnel-border-hover);
}

.funnel-radio-option input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--funnel-glow);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.funnel-radio-option input[type="radio"]:checked {
  border-color: var(--funnel-accent);
}

.funnel-radio-option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--funnel-accent);
  box-shadow: 0 0 8px var(--funnel-glow);
}

.funnel-radio-option span {
  font-size: 0.9rem;
  color: var(--funnel-text) !important;
}

.funnel-radio-option input[type="radio"]:checked ~ span {
  color: var(--funnel-text) !important;
}

/* ===== CONDITIONAL FIELD ===== */
.funnel-conditional-field {
  display: none;
  margin-top: 0.75rem;
  padding-left: 1rem;
  border-left: 2px solid var(--funnel-accent-border);
}

.funnel-conditional-field.visible { display: block; }

/* ===== CONSENT ===== */
.funnel-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--funnel-surface);
  border-radius: 12px;
  border: 1px solid var(--funnel-border);
}

.funnel-consent input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--funnel-glow);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.funnel-consent input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--funnel-accent), var(--funnel-accent-alt));
  border-color: var(--funnel-accent);
}

.funnel-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--funnel-btn-text);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.funnel-consent label {
  font-size: 0.8rem;
  color: var(--funnel-text) !important;
  line-height: 1.5;
  cursor: pointer;
}

/* ===== PROGRESS BAR ===== */
.funnel-progress-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  padding: 0 0.5rem;
}

.funnel-progress-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--funnel-surface);
  border: 2px solid var(--funnel-accent-border);
  color: var(--funnel-text-muted) !important;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.funnel-progress-step.active {
  background: linear-gradient(135deg, var(--funnel-accent), var(--funnel-accent-alt));
  border-color: var(--funnel-accent);
  color: var(--funnel-btn-text) !important;
  box-shadow: 0 0 15px var(--funnel-glow);
}

.funnel-progress-step.done {
  background: var(--funnel-accent-soft);
  border-color: var(--funnel-accent);
  color: var(--funnel-accent) !important;
}

.funnel-progress-line {
  flex: 1;
  height: 2px;
  background: var(--funnel-accent-soft);
  transition: background 0.3s ease;
}

.funnel-progress-line.done {
  background: linear-gradient(90deg, var(--funnel-accent), var(--funnel-accent-alt));
}

/* ===== STEPS ===== */
.funnel-step { display: none; animation: funnelFadeIn 0.35s ease; }
.funnel-step.active { display: block; }

.funnel-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--funnel-text) !important;
}

.funnel-step-subtitle {
  color: var(--funnel-text-muted) !important;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

@keyframes funnelFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ERROR BANNER ===== */
.funnel-error-banner {
  display: none;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  color: var(--funnel-error) !important;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.funnel-error-banner.visible { display: block; }

/* ===== SPINNER ===== */
.funnel-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid var(--funnel-btn-text);
  border-right-color: transparent;
  border-radius: 50%;
  animation: funnelSpin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}

@keyframes funnelSpin { to { transform: rotate(360deg); } }

/* ===== HERO (Landingpage) ===== */
.funnel-hero {
  text-align: center;
  padding: 5rem 1.25rem 4rem;
}

.funnel-hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--funnel-text) !important;
  -webkit-text-fill-color: var(--funnel-text);
}

.funnel-hero .sub {
  color: var(--funnel-text) !important;
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ===== FIT SECTION ===== */
.funnel-fit-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--funnel-text) !important;
}

.funnel-fit-list { list-style: none; padding: 0; margin: 0; }

.funnel-fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.funnel-fit-list li span {
  color: var(--funnel-text) !important;
}

.funnel-fit-list li .icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.1rem;
}

.funnel-fit-list.positive li .icon {
  color: var(--funnel-accent) !important;
  text-shadow: 0 0 8px var(--funnel-glow);
}

.funnel-fit-list.negative li .icon {
  color: var(--funnel-text-muted) !important;
}

.funnel-footer-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--funnel-surface);
  border-radius: 12px;
  color: var(--funnel-text) !important;
  font-size: 0.85rem;
  font-style: italic;
  border-left: 2px solid var(--funnel-accent-border);
}

/* ===== PROCESS STEPS ===== */
.funnel-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.funnel-process-step {
  text-align: center;
  padding: 1.25rem 0.75rem;
}

.funnel-process-step .step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.funnel-process-step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--funnel-text) !important;
}

.funnel-process-step p {
  font-size: 0.8rem;
  color: var(--funnel-text) !important;
  opacity: 0.85;
}

.funnel-process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--funnel-accent-soft);
  border: 1px solid var(--funnel-glow);
  color: var(--funnel-accent) !important;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ===== INVESTITION ===== */
.funnel-invest-text {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--funnel-text) !important;
}

.funnel-bafa-box {
  padding: 1.25rem 1.5rem;
  background: var(--funnel-surface);
  border: 1px solid var(--funnel-accent-border);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.funnel-bafa-box .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.funnel-bafa-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--funnel-text) !important;
}

.funnel-bafa-box strong {
  color: var(--funnel-accent) !important;
}

/* ===== FAQ ===== */
.funnel-faq-list { margin-top: 1.5rem; }

.funnel-faq-item { border-bottom: 1px solid var(--funnel-border); }

.funnel-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--funnel-text) !important;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.funnel-faq-question:hover {
  color: var(--funnel-accent) !important;
}

.funnel-faq-question .toggle {
  font-size: 1.25rem;
  color: var(--funnel-accent) !important;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.funnel-faq-item.open .funnel-faq-question .toggle { transform: rotate(45deg); }

.funnel-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.funnel-faq-item.open .funnel-faq-answer {
  max-height: 800px;
  padding-bottom: 1.25rem;
}

.funnel-faq-answer p {
  color: var(--funnel-text) !important;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.funnel-faq-answer p:last-child { margin-bottom: 0; }

.funnel-faq-answer strong {
  color: var(--funnel-text) !important;
  opacity: 1;
}

/* ===== FINAL CTA ===== */
.funnel-final-cta {
  text-align: center;
  padding: 4rem 1.25rem 5rem;
}

.funnel-final-cta h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--funnel-text) !important;
}

.funnel-final-cta p {
  color: var(--funnel-text) !important;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ===== FORM HEADER ===== */
.funnel-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.funnel-form-header h1 {
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  margin-bottom: 0.75rem;
  color: var(--funnel-text) !important;
}

.funnel-form-header p {
  color: var(--funnel-text) !important;
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0.85;
}

/* ===== DANKE-SEITEN ===== */
.schuebeler-funnel-page .funnel-danke-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
  color: var(--funnel-text) !important;
  -webkit-text-fill-color: var(--funnel-text) !important;
}

.schuebeler-funnel-page .funnel-danke-subtitle {
  text-align: center;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  color: var(--funnel-text) !important;
  -webkit-text-fill-color: var(--funnel-text) !important;
  opacity: 0.9;
}

.funnel-check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--funnel-accent-soft);
  border: 2px solid var(--funnel-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.75rem;
  color: var(--funnel-accent) !important;
  box-shadow: 0 0 20px var(--funnel-accent-soft);
}

.funnel-subtitle {
  text-align: center;
  color: var(--funnel-text) !important;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.funnel-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--funnel-accent-subtle);
  border: 1px solid var(--funnel-accent-border);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.funnel-info-box .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.funnel-info-box p {
  color: var(--funnel-text) !important;
  font-size: 0.9rem;
}

.funnel-info-box strong {
  color: var(--funnel-text) !important;
}

.funnel-message-box {
  background: var(--funnel-surface-card);
  border: 1px solid var(--funnel-border);
  border-radius: 24px;
  padding: 2rem;
  text-align: left;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
}

.funnel-message-box h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--funnel-text) !important;
}

.funnel-message-box p {
  color: var(--funnel-text) !important;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.funnel-message-box p:last-child { margin-bottom: 0; }

.funnel-small-note {
  color: var(--funnel-text-muted) !important;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .funnel-hero { padding: 3rem 1rem 3rem; }
  .funnel-hero h1 { font-size: 1.5rem; }
  .funnel-section { padding: 3rem 1rem; }
  .funnel-process-steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .funnel-container { padding: 1.5rem 1rem 3rem; }
  .funnel-btn-row { flex-direction: column-reverse; }
  .funnel-btn-back { text-align: center; }
  .funnel-process-steps { grid-template-columns: 1fr; }
}
