/* ── Enclosed funnel layout ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  background: var(--surface, #f3f8f5);
  font-family: 'Inter', sans-serif;
  color: var(--ink-900, #0e1e18);
}

/* ── Funnel header ───────────────────────────────────── */
.fq-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 59, 50, 0.08);
  padding: 0 1.5rem;
}

.fq-header-inner {
  max-width: 720px;
  margin: 0 auto;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fq-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px 6px 10px;
  border: 1.5px solid rgba(20, 59, 50, 0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700, #415952);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}

.fq-back-btn:hover { border-color: var(--green-700, #2f7069); color: var(--green-700, #2f7069); }

.fq-progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fq-progress-bar {
  flex: 1;
  height: 5px;
  background: rgba(20, 59, 50, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.fq-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-700, #2f7069), #4f8f96);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 25%;
}

.fq-progress-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-700, #415952);
  white-space: nowrap;
}

.fq-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--green-900, #005840);
  text-decoration: none;
  flex-shrink: 0;
}

/* ── Main content area ───────────────────────────────── */
.fq-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 6rem;
}

/* ── Funnel container (animated) ─────────────────────── */
#funnel-container {
  opacity: 1;
  transform: translateX(0);
}

/* ── Typography ──────────────────────────────────────── */
.fq-step-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700, #2f7069);
  margin-bottom: 0.75rem;
}

#funnel-container h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.5rem;
}

#funnel-container > p,
#funnel-container p {
  color: var(--ink-700, #415952);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ── Options (checkboxes) ────────────────────────────── */
.fq-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.fq-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(20, 59, 50, 0.1);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-900, #0e1e18);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.fq-option:hover {
  border-color: var(--green-700, #2f7069);
  background: rgba(47, 112, 105, 0.05);
}

.fq-option.selected {
  border-color: var(--green-700, #2f7069);
  background: rgba(47, 112, 105, 0.09);
  box-shadow: 0 0 0 3px rgba(47, 112, 105, 0.1);
}

.fq-option-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(20, 59, 50, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Text inputs ─────────────────────────────────────── */
.fq-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
  .fq-input-row { grid-template-columns: 1fr; }
}

.fq-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.fq-input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700, #415952);
}

.fq-input-group input {
  padding: 0.78rem 1rem;
  border: 1.5px solid rgba(20, 59, 50, 0.15);
  border-radius: 12px;
  background: rgba(255,255,255,0.8);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink-900, #0e1e18);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.fq-input-group input:focus {
  border-color: var(--green-700, #2f7069);
  box-shadow: 0 0 0 3px rgba(47, 112, 105, 0.12);
}

/* ── Actions ─────────────────────────────────────────── */
.fq-actions {
  margin-top: 2rem;
}

.fq-btn-next {
  width: 100%;
  padding: 0 2rem;
  min-height: 54px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700, #2f7069), #4f8f96);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 8px 22px rgba(47, 112, 105, 0.28);
}

.fq-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(47, 112, 105, 0.35);
}

/* ── Expand (Freitext nach Ja/Nein) ──────────────────── */
.fq-expand-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
  overflow: hidden;
  margin-top: -0.3rem;
  margin-bottom: -0.3rem;
}

.fq-expand-wrap--open {
  grid-template-rows: 1fr;
  margin-top: 0;
  margin-bottom: 0;
}

.fq-expand-inner {
  min-height: 0;
  padding: 0 1px;
}

.fq-expand-wrap--open .fq-expand-inner {
  padding: 0.5rem 1px 0.2rem;
}

.fq-expand-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-700, #415952);
  margin-bottom: 0.4rem;
}

.fq-expand-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(20, 59, 50, 0.15);
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--ink-900, #0e1e18);
  resize: vertical;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  line-height: 1.55;
}

.fq-expand-textarea:focus {
  border-color: var(--green-700, #2f7069);
  box-shadow: 0 0 0 3px rgba(47, 112, 105, 0.12);
}

/* ── Inline error ─────────────────────────────────────── */
.fq-error {
  display: none;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  background: rgba(220, 60, 60, 0.07);
  border: 1px solid rgba(220, 60, 60, 0.2);
  border-radius: 10px;
  color: #c0392b;
  font-size: 0.88rem;
  font-weight: 500;
}

/* ── Result screen ───────────────────────────────────── */
.fq-result {
  text-align: center;
  padding: 2.5rem 0;
}

.fq-result-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
}

