.compare-table-wrap {
  margin: 1.1rem 0 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  /* box-shadow: var(--shadow); */
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 860px;
  font-size: 1rem;
}

.compare-table thead tr {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #f6fbfc 0%, #eef5f6 100%);
}

.compare-table th,
.compare-table td {
  padding: 0.75rem 0.85rem;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  vertical-align: top;
  line-height: 1.35;
}

.compare-table th {
  font-weight: 700;
  text-align: center;
  color: #111827;
  font-size: 0.95rem;
}

.compare-table td {
  text-align: center;
  color: #1f2933;
  border-bottom: 1px solid #edf3f5;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: #111827;
  width: 26%;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:nth-child(even) td {
  background: #fbfefe;
}

.compare-table tbody tr:hover td {
  background: #f3f9fa;
}