.answer-card {
  max-width: 980px;
  margin: 0 auto 2rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(38, 222, 129, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(38, 222, 129, 0.1), rgba(26, 77, 46, 0.2));
}

.answer-card h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.answer-card p {
  color: var(--white-70);
  line-height: 1.75;
}

.comparison-heading {
  margin: 2.5rem 0 1rem;
  text-align: center;
}

.comparison-heading p {
  max-width: 760px;
  margin: 0.75rem auto 0;
  color: var(--white-50);
}

.comparison-table-wrap {
  width: 100%;
  margin: 0 auto 2rem;
  overflow-x: auto;
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table caption {
  padding: 1rem 1.25rem;
  color: var(--white-70);
  font-size: 0.85rem;
  text-align: left;
  caption-side: bottom;
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--white-06);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--white);
  background: rgba(38, 222, 129, 0.1);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--white-70);
  font-size: 0.9rem;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table tbody tr:hover {
  background: var(--white-04);
}

.comparison-table .price-base {
  color: var(--white-90);
  font-weight: 700;
}

.comparison-table .price-offer {
  color: var(--emerald);
  font-weight: 800;
}

.comparison-table .not-applicable {
  color: var(--white-50);
}

.comparison-note,
.fact-verified {
  max-width: 980px;
  margin: 0 auto 2rem;
  color: var(--white-50);
  font-size: 0.88rem;
  line-height: 1.65;
}

.fact-verified {
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--emerald);
  background: var(--white-04);
}

.page-header .facts-page-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

@media (max-width: 639px) {
  .answer-card {
    padding: 1.25rem;
  }

  .comparison-table-wrap {
    border-radius: 12px;
  }
}