.fq-result h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.fq-result p {
  color: var(--ink-700, #415952);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ── Spinner Overlay ─────────────────────────────────── */
#fqSpinner {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(243, 248, 245, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem;
}

.fq-spinner-ring {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(47, 112, 105, 0.15);
  border-top-color: var(--green-700, #2f7069);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.fq-spinner-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900, #005840);
}

.fq-spinner-sub {
  font-size: 0.9rem;
  color: var(--ink-700, #415952);
  max-width: 300px;
}

/* ── Intro Card ──────────────────────────────────────── */
.fq-intro-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(20, 59, 50, 0.1);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.5rem;
}

.fq-intro-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700, #2f7069), #4f8f96);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fq-intro-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-900, #0e1e18);
  margin: 0 0 2px !important;
}

.fq-intro-role {
  font-size: 0.75rem;
  color: var(--green-700, #2f7069);
  font-weight: 600;
  margin: 0 0 0.75rem !important;
}

.fq-intro-text {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--ink-700, #415952);
  line-height: 1.6;
  margin: 0 !important;
}

.fq-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.fq-intro-stat {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(20, 59, 50, 0.1);
  border-radius: 14px;
  padding: 0.9rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fq-intro-stat strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-700, #2f7069);
}

.fq-intro-stat span {
  font-size: 0.72rem;
  color: var(--ink-700, #415952);
}

/* ── Input label hint ────────────────────────────────── */
.fq-label-hint {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-700, #415952);
  opacity: 0.7;
  margin-left: 4px;
}

/* ── Consent ─────────────────────────────────────────── */
.fq-consent-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.fq-consent-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(20, 59, 50, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s;
}

.fq-consent-item:has(.fq-consent-check:checked) {
  border-color: var(--green-700, #2f7069);
  background: rgba(47, 112, 105, 0.06);
}

.fq-consent-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.fq-consent-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(20, 59, 50, 0.2);
  background: #fff;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}

.fq-consent-item:has(.fq-consent-check:checked) .fq-consent-box {
  border-color: var(--green-700, #2f7069);
  background: var(--green-700, #2f7069);
}

.fq-consent-item:has(.fq-consent-check:checked) .fq-consent-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.fq-consent-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-900, #0e1e18);
}

.fq-consent-all-btn {
  width: 100%;
  padding: 0.7rem;
  border: 1.5px solid rgba(47, 112, 105, 0.3);
  border-radius: 999px;
  background: rgba(47, 112, 105, 0.06);
  color: var(--green-700, #2f7069);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  margin-bottom: 0.5rem;
}

.fq-consent-all-btn:hover {
  background: rgba(47, 112, 105, 0.12);
  border-color: var(--green-700, #2f7069);
}

/* ── Prognose ────────────────────────────────────────── */
.fq-prognosis {
  padding: 0.5rem 0;
}

.fq-prognosis-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(47, 112, 105, 0.1);
  border: 1px solid rgba(47, 112, 105, 0.25);
  color: var(--green-700, #2f7069);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 1.25rem;
}

.fq-prognosis-heading {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem !important;
}

.fq-prognosis-card {
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(20, 59, 50, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.fq-prognosis-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.fq-prognosis-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fq-prognosis-col--highlight {
  background: rgba(47, 112, 105, 0.07);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(47, 112, 105, 0.15);
}

.fq-prognosis-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-700, #415952);
}

.fq-prognosis-value {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--ink-900, #0e1e18);
}

.fq-prognosis-value--green {
  color: var(--green-700, #2f7069);
}

.fq-prognosis-arrow {
  font-size: 1.4rem;
  color: var(--green-700, #2f7069);
  font-weight: 300;
  flex-shrink: 0;
}

.fq-prognosis-bar-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fq-prognosis-bar {
  flex: 1;
  height: 8px;
  background: rgba(20, 59, 50, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.fq-prognosis-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-700, #2f7069), #4f8f96);
  border-radius: 999px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fq-prognosis-bar-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-700, #2f7069);
  white-space: nowrap;
}

.fq-prognosis-source {
  font-size: 0.72rem;
  color: var(--ink-700, #415952);
  line-height: 1.5;
  opacity: 0.75;
  margin: 0 !important;
}

.fq-prognosis-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.fq-prognosis-stat {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(20, 59, 50, 0.1);
  border-radius: 14px;
  padding: 1rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fq-prognosis-stat strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--ink-900, #0e1e18);
  letter-spacing: -0.03em;
}

.fq-prognosis-stat span {
  font-size: 0.72rem;
  color: var(--ink-700, #415952);
}

/* ── Trust badges ────────────────────────────────────── */
.fq-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.fq-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-700, #415952);
}

.fq-trust-badge svg {
  flex-shrink: 0;
  color: var(--green-700, #2f7069);
}

/* ══════════════════════════════════════════════════════
   PROGRAMMEMPFEHLUNG – Step nach Triage-Auswertung
   ══════════════════════════════════════════════════════ */

.fq-rec-heading {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink-900, #0e1e18);
  margin-bottom: 0.35rem;
}

.fq-rec-subheading {
  font-size: 0.9rem;
  color: var(--ink-700, #415952);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

/* ── Disclaimer ──────────────────────────────────────── */
.fq-rec-disclaimer {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  color: #92400e;
  line-height: 1.5;
}

.fq-rec-disclaimer svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #d97706;
}

/* ── Card ────────────────────────────────────────────── */
.fq-rec-card {
  background: #fff;
  border: 1.5px solid rgba(20, 59, 50, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.25rem 1rem;
  margin-bottom: 1rem;
}

.fq-rec-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.fq-rec-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-700, #415952);
}

/* ── BMI display ─────────────────────────────────────── */
.fq-rec-bmi-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.fq-rec-bmi-value {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.fq-rec-bmi-cat {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
}

/* BMI color states */
.fq-rec-bmi--normal     { color: #16a34a; background: rgba(22,163,74,.1); }
.fq-rec-bmi--overweight { color: #ca8a04; background: rgba(202,138,4,.1); }
.fq-rec-bmi--obese1     { color: #ea580c; background: rgba(234,88,12,.1); }
.fq-rec-bmi--obese2     { color: #dc2626; background: rgba(220,38,38,.1); }
.fq-rec-bmi--obese3     { color: #9f1239; background: rgba(159,18,57,.1); }

/* apply background only to cat badge, not value */
.fq-rec-bmi-value.fq-rec-bmi--normal,
.fq-rec-bmi-value.fq-rec-bmi--overweight,
.fq-rec-bmi-value.fq-rec-bmi--obese1,
.fq-rec-bmi-value.fq-rec-bmi--obese2,
.fq-rec-bmi-value.fq-rec-bmi--obese3 {
  background: transparent;
}

/* ── BMI progress bar ────────────────────────────────── */
.fq-rec-bmi-bar-wrap {
  margin-top: 0.35rem;
}

.fq-rec-bmi-bar {
  height: 7px;
  background: rgba(20,59,50,0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.fq-rec-bmi-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.7s cubic-bezier(.4,0,.2,1);
}

.fq-rec-bmi-bar-fill.fq-rec-bmi--normal     { background: #16a34a; }
.fq-rec-bmi-bar-fill.fq-rec-bmi--overweight { background: #ca8a04; }
.fq-rec-bmi-bar-fill.fq-rec-bmi--obese1     { background: #ea580c; }
.fq-rec-bmi-bar-fill.fq-rec-bmi--obese2     { background: #dc2626; }
.fq-rec-bmi-bar-fill.fq-rec-bmi--obese3     { background: #9f1239; }

.fq-rec-bmi-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--ink-700, #415952);
  opacity: 0.55;
}

/* ── Program card ────────────────────────────────────── */
.fq-rec-card--program {
  border-width: 2px;
}

.fq-rec-card--program.fq-rec-program--wegovy {
  border-color: rgba(37, 99, 235, 0.28);
  background: linear-gradient(135deg, #fff 60%, rgba(37,99,235,.04));
}

.fq-rec-card--program.fq-rec-program--mounjaro {
  border-color: rgba(22, 163, 74, 0.3);
  background: linear-gradient(135deg, #fff 60%, rgba(22,163,74,.04));
}

.fq-rec-program-badge {
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
}

.fq-rec-program--wegovy  .fq-rec-program-badge { background: rgba(37,99,235,.1); color: #1d4ed8; }
.fq-rec-program--mounjaro .fq-rec-program-badge { background: rgba(22,163,74,.1); color: #15803d; }

.fq-rec-program-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.fq-rec-program-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fq-rec-program-item-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-700, #415952);
  opacity: 0.75;
}

.fq-rec-program-item-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink-900, #0e1e18);
}

.fq-rec-rationale {
  font-size: 0.78rem;
  color: var(--ink-700, #415952);
  line-height: 1.55;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(20,59,50,.08);
}

/* ── Next steps list ─────────────────────────────────── */
.fq-rec-next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.fq-rec-next-steps li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-700, #415952);
}

.fq-rec-next-steps svg {
  flex-shrink: 0;
  color: var(--green-700, #2f7069);
}

@media (max-width: 480px) {
  .fq-rec-bmi-value { font-size: 1.9rem; }
  .fq-rec-program-row { grid-template-columns: 1fr; }
}
