/* ─── Page Hero (shared with faq.css) ────────────────────── */
.page-hero {
  position: relative;
  padding: 96px 0 80px;
  text-align: center;
  overflow: hidden;
}
.page-hero__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 113, 223, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .section__label { margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Nav active ──────────────────────────────────────────── */
.nav__active { color: var(--white) !important; }

/* ─── Intro ───────────────────────────────────────────────── */
.why-intro { background: var(--surface); padding: 64px 0; }
.why-intro__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.why-intro__lead {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* ─── Compare ─────────────────────────────────────────────── */
.compare { background: var(--ink); }

.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.compare__card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.compare__card--dim {
  background: var(--surface);
}
.compare__card--featured {
  background: var(--surface-2);
  border-color: rgba(0, 113, 223, 0.45);
  box-shadow: 0 0 52px rgba(0, 113, 223, 0.12);
}

.compare__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.compare__icon { margin-bottom: 4px; }

.compare__card h3 {
  font-size: 1.2rem;
  color: var(--white);
}
.compare__card--dim h3 { color: var(--grey); }

.compare__price {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--grey);
  line-height: 1;
}
.compare__price--blue { color: var(--blue); }

.compare__card p { font-size: 0.9rem; line-height: 1.7; }

/* ─── Why It Works ────────────────────────────────────────── */
.why-works { background: var(--surface); }

.why-works__body {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-works__body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(163, 166, 169, 0.9);
}

/* ─── CTA ─────────────────────────────────────────────────── */
.why-cta { background: var(--ink); }
.why-cta__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.why-cta__inner h2 { margin-bottom: 4px; }
.why-cta__inner p { font-size: 1.05rem; margin-bottom: 8px; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .compare__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
