/* Hero */
.compare-hero {
  background: #000;
  padding: 100px 80px;
  text-align: center;
}

.compare-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.compare-hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  color: #fff;
  margin: 0 0 20px;
}

.compare-hero-subhead {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: #22B573;
  color: #fff;
  border: 2px solid #22B573;
}

.btn-primary:hover {
  background: #1a9960;
  border-color: #1a9960;
}

/* Comparison Table */
.compare-table-section {
  background: #000;
  padding: 100px 80px;
}

.compare-table-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.compare-table-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}

.compare-table-subhead {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.25vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.compare-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  padding: 20px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.compare-table thead th {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.compare-table-feature-col {
  text-align: left !important;
}

.compare-table tbody th {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  text-align: left;
  color: #fff;
}

.compare-table-featured-col {
  color: #22B573 !important;
}

.compare-table tbody td:last-child {
  background: rgba(34, 181, 115, 0.06);
}

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

.compare-check {
  color: #22B573;
  font-weight: 700;
  font-size: 1.125rem;
}

.compare-dash {
  color: rgba(255, 255, 255, 0.25);
}

/* Tier Cards */
.compare-tiers {
  background: #000;
  padding: 100px 80px;
}

.compare-tiers-header {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}

.compare-tiers-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}

.compare-tiers-subhead {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.25vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.compare-tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.compare-tier-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-tier-card--featured {
  border-color: #22B573;
}

.compare-tier-badge {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #22B573;
  background: rgba(34, 181, 115, 0.12);
  border-radius: 4px;
  padding: 4px 10px;
  width: fit-content;
}

.compare-tier-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
}

.compare-tier-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #22B573;
  margin: 0;
}

.compare-tier-body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  flex: 1;
}

.compare-tier-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #22B573;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width: fit-content;
  margin-top: auto;
}

.compare-tier-link:hover {
  opacity: 0.75;
}

/* CTA Banner */
.compare-cta {
  background: #000;
  padding: 100px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.compare-cta-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.compare-cta-subhead {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.25vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  margin: 0;
}

.compare-cta-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.compare-cta-microcopy {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 560px;
  margin: 0;
}

@media (max-width: 900px) {

  .compare-hero,
  .compare-table-section,
  .compare-tiers,
  .compare-cta {
    padding: 72px 32px;
  }

  .compare-tier-cards {
    grid-template-columns: 1fr;
  }
}
