/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.table-scroll {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th {
    padding: 16px 22px;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    background: #F8FAFC;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}

.comparison-table th.highlight-col {
    background: var(--primary);
    color: white;
}

.comparison-table td {
    padding: 15px 22px;
    font-size: 14px;
    font-weight: 400;
    color: var(--slate);
    border-bottom: 1px solid var(--border);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td.highlight-col {
    background: var(--primary-subtle);
    font-weight: 600;
    color: var(--primary-dark);
}

.comparison-table td:first-child {
    color: var(--muted);
    font-weight: 600;
}