/* ============================================================
   EZ Payroll — Product microsite styles
   Loaded AFTER css/styles.css. Reuses brand tokens + footer + nav.
   Accent: brand red (#e63946) + yellow (#e8b400) on dark heroes.
   ============================================================ */

/* ---------- Nav: payroll wordmark + back link ---------- */
.pr-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.pr-logo img { height: 46px; width: auto; }
.pr-tag {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--red);
  letter-spacing: -0.3px;
  position: relative;
  top: 1px;
}
.pr-nav-cta { display: flex; align-items: center; gap: 22px; }
.pr-back {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  color: #8a93a0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}
.pr-back:hover { color: var(--text) !important; }
.pr-back svg { width: 13px; height: 13px; }

/* ---------- Bold dark hero ---------- */
.pr-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 64px 76px;
  background:
    radial-gradient(circle at 86% 14%, rgba(230,57,70,0.32), transparent 50%),
    radial-gradient(circle at 10% 96%, rgba(232,180,0,0.16), transparent 46%),
    linear-gradient(120deg, #141d2b 0%, #0e1622 100%);
  color: white;
}
.pr-hero .ph-rings { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.pr-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.pr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(232,180,0,0.12);
  border: 1px solid rgba(232,180,0,0.35);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.pr-eyebrow svg { width: 14px; height: 14px; }
.pr-eyebrow.white {
  color: var(--text);
  background: white;
  border-color: rgba(255,255,255,0.85);
}
.pr-hero h1 {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0 0 18px;
}
.pr-hero h1 em { font-style: normal; color: var(--red); }
.pr-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 0 30px;
}
.pr-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pr-btn {
  background: var(--red);
  color: white;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.pr-btn:hover { background: #c0303c; transform: translateY(-2px); }
.pr-btn-ghost {
  background: transparent;
  color: white;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 28px;
  border-radius: 30px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
  display: inline-block;
}
.pr-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55); }

/* hero stat row */
.pr-hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.pr-hero-stats .num {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: white;
}
.pr-hero-stats .num em { font-style: normal; color: var(--primary); }
.pr-hero-stats .lbl { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* reuse the payslip card from homepage (.ph-card) on the hero right */
.pr-hero .ph-card { margin-left: auto; }

/* ---------- Integration "bundle" visual (EZ × Zoho People) ---------- */
.pr-bundle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
}
/* red burst behind the tiles */
.pr-bundle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(230,57,70,0.55) 0%, rgba(230,57,70,0.22) 34%, transparent 62%);
}
/* burst rays */
.pr-bundle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 460px;
  height: 460px;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%,
      rgba(230,57,70,0.16) 0deg 7deg,
      transparent 7deg 22deg);
  -webkit-mask: radial-gradient(circle, black 30%, transparent 64%);
          mask: radial-gradient(circle, black 30%, transparent 64%);
}
.pr-bundle-tile {
  position: relative;
  z-index: 2;
  width: 134px;
  height: 134px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 18px;
}
.pr-bundle-tile:first-child { transform: rotate(-8deg); }
.pr-bundle-tile:last-child { transform: rotate(8deg); }
.pr-bundle-tile img { max-width: 86px; max-height: 62px; width: auto; object-fit: contain; }
.pr-bundle-tile .pr-bundle-name {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.2px;
}
.pr-bundle-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(230,57,70,0.6);
  border: 4px solid #0e1622;
}
.pr-bundle-link svg { width: 20px; height: 20px; }
@media (max-width: 980px) {
  .pr-bundle { margin: 0 auto; }
}
@media (max-width: 400px) {
  .pr-bundle-tile { width: 116px; height: 116px; border-radius: 20px; }
  .pr-bundle { gap: 18px; }
}

/* ---------- Pricing "coming soon" card ---------- */
.pr-soon-card {
  background: white;
  border: 1.5px solid #ececec;
  border-radius: 22px;
  padding: 52px 44px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.pr-soon-ico {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: var(--pink-bg);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-soon-ico svg { width: 36px; height: 36px; }
.pr-soon-card h2 {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--text);
  margin-bottom: 14px;
}
.pr-soon-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 520px;
  margin: 0 auto 28px;
}
.pr-soon-card p strong { color: var(--text); }

/* ---------- Section primitives ---------- */
.pr-section { padding: 84px 64px; }
.pr-section.alt { background: var(--light); }

