.px-page {
  padding: 2.5rem 0 3.5rem;
  background-color: var(--px-bg-white);
}

.px-page-header {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.px-page-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--px-coral);
}

.px-page-header .px-page-eyebrow {
  color: var(--px-coral);
}

.px-page-title {
  margin: 0 0 0.75rem;
  font-family: var(--px-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--px-heading-on-light);
}

.px-page-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--px-text-muted-on-light);
}

.px-page-content {
  max-width: 46rem;
}

.px-page-wide .px-page-content {
  max-width: none;
}

.px-page-content h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--px-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--px-heading-on-light);
}

.px-page-content h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--px-heading-on-light);
}

.px-page-content p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--px-text-muted-on-light);
}

.px-page-content ul,
.px-page-content ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--px-text-muted-on-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.px-page-content li {
  margin-bottom: 0.35rem;
}

.px-page-content a {
  color: var(--px-accent);
  text-decoration: none;
}

.px-page-content a:hover {
  color: var(--px-accent-alt);
}

.px-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--px-text);
  background: var(--px-bg-elevated);
  border: 1px solid var(--px-border);
  border-radius: var(--px-radius);
  text-decoration: none;
}

.px-contact-email:hover {
  border-color: var(--px-accent);
  color: var(--px-accent);
}

.px-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 52rem;
}

.px-review-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--px-bg-elevated);
  border: 1px solid var(--px-border);
  border-radius: var(--px-radius);
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.px-review-card:hover {
  border-color: var(--px-accent);
}

.px-review-card img {
  width: 4.5rem;
  height: auto;
  max-height: 3rem;
  object-fit: contain;
}

.px-review-card-body {
  flex: 1;
  min-width: 0;
}

.px-review-card-title {
  margin: 0 0 0.25rem;
  font-family: var(--px-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--px-text);
}

.px-review-card-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--px-text-muted);
}

.px-review-card-score {
  flex-shrink: 0;
  font-family: var(--px-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--px-accent);
}

.px-offer-hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--px-bg-elevated);
  border: 1px solid var(--px-border);
  border-radius: var(--px-radius);
}

.px-offer-hero-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.px-offer-hero img {
  width: 100%;
  max-width: 10rem;
  max-height: 4.5rem;
  object-fit: contain;
}

.px-offer-hero-meta h1 {
  margin: 0 0 0.35rem;
  font-family: var(--px-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--px-text);
}

.px-offer-hero-score {
  margin: 0;
  font-size: 0.875rem;
  color: var(--px-text-muted);
}

.px-offer-hero-score strong {
  color: var(--px-accent);
  font-size: 1.125rem;
}

.px-offer-hero-bonus {
  margin: 0;
  font-family: var(--px-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--px-text);
}

.px-offer-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 14rem;
}

.px-offer-hero-actions .px-btn {
  width: 100%;
}

.px-offer-disclaimer-block {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--px-text-muted);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--px-radius);
}

@media (min-width: 768px) {
  .px-offer-hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }

  .px-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
