/* ===== Solution USP cards: mirror icon on hover (matches former Benefits cards) ===== */
.icon-box-wcus .icon {
    transition: transform .35s ease, color .3s ease;
}

.icon-box-wcus:hover .icon {
    transform: rotateY(180deg);
}

.solution-compare {
    background: var(--color-bg-dark-alt);
    border: 1px solid var(--color-border-light-light);
    border-radius: 20px;
    padding: 48px 50px;
    position: relative;
    overflow: hidden;
}

.solution-compare .compare-heading {
    position: relative;
    z-index: 1;
    color: var(--color-text-white-strong);
    text-align: center;
    font-weight: 700;
    margin-bottom: 34px;
}

.solution-compare .compare-heading .accent {
    color: var(--color-accent-green);
}

.solution-compare .compare-note {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.6;
    max-width: 720px;
    margin: -18px auto 28px;
}

.solution-compare ul {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 840px;
}

.solution-compare li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-light-light);
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.55;
}

.solution-compare li:last-child {
    border-bottom: none;
}

.solution-compare li strong {
    color: var(--color-text-white-strong);
    font-weight: 700;
}

.solution-compare li .check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-accent-green);
    color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .solution-compare {
        padding: 32px 22px;
    }
    .solution-compare li {
        align-items: flex-start;
    }
}

/* ===== Comparison matrix ===== */
.compare-matrix {
    background: var(--color-bg-dark-alt);
    border: 1px solid var(--color-border-light-light);
    border-radius: 20px;
    padding: 48px 50px;
}

.compare-matrix .compare-heading {
    color: var(--color-text-white-strong);
    text-align: center;
    font-weight: 700;
    margin-bottom: 14px;
}

.compare-matrix .compare-heading .accent {
    color: var(--color-accent-green);
}

.compare-matrix .compare-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto 30px;
}

.cm-table-wrap {
    overflow-x: auto;
}

.cm-swipe-hint {
    display: none;
    text-align: center;
    color: var(--color-text-light-faded);
    font-size: 13px;
    margin: 12px 0 0;
}

@media (max-width: 575px) {
    .cm-swipe-hint {
        display: block;
    }
}

.cm-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.cm-table th,
.cm-table td {
    padding: 15px 14px;
    border-bottom: 1px solid var(--color-border-light-light);
}

.cm-table thead th {
    color: var(--color-text-light);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    text-align: center;
    border-bottom: 1px solid var(--color-border-light-mid);
}

.cm-table thead th.cm-feature {
    text-align: left;
}

.cm-table thead th.cm-col-product {
    color: var(--color-accent-green);
}

.cm-table tbody th.cm-feature {
    text-align: left;
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.45;
}

.cm-table .cm-cell {
    text-align: center;
    width: 16%;
}

.cm-table .cm-col-product {
    background: var(--color-overlay-white-subtle);
}

.cm-table tbody tr:last-child th,
.cm-table tbody tr:last-child td {
    border-bottom: none;
}

.cm-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.cm-mark.cm-yes {
    background: var(--color-accent-green);
    color: var(--color-bg-dark);
}

.cm-mark.cm-yes::before {
    content: "\2713";
}

.cm-mark.cm-partial {
    background: var(--color-border-light-mid);
    color: var(--color-text-white-strong);
}

.cm-mark.cm-partial::before {
    content: "\2013";
}

.cm-mark.cm-no {
    background: transparent;
    border: 1px solid var(--color-border-light-mid);
    color: var(--color-text-light-faded);
}

.cm-mark.cm-no::before {
    content: "\2715";
}

.cm-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin-top: 26px;
    color: var(--color-text-light-faded);
    font-size: 13px;
}

.cm-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cm-legend .cm-mark {
    width: 20px;
    height: 20px;
    font-size: 11px;
}

.cm-vh {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 575px) {
    .compare-matrix {
        padding: 32px 20px;
    }
}
