/* -----------------------------------------------------------
   SLIDE 3 — COMPARISON TABLE
   ═══════════════════════════════════════════════════════════ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-size: 22px;
  margin-top: 18px;
}

.compare-table th {
  padding: 14px 20px;
  background: var(--blue);
  color: white;
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.compare-table th:first-child {
  border-radius: 16px 0 0 16px;
  text-align: left;
}

.compare-table th:last-child {
  border-radius: 0 16px 16px 0;
}

.compare-table td {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
  text-align: center;
  font-weight: 600;
  transition: background 0.2s ease;
}

.compare-table td:first-child {
  border-left: 1px solid var(--line);
  border-radius: 14px 0 0 14px;
  text-align: left;
  font-weight: 800;
}

.compare-table td:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 14px 14px 0;
  color: #3a5070;
}

.compare-table .pickpilot-row td {
  border-color: rgba(37, 99, 235, 0.38);
  background: rgba(220, 235, 255, 0.88);
  color: var(--blue-deep);
  font-weight: 900;
}

.compare-table .pickpilot-row td:first-child {
  border-left-color: rgba(37, 99, 235, 0.38);
}

/* ═══════════════════════════════════════════════════════════
