/* ========================================
   ASSESSMENT SHARED STYLES
   Used by all 3 assessment pages
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --app-bg:            #F3F2F1;
    --surface-white:     #FFFFFF;
    --border:            #E5E7EB;
    --brand-purple:      #A855F7;
    --text-primary:      #111827;
    --text-muted:        #6B7280;
    --dark-surface:      #111827;
}

html { scroll-behavior: smooth; }

body {
    background: var(--app-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.5;
}

/* ============================
   HERO — slim dark banner
   ============================ */
.assess-hero {
    background: var(--dark-surface);
    padding: 84px 48px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.assess-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(168,85,247,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(168,85,247,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.assess-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}
.assess-hero .eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-purple);
    margin-bottom: 10px;
}
.assess-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}
.assess-hero h1 em {
    color: var(--brand-purple);
    font-style: normal;
}
.assess-hero p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.50);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================
   STICKY TOOLBAR (step bar + progress)
   ============================ */
.assess-toolbar {
    background: var(--surface-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 64px;
    z-index: 50;
}
.assess-toolbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
}
.step-bar-inner {
    flex: 1;
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    min-width: 0;
}
.step-bar-inner::-webkit-scrollbar { display: none; }
.step-item {
    flex: 1;
    min-width: 0;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.step-item:hover { background: rgba(168,85,247,0.04); }
.step-item.active { border-bottom-color: var(--brand-purple); }
.step-item.completed { border-bottom-color: #34D399; }
.step-item-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.step-item.active .step-item-title { color: var(--brand-purple); }
.step-item.completed .step-item-title { color: #059669; }
.step-item-progress {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 1px;
}

/* Progress circle */
.progress-circle-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0 6px 12px;
    flex-shrink: 0;
    border-left: 1px solid var(--border);
    margin-left: 4px;
}
.progress-circle {
    position: relative;
    width: 36px;
    height: 36px;
}
.progress-ring { transform: rotate(-90deg); }
.progress-ring-circle { stroke: var(--border); fill: transparent; stroke-width: 3; }
.progress-ring-fill {
    stroke: var(--brand-purple);
    fill: transparent;
    stroke-width: 3;
    stroke-dasharray: 100.5;
    stroke-dashoffset: 100.5;
    transition: stroke-dashoffset 0.5s;
    stroke-linecap: round;
}
.progress-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 9px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ============================
   PROGRESS STRIP — hidden (redundant with circle)
   ============================ */
.progress-strip {
    display: none;
}

/* ============================
   ASSESSMENT BODY
   ============================ */
.assess-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px 80px;
}
.assess-content {
    max-width: 800px;
}

/* Landing Page */
.landing-page { padding: 48px 0; }
.landing-page h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.landing-intro {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}
.landing-intro p { margin-bottom: 10px; }
.landing-intro strong { color: var(--text-primary); }
.time-estimate {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.start-button {
    background: linear-gradient(180deg, #A855F7, #7C3AED);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.start-button:hover {
    background: linear-gradient(180deg, #9333EA, #6D28D9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

/* Question Area */
.question-wrap { padding: 40px 0; }
.question-container { display: none; }
.question-container.active {
    display: block;
    animation: fadeIn 0.2s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Question header with progress */
.question-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.question-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.question-area-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.question-number {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}
.question-number span {
    color: var(--text-muted);
    font-weight: 400;
}
.question-progress-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}
.question-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-purple), #C084FC);
    border-radius: 2px;
    transition: width 0.3s ease;
    will-change: width;
}
.question-text {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.5;
    font-weight: 500;
}

/* Answer Options */
.answer-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.answer-btn {
    padding: 16px 20px;
    background: var(--surface-white);
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    text-align: left;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.answer-btn:hover {
    border-color: var(--brand-purple);
    background: rgba(168,85,247,0.04);
}
.answer-btn.selected {
    background: var(--brand-purple);
    border-color: var(--brand-purple);
    color: white;
}
.answer-score-badge {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}
.answer-btn.selected .answer-score-badge {
    background: rgba(255,255,255,0.3);
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.nav-btn {
    padding: 11px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.nav-btn.primary { background: var(--brand-purple); color: white; }
.nav-btn.primary:hover {
    background: #7C3AED;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}
.nav-btn.secondary { background: var(--border); color: var(--text-primary); }
.nav-btn.secondary:hover { background: #D1D5DB; }
.nav-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ============================
   RESULTS PAGE
   ============================ */
.results-page {
    display: none;
    padding: 36px 0;
}
.results-page.active { display: block; }
.results-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}
.results-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

/* Radar Chart */
.radar-section {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.radar-wrap { flex-shrink: 0; }
.radar-legend { flex: 1; padding-top: 10px; }
.radar-legend-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.radar-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.radar-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.radar-legend-name { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.radar-legend-score { font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 10px; color: white; flex-shrink: 0; }
.radar-legend-label { font-size: 11px; color: var(--text-muted); flex: 1; }

/* Section Score Cards (BI) */
.section-scores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
.section-score-card {
    background: var(--surface-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
}
.section-score-card-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.section-score-bar-wrap {
    height: 18px;
    background: var(--app-bg);
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 4px;
}
.section-score-bar {
    height: 100%;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    transition: width 1s ease;
    will-change: width;
    white-space: nowrap;
    min-width: 72px;
}
.bar-nascent { background: #dc3545; }
.bar-developing { background: #fd7e14; }
.bar-working { background: #ffc107; }
.bar-advanced { background: #28a745; }
.bar-sophisticated { background: #007bff; }
.section-score-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Capability Score Rows */
.other-questions-section { margin-bottom: 20px; }
.other-questions-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--brand-purple);
}
.area-group { margin-bottom: 8px; }
.area-group-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-purple);
    margin-bottom: 4px;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--border);
}
.score-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    gap: 12px;
}
.score-label {
    flex: 0 0 240px;
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 500;
}
.score-bar-container {
    flex: 1;
    height: 22px;
    background: var(--app-bg);
    border-radius: 11px;
    overflow: hidden;
}
.score-bar-fill {
    height: 100%;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 0 10px;
    transition: width 1s ease;
    will-change: width;
    white-space: nowrap;
    min-width: 80px;
}
.score-nascent { background: #dc3545; }
.score-developing { background: #fd7e14; }
.score-working { background: #ffc107; }
.score-advanced { background: #28a745; }
.score-sophisticated { background: #007bff; }

.results-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding-top: 24px;
    border-top: 2px solid var(--border);
    flex-wrap: wrap;
}
.action-btn {
    font-family: 'Inter', sans-serif;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.action-btn.print {
    color: #fff;
    background: linear-gradient(180deg, #A855F7, #8B2FD9);
    box-shadow: 0 2px 8px rgba(147,51,234,0.25);
}
.action-btn.print:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #B87CF7, #9333EA);
    box-shadow: 0 4px 16px rgba(147,51,234,0.35);
}
.action-btn.return, .action-btn.review {
    color: var(--brand-purple);
    background: transparent;
    border: 2px solid var(--brand-purple);
}
.action-btn.return:hover, .action-btn.review:hover {
    background: rgba(168,85,247,0.08);
    transform: translateY(-1px);
}
.action-btn.restart {
    color: var(--text-muted);
    background: var(--app-bg);
    border: 1px solid var(--border);
}
.action-btn.restart:hover {
    background: var(--border);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* ============================
   FPA: Deliverable Table
   ============================ */
.deliverable-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 13px;
}
.deliverable-table th {
    background: var(--app-bg);
    padding: 12px 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.deliverable-table th.row-header {
    text-align: left;
    padding-left: 16px;
    width: 100px;
}
.deliverable-table td {
    padding: 6px;
    text-align: center;
    border: 1px solid var(--border);
    vertical-align: middle;
}
.deliverable-table .score-label {
    text-align: left;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 12px;
    padding-left: 20px;
    flex: unset;
}
.table-score-btn {
    width: 100%;
    height: 36px;
    border: 2px solid var(--border);
    background: var(--surface-white);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}
.table-score-btn:hover {
    border-color: var(--brand-purple);
    background: rgba(168,85,247,0.04);
}
.table-score-btn.selected {
    background: var(--brand-purple);
    border-color: var(--brand-purple);
    color: white;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
}

/* FPA: 2x2 Matrix */
.matrix-2x2-section { margin-bottom: 20px; }
.matrix-2x2-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.matrix-content-wrapper {
    display: flex;
    gap: 24px;
    align-items: center;
}
.matrix-container {
    position: relative;
    width: 240px;
    height: 240px;
    flex-shrink: 0;
}
.matrix-2x2 {
    position: absolute;
    top: 28px; left: 42px;
    width: 192px; height: 192px;
    border: 2px solid var(--text-primary);
    background: white;
}
.efficiency-shade {
    position: absolute;
    width: 100%; height: 100%;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    background: rgba(224, 228, 232, 0.4);
}
.efficiency-line {
    position: absolute;
    width: 141%; height: 2px;
    background: var(--text-primary);
    transform-origin: 0 100%;
    transform: rotate(-45deg);
    bottom: 0; left: 0;
}
.matrix-guidance { flex: 1; min-width: 250px; }
.guidance-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}
.guidance-table th {
    background: var(--app-bg);
    padding: 5px 7px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.guidance-table td {
    padding: 5px 7px;
    border: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.3;
}
.guidance-table .category-cell { font-weight: 600; color: var(--text-primary); }
.matrix-point {
    position: absolute;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.1;
    padding: 3px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.matrix-point:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.corner-label { position: absolute; font-size: 10px; color: var(--text-muted); font-style: italic; text-align: center; }
.corner-label.bottom-right { bottom: 4px; right: 4px; }
.axis-label { position: absolute; font-size: 13px; font-weight: 600; color: var(--text-primary); }
.axis-label.x { bottom: 4px; left: 50%; transform: translateX(-50%); }
.axis-label.y { top: 50%; left: -46px; transform: translateY(-50%) rotate(-90deg); transform-origin: center; }
.axis-scale { position: absolute; font-size: 10px; color: var(--text-muted); }
.axis-scale.x-start { bottom: 14px; left: 56px; }
.axis-scale.x-end { bottom: 14px; right: 36px; }
.axis-scale.y-start { top: 36px; left: 22px; }
.axis-scale.y-end { bottom: 36px; left: 22px; }

/* ============================
   PRINT
   ============================ */
@media print {
    @page { margin: 0.25in 0.35in; size: letter portrait; }
    * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
    body { background: white !important; }
    .nav, .footer, .back-btn, .cookie-banner, #cookie-banner { display: none !important; }
    .assess-hero, .assess-toolbar, .progress-strip, .results-actions { display: none !important; }
    .assess-body { padding: 0 !important; max-width: 100% !important; }
    .results-page { padding: 2px 4px !important; }
    .results-header { margin-bottom: 3px !important; padding-bottom: 2px !important; }
    .results-header h1 { font-size: 14px !important; margin-bottom: 0 !important; }
    .results-header p { font-size: 9px !important; margin: 0 !important; }
    .radar-section { gap: 10px !important; margin-bottom: 6px !important; align-items: center !important; }
    .radar-wrap svg { width: 155px !important; height: 155px !important; }
    .radar-legend { padding-top: 0 !important; }
    .radar-legend-title { font-size: 9px !important; margin-bottom: 4px !important; }
    .radar-legend-item { margin-bottom: 3px !important; gap: 6px !important; }
    .radar-legend-dot { width: 9px !important; height: 9px !important; }
    .radar-legend-name { font-size: 9px !important; }
    .radar-legend-score { font-size: 9px !important; padding: 0 5px !important; }
    .radar-legend-label { font-size: 8px !important; }
    .section-scores-grid { gap: 6px !important; }
    .section-score-card { padding: 5px 7px !important; }
    .section-score-card-title { font-size: 9px !important; margin-bottom: 2px !important; }
    .section-score-bar-wrap { height: 12px !important; }
    .section-score-bar { font-size: 8px !important; transition: none !important; }
    .section-score-label { font-size: 8px !important; }
    .other-questions-section { margin-bottom: 4px !important; }
    .other-questions-section h2 { font-size: 12px !important; margin-bottom: 3px !important; padding-bottom: 2px !important; }
    .area-group { margin-bottom: 3px !important; }
    .area-group-title { font-size: 9px !important; margin-bottom: 1px !important; padding-bottom: 1px !important; }
    .score-row { margin-bottom: 1px !important; gap: 6px !important; }
    .score-label { font-size: 8.5px !important; flex: 0 0 160px !important; line-height: 1.2 !important; }
    .score-bar-container { height: 11px !important; }
    .score-bar-fill { font-size: 7.5px !important; transition: none !important; padding: 0 4px !important; }
    div[style*="fff3cd"] { margin-top: 5px !important; padding: 6px 10px !important; }
    div[style*="fff3cd"] h2 { font-size: 11px !important; margin-bottom: 5px !important; }
    div[style*="fff3cd"] div[style*="font-size:14px"] { font-size: 9.5px !important; }
    div[style*="fff3cd"] div[style*="font-size:13px"] { font-size: 8.5px !important; line-height: 1.3 !important; }
    .matrix-2x2-section { margin-bottom: 6px !important; }
    .matrix-2x2-section h2 { font-size: 14px !important; margin-bottom: 4px !important; }
    .matrix-content-wrapper { page-break-inside: avoid; gap: 10px !important; }
    .matrix-container { width: 170px !important; height: 170px !important; }
    .matrix-2x2 { width: 140px !important; height: 140px !important; }
    .matrix-point { width: 30px !important; height: 30px !important; font-size: 7px !important; }
    .guidance-table { font-size: 10px !important; }
    .guidance-table th, .guidance-table td { padding: 3px 4px !important; }
    h3 { font-size: 11px !important; }
    strong { font-size: 9px !important; }
    ul { font-size: 9px !important; line-height: 1.2 !important; margin: 2px 0 !important; }
    li { margin-bottom: 1px !important; }
}

/* ============================
   RESPONSIVE — Tablet
   ============================ */
@media (max-width: 1024px) {
    .assess-hero { padding: 80px 20px 24px; }
    .assess-body { padding: 0 20px 60px; }
    .assess-toolbar-inner { padding: 0 20px; }
    .score-label { flex: 0 0 200px; }
}

/* ============================
   RESPONSIVE — Mobile
   ============================ */
@media (max-width: 768px) {
    .assess-hero { padding: 76px 16px 20px; }
    .assess-hero h1 { font-size: 22px; }
    .assess-hero p { font-size: 13px; }

    /* ---- Mobile toolbar: colored bar segments, no text ---- */
    .assess-toolbar-inner { padding: 0 16px; }
    .step-bar-inner { gap: 3px; padding: 10px 0; }
    .step-item {
        padding: 0;
        min-width: 0;
        height: 6px;
        border-radius: 3px;
        background: var(--border);
        border-bottom: none;
        transition: background 0.3s, transform 0.2s;
    }
    .step-item:hover { background: rgba(168,85,247,0.2); }
    .step-item.active {
        background: var(--brand-purple);
        border-bottom-color: transparent;
        transform: scaleY(1.3);
    }
    .step-item.completed {
        background: #34D399;
        border-bottom-color: transparent;
    }
    .step-item-title { display: none; }
    .step-item-progress { display: none; }

    .progress-circle-wrap { padding: 4px 0 4px 12px; gap: 4px; }
    .progress-circle { width: 32px; height: 32px; }
    .progress-ring-circle, .progress-ring-fill { stroke-width: 2.5; }
    .progress-ring-fill { stroke-dasharray: 75.4; stroke-dashoffset: 75.4; }
    .progress-text { font-size: 8px; }

    .assess-body { padding: 0 16px 48px; }
    .landing-page { padding: 32px 0; }
    .landing-page h2 { font-size: 22px; }
    .question-text { font-size: 16px; }
    .question-number { font-size: 13px; }
    .question-header { margin-bottom: 16px; padding-bottom: 12px; }
    .answer-btn { padding: 14px 16px; font-size: 13px; }
    .answer-score-badge { width: 20px; height: 20px; font-size: 10px; }
    .nav-btn { padding: 10px 20px; font-size: 13px; }

    .score-label { flex: 0 0 130px; font-size: 11px; }
    .score-bar-container { height: 18px; }
    .score-bar-fill { font-size: 9px; }

    .radar-section { flex-direction: column; gap: 16px; }
    .section-scores-grid { grid-template-columns: 1fr; }
    .matrix-content-wrapper { flex-direction: column; }
    .matrix-guidance { min-width: unset; }

    .results-actions { gap: 8px; }
    .action-btn { padding: 10px 16px; font-size: 13px; }

    /* FPA deliverable table scroll */
    .deliverable-table { font-size: 11px; display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
    .step-bar-inner { gap: 2px; padding: 8px 0; }
    .step-item { height: 5px; border-radius: 2.5px; }
    .score-label { flex: 0 0 100px; font-size: 10px; }
}