/* Dark section that matches the hero background */
.pr-section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(230,57,70,0.32), transparent 50%),
    radial-gradient(circle at 10% 96%, rgba(232,180,0,0.16), transparent 46%),
    linear-gradient(120deg, #141d2b 0%, #0e1622 100%);
  color: white;
}
.pr-section-dark .pr-wrap { position: relative; z-index: 2; }
.pr-section-dark .stitle { color: #fff; }
.pr-section-dark .pr-gs-list h4 { color: #fff; }
.pr-section-dark .pr-gs-list p { color: rgba(255,255,255,0.78); }
.pr-section-dark .pr-head h2 { color: #fff; }
.pr-section-dark .pr-head p { color: rgba(255,255,255,0.82); }

/* ---------- How-it-works pipeline ---------- */
.pr-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* the flowing connector line behind the nodes */
.pr-pipe-line {
  position: absolute;
  top: 39px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(to right,
    rgba(230,57,70,0.25),
    rgba(230,57,70,0.9) 50%,
    rgba(232,180,0,0.9));
  border-radius: 3px;
  z-index: 0;
}
.pr-pipe-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 6px;
}
.pr-pipe-node {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  border-radius: 22px;
  background: linear-gradient(150deg, #e6394620, #0e1622);
  border: 1.5px solid rgba(230,57,70,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(230,57,70,0.28), inset 0 0 20px rgba(230,57,70,0.12);
}
.pr-pipe-node svg { width: 34px; height: 34px; }
.pr-pipe-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #0e1622;
}
.pr-pipeline .pr-pipe-step h4 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}
.pr-pipeline .pr-pipe-step p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 220px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .pr-pipeline { grid-template-columns: 1fr; gap: 8px; justify-items: center; }
  .pr-pipe-line {
    left: 39px;
    top: 40px;
    bottom: 40px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(to bottom,
      rgba(230,57,70,0.25),
      rgba(230,57,70,0.9) 50%,
      rgba(232,180,0,0.9));
  }
  .pr-pipe-step {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 18px;
    text-align: left;
    align-items: center;
    max-width: 420px;
    padding: 14px 0;
  }
  .pr-pipe-node { margin: 0; }
  .pr-pipeline .pr-pipe-step p { margin: 0; max-width: none; }
}

/* ---------- Zoho People hero-style banner ---------- */
.pr-banner {
  position: relative;
  overflow: hidden;
  padding: 64px;
  background:
    radial-gradient(circle at 88% 16%, rgba(230,57,70,0.34), transparent 52%),
    radial-gradient(circle at 8% 92%, rgba(232,180,0,0.16), transparent 46%),
    linear-gradient(120deg, #141d2b 0%, #0e1622 100%);
  color: white;
}

/* Seamless dark stack: banner + CTA share one continuous background */
.pr-dark-stack {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 9%, rgba(230,57,70,0.32), transparent 42%),
    radial-gradient(circle at 8% 50%, rgba(232,180,0,0.14), transparent 40%),
    radial-gradient(circle at 80% 92%, rgba(230,57,70,0.28), transparent 46%),
    linear-gradient(160deg, #141d2b 0%, #0e1622 100%);
  color: white;
}
.pr-dark-stack .pr-banner,
.pr-dark-stack .pr-cta-band {
  background: transparent;
}
.pr-banner-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.pr-banner-text h2 {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}
.pr-banner-text h2 em { font-style: normal; color: var(--red); }
.pr-banner-text p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 0 28px;
}
.pr-banner-text p strong { color: #fff; }
.pr-banner-visual { display: flex; justify-content: center; }
@media (max-width: 980px) {
  .pr-banner { padding: 56px 24px; }
  .pr-banner-grid { grid-template-columns: 1fr; gap: 48px; }
  .pr-banner-visual { order: 2; }
}
.pr-wrap { max-width: 1180px; margin: 0 auto; }
.pr-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.pr-head .tag { justify-content: center; color: var(--red); }
.pr-head .tag::before { background: var(--red); }
.pr-head h2 {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 14px;
}
.pr-head h2 em { font-style: normal; color: var(--red); }
.pr-head p { font-size: 16px; line-height: 1.7; color: #555; }

/* ---------- Feature cards ---------- */
.pr-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pr-feat {
  background: white;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 30px 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pr-feat:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,0.08); }

/* Teal-tinted feature tiles */
.pr-feat-grid.tint .pr-feat {
  background: #f0faf6;
  border-color: #d2ebe1;
}
.pr-feat-grid.tint .pr-feat:hover {
  box-shadow: 0 16px 44px rgba(39,174,96,0.14);
  border-color: #b9e2d3;
}
.pr-feat-ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--pink-bg);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pr-feat-ico.yel { background: var(--yellow-bg); color: var(--primary-dark); }
.pr-feat-ico.grn { background: var(--green-light); color: var(--green-dark); }
.pr-feat-ico.blu { background: #e7edfa; color: var(--blue); }
.pr-feat-ico svg { width: 26px; height: 26px; }
.pr-feat h3 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 9px;
}
.pr-feat p { font-size: 14px; line-height: 1.65; color: #666; }

/* ---------- Statutory coverage chips ---------- */
.pr-cover {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.pr-cover-item {
  background: white;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}
.pr-cover-item .code {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--red);
  margin-bottom: 6px;
}
.pr-cover-item .desc { font-size: 13px; color: #666; line-height: 1.5; }

/* ---------- How it works steps ---------- */
.pr-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.pr-step { position: relative; padding-top: 8px; }
.pr-step .n {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--text);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pr-step h4 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}
.pr-step p { font-size: 14px; line-height: 1.6; color: #666; }

/* ---------- Pricing ---------- */
.pr-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pr-plan {
  background: white;
  border: 1.5px solid #ececec;
  border-radius: 20px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.pr-plan.featured {
  border-color: var(--red);
  box-shadow: 0 20px 50px rgba(230,57,70,0.14);
  position: relative;
}
.pr-plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.pr-plan h3 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--text);
  margin-bottom: 6px;
}
.pr-plan .blurb { font-size: 13.5px; color: #777; line-height: 1.5; margin-bottom: 22px; min-height: 40px; }
.pr-plan .price {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--text);
  line-height: 1;
}
.pr-plan .price span { font-size: 15px; font-weight: 600; color: #888; }
.pr-plan .price-note { font-size: 12.5px; color: #999; margin: 8px 0 24px; }
.pr-plan ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.pr-plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  padding: 8px 0;
  border-top: 1px solid #f2f2f2;
}
.pr-plan li:first-child { border-top: none; }
.pr-plan li svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pr-plan .pr-btn, .pr-plan .pr-btn-dark { width: 100%; text-align: center; }
.pr-btn-dark {
  background: var(--text);
  color: white;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.pr-btn-dark:hover { background: #1a2533; transform: translateY(-2px); }

/* ---------- Updates timeline ---------- */
.pr-timeline { max-width: 760px; margin: 0 auto; position: relative; }
.pr-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: #e6e6e6;
}
.pr-update { position: relative; padding: 0 0 38px 44px; }
.pr-update:last-child { padding-bottom: 0; }
.pr-update::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--red);
}
.pr-update .date {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--red);
  margin-bottom: 4px;
}
.pr-update .ver-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  background: var(--light);
  border: 1px solid #e6e6e6;
  padding: 2px 9px;
  border-radius: 20px;
  margin-left: 8px;
}
.pr-update h4 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}
.pr-update ul { margin: 0; padding-left: 18px; }
.pr-update li { font-size: 14px; color: #666; line-height: 1.7; }

/* ---------- Get started steps + form ---------- */
.pr-gs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.pr-gs-list { list-style: none; padding: 0; margin: 0; }
.pr-gs-list li { display: flex; gap: 16px; padding: 0 0 26px; }
.pr-gs-list li:last-child { padding-bottom: 0; }
.pr-gs-list .n {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-gs-list h4 { font-family: Poppins, sans-serif; font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 5px; }
.pr-gs-list p { font-size: 14px; color: #666; line-height: 1.6; }
.pr-form-card {
  background: white;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.06);
}
.pr-form-card h3 { font-family: Poppins, sans-serif; font-weight: 800; font-size: 22px; color: var(--text); margin-bottom: 6px; }
.pr-form-card .sub { font-size: 14px; color: #777; margin-bottom: 24px; }

/* ---------- CTA band ---------- */
.pr-cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 64px;
  background:
    radial-gradient(circle at 82% 20%, rgba(230,57,70,0.30), transparent 52%),
    linear-gradient(120deg, #141d2b 0%, #0e1622 100%);
  color: white;
}
.pr-cta-band h2 {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 42px);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.pr-cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
.pr-cta-band .pr-ctas { justify-content: center; position: relative; z-index: 2; }

/* ---------- Placeholder marker (remove when copy is final) ---------- */
.pr-placeholder {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #b0760a;
  background: var(--yellow-bg);
  border: 1px dashed var(--primary);
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pr-hero { padding: 116px 24px 60px; }
  .pr-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .pr-hero .ph-card { margin: 0; }
  .pr-section, .pr-cta-band { padding: 60px 24px; }
  .pr-feat-grid, .pr-price-grid { grid-template-columns: 1fr; }
  .pr-steps { grid-template-columns: 1fr 1fr; }
  .pr-gs-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .pr-steps { grid-template-columns: 1fr; }
  .pr-hero-stats { gap: 24px; }
}
