/* ============================================================
   Shared chrome for the product pages (/ask-mira/, /rater-oversight/,
   /site-review/). Each page adds its own section stylesheet on top.
   ============================================================ */

.page-hero {
  padding: 56px 0 48px;
}

@media (min-width: 880px) {
  .page-hero {
    padding: 72px 0 56px;
  }
}

.page-hero-title {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem);
  font-weight: 350;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 22px;
  max-width: 860px;
}

.page-hero .btn {
  margin-top: 30px;
}

/* Split hero: the claim on the left, the walkthrough beside it. Same shape
   as the homepage hero, so the two read as one family. */
.page-hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 880px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
  }
}

/* A band is one section of a product page. */
.band {
  margin-top: 56px;
}

.band-inner {
  padding: 32px 0 36px;
}

@media (min-width: 880px) {
  .band-inner {
    padding: 32px 0 44px;
  }
}

/* Text beside a visual. */
.band-split {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 32px 0 36px;
}

@media (min-width: 880px) {
  .band-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 56px;
    padding: 32px 0 44px;
  }
}

.band-split--even {
  align-items: flex-start;
}

@media (min-width: 880px) {
  .band-split--even {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}

/* Intro paragraph block above a full-width visual. */
.band-intro {
  max-width: 700px;
  margin-bottom: 28px;
}

.band-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 14px;
}

/* Three-column supporting points. */
.trust-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 880px) {
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
}

.trust-grid--two {
  margin-top: 36px;
}

@media (min-width: 880px) {
  .trust-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.trust-h {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 8px;
  font-weight: 500;
  line-height: 1.35;
}

/* Closing call to action. */
.cta-band {
  margin-top: 24px;
  padding: 56px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.cta-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 350;
  margin: 0 0 16px;
  line-height: 1.15;
}

.cta-band .simple-text {
  margin: 0 auto 28px;
  max-width: 520px;
}
