.comparison-section { padding: 88px 0; background: #fff; }
.comparison-table-wrap {
    overflow-x: auto;
    background: var(--grey-bg);
    border-radius: 16px;
    padding: 8px;
	max-width: 1000px;
    margin: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    min-width: 640px;
}
.comparison-table thead {
    background: var(--dark);
}
.comparison-table th {
    text-align: left;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 16px 20px;
    border-bottom: 0;
}
.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
    vertical-align: top;
}
.comparison-table tbody tr:nth-child(even) td { background: rgba(0,0,0,0.015); }
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table td:first-child {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}
