/* =========================================================================
   Our Proven Process — "Our App Development Process"
   Editorial, DARK layout on the Valocity "Midnight Operator" palette:
   Deep Navy page, white/light text, electric-lime accents. Decorated with the
   homepage .vh-geo geometric shapes (see home-geo.css).
   All colour/spacing pulled from tokens.css.
   Namespace: .pr-*
   ========================================================================= */

/* ---- Shared container -------------------------------------------------- */
.pr-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Inline accent — the site-wide electric-lime highlighter on the key
   phrase of each heading ("5 Strategic Phases" and phase names). Matches
   the homepage `.vh-mark` exactly so highlights are consistent site-wide. */
.pr-em {
  background: var(--color-accent);     /* #E8B400 */
  color: var(--color-primary);         /* navy text — AAA contrast */
  font-weight: 900;
  padding: 0.04em 0.14em;
  border-radius: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Eyebrow / kicker — small uppercase label with a short lime lead bar.
   Matches the site-wide eyebrow convention. */
.pr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 var(--space-4);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.pr-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent);
}

/* =========================================================================
   SCROLL REVEAL (progressive enhancement)
   pr-process.js adds `.pr-armed` to <html> only when motion is allowed AND
   JS ran — so content is always visible to no-JS / reduced-motion users.
   ========================================================================= */
.pr-armed [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease-out-soft), transform 600ms var(--ease-out-soft);
  will-change: opacity, transform;
}
.pr-armed [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.pr-armed [data-reveal="zoom"] { transform: translateY(26px) scale(0.985); }
.pr-armed [data-reveal="zoom"].is-visible { transform: none; }
/* opacity-only — used on the sticky phase media so no transform touches it */
.pr-armed [data-reveal="fade"] { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .pr-armed [data-reveal],
  .pr-armed [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  /* Disable phase-card hover motion (image zoom + number lift) when requested. */
  .pr-phase__media:hover .pr-phase__img,
  .pr-phase__media:hover .pr-phase__num {
    transform: none;
  }
}

/* =========================================================================
   §1 — HERO
   ========================================================================= */
.pr-hero {
  position: relative;
  overflow: hidden;                 /* clips the hero geo cluster */
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 72px);
}
.pr-hero .pr-container { position: relative; z-index: 2; }  /* above geo (z-index:1) */
.pr-hero__title {
  margin: 0;
  font-family: "Anybody", var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(40px, 6.4vw, 66px);
  line-height: 1.0;
  letter-spacing: -0.035em;
}
.pr-hero__lead {
  margin: var(--space-6) 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.5vw, 17px);
  line-height: 1.7;
}

/* =========================================================================
   §2 — INTRO (heading + body, hairline above)
   ========================================================================= */
.pr-intro {
  position: relative;
  isolation: isolate;               /* side accents self-clip behind content */
  padding: clamp(40px, 6vw, 72px) 0;
}
.pr-intro__grid {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}
.pr-intro__title {
  margin: 0;
  font-family: "Anybody", var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.pr-intro__body {
  display: grid;
  gap: var(--space-5);
}
.pr-intro__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.75;
}

/* =========================================================================
   §1.5 — PROMISE (reassurance checklist band, sits below the hero)
   Four "why we're different" points, gold disc + navy check, two lines each.
   ========================================================================= */
