/* =========================================================================
   <PricingHero /> — §1
   Build Packet 19 v2 — Pricing page Section 1.
   Deep Navy hero. Mirrors ca-hero / cv-hero pattern so the page chrome
   reads as one family across all four /services + /pricing routes.
   ========================================================================= */

.pr-hero {
  position: relative;
  background: var(--color-primary);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.pr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 560px at 82% 18%, rgba(232,180,0,0.08), transparent 70%),
    radial-gradient(900px 500px at 8% 90%, rgba(255,255,255,0.025), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pr-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 144px var(--container-pad) 96px;
}

.pr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.pr-hero__eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--color-accent);
}

.pr-hero__title {
  margin: 0 0 28px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
  max-width: 18ch;
}
.pr-hero__title em {
  font-style: normal;
  color: var(--color-accent);
  font-family: inherit;
  font-weight: 700;
}

.pr-hero__sub {
  margin: 0 0 40px 0;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 56ch;
  text-wrap: pretty;
}

.pr-hero__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 72px;
}
.pr-hero__cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 12px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  padding: 20px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 220ms var(--ease-out-soft),
    transform 220ms var(--ease-out-soft),
    box-shadow 220ms var(--ease-out-soft);
}
.pr-hero__cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(232,180,0,0.4);
}
.pr-hero__cta .arrow { transition: transform 220ms var(--ease-out-soft); display: inline-block; }
.pr-hero__cta:hover .arrow { transform: translateX(3px); }
.pr-hero__cta-sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

/* Inline meta strip — pricing transparency at a glance.
   Sits just below the hero CTA, just above the section break to off-white. */
.pr-hero__meta {
  margin: 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.pr-hero__meta li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 8px;
  position: relative;
}
.pr-hero__meta li + li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.pr-hero__meta-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.pr-hero__meta-lbl {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.55);
  max-width: 24ch;
}

/* Responsive */
@media (max-width: 900px) {
  .pr-hero__inner { padding: 116px var(--container-pad) 80px; }
  .pr-hero__meta { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px 24px; }
  .pr-hero__meta li + li::before { display: none; }
}
@media (max-width: 540px) {
  .pr-hero__inner { padding: 96px 18px 72px; }
  .pr-hero__cta { align-self: stretch; width: 100%; justify-content: center; padding: 18px 24px; }
  .pr-hero__meta { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; }
}
