/* ── Comparison Page ── */

/* Hero stat cards */
.cmp-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.cmp-stat {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px 24px;
    text-align: center;
}

.cmp-stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--ye);
}

.cmp-stat-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

/* Competitor table */
.c2 {
    width: 100%;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    table-layout: fixed;
}

.c2 thead th {
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    background: var(--ye);
    color: var(--ch);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.c2 thead th:nth-child(1) {
    text-align: left;
    width: 120px;
}

.c2 thead th:nth-child(2) {
    text-align: left;
    width: 200px;
}

.c2 thead th:nth-child(3),
.c2 thead th:nth-child(4),
.c2 thead th:nth-child(5),
.c2 thead th:nth-child(6),
.c2 thead th:nth-child(7) {
    width: 20%;
}

.c2 tbody td:nth-child(3),
.c2 tbody td:nth-child(4),
.c2 tbody td:nth-child(5),
.c2 tbody td:nth-child(6),
.c2 tbody td:nth-child(7) {
    width: 20%;
}

.c2 thead th.hl {
    background: var(--cr);
    color: var(--wh);
}

.c2 .gc td {
    background: var(--yet);
    font-size: 11px;
    font-weight: 800;
    color: var(--ch);
    padding: 11px 14px;
    vertical-align: middle;
    border-right: 1px solid var(--bl);
}

.c2 .fec td {
    font-size: 12px;
    font-weight: 600;
    color: var(--t2);
    padding: 11px 16px;
    border-right: 1px solid var(--bl);
    vertical-align: middle;
}

.c2 .chc {
    text-align: center;
    padding: 11px 14px;
    border-right: 1px solid var(--bl);
    vertical-align: middle;
    font-size: 12px;
    font-weight: 700;
}

.c2 .chc.dc {
    background: rgba(232, 23, 93, 0.03);
}

.c2 tbody tr:hover td {
    background: rgba(255, 248, 204, 0.4);
}

.c2 tbody tr:hover td.dc {
    background: rgba(232, 23, 93, 0.07);
}

.c2 td {
    border-bottom: 1px solid var(--bl);
}

.c2 .tick {
    color: var(--gn);
    font-size: 14px;
    font-weight: 900;
}

.c2 .cross {
    color: #EF4444;
    font-size: 14px;
}

/* ── COMPARISON RESPONSIVE ── */
@media (max-width: 768px) {
    .cmp-stats { gap: 12px; }
    .cmp-stat { padding: 12px 16px; }
    .cmp-stat-value { font-size: 22px; }

    .c2 { min-width: 700px; }
}
