/* index.html — screening page styles */

body {
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 0%,  rgba(50,160,254,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(50,223,157,0.04) 0%, transparent 60%);
}

.logo span { color: var(--primary); }

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* ── Welcome ── */
.welcome {
    text-align: center;
    padding: 12px 0 60px;
    position: relative;
}
.welcome::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 100%);
    height: 400px;
    background: radial-gradient(ellipse, rgba(50,160,254,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.welcome > * { position: relative; z-index: 1; }
.welcome h1 {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.welcome p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 12px;
}
.stat-badge {
    display: inline-block;
    background: var(--teal-light);
    color: var(--accent-teal);
    border: 1px solid var(--teal-border);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin: 20px 0 32px;
}
.welcome-features {
    display: flex;
    gap: 0;
    margin: 28px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-panel);
}
.welcome-feature {
    flex: 1;
    padding: 16px 20px;
    border-right: 1px solid var(--border);
    border-left: 2px solid transparent;
    text-align: left;
    transition: all 0.3s ease;
}
.welcome-feature:first-child  { border-left-color: rgba(50,160,254,0.5); }
.welcome-feature:nth-child(2) { border-left-color: rgba(50,160,254,0.75); }
.welcome-feature:nth-child(3) { border-left-color: var(--primary); }
.welcome-feature:last-child   { border-right: none; }
.welcome-feature:hover        { background: rgba(50,160,254,0.04); }
.welcome-feature h3 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.welcome-feature p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── How it works panel ── */
.how-block {
    text-align: left;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 24px 12px;
    margin: 4px 0 28px;
    display: grid;
    grid-template-columns: minmax(0, 440px) max-content;
    justify-content: start;
    align-items: start;
    gap: 18px 64px;
}
.how-col h3 {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 8px;
}
.how-col p { font-size: 14px; color: var(--text); line-height: 1.65; margin: 0; }
.how-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.how-col li { font-size: 14px; color: var(--text); padding-left: 18px; position: relative; }
.how-col li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-teal);
}
.how-time {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    padding-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.how-time svg { width: 15px; height: 15px; stroke: var(--primary); stroke-width: 2; fill: none; flex-shrink: 0; }

/* ── Feature visuals ── */
.feature-visual {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.feature-visual svg { height: 100%; width: auto; max-width: 100%; }
.fx-bubble-ai   { fill: rgba(50,160,254,0.10); stroke: var(--border-bright); stroke-width: 1; }
.fx-bubble-user { fill: rgba(50,160,254,0.22); stroke: rgba(50,160,254,0.45); stroke-width: 1; }
.fx-line        { fill: rgba(242,242,243,0.30); }
.fx-radar-grid  { fill: none; stroke: rgba(50,160,254,0.18); stroke-width: 1; }
.fx-radar-axis  { stroke: rgba(50,160,254,0.15); stroke-width: 1; }
.fx-radar-area  { fill: rgba(50,223,157,0.18); stroke: var(--accent-teal); stroke-width: 1.5; stroke-linejoin: round; }
.fx-radar-dot   { fill: var(--accent-teal); r: 2.2; }
.fx-ring-track  { fill: none; stroke: rgba(50,160,254,0.15); stroke-width: 5; }
.fx-ring-fill   { fill: none; stroke: var(--accent-teal); stroke-width: 5; stroke-linecap: round; }
.fx-ring-num    { fill: var(--text); font-family: var(--font-head); font-weight: 800; }
.fx-cl-bg-s     { fill: rgba(50,223,157,0.08); }
.fx-cl-bg-r     { fill: rgba(239,68,68,0.10); }
.fx-cl-bg-c     { fill: rgba(50,160,254,0.08); }
.fx-cl-bar-s    { fill: var(--accent-teal); }
.fx-cl-bar-r    { fill: #ef4444; }
.fx-cl-bar-c    { fill: var(--primary); }
.fx-cl-line       { fill: rgba(242,242,243,0.32); }
.fx-cl-line-faint { fill: rgba(242,242,243,0.16); }

/* ── Buttons (index overrides) ── */
.btn { padding: 13px 28px; }
.btn-primary.btn-interview {
    background: rgba(50, 160, 254, 0.06);
    border-style: dashed;
}
.btn-primary.btn-interview:hover { background: rgba(50,160,254,0.18); border-style: solid; }

/* ── Progress bar ── */
.progress-bar {
    background: var(--gray-200);
    height: 4px;
    border-radius: 2px;
    margin-bottom: 32px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-teal), var(--primary));
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}
.step-indicator {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
    font-weight: 500;
}

/* ── Question card ── */
.question-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.question-card h2 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
    letter-spacing: -0.3px;
}
.question-card .hint {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ── Options ── */
.options { display: flex; flex-direction: column; gap: 10px; }
.option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    opacity: 0;
    transform: translateY(8px);
    animation: optionIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.option:nth-child(1) { animation-delay: 0.05s; }
.option:nth-child(2) { animation-delay: 0.1s; }
.option:nth-child(3) { animation-delay: 0.15s; }
.option:nth-child(4) { animation-delay: 0.2s; }
@keyframes optionIn { to { opacity: 1; transform: translateY(0); } }
.option:hover { border-color: var(--border-bright); background: var(--primary-light); box-shadow: 0 0 16px rgba(50,160,254,0.1); }
.option.selected {
    border-color: var(--border-bright);
    background: var(--primary-light);
    box-shadow: 0 0 0 1px rgba(50,160,254,0.3), 0 0 20px rgba(50,160,254,0.1);
}
.option-radio {
    width: 20px; height: 20px; min-width: 20px;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
    transition: all 0.15s;
}
.option.selected .option-radio { border-color: var(--accent-teal); background: var(--accent-teal); }
.option.selected .option-radio::after { content: ''; width: 8px; height: 8px; background: var(--bg); border-radius: 50%; }
.option-text { font-size: 15px; font-weight: 500; color: var(--text); }
.option-desc  { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.nav-buttons { display: flex; justify-content: space-between; margin-top: 24px; }

/* ── Loading ── */
.loading-screen { text-align: center; padding: 80px 0; }
.spinner {
    width: 48px; height: 48px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--accent-teal);
    border-right-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 24px;
}
.loading-steps { list-style: none; max-width: 320px; margin: 24px auto 0; text-align: left; }
.loading-steps li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-500);
    display: flex; align-items: center; gap: 10px;
}
.loading-steps li.done   { color: var(--success); }
.loading-steps li.active { color: var(--gray-800); font-weight: 600; }
.check { color: var(--success); font-weight: bold; }

