/* ═══════════════════════════════════════════════════════════
   FP-Score™ — Full Assessment Styles
   Glassmorphic dark theme with premium effects
   ═══════════════════════════════════════════════════════════ */

/* ─── Hero ─────────────────────────────────────────────── */
.fp-hero { padding-top: 8rem; padding-bottom: 2rem; }
.fp-hero-content { max-width: 800px; margin: 0 auto; }
.fp-badge {
    display: inline-block; padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 1.5rem; color: var(--text-secondary);
}
.fp-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
.fp-title span {
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.fp-subtitle { font-size: 1.15rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; line-height: 1.6; }

/* ─── App Container ────────────────────────────────────── */
.fp-app-section { padding: 2rem 0 8rem 0; background: #f5f6fa; position: relative; z-index: 2; }
.fp-app-container { max-width: 860px; margin: 0 auto; padding: 3rem; background: #ffffff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

/* ─── Progress Bar ─────────────────────────────────────── */
.fp-progress-wrap { margin-bottom: 2rem; }
.fp-progress-text {
    display: flex; justify-content: space-between;
    font-size: 0.85rem; font-weight: 500; margin-bottom: 0.6rem; color: #636e72;
}
.fp-progress-text #progress-percent { color: #2d3436; font-weight: 700; }
.fp-progress-bar-bg {
    width: 100%; height: 4px; background: #e0e0e0;
    border-radius: 4px; overflow: hidden;
}
.fp-progress-bar-fill {
    height: 100%; width: 0%; border-radius: 4px;
    background: linear-gradient(90deg, #60a5fa, #22c55e);
    transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* Segmented progress */
.fp-seg-bar {
    display: flex; gap: 4px; margin-top: 0.8rem;
}
.fp-seg-step {
    flex: 1; height: 28px; display: flex; align-items: center; justify-content: center;
    background: #f5f6fa; border: 1px solid #e0e0e0;
    border-radius: 6px; font-size: 0.7rem; font-weight: 600; color: #b0b0b0;
    transition: all 0.4s ease;
}
.fp-seg-step.current {
    background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.5);
    color: #3b82f6; box-shadow: 0 0 8px rgba(96,165,250,0.1);
}
.fp-seg-step.completed {
    background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.4); color: #16a34a;
}

/* ─── Steps ────────────────────────────────────────────── */
.fp-step { display: none; animation: fpStepIn 0.5s ease forwards; }
.fp-step.active { display: block; }
@keyframes fpStepIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Step header */
.fp-step-header {
    display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
}
.fp-step-icon { font-size: 2rem; line-height: 1; }
.step-title { font-size: 1.5rem; margin-bottom: 0.3rem; font-weight: 700; color: #1a1a2e; }
.step-focus {
    font-size: 0.95rem; color: #3b82f6;
    font-style: italic; font-weight: 400;
}

/* Area progress mini bar */
.fp-area-progress {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1.2rem; padding: 0.5rem 0;
}
.fp-area-progress-track {
    flex: 1; height: 4px; background: #e0e0e0;
    border-radius: 4px; overflow: hidden;
}
.fp-area-progress-fill {
    height: 100%; width: 0%; background: #3b82f6;
    border-radius: 4px; transition: width 0.4s ease;
}
.fp-area-progress-text {
    font-size: 0.75rem; color: #636e72; font-weight: 600; min-width: 2.5rem; text-align: right;
}

/* Score legend */
.fp-score-legend {
    display: flex; gap: 1.2rem; margin-bottom: 1.5rem;
    padding: 0.6rem 1rem; background: #f5f6fa;
    border-radius: 8px; border: 1px solid #e0e0e0;
}
.fp-legend-item {
    font-size: 0.72rem; color: #636e72; font-weight: 500;
    display: flex; align-items: center; gap: 0.4rem;
}
.fp-legend-item::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--dot-color); flex-shrink: 0;
}

/* ─── Check Item (Domanda) ─────────────────────────────── */
.fp-check-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px; padding: 1.2rem 1.4rem;
    margin-bottom: 0.8rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.fp-check-item:hover {
    border-color: #e5e7eb;
}
.fp-check-header {
    display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
    margin-bottom: 0.6rem;
}
.fp-check-label { font-size: 0.95rem; font-weight: 600; color: #1a1a2e; }

/* Domanda toggle button */
.fp-domanda-toggle {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(96,165,250,0.08); border: 1px solid rgba(96,165,250,0.3);
    color: #3b82f6; font-size: 0.8rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fp-domanda-toggle:hover, .fp-domanda-toggle.active {
    background: rgba(96,165,250,0.15); border-color: #3b82f6;
}

/* Domanda text (expandable) */
.fp-domanda-text {
    max-height: 0; overflow: hidden; opacity: 0;
    font-size: 0.85rem; color: #4b7cc4; font-style: italic;
    line-height: 1.5; padding: 0; margin-bottom: 0;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease, padding 0.3s ease;
    background: rgba(96,165,250,0.06); border-radius: 8px;
}
.fp-domanda-text.open {
    max-height: 200px; opacity: 1;
    padding: 0.8rem 1rem; margin-bottom: 0.6rem;
}

/* ─── Score Buttons (0-3) ──────────────────────────────── */
.fp-score-btns {
    display: flex; gap: 0.5rem;
}
.fp-score-btn {
    flex: 1; position: relative; cursor: pointer;
    display: flex; flex-direction: column; align-items: center;
    padding: 0.7rem 0.4rem; border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.fp-score-btn input[type="radio"] { display: none; }
.fp-score-btn span {
    font-size: 1.3rem; font-weight: 800; color: #999;
    transition: color 0.3s ease;
}
.fp-score-btn small {
    font-size: 0.6rem; color: #aaa; margin-top: 0.2rem;
    font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px;
    transition: color 0.3s ease;
}
.fp-score-btn:hover {
    border-color: #e0e0e0;
}

/* Selected states with glow */
.fp-score-btn.score-0.selected {
    background: rgba(239,68,68,0.08); border-color: #ef4444;
    box-shadow: 0 2px 12px rgba(239,68,68,0.15);
}
.fp-score-btn.score-0.selected span { color: #dc2626; }
.fp-score-btn.score-0.selected small { color: #ef4444; }

.fp-score-btn.score-1.selected {
    background: rgba(249,115,22,0.08); border-color: #f97316;
    box-shadow: 0 2px 12px rgba(249,115,22,0.15);
}
.fp-score-btn.score-1.selected span { color: #ea580c; }
.fp-score-btn.score-1.selected small { color: #f97316; }

.fp-score-btn.score-2.selected {
    background: rgba(234,179,8,0.08); border-color: #eab308;
    box-shadow: 0 2px 12px rgba(234,179,8,0.15);
}
.fp-score-btn.score-2.selected span { color: #ca8a04; }
.fp-score-btn.score-2.selected small { color: #eab308; }

.fp-score-btn.score-3.selected {
    background: rgba(34,197,94,0.08); border-color: #22c55e;
    box-shadow: 0 2px 12px rgba(34,197,94,0.15);
}
.fp-score-btn.score-3.selected span { color: #16a34a; }
.fp-score-btn.score-3.selected small { color: #22c55e; }

/* ─── Quantitative Inputs ──────────────────────────────── */
.fp-quant-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
    margin-bottom: 2rem;
}
.fp-currency-wrap {
    position: relative; display: flex; align-items: center;
}
.fp-currency-symbol {
    position: absolute; left: 1rem; color: #999;
    font-weight: 600; font-size: 0.95rem; pointer-events: none;
}
.fp-quant-input {
    width: 100%; padding: 1rem 1rem 1rem 2.8rem;
    border-radius: 8px; background: #f9fafb;
    border: 1px solid #e0e0e0; color: #1a1a2e;
    font-family: inherit; font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.fp-quant-input:focus {
    outline: none; border-color: rgba(34,197,94,0.5);
    box-shadow: 0 0 12px rgba(34,197,94,0.08);
    background: #ffffff;
}
.fp-quant-input::placeholder { color: #b0b0b0; }
/* Remove number spinners */
.fp-quant-input::-webkit-inner-spin-button,
.fp-quant-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.fp-quant-input[type=number] { -moz-appearance: textfield; }

/* Ratios */
.fp-ratios-title {
    font-size: 0.85rem; font-weight: 600; color: #636e72;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem;
}
.fp-ratios-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.fp-ratio-card {
    background: #f9fafb; border: 1px solid #e5e7eb;
    border-radius: 12px; padding: 1.2rem; text-align: center;
    border-left: 3px solid #e0e0e0;
    transition: all 0.4s ease;
}
.fp-ratio-card.ratio-green { border-left-color: #22c55e; }
.fp-ratio-card.ratio-yellow { border-left-color: #eab308; }
.fp-ratio-card.ratio-red { border-left-color: #ef4444; }

.fp-ratio-name { font-size: 0.85rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.2rem; }
.fp-ratio-formula { font-size: 0.7rem; color: #636e72; margin-bottom: 0.8rem; }
.fp-ratio-value { font-size: 1.8rem; font-weight: 800; color: #1a1a2e; font-family: var(--font-display); }
.fp-ratio-badge {
    display: inline-block; padding: 0.2rem 0.7rem; border-radius: 12px;
    font-size: 0.7rem; font-weight: 700; margin-top: 0.5rem;
    text-transform: uppercase; letter-spacing: 0.3px;
}
.fp-ratio-badge.neutral { background: #f0f0f0; color: #636e72; }
.fp-ratio-badge.green { background: rgba(34,197,94,0.15); color: #22c55e; }
.fp-ratio-badge.yellow { background: rgba(234,179,8,0.15); color: #eab308; }
.fp-ratio-badge.red { background: rgba(239,68,68,0.15); color: #ef4444; }
.fp-ratio-target { font-size: 0.65rem; color: #aaa; margin-top: 0.4rem; }

/* ─── Lead Form ────────────────────────────────────────── */
.fp-lead-benefits {
    display: flex; gap: 1rem; margin-bottom: 2rem; justify-content: center;
}
.fp-benefit {
    background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.2);
    border-radius: 10px; padding: 0.6rem 1.2rem;
    font-size: 0.85rem; color: #2d3436; font-weight: 500;
}
.fp-benefit span { color: #16a34a; font-weight: 700; margin-right: 0.3rem; }

.fp-form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.5rem;
}
.fp-input-full { grid-column: 1 / -1; }

.fp-input-group label {
    display: block; margin-bottom: 0.4rem;
    font-size: 0.85rem; font-weight: 500; color: #4a5568;
}
.fp-input-group input,
.fp-input-group select {
    width: 100%; padding: 1rem 1.2rem; border-radius: 8px;
    background: #f9fafb; border: 1px solid #e0e0e0;
    color: #1a1a2e; font-family: inherit; font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.fp-input-group select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    background-color: #f9fafb;
    padding-right: 2.5rem; cursor: pointer;
}
.fp-input-group select option { background: #ffffff; color: #1a1a2e; }
.fp-input-group input:focus,
.fp-input-group select:focus {
    outline: none; border-color: #3b82f6;
    box-shadow: 0 0 8px rgba(96,165,250,0.12);
    background: #ffffff;
}
.fp-input-group input::placeholder { color: #b0b0b0; }

.fp-privacy-check {
    display: flex; align-items: flex-start; gap: 0.8rem;
    margin-bottom: 2rem; padding: 0.5rem 0;
}
.fp-privacy-check input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
    accent-color: #60a5fa; cursor: pointer;
}
.fp-privacy-check label {
    font-size: 0.82rem; color: #636e72; line-height: 1.5; cursor: pointer;
}

.fp-submit-wrapper { margin-top: 1.5rem; }

/* ─── Navigation ───────────────────────────────────────── */
.fp-actions {
    display: flex; justify-content: space-between;
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}
#btn-next {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-left: auto;
}

/* ─── RESULT VIEW ──────────────────────────────────────── */
.fp-result { padding-top: 1rem; }

.fp-section-title {
    font-size: 1rem; font-weight: 600; color: #636e72;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 1.5rem; text-align: center;
}

/* Gauge */
.fp-gauge-container {
    text-align: center; margin-bottom: 3rem;
    --gauge-glow: #ffffff;
}
.fp-gauge {
    width: 220px; height: 220px; margin: 0 auto 1.5rem;
    position: relative; display: flex; align-items: center; justify-content: center;
    filter: drop-shadow(0 0 20px color-mix(in srgb, var(--gauge-glow) 30%, transparent));
}
.fp-gauge svg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    transform: rotate(-90deg);
}
.fp-gauge-text {
    position: relative; z-index: 1;
    display: flex; align-items: baseline; justify-content: center;
}
.fp-gauge-score {
    font-size: 4.5rem; font-weight: 900; font-family: var(--font-display);
    line-height: 1; letter-spacing: -3px; color: #1a1a2e;
}
.fp-gauge-label {
    font-size: 1.5rem; color: #636e72; margin-left: 0.3rem;
}
.fp-gauge-badge {
    display: inline-block; padding: 0.5rem 1.5rem; border-radius: 20px;
    font-weight: 700; font-size: 0.85rem; margin-bottom: 0.5rem;
    transition: opacity 0.6s ease;
}
.fp-gauge-desc {
    font-size: 0.9rem; color: #636e72; margin-bottom: 1.5rem;
}
.fp-gauge-breakdown {
    display: flex; justify-content: center; align-items: center; gap: 2rem;
}
.fp-gauge-split { text-align: center; }
.fp-gauge-split-label {
    display: block; font-size: 0.65rem; color: #636e72;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.2rem;
}
.fp-gauge-split-value {
    font-size: 1.8rem; font-weight: 800; font-family: var(--font-display); color: #1a1a2e;
}
.fp-gauge-split-pct { font-size: 0.9rem; color: #636e72; }
.fp-gauge-divider {
    width: 1px; height: 36px; background: #e0e0e0;
}

/* Radar chart */
.fp-radar-container {
    max-width: 700px; margin: 0 auto 3rem; padding: 2.5rem;
    background: #ffffff; border: 1px solid #e0e0e0;
    border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Area bars */
.fp-area-bars-container { margin-bottom: 3rem; }
.fp-area-bar-row {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.7rem 0; border-bottom: 1px solid #f0f0f0;
}
.fp-area-bar-row:last-child { border-bottom: none; }
.fp-area-bar-label {
    display: flex; align-items: center; gap: 0.5rem;
    min-width: 180px; font-size: 0.85rem; color: #2d3436; font-weight: 500;
}
.fp-area-bar-icon { font-size: 1.1rem; }
.fp-area-bar-track {
    flex: 1; height: 8px; background: #e5e7eb;
    border-radius: 8px; overflow: hidden;
}
.fp-area-bar-fill {
    height: 100%; width: 0; border-radius: 8px;
    background: linear-gradient(90deg, var(--bar-color), color-mix(in srgb, var(--bar-color) 70%, white));
    transition: width 0s; /* animated via JS class */
}
.fp-area-bar-fill.animate {
    width: var(--bar-width);
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.fp-area-bar-info {
    display: flex; align-items: center; gap: 0.6rem; min-width: 130px; justify-content: flex-end;
}
.fp-area-bar-pct { font-size: 0.9rem; font-weight: 800; font-family: var(--font-display); }
.fp-area-bar-status {
    font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.6rem;
    border-radius: 10px; text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap;
}

/* ─── Strategic Plan ───────────────────────────────────── */
.fp-plan-card {
    border: 2px solid var(--plan-color); border-radius: 16px;
    overflow: hidden; margin-bottom: 3rem;
    box-shadow: 0 0 30px color-mix(in srgb, var(--plan-color) 15%, transparent);
}
.fp-plan-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 1.8rem; background: var(--plan-bg); gap: 1rem;
}
.fp-plan-header-left { display: flex; align-items: center; gap: 0.8rem; }
.fp-plan-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white;
}
.fp-plan-label {
    font-size: 0.65rem; font-weight: 600; color: #636e72;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.fp-plan-name { font-size: 1.3rem; font-weight: 800; margin-top: 0.1rem; }
.fp-plan-range {
    padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.7rem;
    font-weight: 700; color: white; white-space: nowrap;
}
.fp-plan-meta {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.8rem; font-size: 0.85rem;
}
.fp-plan-azione { font-weight: 700; }
.fp-plan-arrow { color: #999; }
.fp-plan-stato { color: #636e72; }
.fp-plan-desc {
    padding: 0 1.8rem 1rem; font-size: 0.9rem;
    color: #4a5568; line-height: 1.6;
}
.fp-plan-actions {
    padding: 1.2rem 1.8rem; background: #f5f6fa;
}
.fp-plan-actions-title {
    font-size: 0.7rem; font-weight: 600; color: #636e72;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.8rem; display: block;
}
.fp-plan-actions ul { list-style: none; padding: 0; margin: 0; }
.fp-plan-actions li {
    display: flex; align-items: flex-start; gap: 0.8rem;
    padding: 0.5rem 0; font-size: 0.85rem; color: #4a5568;
}
.fp-plan-action-num {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 800; color: white; margin-top: 1px;
}

/* Plan footer - path */
.fp-plan-footer {
    padding: 1rem 1.8rem; border-top: 1px solid #e0e0e0;
    background: #f0f1f3;
}
.fp-plan-footer-label {
    font-size: 0.65rem; font-weight: 600; color: #999;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.6rem; display: block;
}
.fp-plan-path { display: flex; gap: 0.5rem; }
.fp-plan-path-item {
    flex: 1; padding: 0.5rem; border-radius: 8px; text-align: center;
    border: 1px solid #e0e0e0; background: #f9fafb;
    opacity: 0.4; transition: opacity 0.3s ease;
}
.fp-plan-path-item.active { opacity: 1; background: #ffffff; }
.fp-plan-path-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    margin-bottom: 0.3rem;
}
.fp-plan-path-name {
    display: block; font-size: 0.7rem; font-weight: 700; color: #636e72;
}
.fp-plan-path-range {
    display: block; font-size: 0.6rem; color: #aaa;
}

/* ─── Result Actions ───────────────────────────────────── */
.result-actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn-accent {
    background: #3b82f6; color: #ffffff;
    border: 1px solid #3b82f6; border-radius: 8px;
    padding: 0.8rem 1.5rem; font-weight: 600; cursor: pointer;
    font-family: inherit; font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background: #2563eb; border-color: #2563eb;
}

/* ─── Toast ────────────────────────────────────────────── */
.fp-toast {
    position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px);
    padding: 0.8rem 1.5rem; border-radius: 10px; font-size: 0.85rem; font-weight: 500;
    z-index: 10000; opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.fp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.fp-toast-warning {
    background: #fef3c7; color: #92400e;
    border: 1px solid #f59e0b;
}
.fp-toast-error {
    background: #fee2e2; color: #991b1b;
    border: 1px solid #ef4444;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
    .fp-app-container { padding: 1.5rem; }
    .fp-form-grid, .fp-quant-grid { grid-template-columns: 1fr; }
    .fp-ratios-grid { grid-template-columns: 1fr; }
    .fp-score-btns { gap: 0.3rem; }
    .fp-score-btn { padding: 0.5rem 0.2rem; }
    .fp-score-btn span { font-size: 1rem; }
    .fp-score-btn small { font-size: 0.5rem; }
    .result-actions { flex-direction: column; }
    .fp-area-bar-row { flex-wrap: wrap; }
    .fp-area-bar-label { min-width: 100%; }
    .fp-area-bar-info { min-width: auto; }
    .fp-seg-bar { display: none; }
    .fp-lead-benefits { flex-direction: column; align-items: center; }
    .fp-score-legend { flex-wrap: wrap; gap: 0.6rem; }
    .fp-gauge { width: 180px; height: 180px; }
    .fp-gauge-score { font-size: 3.5rem; }
    .fp-plan-header { flex-direction: column; align-items: flex-start; }
}

/* ─── Print ────────────────────────────────────────────── */
@media print {
    .navbar, .fp-hero, .fp-progress-wrap, .fp-actions, .result-actions,
    .fp-toast, .fp-seg-bar, footer { display: none !important; }
    .fp-app-container { padding: 0; }
    body { background: white; color: black; }
}
