.compare-section {
  background: #f4f6fb;
  padding: clamp(20px, 2.5vw, 30px) 0;
}

.compare-inner {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.compare-heading {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.05;
  margin-bottom: 24px;
}

.compare-heading span {
  color: #4db8ff;
  font-weight: 400;
  font-style: italic;
}

.compare-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.75;
  color: #555;
  margin-bottom: 36px;
  max-width: 340px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(10,20,60,0.10);
}

.compare-table thead tr {
  background: var(--blue-dark);
}

.compare-table thead th {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-table thead th:first-child {
  text-align: left;
  color: #4db8ff;
}

.compare-col-us {
  background: rgba(77,184,255,0.07);
}

.compare-table thead .compare-col-us {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 700;
}

.compare-table tbody tr {
  background: var(--white);
  border-bottom: 1px solid rgba(10,20,60,0.07);
  transition: background 0.15s;
}

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

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

.compare-table tbody td {
  padding: 14px 20px;
  font-size: clamp(16px, 1.1vw, 18px);
  color: #444;
  text-align: center;
}

.compare-table tbody td:first-child {
  text-align: left;
  color: var(--blue-dark);
  font-weight: 500;
}

.compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4db8ff;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 14px;
}

.compare-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(10,20,60,0.07);
  color: rgba(10,20,60,0.3);
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 860px) {
  .compare-inner { grid-template-columns: 1fr; }
  .compare-sub { max-width: 100%; }
}
