.value-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.value-badge {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 24px;
}

.value-header h1 {
    font-family: var(--font-display);
    font-size: 44px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.value-header .subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Test content */
.test-content {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}

/* Each step — card with background */
.test-step {
    margin-bottom: 48px;
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.test-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.test-step-number {
    flex-shrink: 0;
    padding: 8px 16px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.test-step-header h2 {
    font-family: var(--font-display);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.test-step-body p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Question callout */
.test-question {
    background: var(--accent-soft);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-top: 16px;
}

.test-question-label {
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin-bottom: 6px;
}

.test-question p {
    color: var(--text);
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Checklist */
.test-checklist {
    margin: 20px 0;
}

.test-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.test-check-item:hover {
    border-color: var(--accent);
}

.test-check-item.checked {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.test-check-box {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.test-check-item.checked .test-check-box {
    background: var(--accent);
    border-color: var(--accent);
}

.test-check-item.checked .test-check-box::after {
    content: '\2713';
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

/* Results section — card wrapper */
.test-results {
    margin-bottom: 48px;
}

.test-results h2 {
    font-family: var(--font-display);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 32px;
}

.test-result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.test-result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
}

.test-result-score {
    font-family: var(--font-display);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.test-result-bad .test-result-score {
    color: var(--red);
}

.test-result-ok .test-result-score {
    color: #f59e0b;
}

.test-result-good .test-result-score {
    color: var(--accent);
}

.test-result-label {
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    color: var(--text);
}

.test-result-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why section */
.test-why {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 32px;
    margin-bottom: 48px;
}

.test-why h2 {
    font-family: var(--font-display);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.test-why p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.test-why p:last-child {
    margin-bottom: 0;
}

/* CTA */
.test-cta {
    text-align: center;
    padding: 48px 0;
}

.test-cta h2 {
    font-family: var(--font-display);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.test-cta p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 24px;
}

.value-button {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 2vw, 24px);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px var(--accent-glow);
    text-decoration: none;
}

.value-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px var(--accent-glow);
}

.value-button:active {
    transform: translateY(0);
}

.privacy {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-top: 28px;
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .value-header h1 {
        font-size: 32px;
    }

    .test-step {
        padding: 28px 24px;
    }

    .test-results {
        padding: 28px 24px;
    }

    .test-result-grid {
        grid-template-columns: 1fr;
    }

    .test-cta {
        padding: 36px 0;
    }

    .test-cta h2 {
        font-size: 22px;
    }

    .test-why {
        padding: 28px 24px;
    }
}
