.funnel { padding: var(--space-5); color: var(--color-text); background: var(--color-bg); border-radius: var(--radius-md); box-shadow: var(--shadow-hover); }

.compare-question-section { min-height: 70vh; display: grid; align-items: center; background: var(--color-bg-alt); }

.compare-question-wrap { max-width: 52rem; }

.compare-quick-page .funnel-heading,
.fees-quick-page .funnel-heading { display: none; }

.compare-quick-page .funnel,
.fees-quick-page .funnel { padding: var(--space-6); }

.funnel-heading h2 { margin-bottom: var(--space-2); font-size: 1.5rem; }

.funnel-heading p { color: var(--color-text-muted); }

.progress-wrap { margin-block: var(--space-4); color: var(--color-text-muted); font-size: .875rem; font-weight: 600; }

.progress-track { height: var(--space-2); margin-top: var(--space-2); overflow: hidden; background: var(--color-border); border-radius: var(--radius-pill); }

.progress-fill { height: 100%; background: var(--color-accent); transition: width .25s ease; }

.funnel-step { transition: opacity .25s ease, transform .25s ease; }

.funnel-step.is-changing { opacity: 0; transform: translateX(var(--space-3)); }

@media (prefers-reduced-motion: reduce) {
  .progress-fill, .funnel-step { transition: none; }
}

.progress-1 { width: var(--progress-1); }

.progress-2 { width: var(--progress-2); }

.progress-3 { width: var(--progress-3); }

.progress-4 { width: var(--progress-4); }

.progress-5 { width: var(--progress-5); }

.quiz-step { min-width: 0; padding: 0; border: 0; }

.quiz-step legend { margin-bottom: var(--space-3); color: var(--color-primary); font: 600 1.25rem/1.4 var(--font-heading); }

.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }

.choice { position: relative; }

.choice input { position: absolute; opacity: 0; }

.choice span { display: block; padding: var(--space-3); border: var(--border-width) solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-bg-alt); cursor: pointer; }

.choice input:checked + span { border-color: var(--color-primary); background: var(--color-primary-light); font-weight: 600; }

.checkbox-field { display: flex; align-items: center; gap: var(--space-2); grid-column: 1 / -1; }

.checkbox-field input { width: auto; min-height: auto; margin: 0; }

.quiz-actions { display: flex; justify-content: flex-end; gap: var(--space-2); margin-top: var(--space-4); }

.form-error { padding: var(--space-2); margin-top: var(--space-3); color: var(--color-error); background: var(--color-error-bg); border-radius: var(--radius-sm); }

.narrow-funnel { max-width: 50rem; }

@media (max-width: 48em) {
  .funnel { padding: var(--space-4); }
}
