/* ============================================
   TGDC PAYMENT PAGE — payment-page.css
   ============================================
   All classes prefixed with pp- to avoid
   conflicts with the TherapyGroup theme.

   Relies on:
   - Theme's .container (1150px max-width)
   - Theme's .wrapper (margin-top for fixed header)
   - Theme's font loading (Lora + Poppins)

   Does NOT use .content or .content-a wrappers,
   so most theme content styles don't apply.
   ============================================ */

/* ---- Theme overrides for this template ---- */
.payment-page {
  background: #fff;
}

/* Remove theme's fixed-header spacer — hero handles its own padding */
.wrapper.payment-page {
  margin-top: 0;
}

/* Reset theme's global paragraph/heading styles inside our page.
   Theme body is color: #777 and line-height: 1.8.
   We want tighter control. */
.payment-page p {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-weight: 400;
  color: #555;
  line-height: 1.7;
}

.payment-page h1,
.payment-page h2,
.payment-page h3 {
  /* Prevent theme's global h1 { font-size: 2em } etc. */
  margin: 0;
}

/* ---- Shared utilities ---- */
.pp-text-center { text-align: center; }
.pp-prose--centered { max-width: 660px; margin-left: auto; margin-right: auto; }

.pp-h2 {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-weight: 500;
  font-size: 28px;
  color: #fb9000;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Section-level paragraph styling */
.pp-section p {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}
.pp-section p:last-child { margin-bottom: 0; }
.pp-section strong { color: #333; font-weight: 600; }
.pp-section a { color: #fb9000; text-decoration: none; font-weight: 500; }
.pp-section a:hover { text-decoration: underline; }

/* ---- Sections ---- */
.pp-section { padding: 80px 0; }
.pp-section--alt { background-color: #f8f9fa; }
.pp-section--warm { background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%); }
.pp-section--warm-subtle { background: #f9f7f5; }

/* Emotional Beat */
.pp-emotional-beat {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  text-align: center !important;
}
.pp-emotional-beat p {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 18px;
  font-style: italic;
  color: #666 !important;
  line-height: 1.7;
  margin: 0;
}

/* Photo Break */
.pp-photo-break {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}
.pp-photo-break::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  pointer-events: none;
}
.pp-photo-break__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  filter: saturate(0.85);
}

.pp-divider {
  height: 3px;
  background: linear-gradient(90deg, #fb9000 0%, #e8724a 20%, #d94f6e 40%, #9b59b6 60%, #6cc8d7 80%, #4aae8c 100%);
}

/* ============================================
   HERO
   ============================================ */
.pp-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pp-hero__bg {
  position: absolute;
  inset: 0;
  background: #3e342a; /* fallback while image loads */
}
.pp-hero__bg::after {
  display: none; /* noise texture not needed with photo */
}

.pp-hero__bg-img,
.pp-hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* show the chair + art, not the ceiling */
}

.pp-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(35, 30, 25, 0.92) 0%,
    rgba(35, 30, 25, 0.78) 45%,
    rgba(35, 30, 25, 0.45) 100%
  );
  z-index: 1;
}

.pp-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 80px;
}
.pp-hero__tagline {
  font-family:var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #fb9000;
  margin-bottom: 18px;
}
.pp-hero__title {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-weight: var(--display-weight);
  font-size: 36px;
  line-height: 1.25;
  color: rgba(255,255,255,0.95);
  max-width: 620px;
  margin: 0 0 18px;
}
.pp-hero__subtitle,
.payment-page .pp-hero__subtitle,
p.pp-hero__subtitle {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 18px;
  color: #fff !important;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.pp-hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding: 20px 30px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
}
.pp-hero__stat-number {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-weight: var(--display-weight);
  font-size: 38px;
  color: #fb9000;
  line-height: 1;
}
.pp-hero__stat-label {
  font-family:var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  max-width: 220px;
}

