.compare-lead {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 1.75rem;
    border-radius: 0 10px 10px 0;
    margin: 2rem 0 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}
.compare-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2.5rem; font-size: 0.95rem; }
.compare-table th, .compare-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}
.compare-table thead th {
    background: var(--bg-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dark);
}
.compare-table thead th:nth-child(2) { color: var(--primary-color); }
.compare-table tbody tr:hover { background: #faf5ff; }
.compare-table td:first-child { font-weight: 600; color: var(--text-dark); width: 28%; }

.verdict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}
.verdict-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.75rem;
}
.verdict-card.competitor { border-top-color: #0ea5e9; }
.verdict-card h3 { margin: 0 0 1rem; font-size: 1.05rem; color: var(--text-dark); }
.verdict-card ul { margin: 0; padding-left: 1.25rem; color: var(--text-muted); line-height: 1.7; }
.verdict-card li { margin-bottom: 0.4rem; }

.detail-section h2 {
    font-size: 1.35rem;
    margin: 3rem 0 1rem;
    color: var(--text-dark);
    padding: 1rem 1.25rem 0.85rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}
.detail-section h3 { font-size: 1.05rem; margin: 1.75rem 0 0.6rem; color: var(--text-dark); }
.detail-section p, .detail-section ul { color: var(--text-muted); line-height: 1.75; }
.detail-section ul { margin: 0.5rem 0 1.25rem 1.5rem; }
.detail-section strong { color: var(--text-dark); }

.note-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 0.85rem 1.1rem;
    font-size: 0.88rem;
    color: #78350f;
    margin: 1.25rem 0;
}

@media (max-width: 720px) {
    .verdict-grid { grid-template-columns: 1fr; }
    .compare-table { font-size: 0.85rem; }
    .compare-table th, .compare-table td { padding: 0.6rem 0.5rem; }
}