.pr-promise {
  position: relative;
  padding: clamp(8px, 2vw, 20px) 0 0;
}
.pr-promise__grid {
  list-style: none;
  margin: var(--space-5) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 32px) clamp(28px, 5vw, 64px);
}
.pr-promise__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pr-promise__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-accent);          /* gold disc */
  box-shadow: 0 6px 16px -8px rgba(232, 180, 0, 0.6);
}
.pr-promise__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--color-primary);             /* navy check */
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pr-promise__text {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 15.5px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}
.pr-promise__text strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 16.5px);
}
@media (max-width: 720px) {
  .pr-promise__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   §3 — PHASES (image left, content right, hairline above each)
   ========================================================================= */
.pr-phase {
  position: relative;
  isolation: isolate;
  padding: clamp(40px, 5vw, 64px) 0;
}
.pr-phase__grid {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: clamp(300px, 34%, 420px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

/* Sticky art column on wide screens reads like the reference, where the image
   sits at the top-left of a tall text block. Holds a real <img> on top of the
   gradient placeholder, with a legibility scrim, big phase number + glass tag. */
.pr-phase__media {
  position: sticky;
  top: 96px;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* layered elevation + crisp inner glass edge */
  box-shadow:
    0 18px 48px -22px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: box-shadow 280ms var(--ease-out-soft), border-color 280ms var(--ease-out-soft);
}
.pr-phase__media:hover {
  border-color: rgba(232, 180, 0, 0.30);
  box-shadow:
    0 26px 60px -26px rgba(0, 0, 0, 0.78),
    inset 0 0 0 1px rgba(232, 180, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* Real image — covers the tile, sits above the gradient backdrop, zooms on hover. */
.pr-phase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transform: scale(1.001);          /* promote to its own layer for crisp zoom */
  transition: transform 600ms var(--ease-out-soft);
}
.pr-phase__media:hover .pr-phase__img { transform: scale(1.05); }

/* Dual navy scrim — darkens the TOP (behind the phase number) and BOTTOM
   (behind the duration tag) while leaving the photo's middle clear, plus a
   faint flat navy tint so all five photos read cohesively with the dark page.
   Sits under the number/tag (z-index:2). */
.pr-phase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(4, 13, 46, 0.60) 0%,
      rgba(4, 13, 46, 0.14) 26%,
      rgba(4, 13, 46, 0.00) 50%,
      rgba(4, 13, 46, 0.22) 72%,
      rgba(4, 13, 46, 0.84) 100%),
    linear-gradient(0deg, rgba(4, 13, 46, 0.10), rgba(4, 13, 46, 0.10));
  pointer-events: none;
}

/* Big phase number — metallic brand-gold numeral (matches the CTA button gold),
   draws the eye as a clear step signal and stays legible on any photo thanks to
   the top scrim + navy drop-shadow. */
.pr-phase__num {
  position: absolute;
  z-index: 2;
  top: clamp(10px, 2vw, 18px);
  left: clamp(12px, 2vw, 20px);
  margin: 0;
  font-family: "Anybody", var(--font-display);
  font-weight: 800;
  font-size: clamp(58px, 8vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  /* gradient gold fill via clipped text — mirrors .pr-cta__btn */
  background: linear-gradient(180deg, #FFE24A 0%, var(--color-accent) 70%, #C99A00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* drop-shadow (not text-shadow) so the edge reads through clipped text */
  filter:
    drop-shadow(0 3px 14px rgba(4, 13, 46, 0.90))
    drop-shadow(0 1px 2px rgba(4, 13, 46, 0.65));
  pointer-events: none;
  transition: transform 220ms var(--ease-out-soft);
}
.pr-phase__media:hover .pr-phase__num { transform: translateY(-2px); }
/* Fallback: if clipped-text gradients aren't supported, paint solid gold so the
   numeral is never invisible. */
@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .pr-phase__num {
    color: var(--color-accent);
    -webkit-text-fill-color: var(--color-accent);
  }
}

/* Glass tag chip (bottom-left) — duration caption with a clock dot. */
.pr-phase__tag {
  position: absolute;
  z-index: 2;
  left: clamp(12px, 2vw, 18px);
  bottom: clamp(12px, 2vw, 18px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(232, 180, 0, 0.45);
  background: rgba(7, 18, 48, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px -12px rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pr-phase__tag svg { width: 14px; height: 14px; color: var(--color-accent); }

/* Five distinct navy → blue → lime gradient "photos" (placeholder backdrops). */
.pr-phase__media--1 {
  background:
    radial-gradient(120% 120% at 75% 18%, rgba(232, 180, 0, 0.55) 0%, rgba(232, 180, 0, 0) 42%),
    linear-gradient(150deg, #1B2C6B 0%, #0A1A3F 55%, #040D2E 100%);
}
.pr-phase__media--2 {
  background:
    radial-gradient(120% 110% at 18% 80%, rgba(124, 92, 255, 0.45) 0%, rgba(124, 92, 255, 0) 48%),
    linear-gradient(140deg, #2A2F7A 0%, #14225A 55%, #0A1A3F 100%);
}
.pr-phase__media--3 {
  background:
    radial-gradient(130% 120% at 80% 75%, rgba(56, 189, 248, 0.5) 0%, rgba(56, 189, 248, 0) 50%),
    linear-gradient(135deg, #103A6E 0%, #0E2A5A 55%, #0A1A3F 100%);
}
.pr-phase__media--4 {
  background:
    radial-gradient(120% 120% at 30% 30%, rgba(45, 212, 191, 0.5) 0%, rgba(45, 212, 191, 0) 48%),
    linear-gradient(150deg, #0E5A6B 0%, #0C3A56 55%, #0A1A3F 100%);
}
.pr-phase__media--5 {
  background:
    radial-gradient(120% 120% at 70% 30%, rgba(232, 180, 0, 0.4) 0%, rgba(232, 180, 0, 0) 40%),
    radial-gradient(120% 120% at 25% 85%, rgba(45, 212, 191, 0.42) 0%, rgba(45, 212, 191, 0) 50%),
    linear-gradient(145deg, #0E4F66 0%, #102A5C 60%, #0A1A3F 100%);
}

.pr-phase__title {
  margin: 0;
  font-family: "Anybody", var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.pr-phase__subtitle {
  margin: var(--space-3) 0 0;
  font-family: "Anybody", var(--font-display);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.25;
}

/* Meta → scannable chip pills (Timeline / Investment) */
.pr-phase__chips {
  margin: var(--space-5) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pr-phase__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.3;
}
.pr-phase__chip svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--color-accent);
}
.pr-phase__chip strong { color: #fff; font-weight: 700; }

.pr-phase__intro {
  margin: var(--space-5) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.75;
}
.pr-phase__deliver-h {
  margin: var(--space-6) 0 var(--space-4);
  font-family: "Anybody", var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.pr-phase__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-4);
}
.pr-phase__list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14.5px;
  line-height: 1.62;
}
/* crisp lime "→" marker in a faint ring */
.pr-phase__list li::before {
  content: "\2192";            /* → */
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
}
.pr-phase__list li strong { color: #fff; font-weight: 700; }

/* "Why this matters" → value-anchor callout card */
.pr-phase__why {
  margin: var(--space-6) 0 0;
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 24px);
  border-radius: 0 12px 12px 0;
  border-left: 3px solid var(--color-accent);
  background:
    linear-gradient(90deg, rgba(232, 180, 0, 0.07), rgba(232, 180, 0, 0) 55%),
    rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.80);
  font-size: 14.5px;
  line-height: 1.72;
}
.pr-phase__why strong { color: var(--color-accent); font-weight: 700; }

/* =========================================================================
   §4 — FLEXIBLE PROJECT MANAGEMENT (centered, elevated navy panel)
   ========================================================================= */
.pr-pm {
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: clamp(56px, 8vw, 104px) 0;
}
.pr-pm .pr-container { position: relative; z-index: 1; }
.pr-pm__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.pr-pm__head .pr-eyebrow { justify-content: center; }
/* §4 — "Right Team & Communication" panel, unified with the rest of the page:
   Anybody display headings + Inter body, on the navy/yellow palette. */
.pr-pm__title {
  margin: 0;
  font-family: "Anybody", var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.pr-pm__title-accent {
  display: block;
  color: var(--color-accent);
}
.pr-pm__intro {
  margin: var(--space-5) auto 0;
  max-width: 680px;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(15px, 1.6vw, 16.5px);
  line-height: 1.7;
}

.pr-pm__cards {
  margin: var(--space-7) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
  text-align: left;
}
.pr-pm__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(26px, 2.6vw, 34px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  /* signature 2px inset lime top-bar */
  box-shadow: inset 0 2px 0 0 var(--color-accent);
  transition: transform 260ms var(--ease-out-soft), border-color 260ms var(--ease-out-soft), background 260ms var(--ease-out-soft), box-shadow 260ms var(--ease-out-soft);
}
/* soft radial lime glow, fades in on hover (top-right) */
.pr-pm__card::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 0, 0.20), transparent 70%);
  opacity: 0;
  transition: opacity 260ms var(--ease-out-soft);
}
.pr-pm__card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 180, 0, 0.35);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 0 0 var(--color-accent), 0 22px 48px -28px rgba(0, 0, 0, 0.7);
}
.pr-pm__card:hover::after { opacity: 1; }

.pr-pm__card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: var(--space-5);
  border-radius: 12px;
  border: 1px solid rgba(232, 180, 0, 0.30);
  background: rgba(232, 180, 0, 0.10);
  color: var(--color-accent);
}
.pr-pm__card-icon {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}
.pr-pm__card-title {
  margin: 0 0 var(--space-3);
  font-family: "Anybody", var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.2;
}
.pr-pm__card-body {
  margin: 0;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.62;
}

.pr-pm__cta-wrap { margin-top: var(--space-8); text-align: center; }
.pr-pm__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 220ms var(--ease-out-soft), background 220ms var(--ease-out-soft), box-shadow 220ms var(--ease-out-soft);
}
.pr-pm__cta span { color: var(--color-primary); transition: transform 220ms var(--ease-out-soft); }
.pr-pm__cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(232, 180, 0, 0.4);
}
.pr-pm__cta:hover span { transform: translateX(4px); }

/* =========================================================================
   §5 — CTA BANNER (navy card with lime-tinted border, lime square button)
   ========================================================================= */
.pr-cta-section {
  position: relative;
  overflow: hidden;                 /* clips the cta geo cluster */
  padding: clamp(48px, 7vw, 88px) 0;
}
.pr-cta {
  position: relative;
  z-index: 1;                       /* above geo (z-index:0) */
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: clamp(30px, 4vw, 48px) clamp(28px, 4vw, 52px);
  border-radius: 20px;
  border: 1px solid rgba(232, 180, 0, 0.28);
  background: var(--color-primary);
  background-image: linear-gradient(135deg, #16294f 0%, var(--color-primary-dark) 100%);
  text-decoration: none;
  transition: transform 260ms var(--ease-out-soft), box-shadow 260ms var(--ease-out-soft), border-color 260ms var(--ease-out-soft);
}
/* soft lime depth glow, top-right */
.pr-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 0, 0.16), transparent 70%);
  pointer-events: none;
}
.pr-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 180, 0, 0.5);
  box-shadow: 0 28px 64px -28px rgba(0, 0, 0, 0.72);
}
.pr-cta__text {
  font-family: "Anybody", var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: clamp(22px, 3.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pr-cta__text em {
  font-style: italic;
  color: var(--color-accent);
}
.pr-cta__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(58px, 7vw, 78px);
  height: clamp(58px, 7vw, 78px);
  border-radius: 16px;
  background: linear-gradient(180deg, #FFE24A 0%, var(--color-accent) 100%);
  color: var(--color-primary);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  box-shadow: 0 10px 28px -10px rgba(232, 180, 0, 0.55);
  transition: background 220ms var(--ease-out-soft), transform 220ms var(--ease-out-soft), box-shadow 220ms var(--ease-out-soft);
}
.pr-cta:hover .pr-cta__btn {
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  transform: translateX(4px);
  box-shadow: 0 14px 34px -10px rgba(232, 180, 0, 0.7);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
/* Wide screens: split the long deliverables lists into two columns. */
@media (min-width: 1100px) {
  .pr-phase__list {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(28px, 3vw, 48px);
    row-gap: var(--space-4);
  }
}

@media (max-width: 900px) {
  .pr-pm__cards { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .pr-intro__grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .pr-phase__grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .pr-phase__media {
    position: static;
    aspect-ratio: 16 / 9;
    max-width: 460px;
  }
  .pr-phase__num { font-size: clamp(48px, 16vw, 72px); }
  .pr-hero__title { font-size: clamp(34px, 11vw, 48px); }
  .pr-cta { flex-direction: row; }
}

@media (max-width: 480px) {
  .pr-cta { padding: 24px; gap: var(--space-4); border-radius: 16px; }
  .pr-cta__btn { border-radius: 14px; }
}

/* =========================================================================
   FOOTER CTA FIX (page-scoped)
   The shared `.gfoot a { color: inherit }` rule (footer.css) out-specifies the
   button's own navy `color`, leaving the lime "Book a Founder Call" button with
   off-white, low-contrast text. Restore navy text here without mutating the
   locked shared footer.css. The arrow is `currentColor`, so it follows.
   ========================================================================= */
.gfoot .gfoot__cta { color: var(--color-primary); }

/* =========================================================================
   READABILITY — Our Proven Process body/smaller text, slightly larger + higher
   contrast (white 0.74 → ~0.85). Scoped to .pr-* selectors only; hardcoded rgba,
   no design tokens touched, so no other page is affected. clamp() responsiveness
   preserved. Headings, phase subtitles, eyebrows, and the giant outline phase
   numbers are intentionally left as-is. Aligns with UI-UX-PRO-MAX: base 16px
   body, 4.5:1 contrast.
   ========================================================================= */
.pr-hero__lead {
  font-size: clamp(17px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.85);
}
.pr-intro__body p,
.pr-phase__intro {
  font-size: clamp(16px, 1.6vw, 17px);
  color: rgba(255, 255, 255, 0.85);
}
.pr-phase__list li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.pr-pm__intro {
  font-size: clamp(16px, 1.7vw, 17.5px);
  color: rgba(255, 255, 255, 0.85);
}
.pr-pm__card-body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.pr-phase__why {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.88);
}
.pr-phase__chip {
  color: rgba(255, 255, 255, 0.88);
}
