/* =========================
   Comparison section
   ========================= */

.comparison {
    background: var(--light-2);
}

.comparison-table {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.comparison-table thead {
    background: var(--dark);
    color: white;
}

.comparison-table th {
    padding: 36px 40px;
    font-size: 15px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.comparison-table td {
    padding: 28px 40px;
    font-size: 17px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    border: none;
}

.comparison-table tbody tr {
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: var(--light-2);
}

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

.comparison-table .with-jm,
.comparison-table tbody > tr > td:nth-child(3) {
    color: var(--primary);
    font-weight: 800;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 20px 16px;
        font-size: 15px;
    }
}
