/* ================================
   Review page part 2
   CTA, disclosure, quick answer, TOC
   ================================ */

/* ---------- CTA boxes ---------- */
.cta-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    margin: 16px 0;
    flex-wrap: wrap;
}
.cta-box.cta-lg {
    padding: 24px;
    background-image:
        radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.1), transparent 60%),
        radial-gradient(circle at 0% 100%, rgba(6, 182, 212, 0.1), transparent 60%);
}
.cta-price {
    display: flex;
    flex-direction: column;
}
.cta-price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-dim);
    margin-bottom: 2px;
}
.cta-price strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-box .btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    flex: 1;
    justify-content: center;
}
.cta-note {
    width: 100%;
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
    margin-top: 8px;
}
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---------- Affiliate disclosure ---------- */
.affiliate-disclosure {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 16px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    margin-bottom: 32px;
    font-size: 13px;
    color: var(--text-muted);
}
.affiliate-disclosure svg { color: var(--warning); flex-shrink: 0; margin-top: 2px; }

/* ---------- Quick answer (AEO) ---------- */
.quick-answer {
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}
.quick-answer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: var(--accent-grad);
}
.quick-answer h2 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text);
}
.qa-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- Table of contents ---------- */
.toc {
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin: 32px 0;
}
.toc strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-dim);
    margin-bottom: 12px;
}
.toc ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 4px 16px;
}
.toc a {
    display: inline-block;
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 14px;
    transition: color .2s;
}
.toc a:hover { color: var(--accent-2); }

/* ---------- Layout single test ---------- */
.test-body { padding: 40px 0 80px; }
.test-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}
.test-content {
    font-size: 17px;
    line-height: 1.8;
    min-width: 0;
}
.test-content h2 {
    font-size: 28px;
    margin: 48px 0 20px;
    scroll-margin-top: 90px;
}
.test-content h3 { font-size: 22px; margin: 32px 0 12px; }
.test-content p { margin-bottom: 20px; color: var(--text); }
.test-content ul, .test-content ol { margin-bottom: 20px; padding-left: 24px; }
.test-content ul { list-style: disc; }
.test-content ol { list-style: decimal; }
.test-content a { color: var(--accent-2); text-decoration: underline; }
.test-content strong { color: var(--text); }
.test-section { margin-bottom: 48px; }