/* ── Results ── */
.results { animation: fadeIn 0.5s ease; }
.score-hero {
    background: var(--gradient-score);
    border-radius: var(--radius);
    padding: 48px 40px;
    color: white;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}
.score-hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(50,160,254,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.score-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}
.score-hero > * { position: relative; z-index: 1; }
.score-number {
    font-family: var(--font-head);
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 40px rgba(50,160,254,0.3), 0 0 80px rgba(50,160,254,0.1);
    letter-spacing: -2px;
}
.score-label   { font-family: var(--font-head); font-size: 16px; font-weight: 600; opacity: 0.9; margin-top: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.score-sublabel { font-size: 13px; opacity: 0.5; margin-top: 4px; }
.maturity-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 16px;
}
.maturity-1 { background: rgba(239,68,68,0.15);  color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }
.maturity-2 { background: rgba(251,146,60,0.15);  color: #fdba74; border: 1px solid rgba(251,146,60,0.3); }
.maturity-3 { background: rgba(234,179,8,0.15);   color: #fde047; border: 1px solid rgba(234,179,8,0.3); }
.maturity-4 { background: rgba(34,197,94,0.15);   color: #86efac; border: 1px solid rgba(34,197,94,0.3); }
.maturity-5 { background: rgba(50,160,254,0.15);  color: #7dd3fc; border: 1px solid rgba(50,160,254,0.3); }
.score-verdict {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-top: 10px;
    font-style: italic;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.result-card:hover { border-color: rgba(50,160,254,0.4); box-shadow: var(--shadow), 0 0 24px rgba(50,160,254,0.08); }
.result-card.full-width { grid-column: 1 / -1; }
.result-card h3 {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.chart-container { position: relative; width: 100%; max-width: 350px; margin: 0 auto; }
.insight-block {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    transition: transform 0.2s, box-shadow 0.2s;
}
.insight-block:last-child { margin-bottom: 0; }
.insight-block:hover { transform: translateX(2px); }
.insight-risk           { background: rgba(239,68,68,0.06);   border-left: 3px solid var(--danger); }
.insight-strength       { background: rgba(50,223,157,0.06);  border-left: 3px solid var(--accent-teal); }
.insight-recommendation { background: rgba(50,160,254,0.06);  border-left: 3px solid var(--primary); }
.insight-label {
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.insight-risk .insight-label           { color: #fca5a5; }
.insight-strength .insight-label       { color: var(--accent-teal); }
.insight-recommendation .insight-label { color: var(--primary); }
.pattern-tag {
    display: inline-block;
    background: rgba(50,160,254,0.12);
    color: var(--primary);
    border: 1px solid var(--border);
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}
.findings-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.15s;
    margin-bottom: 0;
    user-select: none;
}
.findings-toggle:hover { border-color: var(--border-bright); background: rgba(50,160,254,0.04); }
.findings-toggle h3 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: -0.1px; margin: 0; }
.findings-toggle .toggle-icon { font-size: 18px; color: var(--text-muted); transition: transform 0.2s; }
.findings-toggle.open .toggle-icon { transform: rotate(180deg); }
.findings-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
}
.findings-body.open  { max-height: 3000px; }
.findings-body-inner { padding: 20px; }

/* ── Engagement path ── */
.proposal-section { margin-top: 32px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.proposal-header { background: var(--bg-panel); border-bottom: 1px solid var(--border); padding: 20px 24px; }
.proposal-header h2 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.2px; margin-bottom: 4px; }
.proposal-header p  { font-size: 13px; color: var(--text-muted); margin: 0; }
.proposal-steps { display: flex; flex-direction: column; }
.proposal-step {
    display: flex; flex-direction: column; gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0; transform: translateX(-10px);
    animation: stepIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.proposal-step:nth-child(1) { animation-delay: 0.1s; }
.proposal-step:nth-child(2) { animation-delay: 0.25s; }
.proposal-step:nth-child(3) { animation-delay: 0.4s; }
@keyframes stepIn { to { opacity: 1; transform: translateX(0); } }
.proposal-step:last-child { border-bottom: none; }
.proposal-step:hover { background: rgba(50,160,254,0.04); border-left: 2px solid var(--accent-teal); }
.step-header { display: flex; align-items: center; gap: 12px; }
.step-number {
    width: 32px; height: 32px;
    border: 1px solid var(--border-bright);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 13px;
    color: var(--primary);
    flex-shrink: 0;
}
.step-stage  { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); }
.step-title  { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -0.2px; }
.step-pitch  { font-size: 13px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.step-meta   { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); }
.step-meta span { display: flex; align-items: center; gap: 4px; }
.step-price  { color: var(--primary); font-weight: 600; }
.step-action { padding-top: 4px; }

.proposals-section { margin-top: 24px; margin-bottom: 24px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.proposals-header  { background: var(--bg-panel); border-bottom: 1px solid var(--border); padding: 20px 24px; }
.proposals-header h2 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.2px; margin-bottom: 4px; }
.proposals-header p  { font-size: 13px; color: var(--text-muted); margin: 0; }
.proposal-card {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0; transform: translateY(12px);
    animation: proposalIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.proposal-card:nth-child(1) { animation-delay: 0.1s; }
.proposal-card:nth-child(2) { animation-delay: 0.25s; }
.proposal-card:nth-child(3) { animation-delay: 0.4s; }
@keyframes proposalIn { to { opacity: 1; transform: translateY(0); } }
.proposal-card:last-child { border-bottom: none; }
.proposal-card:hover { background: rgba(50,160,254,0.03); }
.proposal-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.proposal-num {
    width: 40px; height: 40px;
    border: 1px solid var(--border-bright);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 15px; font-weight: 700;
    color: var(--primary); flex-shrink: 0;
}
.proposal-label  { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-teal); }
.proposal-title  { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.2px; }
.proposal-desc   { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
.proposal-tags   { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.proposal-tag    { font-size: 11px; padding: 3px 12px; border-radius: 999px; background: var(--teal-light); color: var(--accent-teal); border: 1px solid var(--teal-border); font-weight: 500; }
.proposal-divider { height: 1px; background: var(--border); margin-bottom: 14px; }
.proposal-case-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; }
.proposal-case       { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.proposal-case:hover { border-color: rgba(50,160,254,0.4); }
.proposal-case-img   { width: 100%; height: 120px; object-fit: cover; display: block; }
.proposal-case-body  { padding: 12px 14px; }
.proposal-case-title   { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.proposal-case-results { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.proposal-case-link    { font-size: 12px; color: var(--primary); text-decoration: none; transition: color 0.15s; }
.proposal-case-link:hover { color: var(--accent-teal); }
.proposal-cta     { margin-top: 16px; }
.proposal-cta .btn { font-size: 13px; padding: 10px 24px; }

.solutions-loading { text-align: center; padding: 32px; color: var(--text-muted); font-size: 14px; }

/* ── Consultant CTA ── */
.consultant-cta {
    border-top: 1px solid var(--border);
    background:
        radial-gradient(120% 140% at 0% 0%,   rgba(50, 223, 157, 0.06) 0%, transparent 45%),
        radial-gradient(120% 140% at 100% 100%, rgba(50, 160, 254, 0.06) 0%, transparent 45%),
        rgba(50, 160, 254, 0.02);
}
.consultant-cta-inner { padding: 22px 24px 24px; text-align: center; }
.consultant-cta-inner p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; letter-spacing: 0.02em; }
.cta-choice-row { display: flex; justify-content: center; align-items: stretch; gap: 12px; flex-wrap: wrap; }
.cta-choice-row .btn { text-decoration: none; font-size: 14px; padding: 11px 22px; min-width: 220px; flex: 0 1 auto; }

/* ── Contact form ── */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
    text-align: left;
}
.contact-form .full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; color: var(--text-muted); }
.form-field input, .form-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    font-family: var(--font);
    transition: border-color 0.15s;
}
.form-field select option { background: var(--bg-panel); }
.form-field input:focus, .form-field select:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(50,223,157,0.15);
}
.form-field input::placeholder { color: var(--text-muted); }

.error-banner {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.4);
    color: #fca5a5;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    display: none;
}

/* ── Two-column results layout ── */
.results-two-col {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.results-left .result-card              { margin-bottom: 20px; }
.results-left .result-card:last-child   { margin-bottom: 0; }
.results-right .proposal-section        { margin-top: 0; position: sticky; top: 20px; }

/* ── Sticky CTA bar ── */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(13,33,56,0.85);
    border-top: 1px solid var(--border);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { font-size: 14px; padding: 10px 24px; }
.sticky-cta .export-link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font);
    transition: color 0.15s;
}
.sticky-cta .export-link:hover { color: var(--primary); }

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.screen-enter   { animation: screenIn 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes screenIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .results-two-col { grid-template-columns: 1fr; }
    .results-right { order: -1; }
    .results-right .proposal-section { position: static; }
    .sticky-cta { padding: 10px 16px; }
    .sticky-cta .btn { font-size: 13px; padding: 8px 18px; }
}
@media (max-width: 640px) {
    .how-block { grid-template-columns: 1fr; }
    .welcome-features { flex-direction: column; }
    .welcome-feature  { border-right: none; border-bottom: 1px solid var(--border); }
    .welcome-feature:last-child { border-bottom: none; }
    .results-grid   { grid-template-columns: 1fr; }
    .contact-form   { grid-template-columns: 1fr; }
    .contact-form .full { grid-column: auto; }
    .welcome h1     { font-size: 26px; }
    .container      { padding: 24px 16px; }
    .score-number   { font-size: 56px; }
    .cta-choice-row { flex-direction: column; gap: 10px; }
    .cta-choice-row .btn { min-width: 0; width: 100%; }
}
