/* ── Compare table ──────────────────────────────────────────── */
.compare-sec {
  padding: var(--pad-section);
  background: var(--fog);
  border-top: 1px solid var(--border);
}

.cmp {
  width: 100%;
  border-collapse: collapse;
  margin-top: 44px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cmp th {
  background: var(--navy);
  color: var(--white);
  padding: 15px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.cmp td {
  padding: 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
}

.cmp tr:last-child td { border-bottom: none; }
.cmp tr:nth-child(even) td { background: var(--fog); }
.cmp td:first-child { font-weight: 700; color: var(--text); font-size: 13px; }

.yes   { color: #16a34a; font-weight: 700; }
.no    { color: #94a3b8; }
.maybe { color: var(--gold); font-weight: 600; }