/* Hero soft CTA */
.pp-hero__soft-cta,
a.pp-hero__soft-cta,
.payment-page .pp-hero__soft-cta {
  /* table (not inline-block): shrink-to-fit block, so the link never shares
     a line with the inline-flex stat box beside it */
  display: table;
  margin-top: 24px;
  font-family:var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.pp-hero__soft-cta:hover,
a.pp-hero__soft-cta:hover {
  color: #fff !important;
  border-color: #fff;
}

/* Soft CTA text (mid-page) */
.pp-soft-cta-text {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.pp-soft-cta-text p {
  font-family:var(--font-ui);
  font-size: 15px;
  color: #707070 !important;
}
.pp-soft-cta-text a {
  color: #fb9000 !important;
  text-decoration: none;
  font-weight: 500;
}
.pp-soft-cta-text a:hover {
  text-decoration: underline;
}

/* Soft CTA link (mid-page) */
.pp-soft-cta-link,
a.pp-soft-cta-link,
.payment-page .pp-soft-cta-link {
  font-family:var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: #fb9000 !important;
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.pp-soft-cta-link:hover,
a.pp-soft-cta-link:hover {
  opacity: 0.75;
}

/* OON explainer - centered prose */
.pp-oon-explainer {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  text-align: center;
}
.pp-oon-explainer p {
  font-family:var(--font-body)!important;font-size-adjust:var(--body-optical-size,none);
  font-size: 15px !important;
  color: #707070 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}
.pp-oon-explainer strong {
  font-family:var(--font-ui)!important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #666 !important;
}

/* Rates reminder */
.pp-rates-reminder {
  max-width: 560px;
  margin: 24px auto 0 !important;
  font-family:var(--font-body)!important;font-size-adjust:var(--body-optical-size,none);
  font-size: 15px !important;
  font-style: italic;
  color: #707070 !important;
}

/* Rates benchmark */
.pp-rates-benchmark {
  max-width: 560px;
  margin: 16px auto 0 !important;
  font-family:var(--font-body)!important;font-size-adjust:var(--body-optical-size,none);
  font-size: 13px !important;
  color: #aaa !important;
  line-height: 1.6 !important;
}
.pp-rates-benchmark a {
  color: #aaa !important;
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,0.15);
  text-underline-offset: 2px;
}
.pp-rates-benchmark a:hover {
  color: #707070 !important;
}

/* CTA band micro */
.pp-cta-band__micro,
.payment-page .pp-cta-band__micro {
  margin-top: 20px !important;
  font-family:var(--font-body)!important;font-size-adjust:var(--body-optical-size,none);
  font-size: 15px !important;
  color: rgba(255,255,255,0.65) !important;
}
.pp-cta-band__micro-link,
a.pp-cta-band__micro-link,
.payment-page .pp-cta-band__micro a {
  color: #fff !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(255,255,255,0.4) !important;
  text-underline-offset: 3px;
}
.pp-cta-band__micro-link:hover,
a.pp-cta-band__micro-link:hover,
.payment-page .pp-cta-band__micro a:hover {
  text-decoration-color: #fff !important;
}

/* ============================================
   ACT 1: COST SCENARIO
   ============================================ */
.pp-cost-scenario {
  max-width: 780px;
  margin: 50px auto 0;
  background: #fff;
  border-radius: 12px;
  padding: 44px 40px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.pp-cost-scenario__label {
  font-family:var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6b7075;
  margin-bottom: 32px;
  text-align: center;
}
.pp-cost-scenario__flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
}
.pp-cost-scenario__step {
  text-align: center;
  flex: 1;
  max-width: 220px;
}
.pp-cost-scenario__step-tag {
  font-family:var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7075;
  margin-bottom: 10px;
  min-height: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.pp-cost-scenario__step-value {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-weight: var(--display-weight);
  font-size: 38px;
  line-height: 1.1;
  white-space: nowrap;
}
.pp-cost-scenario__step-value--rate { color: #6b7075; }
.pp-cost-scenario__step-value--reimburse { color: #6cc8d7; }
.pp-cost-scenario__step-value--cost { color: #fb9000; }
.pp-cost-scenario__step-note {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 13px;
  color: #727272;
  margin-top: 8px;
}
.pp-cost-scenario__arrow {
  font-size: 22px;
  color: #ccc;
  flex-shrink: 0;
  margin-top: 46px;
}
.pp-cost-scenario__notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.pp-cost-scenario__note {
  text-align: left;
}
.pp-cost-scenario__note-label {
  font-family:var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #727272;
  margin-bottom: 6px;
}
.pp-cost-scenario__note-text {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 13px;
  color: #727272;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .pp-cost-scenario__notes {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================
   ACT 2: COMPARISON + CREDENTIALS
   ============================================ */
.pp-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 48px 0 0;
}
.pp-comparison-card {
  padding: 36px 30px;
  border-radius: 10px;
  border-top: 4px solid transparent;
}
.pp-comparison-card--typical {
  background: #f0f0f0;
  border-top-color: #ccc;
}
.pp-comparison-card--tgdc {
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
  border-top-color: #fb9000;
}
.pp-comparison-card__label {
  font-family:var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.pp-comparison-card--typical .pp-comparison-card__label { color: #6b7075; }
.pp-comparison-card--tgdc .pp-comparison-card__label { color: #fb9000; }
.pp-comparison-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 15px;
  line-height: 1.55;
  color: #555;
}
.pp-comparison-card__item:last-child { margin-bottom: 0; }
.pp-comparison-card__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

/* Credential Strip — real university logos */
.pp-credential-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.pp-credential-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
img.pp-credential-strip__logo {
  height: 72px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
}
img.pp-credential-strip__logo:hover {
  filter: grayscale(0%) opacity(0.8);
}

/* ============================================
   RATES
   ============================================ */
.pp-rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 44px auto 0;
  max-width: 640px;
}
.pp-rate-card {
  padding: 32px 28px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  border-top: 4px solid transparent;
  text-align: center;
}
.pp-rate-card:nth-child(1) { border-top-color: #fb9000; }
.pp-rate-card:nth-child(2) { border-top-color: #6cc8d7; }
.pp-rate-card__type {
  font-family:var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7075;
  margin-bottom: 12px;
}
.pp-rate-card__range {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-weight: var(--display-weight);
  font-size: 30px;
  color: #6b7075;
  margin-bottom: 10px;
}
.pp-rate-card__detail {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 14px;
  color: #737373;
  line-height: 1.5;
}

/* ============================================
   VERIFICATION STEPS
   ============================================ */
.pp-verify-steps {
  max-width: 760px;
  margin: 48px auto 0;
}
.pp-verify-step {
  display: flex;
  gap: 24px;
  position: relative;
}
.pp-verify-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 36px;
}
.pp-verify-step__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family:var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.pp-verify-step:nth-child(1) .pp-verify-step__dot { background: #fb9000; }
.pp-verify-step:nth-child(2) .pp-verify-step__dot { background: #6cc8d7; }
.pp-verify-step:nth-child(3) .pp-verify-step__dot { background: #9b59b6; }
.pp-verify-step:nth-child(4) .pp-verify-step__dot { background: #4aae8c; }
.pp-verify-step:nth-child(5) .pp-verify-step__dot { background: #fb9000; }
.pp-verify-step__line {
  width: 2px;
  flex: 1;
  background: #e0e0e0;
  min-height: 20px;
}
.pp-verify-step:last-child .pp-verify-step__line { display: none; }
.pp-verify-step__content {
  padding-bottom: 36px;
  flex: 1;
}
.pp-verify-step:last-child .pp-verify-step__content { padding-bottom: 0; }
.pp-verify-step__title {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-weight: var(--display-weight);
  font-size: 16px;
  color: #333;
  margin-bottom: 6px;
  line-height: 36px; /* Aligns with dot center */
}
.pp-verify-step__desc {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 15px;
  color: #5e686c;
  line-height: 1.6;
}
.pp-verify-step__desc--small {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}
.pp-verify-step__script {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.6);
  border-radius: 6px;
  border-left: 3px solid #d4eef2;
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 13px;
  font-style: italic;
  color: #666;
  line-height: 1.55;
}
.pp-verify-step__script-label {
  font-family:var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4a949f;
  margin-bottom: 4px;
  font-style: normal;
}

/* ============================================
   CTP CALLOUT
   ============================================ */
.pp-ctp-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 40px 36px;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
  border-radius: 10px;
  border-left: 4px solid #9b59b6;
  align-items: start;
}
.pp-ctp-callout__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(155, 89, 182, 0.25);
}
.pp-ctp-callout__icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
.pp-ctp-callout__title {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-weight: var(--display-weight);
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
}
.pp-ctp-callout__body p {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 15px;
  line-height: 1.65;
  color: #5e686c;
  margin-bottom: 12px;
}
.pp-ctp-callout__body p:last-child { margin-bottom: 0; }

/* Exclusions */
.pp-exclusions {
  margin-top: 40px;
  padding: 24px 28px;
  background: #f8f9fa;
  border-radius: 8px;
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 14px;
  line-height: 1.6;
  color: #636b6f;
}
.pp-exclusions strong {
  color: #5a6468;
}

/* ============================================
   CTAs
   ============================================ */
.pp-cta-inline {
  text-align: center;
  padding: 10px 0;
}
.pp-cta-inline__btn {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(135deg, #fb9000 0%, #e8833a 100%);
  color: #fff;
  font-family:var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pp-cta-inline__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(251,144,0,0.3);
}

.pp-cta-band {
  padding: 70px 0;
  background: linear-gradient(135deg, #fb9000 0%, #e8833a 100%);
  text-align: center;
}
.pp-cta-band__title {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-weight: var(--display-weight);
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}
.pp-cta-band__subtitle {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.pp-cta-band__btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #fb9000;
  font-family:var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pp-cta-band__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .pp-hero { min-height: 380px; }
  .pp-hero__title { font-size: 26px; }
  .pp-hero__subtitle { font-size: 16px; }
  .pp-h2 { font-size: 24px; }
  .pp-section { padding: 60px 0; }

  .pp-cost-scenario__flow {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .pp-cost-scenario__arrow {
    transform: rotate(90deg);
    margin-top: 0;
    align-self: center;
    width: 100%;
    text-align: center;
  }
  .pp-cost-scenario__step {
    text-align: center;
    width: 100%;
    max-width: none;
  }
  .pp-cost-scenario__step-tag {
    justify-content: center;
    min-height: auto;
  }
  .pp-cost-scenario__step-value { font-size: 32px; text-align: center; }
  .pp-cost-scenario__step-note { text-align: center; }
  .pp-cost-scenario { padding: 32px 24px; }

  .pp-comparison-grid { grid-template-columns: 1fr; }
  .pp-rates-grid { grid-template-columns: 1fr; }

  .pp-ctp-callout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pp-ctp-callout__icon { margin: 0 auto; }

  .pp-hero__stat {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .pp-hero__stat-number { font-size: 32px; }

  .pp-credential-strip {
    gap: 16px;
    padding: 12px 0;
  }
  img.pp-credential-strip__logo {
    height: 54px;
    max-width: 110px;
  }

  .pp-cta-inline {
    margin-top: 24px !important;
  }

  .pp-emotional-beat {
    padding: 0 16px;
  }
  .pp-emotional-beat p { font-size: 16px; }

  .pp-oon-explainer {
    padding: 0 16px;
  }

  .pp-exclusions {
    margin-top: 0;
  }

  .pp-photo-break,
  .pp-photo-break__img { height: 220px; max-height: 220px; }

  .pp-verify-step__title {
    font-size: 15px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .pp-hero__content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pp-hero__title { font-size: 26px; }
  .pp-section { padding: 48px 0; }
  .pp-h2 { font-size: 22px; }
  .pp-cta-band { padding: 50px 0; }
  .pp-cta-band__title { font-size: 24px; }
}