.dt-comparison-table {
    width: 100%;
    background: #000;
    color: #fff;
    overflow-x: auto;
}

.dt-comparison-table__inner {
    min-width: 1100px;
    border-radius: 14px;
    overflow: hidden;
}

.dt-comparison-table__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #000;
}

.dt-comparison-table__table col.col-feature { width: 22%; }
.dt-comparison-table__table col.col-brand { width: 22%; }
.dt-comparison-table__table col.col-brand-last { width: 34%; }

.dt-comparison-table__table th,
.dt-comparison-table__table td {
    padding: 18px 22px;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    border-top: none;
    vertical-align: middle;
    text-align: left;
}

.dt-comparison-table .dt-comparison-table__table tbody > tr:nth-child(odd) > td:not(.is-highlight),
.dt-comparison-table .dt-comparison-table__table tbody > tr:nth-child(even) > td:not(.is-highlight),
.dt-comparison-table .dt-comparison-table__table tbody > tr:hover > td:not(.is-highlight) {
    background-color: transparent !important;
    background: transparent !important;
}

.dt-comparison-table__table thead th {
    font-family: "Roboto", sans-serif;
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(209, 213, 220);
    background: #000;
}

.dt-comparison-table__feature {
    font-family: "Outfit", sans-serif;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
}

.dt-comparison-table__brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dt-comparison-table__brand-title {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #c7d0dc;
    text-transform: uppercase;
}

.dt-comparison-table__brand-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.3;
    color: #677386;
    text-transform: uppercase;
}

.dt-comparison-table__cell {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 500;
    color: #8f99aa;
}

.dt-comparison-table__cell-inner {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
}

.dt-comparison-table__icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dt-comparison-table__icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.dt-comparison-table__cell--muted {
    color: #7d8899;
}

.dt-comparison-table__cell--highlight {
    color: #ffffff;
    font-weight: 500;
}

.dt-comparison-table__table th.is-highlight,
.dt-comparison-table__table td.is-highlight {
    background: rgba(232, 73, 34, 0.04);
    border-left: none;
    border-right: none;
}

.dt-comparison-table__table thead th.is-highlight {
    color: #E84922;
    border-top: 1px solid rgba(232, 73, 34, 0.25);
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.dt-comparison-table__table thead th.is-highlight:first-child,
.dt-comparison-table__table tbody td.is-highlight:first-child {
    border-left: 1px solid rgba(232, 73, 34, 0.25);
}

.dt-comparison-table__table tbody tr:first-child td.is-highlight {
    border-top: 1px solid rgba(232, 73, 34, 0.25);
}

.dt-comparison-table__table tbody tr:last-child td.is-highlight {
    border-bottom: none;
}

.dt-comparison-table__table tbody tr:last-child td.is-highlight:last-child,
.dt-comparison-table__table thead th.is-highlight:last-child {
    border-right: none;
}

.dt-comparison-table__table colgroup + thead tr:first-child th {
    border: none;
}

.dt-comparison-table__cell--highlight .dt-comparison-table__icon svg {
    stroke: #E84922;
}

.dt-comparison-table__cell--muted .dt-comparison-table__icon svg {
    stroke: #7b8494 !important;
}

@media (max-width: 1024px) {
    .dt-comparison-table__inner {
        min-width: 980px;
    }
}

@media (max-width: 767px) {
    .dt-comparison-table__table th,
    .dt-comparison-table__table td {
        padding: 16px;
    }

    .dt-comparison-table__feature {
        font-size: 13px;
    }

    .dt-comparison-table__brand-title {
        font-size: 13px;
    }

    .dt-comparison-table__brand-subtitle {
        font-size: 11px;
    }

    .dt-comparison-table__cell {
        font-size: 13px;
        line-height: 1.55;
    }
}