/**
 * Gildhart — Single Service page styles.
 *
 * Loaded only on single-service templates (CPT: service). Each section has a
 * .svc-{section-name} prefix to avoid collisions with the homepage's section
 * styles. Uses the same design tokens (--gildhart-green / --gildhart-gold /
 * --gildhart-cream / --gildhart-black) as globals.css and home.css.
 *
 * Sections ship in chunks: S0 = hero. S1+ append below.
 */

/* ── Page base ──────────────────────────────────────────────── */

.service-main {
  background: #FAF8F3;
}

/* ── Shared button system (svc-*) ───────────────────────────── */

.svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}
.svc-btn-primary {
  background: var(--gildhart-green);
  color: #FFFDF8;
}
.svc-btn-primary:hover {
  background: var(--gildhart-black);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(13, 26, 18, 0.4);
}
.svc-btn-outline {
  background: transparent;
  color: var(--gildhart-green);
  border: 2px solid rgba(30, 61, 47, 0.25);
}
.svc-btn-outline:hover {
  border-color: var(--gildhart-green);
  background: rgba(30, 61, 47, 0.04);
}
.svc-btn-arrow {
  font-weight: 700;
  transition: transform 0.2s ease;
}
.svc-btn:hover .svc-btn-arrow {
  transform: translateX(2px);
}

/* ── Hero ───────────────────────────────────────────────────── */

/* Hide the nav-spacer on single-service pages so the hero gradient extends all
 * the way up under the fixed nav — eliminates the flat-cream horizontal seam
 * where the spacer's body bg met the gradient's mint top-right. The hero's own
 * padding uses --nav-h (set by nav.js) to keep the eyebrow clear of the nav. */
.single-service .nav-spacer { display: none; }

.svc-hero {
  padding: calc(2.5rem + var(--nav-h, 130px)) 2rem 4rem;
  background: linear-gradient(135deg, #fef7ed 0%, #fdf4e8 25%, #fef9f3 50%, #f0fdf9 75%, #ecfdf5 100%);
  position: relative;
  overflow: hidden;
  overflow-x: clip;
}
.svc-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.svc-hero-inner--no-image {
  grid-template-columns: 1fr;
}
/* Constrain the text column to a comfortable reading width but keep it
 * inside the centered 1400px outer container, so the eyebrow/title align
 * with where the with-image hero's left column would be (matches the
 * homepage and Playbook hero left edges). */
.svc-hero-inner--no-image .svc-hero-content {
  max-width: 780px;
}

/* Content column */
.svc-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gildhart-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1.5rem 0;
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  opacity: 0;
  transform: translateY(20px);
  animation: svcHeroFadeUp 0.6s ease-out 0.3s forwards;
}
.svc-hero-eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gildhart-gold);
  opacity: 0.7;
}
.svc-hero-title {
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #1a2b3c;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
}
.svc-hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(12px);
  animation: svcHeroFadeUp 0.8s ease-out 0.2s forwards;
}
/* Stacked variant — multi-line title where each line grows progressively
 * larger (matches the homepage hero + the Agent hero pattern). Single-
 * line titles only get one .svc-hero-title-line so this rule is a no-op. */
.svc-hero-title--stacked { line-height: 1.1; }
.svc-hero-title--stacked .svc-hero-title-line:nth-child(2) {
  font-size: 1.18em;
  line-height: 1.02;
  animation-delay: 1.3s;
}
.svc-hero-title--stacked .svc-hero-title-line:nth-child(3) {
  font-size: 1.42em;
  line-height: 0.95;
  letter-spacing: -0.035em;
  animation-delay: 1.8s;
}
.svc-hero-subtitle {
  margin: 0 0 2.5rem 0;
  max-width: 540px;
  opacity: 0;
  transform: translateY(12px);
  /* Default delay tracks single-line titles. Stacked-title heroes
   * override below so the subtitle lands after line 3. */
  animation: svcHeroFadeUp 0.6s ease-out 0.9s forwards;
}
.svc-hero-subtitle p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}
.svc-hero-subtitle p + p { margin-top: 1rem; }

/* Stats row */
.svc-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 0 2.5rem 0;
  padding: 0 0 2rem 0;
  border-bottom: 1px solid rgba(30, 61, 47, 0.12);
  opacity: 0;
  transform: translateY(12px);
  animation: svcHeroFadeUp 0.5s ease-out 1.1s forwards;
}
.svc-hero-stat-num {
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: #1a2b3c;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.svc-hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* CTAs */
.svc-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  animation: svcHeroFadeUp 0.5s ease-out 1.3s forwards;
}

/* Stacked-title hero — wait for all three title lines to fade in before
 * subtitle/stats/CTAs land. :has() lets us key the timing off the title
 * variant without a JS class swap. */
.svc-hero-inner:has(.svc-hero-title--stacked) .svc-hero-subtitle { animation-delay: 2.3s; }
.svc-hero-inner:has(.svc-hero-title--stacked) .svc-hero-stats    { animation-delay: 2.5s; }
.svc-hero-inner:has(.svc-hero-title--stacked) .svc-hero-cta      { animation-delay: 2.7s; }

@keyframes svcHeroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Image fades up + scales in alongside the text reveal. */
.svc-hero-image img {
  opacity: 0;
  animation: svcHeroImageIn 0.8s ease-out 0.5s forwards;
}
@keyframes svcHeroImageIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Respect reduced-motion preferences — collapse all reveals to instant. */
@media (prefers-reduced-motion: reduce) {
  .svc-hero-eyebrow,
  .svc-hero-title-line,
  .svc-hero-subtitle,
  .svc-hero-stats,
  .svc-hero-cta,
  .svc-hero-image img {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Image column */
.svc-hero-image {
  position: relative;
}
.svc-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 4px 6px -1px rgba(13, 26, 18, 0.05),
    0 25px 50px -12px rgba(13, 26, 18, 0.18),
    0 50px 80px -20px rgba(13, 26, 18, 0.10);
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.svc-hero-image:hover img {
  transform: scale(1.01);
}

/* WebPro Elite hero image is a fanned three-browser composite on a
 * white ground (wider than it is tall, so width is the constraint).
 * Drop the card treatment, multiply the white into the cream gradient
 * so the frames float, and cap the rendered height as a safety so a
 * very tall export can't blow out the row. */
.service-web-pro-elite .svc-hero-image img {
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  width: 100%;
  height: auto;
  max-height: clamp(480px, 72vh, 760px);
}

/* WPE-only hero composition: widen the image column so the composite
 * renders larger, and vertically CENTRE both columns so the leftover
 * space around the image splits evenly top + bottom (reads as
 * intentional padding) rather than collapsing entirely above the
 * image. Stats divider dropped so the hero flows into the next
 * section. Scoped to desktop so the standard single-column mobile
 * collapse (below) takes over at ≤960px — without min-width:961px
 * this override would beat the mobile rule on specificity and leave
 * the copy squashed in a 45% column. */
@media (min-width: 961px) {
  .service-web-pro-elite .svc-hero-inner {
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
  }
  .service-web-pro-elite .svc-hero-image {
    align-self: center;
  }
}
.service-web-pro-elite .svc-hero-stats {
  border-bottom: none;
  padding-bottom: 0;
}

/* WPE mobile: show the portrait composite stacked below the copy.
 * Overrides the global .svc-hero-image { display: none } at ≤960px
 * since the portrait image works naturally in a single-column flow. */
@media (max-width: 960px) {
  .service-web-pro-elite .svc-hero-image {
    display: block;
    margin-top: 0.5rem;
  }
  .service-web-pro-elite .svc-hero-image img {
    max-height: none;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .svc-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .svc-hero-image {
    display: none;
  }
  .svc-hero-subtitle {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .svc-hero {
    padding: calc(2rem + var(--nav-h, 130px)) 1.25rem 3rem;
  }
  .svc-hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }
  .svc-hero-cta {
    flex-direction: column;
  }
  .svc-btn {
    width: 100%;
  }
}

/* ── Interstitial CTA strip (repeated at conviction peaks) ──────
 * Forest-green band so it reads as a deliberate action beat against
 * both the navy and cream sections it sits between. Prompt + cream
 * button side-by-side on desktop, stacked on mobile. Thin gold edges
 * mark it off from neighbouring sections.
 */
.svc-cta-strip {
  background: var(--gildhart-green);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201, 164, 74, 0.3);
  border-bottom: 1px solid rgba(201, 164, 74, 0.3);
}
.svc-cta-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.25rem;
  flex-wrap: wrap;
  text-align: center;
}
.svc-cta-strip-prompt {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}
.svc-cta-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gildhart-cream, #F0E6C8);
  color: var(--gildhart-green);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-cta-strip-btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}
.svc-cta-strip-arrow { display: inline-block; transition: transform 0.2s ease; }
.svc-cta-strip-btn:hover .svc-cta-strip-arrow { transform: translateX(3px); }

@media (max-width: 768px) {
  .svc-cta-strip { padding: 2.5rem 1.5rem; }
  .svc-cta-strip-inner { flex-direction: column; gap: 1.25rem; }
  .svc-cta-strip-prompt { font-size: 1.25rem; }
  .svc-cta-strip-btn { width: 100%; justify-content: center; padding: 1rem 1.25rem; }
}

/* ── S1: Problem Shift section ──────────────────────────────── */

.svc-problem-shift-wrap {
  background: var(--navy);
  /* Offset the #the-shift anchor jump below the fixed nav. */
  scroll-margin-top: var(--nav-h, 130px);
}
.svc-problem-shift {
  padding: 6rem 2rem;
}
.svc-ps-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.svc-ps-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gildhart-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-ps-label.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.svc-ps-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1.75rem;
  max-width: 780px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.svc-ps-headline.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.svc-ps-intro {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin: 0 0 3.5rem;
  max-width: 640px;
  letter-spacing: 0.005em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.svc-ps-intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Editorial narrative — premium cream card lifted off the dark navy
 * section. Mirrors the homepage two-paths card system: gold mono
 * eyebrow, forest-green bold headline, italic body with gold left
 * border for emphasis paragraphs, cream backdrop with a 6px forest
 * green accent running down the left edge.
 *
 * Hierarchy:
 *   - .ornament    — small horizontal gold rule + diamond, premium opener
 *   - .eyebrow     — gold mono uppercase, matches .two-paths-label
 *   - .headline    — forest green bold, matches .two-paths-card-title
 *   - body p       — Inter editorial body, navy, 1.125rem
 *   - p:first-of-type → opener treatment (1.25rem, weight 600)
 *   - p.is-emphasis → italic + 2px gold left border (matches .two-paths-card-body)
 *   - p:last-of-type → closer (italic, 4px gold border, larger)
 */
.svc-ps-narrative {
  position: relative;
  background: var(--gildhart-cream, #f5f3ef);
  border-radius: 18px;
  border: 1px solid rgba(201, 164, 74, 0.22);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.32),
    0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 4.5rem 2.5rem 4.5rem 3.5rem;
  margin-bottom: 4rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-ps-narrative.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Forest green vertical accent — runs the full height of the card,
 * 6px wide, anchors the editorial layout to the brand system. */
.svc-ps-narrative::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: var(--gildhart-green);
}
.svc-ps-narrative-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Hero image — full container width, sits on the section's dark
 * navy backdrop ABOVE the narrative card. Marketing compositions
 * (browser mockups, callouts, screenshots) render at native
 * proportions with a soft gold halo glowing behind to anchor them
 * against the dark section. The narrative card lands underneath in
 * its proper 720px editorial reading column. */
.svc-ps-narrative-hero {
  position: relative;
  margin: 0 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-ps-narrative-hero::before {
  content: '';
  position: absolute;
  inset: 4% 4% 4% 4%;
  border-radius: 32px;
  background: radial-gradient(ellipse at center, rgba(201, 164, 74, 0.28) 0%, rgba(201, 164, 74, 0) 65%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.svc-ps-narrative-hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.40),
    0 8px 24px rgba(0, 0, 0, 0.22);
}
/* Top ornament — small gold horizontal rule with a centered diamond
 * dot. Sets the editorial register before the eyebrow lands. */
.svc-ps-narrative-ornament {
  display: block;
  position: relative;
  width: 60px;
  height: 1px;
  background: var(--gildhart-gold);
  margin: 0 0 2rem;
}
.svc-ps-narrative-ornament::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gildhart-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.svc-ps-narrative-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1rem;
}
.svc-ps-narrative-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.625rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--gildhart-green);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
/* Subheading sits between the forest-green headline and the body
 * prose. Italic, navy, lighter weight — reads as a continuation of
 * the heading, not a body paragraph. */
.svc-ps-narrative-subhead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
  letter-spacing: -0.005em;
  margin: 0 0 2.5rem;
  opacity: 0.85;
}

.svc-ps-narrative-body p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--navy, #0d1a12);
  margin: 0 0 1.5rem;
  letter-spacing: -0.005em;
}
/* Opener — first paragraph gets a slightly larger, bolder pull-out
 * treatment so the story has a clear lead-in beat. */
.svc-ps-narrative-body p:first-of-type {
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--gildhart-green);
  line-height: 1.5;
  margin-bottom: 1.875rem;
  letter-spacing: -0.012em;
}
/* Emphasis — italic with 2px gold left border, mirrors the homepage
 * two-paths-card-body pattern. Used for short, punchy beats inside
 * the prose ("Then something shifted." / "Then an IVF clinic
 * called." / "Eight bookings in six months became 55 a month.") */
.svc-ps-narrative-body p.is-emphasis {
  font-style: italic;
  font-size: 1.1875rem;
  color: var(--gildhart-green);
  line-height: 1.6;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gildhart-gold);
  margin: 1.75rem 0;
}
/* Closer — last paragraph as a quote-styled punchline. Stronger
 * gold border, bigger size, italic. The "authority compounds" line
 * gets the rhetorical weight it earned. */
.svc-ps-narrative-body p:last-of-type {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 1.3125rem;
  font-weight: 500;
  color: var(--gildhart-green);
  line-height: 1.55;
  margin: 2.5rem 0 0;
  padding: 2rem 0 0 1.5rem;
  border-top: 1px solid rgba(30, 61, 47, 0.14);
  border-left: 4px solid var(--gildhart-gold);
  letter-spacing: -0.01em;
}

/* Inline evidence — image with gold uppercase label above and italic
 * caption below. Used inside the Sachin narrative to drop in the
 * real WhatsApp screenshot at the moment the IVF clinic referral
 * beat lands. Treated as primary evidence: centred 600px column on
 * desktop, full-width on mobile, 16px radius, drop shadow that lifts
 * the screenshot off the cream backdrop. Generous vertical breathing
 * room separates it from the surrounding paragraphs. */
.svc-ps-narrative-evidence {
  margin: 2.75rem auto;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
.svc-ps-narrative-evidence-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0;
  text-align: center;
}
.svc-ps-narrative-evidence-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 16px 36px rgba(13, 26, 18, 0.18),
    0 4px 12px rgba(13, 26, 18, 0.10);
}
/* Caption sits as a primary narrative beat under the screenshot —
 * same gravitas as the "Then an IVF clinic called." emphasis lines.
 * Heavy weight, deep forest-green, generous size, tight measure so it
 * reads as a story landing, not a polite image caption. */
.svc-ps-narrative-evidence-caption {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--gildhart-forest, #1E3D2F);
  line-height: 1.35;
  letter-spacing: -0.005em;
  max-width: 540px;
  margin: 1rem auto 0;
  text-align: center;
}

/* Three-card stat row — premium navy-lift cards in a 3-col grid.
 * Each card carries a 30%-opacity gold left accent that pops to 100%
 * on hover; the background also lightens. align-items: stretch keeps
 * cards at equal height even when one carries the source line. */
.svc-ps-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
/* Base card chrome — shared geometry, padding, gap. Variant modifiers
 * below tune background tone, border-accent colour, and stat-number
 * weight to give each of the three proofs a subtle visual identity
 * without breaking the set's design language. */
.svc-ps-card {
  background: #1a2a3a;
  border: 1px solid rgba(201, 164, 74, 0.16);
  border-left: 4px solid rgba(201, 164, 74, 0.30);
  border-radius: 12px;
  padding: 2.5rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease,
    border-left-color 0.25s ease,
    box-shadow 0.25s ease;
}
.svc-ps-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.svc-ps-card:hover {
  background: #1f3145;
  border-left-color: var(--gildhart-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(201, 164, 74, 0.20);
}

/* Industry stat — third-party Semrush data. Cooler, more saturated
 * navy via --navy token. No left-accent variation; the source-line
 * treatment carries the authority. */
.svc-ps-card--industry {
  background: var(--navy, #0f172a);
  border-left-color: rgba(201, 164, 74, 0.22);
}
.svc-ps-card--industry:hover {
  background: #182441;
}

/* Ranking result — most dramatic claim, most alive. Stronger gold
 * border, gold inner halo via box-shadow inset, slightly warmer
 * card body. */
.svc-ps-card--ranking {
  background: #1d2a3e;
  border-color: rgba(201, 164, 74, 0.30);
  border-left-color: rgba(201, 164, 74, 0.65);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(201, 164, 74, 0.10),
    inset 0 0 0 1px rgba(201, 164, 74, 0.08);
}
.svc-ps-card--ranking:hover {
  background: #223252;
  border-left-color: var(--gildhart-gold);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(201, 164, 74, 0.18),
    inset 0 0 0 1px rgba(201, 164, 74, 0.14);
}

/* Client outcome — emotional closer. Forest-green left accent
 * (replaces gold) for the warmest of the three tones. Background
 * carries a faint forest-tinted shift. */
.svc-ps-card--outcome {
  background: #1a2c2a;
  border-left-color: rgba(30, 61, 47, 0.65);
  border-color: rgba(30, 61, 47, 0.22);
}
.svc-ps-card--outcome:hover {
  background: #1f3633;
  border-left-color: var(--gildhart-green);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(30, 61, 47, 0.30);
}

.svc-ps-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--gildhart-gold);
  letter-spacing: -0.035em;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(201, 164, 74, 0.18);
}
/* Ranking stat carries the most visual weight of the three — the
 * dramatic claim deserves the biggest number. */
.svc-ps-card--ranking .svc-ps-stat-num {
  font-size: clamp(3.25rem, 5vw, 4.5rem);
  text-shadow: 0 4px 24px rgba(201, 164, 74, 0.28);
}
.svc-ps-stat-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}
/* Multi-paragraph bodies (Card 3 closer) — generous space between
 * the body proper and the punchy closing beat. */
.svc-ps-stat-text + .svc-ps-stat-text {
  margin-top: 0.75rem;
}
.svc-ps-card--outcome .svc-ps-stat-text + .svc-ps-stat-text {
  margin-top: 1.5rem;
  font-weight: 600;
}
/* Source citation — credibility marker, not an afterthought. Plain
 * weight, warm cream, ~14:1 contrast against the navy bg. Top rule
 * separates it from the body without italicising or muting. */
.svc-ps-stat-source {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gildhart-cream, #F0E6C8);
  line-height: 1.5;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 240, 232, 0.18);
  letter-spacing: 0.005em;
}

@media (max-width: 768px) {
  .svc-problem-shift { padding: 3.5rem 1.25rem; }
  .svc-ps-headline { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 1.25rem; }
  .svc-ps-intro { font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.7; }
  .svc-ps-narrative-hero { margin-bottom: 2.5rem; }
  .svc-ps-narrative-hero-image { border-radius: 12px; }
  .svc-ps-narrative {
    padding: 3rem 1.25rem 3rem 2rem;
    margin-bottom: 2.5rem;
    border-radius: 14px;
  }
  .svc-ps-narrative::before { width: 5px; }
  .svc-ps-narrative-headline { font-size: clamp(1.375rem, 5vw, 1.75rem); margin-bottom: 0.625rem; }
  .svc-ps-narrative-subhead { font-size: 1rem; margin-bottom: 1.75rem; }
  .svc-ps-narrative-body p { font-size: 1rem; line-height: 1.7; margin-bottom: 1.25rem; }
  .svc-ps-narrative-body p:first-of-type { font-size: 1.125rem; margin-bottom: 1.5rem; }
  .svc-ps-narrative-body p.is-emphasis { font-size: 1.0625rem; padding-left: 1rem; margin: 1.5rem 0; }
  .svc-ps-narrative-body p:last-of-type {
    font-size: 1.125rem;
    margin-top: 2rem;
    padding: 1.5rem 0 0 1.25rem;
    border-left-width: 3px;
  }
  .svc-ps-narrative-evidence {
    max-width: 100%;
    margin: 2rem 0;
    gap: 0.75rem;
  }
  .svc-ps-narrative-evidence-image { border-radius: 12px; }
  .svc-ps-narrative-evidence-label { font-size: 0.6875rem; letter-spacing: 0.2em; }
  .svc-ps-narrative-evidence-caption { font-size: 1.125rem; line-height: 1.35; }
  /* Collapse the 3-col stat row to a vertical stack on mobile so each
   * card has room to breathe rather than crushing the stat number. */
  .svc-ps-cards { grid-template-columns: 1fr; gap: 1rem; }
  .svc-ps-card {
    padding: 2rem 1.5rem 1.75rem;
    border-radius: 12px;
  }
  .svc-ps-card:hover {
    /* Suppress hover state on touch viewports — only the variant
     * background tones should differ between cards on mobile. */
    background: inherit;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  }
  .svc-ps-stat-num { font-size: clamp(2.25rem, 8vw, 3rem); }
  .svc-ps-card--ranking .svc-ps-stat-num { font-size: clamp(2.5rem, 9vw, 3.25rem); }
  .svc-ps-stat-text { font-size: 0.9375rem; }
  /* Source citation stays ≥13px on mobile so it remains legible
   * as a credibility marker. */
  .svc-ps-stat-source { font-size: 0.8125rem; }
}
@media (max-width: 420px) {
  .svc-problem-shift { padding: 3rem 1rem; }
  .svc-ps-narrative { padding: 2.5rem 1rem 2.5rem 1.5rem; }
  .svc-ps-narrative-body p { font-size: 0.9375rem; line-height: 1.65; }
  .svc-ps-narrative-body p:first-of-type { font-size: 1.0625rem; }
  .svc-ps-narrative-body p.is-emphasis { font-size: 1rem; }
  .svc-ps-narrative-body p:last-of-type { font-size: 1.0625rem; }
  .svc-ps-card { padding: 1.75rem 1.25rem 1.5rem; }
  .svc-ps-stat-num { font-size: clamp(2rem, 9vw, 2.5rem); }
  .svc-ps-card--ranking .svc-ps-stat-num { font-size: clamp(2.25rem, 10vw, 2.875rem); }
  .svc-ps-stat-text { font-size: 0.875rem; }
  .svc-ps-stat-source { font-size: 0.8125rem; }
}

/* Teal CTA strip flush below the shift section */
.svc-teal-strip {
  background: var(--gildhart-green);
  padding: 1.75rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.svc-teal-strip-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  margin: 0;
}
.svc-teal-strip-btn {
  background: var(--gildhart-gold);
  color: var(--gildhart-black);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.svc-teal-strip-btn:hover {
  background: #b8912f;
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .svc-teal-strip {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    padding: 2rem;
  }
}

/* ── S1: Three Proof Cases section ──────────────────────────── */

/* The Proof — light cream section anchored on a single Google AI
 * Overview screenshot. Replaces the previous dark-navy three-case
 * grid as of the Pillar Domination Framework rollout. Layout is
 * stacked + centred: label → headline → subhead → image (with mini
 * gold label) → three-stat strip → closing line. */
.svc-proof {
  background: var(--cream);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.svc-proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.svc-proof-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gildhart-green);
  margin: 0 0 1.5rem;
}
.svc-proof-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 800;
  color: var(--navy, #0d1a12);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 1.25rem;
}
.svc-proof-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(13, 26, 18, 0.72);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 3rem;
}
.svc-proof-image-wrap {
  margin: 0 auto 3.5rem;
  max-width: 900px;
}
.svc-proof-image-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gildhart-green);
  margin: 0 0 0.875rem;
}
.svc-proof-image {
  margin: 0;
}
.svc-proof-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(201, 164, 74, 0.45);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}
.svc-proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.svc-proof-stat {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.svc-proof-stat-figure {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gildhart-gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.svc-proof-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy, #0d1a12);
  line-height: 1.5;
  max-width: 200px;
  text-align: center;
}
.svc-proof-stat-divider {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--gildhart-gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.svc-proof-closing {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy, #0d1a12);
  line-height: 1.7;
  max-width: 680px;
  margin: 3rem auto 0;
  text-align: center;
  letter-spacing: -0.005em;
}

@media (max-width: 768px) {
  .svc-proof { padding: 4rem 1rem 4.5rem; }
  .svc-proof-image-wrap { margin-bottom: 2.5rem; }
  .svc-proof-stats { flex-direction: column; gap: 2rem; }
  .svc-proof-stat-divider { width: 60px; height: 1px; }
  .svc-proof-closing { margin-top: 2.5rem; }
}

/* ── S2: Playing Field section ──────────────────────────────── */

.svc-playing-field {
  background: var(--cream);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.svc-pf-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.svc-pf-header {
  text-align: center;
  margin-bottom: 4rem;
}
.svc-pf-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gildhart-green);
  margin: 0 0 1.25rem;
}
.svc-pf-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gildhart-green);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.svc-pf-subheadline {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.svc-pf-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 4rem;
  align-items: stretch;
}
/* Old vs New comparison cards — the visual contrast IS the design
 * argument: dark navy "old game" sits next to faintly forest-tinted
 * cream "new reality". Each card carries a 3px coloured left accent
 * pulled from existing brand tokens (copper for old, forest green
 * for new) to make the world they represent legible at a glance. */
.svc-pf-col {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  height: 100%;
}
/* 3px coloured left accent rendered as a pseudo-element so it sits
 * inside the rounded corners without fighting the card's overflow
 * mask or its 1px chrome border. */
.svc-pf-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
}
.svc-pf-col--old {
  background: linear-gradient(180deg, #0c1426 0%, #15233a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.svc-pf-col--old::before { background: #B45309; }
.svc-pf-col--new {
  background: linear-gradient(180deg, #fffdf8 0%, #fbf6ec 100%);
  border: 1px solid rgba(30, 61, 47, 0.10);
}
.svc-pf-col--new::before { background: var(--gildhart-green); }
.svc-pf-col-label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 1.75rem;
  padding: 0;
}
.svc-pf-col--old .svc-pf-col-label {
  color: var(--gildhart-cream);
}
.svc-pf-col--new .svc-pf-col-label {
  color: var(--gildhart-green);
}
.svc-pf-col-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.svc-pf-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0;
  border: 0;
}
.svc-pf-dot {
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-pf-col--old .svc-pf-dot {
  width: 7px;
  height: 7px;
  margin-top: 0.55rem;
  background: #B45309;
}
.svc-pf-col--new .svc-pf-dot {
  width: 9px;
  height: 9px;
  margin-top: 0.5rem;
  background: var(--gildhart-green);
}
.svc-pf-row-text {
  font-size: 1.0625rem;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}
.svc-pf-col--old .svc-pf-row-text { color: #ffffff; }
.svc-pf-col--new .svc-pf-row-text { color: var(--navy, #0d1a12); }
.svc-pf-col-caption {
  padding: 1.75rem 0 0;
  border-top: 1px solid;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: auto;
}
.svc-pf-col--old .svc-pf-col-caption {
  color: rgba(255, 255, 255, 0.92);
  border-top-color: rgba(255, 255, 255, 0.18);
}
/* Right-card footer is the proof point — bolder, larger, navy, and
 * framed with a forest-green left edge so it lands as the strongest
 * line on the card. */
.svc-pf-col--new .svc-pf-col-caption {
  color: var(--navy, #0d1a12);
  border-top-color: rgba(30, 61, 47, 0.18);
  border-left: 3px solid var(--gildhart-green);
  padding: 0.25rem 0 0.25rem 1rem;
  margin-top: 2.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.55;
}

/* Conclusion line below both cards — single centred sentence on the
 * section's cream backdrop. Replaces the previous dark-navy strip
 * treatment so the section closes editorially, not with chrome. */
.svc-pf-conclusion {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy, #0d1a12);
  line-height: 1.45;
  max-width: 600px;
  margin: 3.5rem auto 0;
  letter-spacing: -0.02em;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 164, 74, 0.35);
}
.svc-pf-conclusion span { color: var(--gildhart-green); font-weight: 700; }

@media (max-width: 768px) {
  .svc-pf-compare { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
  .svc-playing-field { padding: 4rem 1.25rem; }
  .svc-pf-col { padding: 2.25rem 1.75rem; }
  .svc-pf-conclusion { margin-top: 2.5rem; font-size: 1.1875rem; padding-top: 1.5rem; }
}

/* ── S2: Method section ─────────────────────────────────────── */

/* The Playbook (Method) — dark navy section with a centred header
 * (eyebrow + H2 + subtext + gold anchor stat) above a four-row
 * alternating two-column grid. Each row pairs a text block (large
 * gold step number, white title, body, optional proof pill) with a
 * visual panel — image when uploaded, intentional styled placeholder
 * when not. Rows alternate text-left ↔ text-right for editorial
 * rhythm.
 *
 * The legacy sticky-anchor + week-button + vertical-line timeline
 * was retired in this redesign — the markup the JS used (.svc-method-
 * week selectors) no longer exists, the reveal observer on
 * .svc-method-step keeps working unchanged. */
.svc-method {
  background: var(--navy);
  padding: 7rem 2rem 7.5rem;
  position: relative;
  overflow: hidden;
}
.svc-method::before {
  content: '';
  position: absolute;
  top: -240px;
  right: -200px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.svc-method::after {
  content: '';
  position: absolute;
  bottom: -260px;
  left: -180px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.svc-method-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Centred header block — eyebrow, headline, subtext, anchor stat. */
.svc-method-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 5rem;
}
.svc-method-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1.5rem;
}
.svc-method-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.875rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.svc-method-subtext {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  max-width: 720px;
}
/* Anchor stat — gold display number with a quiet caps descriptor.
 * Sits centred under the subtext as the section's visual anchor. */
.svc-method-anchor-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  background: rgba(201, 164, 74, 0.06);
  border: 1px solid rgba(201, 164, 74, 0.22);
  border-radius: 16px;
}
.svc-method-anchor-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gildhart-gold);
  letter-spacing: -0.035em;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(201, 164, 74, 0.18);
}
.svc-method-anchor-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gildhart-cream);
  text-align: center;
  max-width: 320px;
}

/* Alternating two-column rows. Each row stays as .svc-method-step so
 * the scroll-reveal observer in service.js continues to fire without
 * needing a JS update. */
.svc-method-rows {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.svc-method-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "headline visual"
    "body     visual";
  column-gap: 4.5rem;
  row-gap: 1.5rem;
  align-items: start;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-method-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Alternate sides on every other row by swapping the grid areas. */
.svc-method-row--text-right {
  grid-template-areas:
    "visual headline"
    "visual body";
}
.svc-method-row-headline {
  grid-area: headline;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-method-row-visual { grid-area: visual; }
.svc-method-row-body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-method-step-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 900;
  color: var(--gildhart-gold);
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-shadow: 0 4px 28px rgba(201, 164, 74, 0.2);
  margin: 0;
}
.svc-method-step-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
}
.svc-method-step-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin: 0;
  max-width: 540px;
}
.svc-method-step-proof {
  display: inline-block;
  align-self: flex-start;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gildhart-gold);
  background: rgba(201, 164, 74, 0.10);
  border: 1px solid rgba(201, 164, 74, 0.30);
  border-radius: 100px;
  padding: 0.45rem 0.95rem;
}
/* Mobile body copy + mobile proof pill — hidden on desktop. The
 * desktop body and the visual-overlay pill carry the story above
 * the 900px breakpoint. */
.svc-method-step-text--mobile,
.svc-method-step-proof--mobile { display: none; }

/* Phone-framed mobile image. Only renders if the editor has uploaded
 * a mobile image. Hidden on desktop entirely — the desktop visual
 * panel carries that slot at wider viewports. */
.svc-method-mobile-image {
  display: none;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: #15233a;
}
.svc-method-mobile-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Visual panel — dark intentional card. Uploaded image (.svc-method-
 * visual-img) and the empty-state placeholder both occupy the same
 * box so the row geometry never shifts. */
.svc-method-row-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #15233a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}
.svc-method-visual-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-method-visual-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  background:
    radial-gradient(circle at 30% 25%, rgba(201, 164, 74, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(30, 61, 47, 0.18) 0%, transparent 60%),
    linear-gradient(155deg, #14233a 0%, #1a2c45 100%);
}
.svc-method-visual-placeholder-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: rgba(201, 164, 74, 0.28);
  letter-spacing: -0.035em;
  line-height: 1;
}
.svc-method-visual-placeholder-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
}
/* Per-visual-kind colour shift for the placeholder so each step has
 * a faint identity even before real artwork is uploaded. */
.svc-method-row-visual--dwell .svc-method-visual-placeholder {
  background:
    radial-gradient(circle at 50% 20%, rgba(201, 164, 74, 0.14) 0%, transparent 60%),
    linear-gradient(170deg, #15273e 0%, #1f3148 100%);
}
.svc-method-row-visual--schema .svc-method-visual-placeholder {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 64px),
    linear-gradient(155deg, #14233a 0%, #18293e 100%);
}
.svc-method-row-visual--dashboard .svc-method-visual-placeholder {
  background:
    radial-gradient(circle at 80% 30%, rgba(30, 61, 47, 0.22) 0%, transparent 55%),
    linear-gradient(160deg, #16263c 0%, #1b3146 100%);
}

/* Proof pill overlay on the visual — anchored bottom-left so it
 * reads as a caption stamp on top of the visual. Same pill component
 * as the inline .svc-method-step-proof, just positioned. */
.svc-method-visual-pill {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gildhart-gold);
  background: rgba(13, 23, 42, 0.82);
  border: 1px solid rgba(201, 164, 74, 0.40);
  border-radius: 100px;
  padding: 0.5rem 0.95rem;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 900px) {
  .svc-method { padding: 5rem 1.5rem 5.5rem; }
  .svc-method-header { margin-bottom: 3.5rem; }
  .svc-method-rows { gap: 4rem; }
  /* Mobile collapses the grid-template-areas layout entirely — each
   * row becomes a vertical flex stack so the new phone-image element
   * can slot between headline and body without rewriting the grid. */
  .svc-method-row,
  .svc-method-row--text-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    grid-template-areas: none;
    grid-template-columns: none;
  }
  .svc-method-row-headline { gap: 0.75rem; }
  .svc-method-step-num { font-size: clamp(3rem, 11vw, 4rem); }
  .svc-method-step-title { font-size: clamp(1.375rem, 5vw, 1.625rem); }
  .svc-method-step-text { font-size: 0.9375rem; line-height: 1.7; }
  /* Show the phone-framed mobile image, hide the desktop visual
   * placeholder/image panel entirely. */
  .svc-method-mobile-image { display: block; }
  .svc-method-row-visual { display: none; }
  /* Swap text + pill visibility — mobile copy on, desktop copy off. */
  .svc-method-step-text--desktop { display: none; }
  .svc-method-step-text--mobile { display: block; }
  .svc-method-step-proof--mobile { display: inline-block; align-self: flex-start; }
  /* Body block gap so the mobile pill sits below the body with
   * breathing room rather than touching the paragraph. */
  .svc-method-row-body { gap: 1rem; }
}
@media (max-width: 600px) {
  .svc-method { padding: 4rem 1.25rem; }
  .svc-method-anchor-stat { padding: 1rem 1.5rem; }
}

/* ── S3: The System section ────────────────────────────────────
 * Dark navy section that walks the Playbook customer through the
 * five-step system. 2+2+1 card grid: cards 01 + 02 share the first
 * row, 03 + 04 the second, and 05 spans full width as the closing
 * proof beat with a richer navy bg + gold radial halo so it lands
 * as the section's destination, not just another card in the grid. */
/* ── The System (cream/light Claude-badge variant) ──────────────
 * Section moved from a dark navy backdrop to the cream/peach/mint
 * gradient that opens the hero. Cards are white over the gradient
 * with a hairline gold border and a soft drop shadow — Claude
 * product badges lead each card and a "Built with Claude" anchor
 * sits in the header. Brand gold is darkened only for stat values
 * so the figure reads against white without losing the brand hue.
 */
:root {
  --svc-system-gold-deep: #8B6914;
}
.svc-system {
  background: linear-gradient(135deg, #fef7ed 0%, #fdf4e8 25%, #fef9f3 50%, #f0fdf9 75%, #ecfdf5 100%);
  padding: 7rem 2rem 7.5rem;
  position: relative;
  overflow: hidden;
}
.svc-system::before {
  content: '';
  position: absolute;
  top: -240px;
  left: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.svc-system::after {
  content: '';
  position: absolute;
  bottom: -260px;
  right: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.svc-system-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.svc-system-header {
  text-align: center;
  margin-bottom: 4.5rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.svc-system-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gildhart-green);
  margin: 0 0 1.5rem;
}
.svc-system-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.875rem);
  font-weight: 800;
  color: #1a2b3c;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.svc-system-subheadline {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(26, 43, 60, 0.78);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* Centred "Built with Claude" badge under the subhead — anchors the
 * section visually to the underlying platform before the cards begin. */
.svc-system-built-with {
  margin: 2.75rem auto 0;
  display: flex;
  justify-content: center;
}
.svc-system-built-with img {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
}

.svc-system-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.svc-system-module {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(201, 164, 74, 0.45);
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  display: flex;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}
.svc-system-module:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.05);
  border-color: rgba(201, 164, 74, 0.65);
}
.svc-system-module-inner {
  padding: 2.5rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
/* Closer (last card) spans the full width with a faint warm wash so
 * it still reads as the section's destination beat rather than just
 * another card in the grid. */
.svc-system-module--closer {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 8% 50%, rgba(201, 164, 74, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 92% 80%, rgba(30, 61, 47, 0.05) 0%, transparent 50%),
    #ffffff;
  border-color: rgba(201, 164, 74, 0.55);
}
.svc-system-module--closer .svc-system-module-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2.5rem 2.75rem;
  align-items: flex-start;
}

/* Claude product badge at the top of each card — replaces the abstract
 * SVG glyph from the dark variant. Left-aligned and capped at 180px
 * so it leads the card visually without overpowering the title. */
.svc-system-module-badge {
  margin: 0 0 1.75rem;
  background: none;
  border: 0;
  padding: 0;
}
.svc-system-module-badge img {
  display: block;
  width: 100%;
  min-width: 220px;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
}

.svc-system-module-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-green);
  margin: 0 0 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.svc-system-module-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gildhart-gold);
  flex: 0 0 auto;
}
.svc-system-module-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  font-weight: 700;
  color: #1a2b3c;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 0.875rem;
}
.svc-system-module-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
  color: rgba(26, 43, 60, 0.62);
  line-height: 1.5;
  margin: 0 0 1.25rem;
}
.svc-system-module-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(26, 43, 60, 0.88);
  line-height: 1.7;
  margin: 0 0 1.75rem;
}
.svc-system-module-body:last-child { margin-bottom: 0; }

/* Stat anchor — deeper gold variant for legibility on white card.
 * Pushed to the bottom via margin-top: auto so the stat line aligns
 * across cards even when bodies differ in length. */
.svc-system-module-stat {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  flex-wrap: wrap;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(201, 164, 74, 0.35);
  margin-top: auto;
}
.svc-system-module-stat-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  font-weight: 900;
  color: var(--svc-system-gold-deep);
  letter-spacing: -0.025em;
  line-height: 1;
}
.svc-system-module-stat-descriptor {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 43, 60, 0.72);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .svc-system { padding: 5rem 1.25rem 5.5rem; }
  .svc-system-header { margin-bottom: 3rem; }
  .svc-system-built-with { margin-top: 2.25rem; }
  .svc-system-built-with img { max-width: 240px; }
  .svc-system-modules { grid-template-columns: 1fr; gap: 1.25rem; }
  /* Closer drops its full-width spanning on mobile — sits as a normal
   * single-column card with the rest. */
  .svc-system-module--closer { grid-column: auto; }
  .svc-system-module--closer .svc-system-module-inner {
    padding: 2.25rem 1.75rem 2rem;
    align-items: stretch;
  }
  .svc-system-module-inner { padding: 2.25rem 1.75rem 2rem; }
  .svc-system-module-badge { margin-bottom: 1.5rem; }
  .svc-system-module-badge img { min-width: 180px; max-width: 240px; }
  .svc-system-module-title { font-size: 1.25rem; }
  .svc-system-module-subtitle { font-size: 0.9375rem; }
  .svc-system-module-body { font-size: 0.9375rem; }
}

/* ── Medihub LinkedIn testimonial (Playbook, between The System
 *    and Sub-case Proof) ───────────────────────────────────────
 * Single verified LinkedIn recommendation screenshot, centred on
 * the dark navy backdrop. Eyebrow + closing caption use the brand
 * gold so the section reads as a quiet social-proof breather
 * between the system explainer and the proof cases that follow.
 */
.svc-medihub {
  background: var(--navy);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.svc-medihub-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.svc-medihub-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 2.5rem;
}
.svc-medihub-figure {
  margin: 0;
  display: flex;
  justify-content: center;
}
.svc-medihub-image {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(201, 164, 74, 0.6);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32), 0 4px 12px rgba(0, 0, 0, 0.18);
  background: #ffffff;
}
/* Portrait / phone-framed mobile variant — shown only ≤768px,
 * centred, contained, no border or radius (the phone frame is baked
 * into the image). Hidden by default on desktop. */
.svc-medihub-figure--mobile { display: none; }
.svc-medihub-image-mobile {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
}
.svc-medihub-caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 2.25rem 0 0;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .svc-medihub { padding: 4.5rem 1.25rem; }
  .svc-medihub-eyebrow { margin-bottom: 1.75rem; font-size: 0.875rem; letter-spacing: 0.16em; }
  .svc-medihub-image {
    max-width: 100%;
    border-radius: 8px;
  }
  /* When a mobile image is present, hide the desktop landscape figure
   * and show the portrait one. Without a mobile image, the desktop
   * figure stays visible at all breakpoints (no --has-mobile class). */
  .svc-medihub--has-mobile .svc-medihub-figure--desktop { display: none; }
  .svc-medihub--has-mobile .svc-medihub-figure--mobile { display: flex; }
  .svc-medihub-caption { margin-top: 1.75rem; font-size: 0.8125rem; letter-spacing: 0.12em; }
}

/* ── S4: The Window (formerly a four-part Offer block — Parts
 * 02-04 retired once the dedicated Playbook Checkout section took
 * over the offer mechanics). Sits above the checkout section over
 * the hero's cream/peach/mint gradient as a long-form copy beat.
 */
.svc-offer {
  background: linear-gradient(135deg, #fef7ed 0%, #fdf4e8 25%, #fef9f3 50%, #f0fdf9 75%, #ecfdf5 100%);
  padding: 6rem 2rem 7rem;
  position: relative;
  overflow: hidden;
}
.svc-offer-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.svc-offer-part {
  padding: 1rem 0;
  text-align: center;
}
.svc-offer-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1.25rem;
}
.svc-offer-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #1a2b3c;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 auto 1.25rem;
  max-width: 880px;
}
.svc-offer-window-subhead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-style: italic;
  font-weight: 600;
  color: var(--gildhart-gold);
  line-height: 1.4;
  margin: 0 auto 2.75rem;
  max-width: 780px;
  letter-spacing: -0.005em;
}
.svc-offer-window-body {
  max-width: 740px;
  margin: 0 auto;
  text-align: left;
}
.svc-offer-window-body p {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(26, 43, 60, 0.92);
  line-height: 1.8;
  margin: 0 0 1.25rem;
}
.svc-offer-window-body p:last-child { margin-bottom: 0; }
.svc-offer-window-closer {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: #1a2b3c;
  line-height: 1.4;
  letter-spacing: -0.015em;
  max-width: 780px;
  margin: 3rem auto 0;
  text-align: center;
}

@media (max-width: 768px) {
  .svc-offer { padding: 4.5rem 1.25rem 5rem; }
  .svc-offer-eyebrow { font-size: 0.75rem; letter-spacing: 0.12em; margin-bottom: 1rem; }
  .svc-offer-headline { font-size: clamp(1.625rem, 7vw, 2rem); }
  .svc-offer-window-subhead { font-size: 1.0625rem; margin-bottom: 2rem; }
  .svc-offer-window-body p { font-size: 1rem; line-height: 1.75; }
  .svc-offer-window-closer { font-size: 1.125rem; margin-top: 2rem; }
}

/* ── S4a: FluClinic Proof section (before Your Turn checkout) ──
 * Dark navy proof beat. Centred column, gold eyebrow, white headline +
 * body, a display-size "It took four weeks." punch line, the AI
 * Overview screenshot (gold-bordered), a bold closing line, and a
 * three-stat bar with gold dividers (stacked on mobile). Brand gold
 * on navy clears WCAG AA (~5.8:1) so no shade change is needed.
 */
.svc-fcp {
  background: var(--navy);
  padding: 6rem 2rem 7rem;
  position: relative;
  overflow: hidden;
}
.svc-fcp-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.svc-fcp-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.svc-fcp-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 auto 2rem;
  max-width: 820px;
}
.svc-fcp-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 740px;
  margin: 0 auto;
}
/* "It took four weeks." — display-size gut-punch line with generous
 * space above and below so it lands hard. */
.svc-fcp-punch {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 3rem auto;
}
.svc-fcp-figure {
  margin: 2.5rem auto;
  display: flex;
  justify-content: center;
}
/* Portrait mobile variant — hidden on desktop, shown ≤768px only when
 * a mobile image exists (.svc-fcp--has-mobile). Without a mobile image
 * the desktop screenshot shows at all breakpoints. */
.svc-fcp-figure--mobile { display: none; }
.svc-fcp-image {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(201, 164, 74, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32), 0 4px 12px rgba(0, 0, 0, 0.18);
}
.svc-fcp-closing {
  font-family: 'Inter', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: -0.01em;
  max-width: 740px;
  margin: 2.5rem auto 0;
}

/* Three-stat bar — gold numbers, white caps labels, thin gold dividers
 * between on desktop. */
.svc-fcp-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 820px;
  margin: 3.5rem auto 0;
}
.svc-fcp-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(201, 164, 74, 0.4);
}
.svc-fcp-stat:last-child { border-right: 0; }
.svc-fcp-stat-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--gildhart-gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.svc-fcp-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 768px) {
  .svc-fcp { padding: 4.5rem 1.25rem 5rem; }
  .svc-fcp-eyebrow { font-size: 0.75rem; letter-spacing: 0.12em; }
  .svc-fcp-headline { font-size: clamp(1.625rem, 7vw, 2rem); }
  .svc-fcp-body { font-size: 1rem; line-height: 1.75; }
  .svc-fcp-punch { font-size: 1.5rem; margin: 2rem auto; }
  .svc-fcp-figure { margin: 2rem auto; }
  .svc-fcp-image { border-radius: 8px; }
  /* Swap desktop screenshot for the portrait mobile one when present. */
  .svc-fcp--has-mobile .svc-fcp-figure--desktop { display: none; }
  .svc-fcp--has-mobile .svc-fcp-figure--mobile { display: flex; }
  .svc-fcp-closing { font-size: 1.0625rem; margin-top: 2rem; }
  /* Stats stack vertically — dividers removed, generous spacing. */
  .svc-fcp-stats { flex-direction: column; gap: 2.25rem; margin-top: 2.75rem; }
  .svc-fcp-stat { padding: 0; border-right: 0; }
  .svc-fcp-stat-value { font-size: clamp(2.5rem, 12vw, 3.25rem); }
}

/* ── S4b: Playbook Checkout section ──────────────────────────
 * Two-column desktop payment section. Sits over the same hero
 * cream/peach/mint gradient as the offer block above so the two
 * sections read as a continuous narrative beat. Reuses the Agent
 * page's .svc-closing-* classes for shared components (testimonial
 * cards, form fields, submit button, secure/joining notes) — only
 * the layout grid, intro block, gold-check checklist, pricing card,
 * and the two closer lines get unique .svc-pb-checkout-* classes.
 *
 * Desktop grid (4 left rows × 1 right column, right cell spans all
 * four rows so the form sits flush against the intro + checklist +
 * testimonials + closer stack):
 *
 *   intro        right
 *   checklist    right
 *   testimonials right
 *   left-closer  right
 *
 * Mobile single column re-orders so the right column (pricing +
 * form + CTA + notes) lands between left-closer and testimonials.
 */
.svc-pb-checkout {
  background: linear-gradient(135deg, #fef7ed 0%, #fdf4e8 25%, #fef9f3 50%, #f0fdf9 75%, #ecfdf5 100%);
  padding: 6rem 2rem 7rem;
  position: relative;
  overflow: hidden;
  /* Offset native anchor jumps (#your-turn / #buy-now from non-hero CTAs)
   * so the section lands below the fixed nav, not under it. */
  scroll-margin-top: var(--nav-h, 130px);
}
/* Legacy #buy-now anchor target — sits at the top of the section, also
 * offset below the fixed nav for native jumps. */
.svc-pb-checkout-anchor {
  display: block;
  scroll-margin-top: var(--nav-h, 130px);
}
.svc-pb-checkout-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "intro        right"
    "checklist    right"
    "testimonials right"
    "left-closer  right";
  gap: 3rem;
  align-items: start;
}
.svc-pb-checkout-intro        { grid-area: intro; }
.svc-pb-checkout-checklist    { grid-area: checklist; }
.svc-pb-checkout-testimonials { grid-area: testimonials; }
.svc-pb-checkout-left-closer  { grid-area: left-closer; }
.svc-pb-checkout-right        { grid-area: right; }

/* ─── Intro block ─── */
.svc-pb-checkout-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1rem;
}
.svc-pb-checkout-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: #1a2b3c;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.svc-pb-checkout-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(26, 43, 60, 0.92);
  line-height: 1.8;
  margin: 0;
}

/* Hero image sits at the bottom of the intro block, after the body
 * paragraph. object-fit: contain preserves the device-mockup
 * composition (no top/bottom cropping at the 380px cap). Margin-top
 * separates from body; bottom spacing is the grid row gap. */
.svc-pb-checkout-hero-image {
  margin: 2rem 0 0;
  width: 100%;
  display: block;
}
.svc-pb-checkout-hero-image img {
  display: block;
  width: 100%;
  max-height: 380px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* ─── Checklist (gold ✓ on the left of each item) ─── */
.svc-pb-checkout-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.svc-pb-checkout-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(26, 43, 60, 0.08);
}
.svc-pb-checkout-checklist li:last-child { border-bottom: 0; }
.svc-pb-checkout-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(139, 105, 20, 0.12);
  color: #8B6914;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 0.125rem;
}
.svc-pb-checkout-check-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(26, 43, 60, 0.92);
  line-height: 1.65;
}

/* ─── Testimonials wrapper (cards themselves use .svc-closing-*) ─── */
.svc-pb-checkout-testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ─── Bold closer lines ─── */
.svc-pb-checkout-left-closer {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 800;
  color: #1a2b3c;
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin: 0;
}
.svc-pb-checkout-right-closer {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a2b3c;
  line-height: 1.5;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 1rem 0 0.5rem;
}

/* ─── Right column wrapper ─── */
.svc-pb-checkout-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ─── Pricing card ─── */
/* Pricing card — "premium membership card" treatment. Background is
 * a subtle warm-cream → pure-white gradient (top slightly warmer,
 * bottom pure white). The border itself is a gold gradient that's
 * brighter at the top edge and fades to a softer gold around the
 * sides + bottom — built via background-clip's padding-box / border-box
 * trick so a single element renders both layers without nesting. */
.svc-pb-checkout-card {
  background:
    linear-gradient(180deg, #fffaf0 0%, #fffefb 35%, #ffffff 100%) padding-box,
    linear-gradient(180deg, rgba(201, 164, 74, 0.85) 0%, rgba(201, 164, 74, 0.45) 35%, rgba(201, 164, 74, 0.28) 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: 20px;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07), 0 2px 6px rgba(15, 23, 42, 0.04);
  text-align: center;
}
.svc-pb-checkout-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 2rem;
}
.svc-pb-checkout-card-price {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #1a2b3c;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 1.125rem;
}
/* "one-time · lifetime access" — now a forest-green pill, not muted
 * footnote copy. Reads as a selling-point badge alongside the price. */
.svc-pb-checkout-card-suffix {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-cream, #F5F3EF);
  background: var(--gildhart-green, #1E3D2F);
  border-radius: 20px;
  padding: 0.4rem 0.95rem;
  margin: 0;
  line-height: 1.2;
}
.svc-pb-checkout-card-divider {
  height: 1px;
  background: rgba(201, 164, 74, 0.3);
  margin: 2.5rem auto;
  max-width: 200px;
}
.svc-pb-checkout-card-feature {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2b3c;
  line-height: 1.6;
  margin: 0;
  padding-top: 0.5rem;
}

/* ─── Form wrapper (fields use .svc-closing-form-* — see above) ─── */
.svc-pb-checkout-form {
  background: #ffffff;
  border: 1px solid rgba(201, 164, 74, 0.55);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
}

@media (max-width: 960px) {
  .svc-pb-checkout { padding: 4.5rem 1.25rem 5rem; }
  .svc-pb-checkout-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "checklist"
      "left-closer"
      "right"
      "testimonials";
    gap: 2rem;
  }
  .svc-pb-checkout-headline { font-size: clamp(1.625rem, 6vw, 2rem); }
  .svc-pb-checkout-body { font-size: 1rem; line-height: 1.75; }
  .svc-pb-checkout-hero-image { margin-top: 1.5rem; margin-bottom: -0.5rem; }
  .svc-pb-checkout-hero-image img { max-height: 240px; }
  .svc-pb-checkout-check-text { font-size: 1rem; line-height: 1.6; }
  .svc-pb-checkout-left-closer { font-size: 1.125rem; }
  .svc-pb-checkout-card { padding: 2.25rem 1.75rem; }
  .svc-pb-checkout-card-label { font-size: 0.8125rem; margin-bottom: 1.5rem; }
  .svc-pb-checkout-card-divider { margin: 2rem auto; }
  .svc-pb-checkout-form { padding: 1.5rem; }
  .svc-pb-checkout-right-closer { font-size: 1rem; margin-top: 0.75rem; }
}

/* ── Playbook checkout · Services multi-select widget ──────────
 * Searchable multi-select that sits between Website URL and the
 * right-column closer. Pills above the search input, dropdown
 * panel below it. On mobile (≤640px) the dropdown becomes a
 * fixed bottom sheet with a tap-to-close backdrop.
 */
.svc-pb-services-group { position: relative; }
.svc-pb-services-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.45;
  margin: -0.2rem 0 0.625rem;
}
/* Reassurance block directly below the multi-select. Styled callout
 * panel — eyebrow + body text on a subtle gold-tinted background
 * with a low-opacity gold border. Reads as a deliberate "what
 * happens next" reassurance, not a quiet footnote. */
.svc-pb-services-reassure {
  margin: 0.75rem 0 1.5rem;
  padding: 1rem;
  background: rgba(201, 164, 74, 0.08);
  border: 1px solid rgba(201, 164, 74, 0.3);
  border-radius: 8px;
}
.svc-pb-services-reassure-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.svc-pb-services-reassure-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1a2b3c;
  line-height: 1.6;
  margin: 0;
}

/* Pill row above the search input */
.svc-pb-services-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}
.svc-pb-services-pills:empty { display: none; }
.svc-pb-services-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.4rem 0.4rem 0.75rem;
  background: rgba(201, 164, 74, 0.14);
  border: 1px solid rgba(201, 164, 74, 0.55);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a2b3c;
  line-height: 1.2;
  max-width: 100%;
}
.svc-pb-services-pill-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.svc-pb-services-pill-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 0;
  background: rgba(201, 164, 74, 0.35);
  color: #1a2b3c;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.svc-pb-services-pill-remove:hover {
  background: var(--gildhart-gold);
  color: #ffffff;
}

/* Search input + dropdown panel */
.svc-pb-services-input-wrap { position: relative; }
.svc-pb-services-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  max-height: 280px;
  overflow-y: auto;
  z-index: 20;
  padding: 0.375rem;
}
.svc-pb-services-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a2b3c;
  cursor: pointer;
  transition: background 0.15s ease;
}
.svc-pb-services-option:hover,
.svc-pb-services-option:focus-visible {
  background: rgba(201, 164, 74, 0.12);
  outline: none;
}
.svc-pb-services-option--other {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  color: var(--gildhart-green);
  font-weight: 600;
}
.svc-pb-services-dropdown-empty {
  padding: 0.75rem 0.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.55);
}

/* Custom entry input — appears when user picks "Other — please specify". */
.svc-pb-services-custom {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.625rem;
}
.svc-pb-services-custom-input { flex: 1; }
.svc-pb-services-custom-add {
  flex: 0 0 auto;
  padding: 0 1rem;
  background: var(--gildhart-green);
  color: #ffffff;
  border: 0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}
.svc-pb-services-custom-add:hover { background: var(--gildhart-black); }

/* Inline max-selection message */
/* Inline "5 selected" notice — subtle muted-navy text, no box. Hidden
 * by default (collapsed + transparent); .is-visible fades + expands it
 * in over 0.15s so it appears smoothly with no flash, and reserves no
 * layout space when hidden. */
.svc-pb-services-max-msg {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.4;
  transition: opacity 0.15s ease, max-height 0.15s ease, margin-top 0.15s ease;
}
.svc-pb-services-max-msg.is-visible {
  max-height: 4rem;
  opacity: 1;
  margin-top: 0.5rem;
}
/* Disabled search input at max — quietly muted, not broken-looking. */
.svc-pb-services-search:disabled {
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 0.5);
  cursor: not-allowed;
}

/* Mobile: dropdown becomes a bottom sheet */
.svc-pb-services-sheet-backdrop { display: none; }
@media (max-width: 640px) {
  .svc-pb-services-group.is-open .svc-pb-services-sheet-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    border: 0;
    padding: 0;
    z-index: 90;
    cursor: pointer;
  }
  .svc-pb-services-dropdown {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 70vh;
    border-radius: 18px 18px 0 0;
    padding: 1rem 0.875rem max(1.25rem, env(safe-area-inset-bottom));
    z-index: 100;
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.25);
  }
  .svc-pb-services-dropdown::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(15, 23, 42, 0.18);
    border-radius: 999px;
    margin: 0.125rem auto 0.875rem;
  }
  .svc-pb-services-option {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
  .svc-pb-services-pill { font-size: 0.875rem; }
  .svc-pb-services-pill-label { max-width: 180px; }
}

/* ── S5: Next Steps section ─────────────────────────────────── */

.svc-next {
  background: #fef7ed;
  padding: 7rem 2rem 8rem;
}
.svc-next-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.svc-next-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.svc-next-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1rem;
}
.svc-next-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--gildhart-green);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.svc-next-subheadline {
  font-size: 1.1875rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.svc-next-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}
.svc-next-timeline::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gildhart-green) 0%, rgba(30, 61, 47, 0.15) 100%);
  border-radius: 4px;
  z-index: 0;
}
.svc-next-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.svc-next-step + .svc-next-step { margin-top: 0.75rem; }
.svc-next-step-node {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  padding-top: 2rem;
}
.svc-next-step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gildhart-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(30, 61, 47, 0.12), 0 0 0 6px rgba(30, 61, 47, 0.06);
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-next-step-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gildhart-green);
  letter-spacing: -0.02em;
}
.svc-next-step-body {
  background: white;
  border-radius: 16px;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--gildhart-green);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-next-step-body:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.svc-next-step-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  /* Deep gold (not brand --gildhart-gold, which fails contrast on the
   * white cards) — reuses the existing --svc-system-gold-deep token so
   * the labels read as gold while clearing WCAG AA (~5.2:1). The final
   * navy card overrides back to brand gold below. */
  color: var(--svc-system-gold-deep, #8B6914);
  margin: 0 0 0.5rem;
}
.svc-next-step-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.625rem;
}
.svc-next-step-text {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* Final step — navy card, gold accents, destination feel */
.svc-next-step--final .svc-next-step-circle {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.25), 0 0 0 6px rgba(15, 23, 42, 0.08);
}
.svc-next-step--final .svc-next-step-num { color: var(--gildhart-gold); }
/* Final step — navy "arrival" card. Slightly more internal padding
 * than the other steps so it lands as a destination, not just another
 * step. */
.svc-next-step--final .svc-next-step-body {
  background: var(--navy);
  border-color: rgba(30, 61, 47, 0.3);
  border-left: 4px solid var(--gildhart-green);
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.2);
  padding: 2.75rem 3rem;
}
.svc-next-step--final .svc-next-step-body:hover {
  box-shadow: 0 12px 50px rgba(15, 23, 42, 0.3);
}
.svc-next-step--final .svc-next-step-label { color: var(--gildhart-gold); }
.svc-next-step--final .svc-next-step-title {
  color: white;
  font-size: 1.625rem;
}
.svc-next-step--final .svc-next-step-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .svc-next { padding: 5rem 1.5rem 6rem; }
  .svc-next-timeline::before { left: 27px; }
  .svc-next-step { grid-template-columns: 56px 1fr; gap: 1.25rem; }
  .svc-next-step-node { padding-top: 1.5rem; }
  .svc-next-step-circle { width: 56px; height: 56px; box-shadow: 0 2px 12px rgba(30, 61, 47, 0.1); }
  .svc-next-step-num { font-size: 1.25rem; }
  .svc-next-step-body { padding: 1.5rem; }
  .svc-next-step-title { font-size: 1.25rem; }
  .svc-next-step-text { font-size: 1rem; }
  .svc-next-step--final .svc-next-step-title { font-size: 1.375rem; }
  .svc-next-step--final .svc-next-step-text { font-size: 1.0625rem; }
}
@media (max-width: 480px) {
  .svc-next-timeline::before { left: 22px; }
  .svc-next-step { grid-template-columns: 46px 1fr; gap: 1rem; }
  .svc-next-step-circle { width: 46px; height: 46px; }
  .svc-next-step-num { font-size: 1.125rem; }
}

/* ── S5: FAQ section ────────────────────────────────────────── */

.svc-faq {
  background: var(--navy);
  padding: 7rem 2rem 8rem;
  position: relative;
  overflow: hidden;
}
.svc-faq::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.svc-faq::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 123, 111, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.svc-faq-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.svc-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}
.svc-faq-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1rem;
}
.svc-faq-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.svc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.svc-faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-faq-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.svc-faq-item.is-open {
  background: rgba(30, 61, 47, 0.18);
  border-color: rgba(201, 164, 74, 0.35);
  box-shadow: 0 8px 40px rgba(30, 61, 47, 0.12), 0 0 0 1px rgba(201, 164, 74, 0.15);
}
.svc-faq-question {
  width: 100%;
  padding: 1.625rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.svc-faq-question-left {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  flex: 1;
  min-width: 0;
}
.svc-faq-question-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gildhart-gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(201, 164, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.svc-faq-item.is-open .svc-faq-question-num {
  background: var(--gildhart-green);
  color: white;
}
.svc-faq-question-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: white;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.svc-faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-faq-item:hover .svc-faq-icon {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
}
.svc-faq-item.is-open .svc-faq-icon {
  border-color: var(--gildhart-gold);
  color: var(--gildhart-gold);
  background: rgba(201, 164, 74, 0.1);
  transform: rotate(45deg);
}
.svc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-faq-item.is-open .svc-faq-answer { max-height: 600px; }
.svc-faq-answer-inner {
  padding: 0 2rem 1.75rem 5.125rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin: 0;
}
.svc-faq-answer-inner strong { color: white; font-weight: 600; }

.svc-faq-bottom-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-faq-bottom-cta p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.svc-faq-bottom-cta p strong { color: white; }
.svc-faq-bottom-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gildhart-green);
  color: white;
  font-weight: 700;
  font-size: 1.0625rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-faq-bottom-cta a:hover {
  background: var(--gildhart-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 61, 47, 0.3);
}

@media (max-width: 768px) {
  .svc-faq { padding: 5rem 1.5rem 6rem; }
  .svc-faq-question { padding: 1.375rem 1.5rem; }
  .svc-faq-question-text { font-size: 1.0625rem; }
  .svc-faq-question-num { display: none; }
  .svc-faq-icon { width: 32px; height: 32px; font-size: 1rem; }
  .svc-faq-answer-inner { padding: 0 1.5rem 1.5rem; font-size: 1rem; }
}
@media (max-width: 480px) {
  .svc-faq-question-text { font-size: 1rem; }
  .svc-faq-answer-inner { font-size: 0.9375rem; }
}

/* ── S6: Guarantee section ──────────────────────────────────── */

.svc-guarantee {
  background: linear-gradient(135deg, #fef7ed 0%, #fdf4e8 25%, #fef9f3 50%, #f0fdf9 75%, #ecfdf5 100%);
  padding: 6rem 2rem;
}
.svc-guarantee-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
/* Standard gold eyebrow — matches "THE SHIFT" / "YOUR TIMELINE" etc.
 * elsewhere on the page. No pill, no border, just a small inline shield
 * + gold small-caps text. */
.svc-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 0;
  padding: 0;
  margin-bottom: 1.75rem;
}
.svc-guarantee-badge-icon {
  font-size: 1rem;
  color: var(--svc-system-gold-deep, #8B6914);
  display: inline-flex;
  align-items: center;
}
.svc-guarantee-badge-icon svg { display: block; width: 18px; height: 18px; }
.svc-guarantee-badge-text {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--svc-system-gold-deep, #8B6914);
}
.svc-guarantee-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 700;
  color: #1a2b3c;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 auto 3rem;
  max-width: 820px;
  text-align: center;
}

/* Two-column layout — left (60%): combined PROOF + GUARANTEE inside one
 * bordered box with a 4px gold left-border accent. right (40%): the
 * founder signature (Drew photo + Gildhart seal + name/title) floating
 * cleanly on the navy with no box. */
.svc-guarantee-columns {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: start;
  text-align: left;
}
/* Clean elevated dark panel — a solid slightly-lighter-than-navy
 * surface with a hairline border and a soft shadow so it lifts off the
 * section. Restraint over gold: the only gold touch is a single thin
 * left-accent + the label. No gold fill, no gold gradient border. */
.svc-guarantee-col {
  background: #ffffff;
  border: 1px solid rgba(201, 164, 74, 0.45);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07), 0 2px 6px rgba(15, 23, 42, 0.04);
}
.svc-guarantee-col--main {
  border-left: 3px solid var(--gildhart-gold);
}
.svc-guarantee-col-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--svc-system-gold-deep, #8B6914);
  margin: 0 0 1.5rem;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
/* Short gold rule before the label — editorial section-marker treatment. */
.svc-guarantee-col-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--svc-system-gold-deep, #8B6914);
  flex: 0 0 auto;
}

/* Right column — founder signature, centred, no container. */
.svc-guarantee-signature {
  text-align: center;
  padding-top: 0.5rem;
}
/* Photo with the same bottom fade-out as the homepage founder section
 * (.founder-image::after), but faded to navy instead of cream since
 * this section sits on the dark background. Same 120px gradient
 * height, same object-position: bottom so the legs aren't cropped —
 * the fade dissolves the bottom edge naturally. */
.svc-guarantee-signature-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
/* Bottom fade via a mask on the image itself — dissolves the photo's
 * lower edge to transparent so the section's cream gradient shows
 * through with no colour seam (background-agnostic, unlike a solid
 * colour overlay). */
.svc-guarantee-signature-photo img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to bottom, #000 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 62%, transparent 100%);
}
/* Logo sits in its own clear space below the photo, full opacity so
 * the gold seal reads crisply. */
.svc-guarantee-signature-logo {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
}
.svc-guarantee-signature-logo img {
  display: block;
  width: 76px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  opacity: 1;
}
.svc-guarantee-signature-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a2b3c;
  line-height: 1.3;
  margin: 1rem 0 0.4rem;
}
.svc-guarantee-signature-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--svc-system-gold-deep, #8B6914);
  margin: 0;
  line-height: 1.4;
}
/* LinkedIn CTA — whole line clickable, muted navy → forest green on hover. */
.svc-guarantee-linkedin {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 320px;
  margin: 0.75rem auto 0;
  padding-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(26, 43, 60, 0.72);
  text-decoration: none;
  text-align: left;
  transition: color 0.2s ease;
}
.svc-guarantee-linkedin svg { flex-shrink: 0; margin-top: 2px; }
.svc-guarantee-linkedin:hover { color: var(--gildhart-green); }

/* Guarantee column paragraphs. */
.svc-guarantee-para {
  font-size: 1.0625rem;
  color: rgba(26, 43, 60, 0.9);
  line-height: 1.8;
  margin: 0 0 1.5rem;
}
.svc-guarantee-para:last-child { margin-bottom: 0; }

/* Closing statement — display-size, each line on its own row, last
 * line in gold. Sits full-width below both columns on the cream
 * gradient. Dark navy (~13:1) and deep gold (~5.2:1) both clear
 * WCAG AA against the gradient's lightest point. */
.svc-guarantee-closing {
  margin: 3rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}
.svc-guarantee-closing-line {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: #1a2b3c;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.svc-guarantee-closing-line--gold { color: var(--svc-system-gold-deep, #8B6914); }

@media (max-width: 768px) {
  .svc-guarantee { padding: 4rem 1.5rem; }
  .svc-guarantee-headline { margin-bottom: 2.25rem; }
  /* Single column — signature (photo + logo) stacks ABOVE the copy. */
  .svc-guarantee-columns { grid-template-columns: 1fr; gap: 2rem; }
  .svc-guarantee-signature { order: -1; padding-top: 0; }
  .svc-guarantee-col { padding: 2rem; }
  .svc-guarantee-para { font-size: 1rem; line-height: 1.8; }
  .svc-guarantee-signature-photo img { max-width: 280px; }
  .svc-guarantee-signature-logo { margin-top: 1rem; }
  .svc-guarantee-signature-logo img { width: 60px; }
  .svc-guarantee-linkedin { max-width: 280px; }
  .svc-guarantee-closing { margin-top: 2.5rem; }
  .svc-guarantee-closing-line { font-size: 1.25rem; }
}

/* ── Logo Bar (sits flush below the hero gradient) ──────────── */

.svc-logo-bar {
  background: #fef7ed;
  padding: 2.5rem 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.svc-logo-bar::before,
.svc-logo-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.svc-logo-bar::before {
  left: 0;
  background: linear-gradient(90deg, #fef7ed 0%, transparent 100%);
}
.svc-logo-bar::after {
  right: 0;
  background: linear-gradient(270deg, #fef7ed 0%, transparent 100%);
}
.svc-logo-bar-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.85);
  margin: 0 0 1.75rem;
  padding: 0 1.5rem;
}
.svc-logo-bar-track {
  width: 100%;
  overflow: hidden;
}
.svc-logo-bar-scroller {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: svcLogoScroll 30s linear infinite;
}
.svc-logo-bar-scroller:hover { animation-play-state: paused; }
.svc-logo-bar-scroller img {
  height: 65px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.svc-logo-bar-scroller img:hover {
  transform: scale(1.05);
}
@keyframes svcLogoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .svc-logo-bar { padding: 2rem 0; }
  .svc-logo-bar::before,
  .svc-logo-bar::after { width: 60px; }
  .svc-logo-bar-scroller img { height: 50px; }
  .svc-logo-bar-scroller { gap: 3rem; }
}

/* ── A1: Live Clients Carousel ──────────────────────────────── */

.svc-live-clients {
  background: var(--navy);
  padding: 6rem 0 5rem;
  overflow: hidden;
  position: relative;
}
.svc-live-clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 164, 74, 0.3) 50%, transparent 100%);
}
.svc-live-clients-header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 3.5rem;
}
.svc-live-clients-overline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.svc-live-clients-overline::before,
.svc-live-clients-overline::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(201, 164, 74, 0.5);
}
.svc-live-clients-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}
.svc-live-clients-sub {
  font-size: 1.1875rem;
  color: #ffffff;
  font-weight: 400;
  margin: 0 auto;
  max-width: 760px;
}

.svc-live-carousel-wrap {
  overflow: hidden;
  position: relative;
}
.svc-live-carousel-wrap::before,
.svc-live-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.svc-live-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
}
.svc-live-carousel-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy) 0%, transparent 100%);
}
.svc-live-carousel-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svc-live-carousel-track::-webkit-scrollbar { display: none; }

.svc-live-card {
  flex: 0 0 420px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.svc-live-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 61, 47, 0.4);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(30, 61, 47, 0.1);
}
.svc-live-card-screenshot {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  display: block;
  background: #0c1220;
  border: 0;
  padding: 0;
  cursor: zoom-in;
}
.svc-live-card-screenshot::after {
  content: '⤢';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.svc-live-card:hover .svc-live-card-screenshot::after,
.svc-live-card-screenshot:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}
.svc-live-card-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
  display: block;
  transition: transform 0.5s ease;
}
.svc-live-card:hover .svc-live-card-screenshot img {
  transform: scale(1.04);
}
.svc-live-card-footer {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.svc-live-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}
.svc-live-card-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  background: rgba(201, 164, 74, 0.10);
  border: 1px solid rgba(201, 164, 74, 0.25);
  border-radius: 100px;
  padding: 0.25rem 0.625rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
}
.svc-live-card-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gildhart-gold);
  box-shadow: 0 0 4px rgba(201, 164, 74, 0.7);
  animation: svcLivePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes svcLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

/* Carousel arrow nav + dots */
.svc-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.svc-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 164, 74, 0.12);
  border: 1.5px solid rgba(201, 164, 74, 0.45);
  color: var(--gildhart-gold);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.svc-carousel-btn:hover {
  background: rgba(201, 164, 74, 0.22);
  border-color: var(--gildhart-gold);
  color: white;
  transform: scale(1.08);
}
.svc-carousel-btn:active { transform: scale(0.96); }
.svc-carousel-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
}
.svc-carousel-progress {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.svc-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.svc-carousel-dot.is-active {
  background: var(--gildhart-gold);
  transform: scale(1.4);
}

.svc-live-clients-footnote {
  text-align: center;
  margin: 2.5rem auto 0;
  padding: 1.75rem 2rem 0;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.75;
  max-width: 600px;
  border-top: 1px solid rgba(201, 164, 74, 0.25);
}

/* Lightbox overlay (shared by all .svc-lightbox-trigger on the page) */
.svc-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 10, 20, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}
.svc-lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.svc-lightbox-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-lightbox-overlay.is-open .svc-lightbox-inner {
  transform: scale(1) translateY(0);
}
.svc-lightbox-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.svc-lightbox-inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  display: block;
}
.svc-lightbox-caption {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin: 0;
}
.svc-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 44px;
  padding: 0 1.25rem;
  border-radius: 22px;
  background: rgba(10, 10, 20, 0.72);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Outfit', 'Inter', sans-serif;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}
.svc-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}
.svc-lightbox-close:active { transform: scale(0.97); }
.svc-lightbox-close-x { font-size: 1.1rem; line-height: 1; }

/* Mobile carousel: stack cards, hide arrow nav + edge fades */
@media (max-width: 768px) {
  .svc-live-carousel-wrap::before,
  .svc-live-carousel-wrap::after { display: none; }
  .svc-live-carousel-track {
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 1.25rem;
    overflow: visible;
  }
  .svc-live-card { flex: 0 0 auto; }
  .svc-carousel-nav { display: none; }
  .svc-live-clients-footnote { font-size: 1rem; padding: 1.5rem 1.5rem 0; }
}

/* ── A1: Why This Exists section ────────────────────────────── */

.svc-why {
  background: var(--cream);
  padding: 7rem 2rem 7.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
/* Two layered radial halos — forest green top-left, gold bottom-right.
 * Pulls the brand palette into the section's atmosphere without
 * competing with the cards. */
.svc-why::before {
  content: '';
  position: absolute;
  top: -220px;
  left: -220px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.svc-why::after {
  content: '';
  position: absolute;
  bottom: -240px;
  right: -240px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.svc-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Editorial split header — copy left, product visual right at 960px+,
 * stacked + centred at mobile. */
.svc-why-header {
  text-align: center;
  margin: 0 auto 4.5rem;
  max-width: 860px;
}
.svc-why-header-copy { width: 100%; }
.svc-why-header-visual {
  display: none;
}
@media (min-width: 960px) {
  .svc-why-header {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    max-width: 1200px;
  }
  /* Mirrors the homepage hero: the dark card surface is baked into
   * the image asset itself; CSS only adds rounded corners and a soft
   * drop shadow. No rotation here — at this scale + rounded corners
   * subpixel rotation softens edges. */
  .svc-why-header-visual {
    display: block;
    position: relative;
  }
  .svc-why-header-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.18),
      0 8px 24px rgba(0, 0, 0, 0.10);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
  }
  .svc-why-header-visual img:hover {
    transform: translateY(-6px);
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.22),
      0 12px 30px rgba(0, 0, 0, 0.12);
  }
  /* Placeholder still gets the 4:3 fallback box so the empty state
   * keeps its designed proportions. */
  .svc-why-header-visual-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 61, 47, 0.10) 0%, rgba(201, 164, 74, 0.08) 100%);
    border: 2px dashed rgba(201, 164, 74, 0.40);
    border-radius: 20px;
  }
  .svc-why-header-visual-placeholder span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gildhart-gold);
    text-align: center;
    padding: 0 2rem;
    line-height: 1.7;
  }
  .svc-why-lead-stat-wrap {
    margin-top: 1.25rem;
  }
  .svc-why-lead-stat {
    font-size: 1.0625rem;
    padding-left: 1.125rem;
    border-left-width: 3px;
  }
}
.svc-why-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1.5rem;
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
}
.svc-why-eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gildhart-gold);
  opacity: 0.7;
}
.svc-why-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 2rem;
}
.svc-why-lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.2rem);
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto;
  font-weight: 400;
}
/* Editorial pull-quote treatment — mirrors the .is-emphasis pattern
 * used in the Sachin narrative (italic forest-green body with a gold
 * left border), upgraded to standalone landing weight since this line
 * is a key narrative beat in the Why section header rather than one
 * paragraph in a longer prose flow. Drops the white pill chrome and
 * the down-arrow becomes redundant against the bordered left edge. */
.svc-why-lead-stat-wrap {
  display: block;
  margin-top: 1.75rem;
}
.svc-why-lead-stat {
  display: block;
  background: none;
  border: 0;
  border-left: 3px solid var(--gildhart-gold);
  border-radius: 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  box-shadow: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.005em;
  line-height: 1.55;
  color: var(--gildhart-green);
  text-transform: none;
  max-width: 560px;
}

/* Editorial stacked rows: each block fills the section width as a
 * 2-column grid with image on one side and copy on the other. Even
 * rows flip the image to the left for editorial rhythm. The card
 * chrome (white background, border, shadow) is dropped entirely —
 * each row sits on the section's cream background. */
.svc-why-blocks {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 5rem;
}
.svc-why-block {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "image content";
  gap: 5rem;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  overflow: visible;
}
.svc-why-block:nth-child(even) {
  grid-template-areas: "content image";
}
/* Decorative accent + corner number from the old card layout are
 * superseded by the in-content number; hide rather than remove so
 * any cached markup still renders cleanly. */
.svc-why-block-accent { display: none; }
/* Image area now occupies a full grid column — no negative-margin
 * bleed, native aspect ratio, soft drop shadow + rounded corners
 * matching the homepage hero treatment. Renders at ~580px wide on
 * desktop, large enough that 1024w / 1536w srcset variants give
 * pristine downscaling on retina displays. */
.svc-why-block-image {
  grid-area: image;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(30, 61, 47, 0.04);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.16),
    0 8px 24px rgba(0, 0, 0, 0.08);
}
.svc-why-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-why-block:hover .svc-why-block-image img {
  transform: scale(1.02);
}
.svc-why-block-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 520px;
}
/* Editorial number above the title — small uppercase brand tag,
 * not the giant outlined corner number. Always visible (the old
 * "hide when image present" rule no longer applies). */
.svc-why-block-num {
  position: static;
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gildhart-gold);
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  margin: 0;
}
.svc-why-block--has-image .svc-why-block-num { display: block; }
.svc-why-block-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  background: linear-gradient(135deg, rgba(30, 61, 47, 0.10) 0%, rgba(201, 164, 74, 0.08) 100%);
  border-bottom: 1px dashed rgba(201, 164, 74, 0.45);
}
.svc-why-block-image-placeholder-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(30, 61, 47, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gildhart-green);
}
.svc-why-block-image-placeholder-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-why-block-image-placeholder span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  text-align: center;
  padding: 0 1rem;
  line-height: 1.6;
}

/* Tonal icon block — kept as a small accent below the title when no
 * image is set. When the card has an ACF image, the icon block is
 * hidden because the image carries the visual weight. */
.svc-why-block-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(30, 61, 47, 0.08);
  border: 1px solid rgba(30, 61, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--gildhart-green);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-why-block--has-image .svc-why-block-icon { display: none; }
.svc-why-block:hover .svc-why-block-icon {
  background: rgba(30, 61, 47, 0.14);
  border-color: rgba(30, 61, 47, 0.30);
  transform: scale(1.04);
}
.svc-why-block-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-why-block-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}
.svc-why-block-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-why-block-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.svc-why-block-bullets li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(30, 61, 47, 0.10);
  border: 1.5px solid rgba(30, 61, 47, 0.35);
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-5' stroke='%231E3D2F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.svc-why-block-bullets li strong {
  color: var(--navy);
  font-weight: 700;
}

/* Below 900px: collapse to a single column with image always above
 * copy. The :nth-child(even) flip is overridden so all rows share
 * the same orientation on mobile. */
@media (max-width: 900px) {
  .svc-why-blocks { gap: 3.5rem; margin-top: 3rem; }
  .svc-why-block,
  .svc-why-block:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "content";
    gap: 1.75rem;
  }
  .svc-why-block-content { max-width: none; }
  .svc-why { padding: 5rem 1.5rem 5.5rem; }
  .svc-why-headline { font-size: clamp(1.75rem, 6vw, 2.5rem); }
}

/* ── A2: Track Record section ───────────────────────────────── */

.svc-track-record {
  background: #f7f0e6;
  padding: 7rem 2rem 7rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
/* Two layered radial halos — forest green top-left, gold bottom-right.
 * Pulls the brand palette into the section's atmosphere. */
.svc-track-record::before {
  content: '';
  position: absolute;
  top: -220px;
  left: -220px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.svc-track-record::after {
  content: '';
  position: absolute;
  bottom: -240px;
  right: -240px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.svc-track-record-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.svc-track-record-overline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  display: inline-block;
  margin: 0 0 2.5rem;
  position: relative;
  padding-bottom: 6px;
}
.svc-track-record-overline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gildhart-gold);
  opacity: 0.7;
}

/* Cinematic staggered headline — each newline renders as its own
 * block. Last line gets a crescendo bump; single-line headlines just
 * use the base size. */
.svc-track-record-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 0 0 3rem;
}
.svc-track-record-headline-line {
  display: block;
  font-size: clamp(1.625rem, 3.2vw, 2.5rem);
  line-height: 1.18;
}
.svc-track-record-headline-line + .svc-track-record-headline-line {
  margin-top: 0.4rem;
}
.svc-track-record-headline-line:last-child:not(:only-child) {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-top: 0.75rem;
}

.svc-track-record-intro {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--gray-600);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 400;
}

/* Stat strip — aggregate metrics shown above the proof trio. Three big
 * numbers with mono uppercase labels, separated by hairline rules.
 * Sits on cream directly (no card chrome) for an editorial feel. */
.svc-track-record-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 3.5rem auto 0;
  max-width: 880px;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(13, 26, 18, 0.10);
  border-bottom: 1px solid rgba(13, 26, 18, 0.10);
}
.svc-track-record-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.5rem 1.25rem;
  border-right: 1px solid rgba(13, 26, 18, 0.10);
}
.svc-track-record-stat:last-child { border-right: none; }
.svc-track-record-stat-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.svc-track-record-stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
  text-align: center;
  line-height: 1.4;
}

/* Proof trio — case-study cards. Each card now leads with a big metric
 * (gold display number), then a small uppercase practice label, then
 * the bold outcome line, then a mono period stamp. The metric carries
 * the visual weight; everything else is supporting context. */
.svc-track-record-proofs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.75rem 0 4rem;
}
.svc-track-record-proof {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 2.25rem 1.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  box-shadow: 0 6px 24px rgba(13, 26, 18, 0.06), 0 1px 3px rgba(13, 26, 18, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.svc-track-record-proof:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(13, 26, 18, 0.12), 0 3px 8px rgba(30, 61, 47, 0.08);
  border-color: rgba(201, 164, 74, 0.45);
}
.svc-track-record-proof-metric {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 800;
  color: var(--gildhart-gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 0.25rem;
  font-variant-numeric: tabular-nums;
}
.svc-track-record-proof-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
  margin: 0;
}
.svc-track-record-proof-text {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
  margin: 0.25rem 0 0;
}
.svc-track-record-proof-period {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.40);
  margin: 0.25rem 0 0;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(13, 26, 18, 0.06);
}

/* Kicker — pull quote with a giant decorative gold opening mark, the
 * quote body in italic-weight navy, and a mono uppercase attribution
 * line below. Reads as a named, owned conviction rather than floating
 * marketing copy. */
.svc-track-record-kicker-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 0 4.5rem;
  text-align: left;
}
.svc-track-record-kicker-mark {
  position: absolute;
  top: -0.9rem;
  left: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  color: var(--gildhart-gold);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.85;
}
.svc-track-record-kicker {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 1.85vw, 1.4375rem);
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  text-align: left;
}
.svc-track-record-kicker-attribution {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
  margin: 1.25rem 0 0;
  display: block;
}

/* Close — verdict stamp. Larger font, flanked by horizontal gold lines
 * either side of the text (editorial section-divider treatment). */
.svc-track-record-close {
  margin: 4.5rem 0 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.svc-track-record-close::before,
.svc-track-record-close::after {
  content: '';
  flex: 1;
  max-width: 110px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gildhart-gold) 50%, transparent);
}
.svc-track-record-close span {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.18;
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .svc-track-record { padding: 4.5rem 1.5rem 4.5rem; }
  .svc-track-record-headline { margin-bottom: 2rem; }
  .svc-track-record-stats {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    max-width: 360px;
  }
  .svc-track-record-stat {
    border-right: none;
    border-bottom: 1px solid rgba(13, 26, 18, 0.10);
    padding: 1rem 0.5rem;
  }
  .svc-track-record-stat:last-child { border-bottom: none; }
  .svc-track-record-proofs {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 2rem 0 3rem;
  }
  .svc-track-record-proof { padding: 2rem 1.25rem 1.5rem; }
  .svc-track-record-kicker-wrap {
    padding: 0 1rem 0 3rem;
  }
  .svc-track-record-kicker-mark {
    font-size: 4.5rem;
    top: -0.5rem;
    left: 0.25rem;
  }
  .svc-track-record-kicker { font-size: 1.125rem; }
  .svc-track-record-close {
    margin-top: 3rem;
    flex-direction: column;
    gap: 1rem;
  }
  .svc-track-record-close::before,
  .svc-track-record-close::after {
    max-width: 80px;
    width: 80px;
    flex: none;
  }
  .svc-track-record-close span { font-size: clamp(1.625rem, 6vw, 2.25rem); }
}

/* ── A2: SalesAgent Pro section ─────────────────────────────── */

.svc-sa-pro {
  background: linear-gradient(180deg, #070b14 0%, #0c1220 35%, #0f172a 100%);
  padding: 7rem 2rem 5.5rem;
  overflow: hidden;
  position: relative;
}
.svc-sa-pro::before {
  content: '';
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.svc-sa-pro::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(30, 61, 47, 0.2) 50%, transparent 95%);
}
.svc-sa-pro-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.svc-sa-pro-header {
  text-align: center;
  margin-bottom: 3rem;
}
.svc-sa-pro-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 164, 74, 0.9);
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.svc-sa-pro-eyebrow::before,
.svc-sa-pro-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 74, 0.6));
}
.svc-sa-pro-eyebrow::after {
  background: linear-gradient(90deg, rgba(201, 164, 74, 0.6), transparent);
}
.svc-sa-pro-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin: 0 auto;
}

/* Story + image grid */
.svc-sa-pro-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 0.5rem;
}
/* Story column — cinematic narrative.
 *   - Gold gradient timeline runs down the left edge (matches the
 *     Intelligence Engine treatment for cross-section cohesion).
 *   - The first row is promoted to a magazine cold-open timestamp
 *     block: large mono uppercase, gold, hairline divider beneath.
 *   - Scene-start dots (gold, ringed) sit on the timeline at the
 *     first line of each scene — i.e. the line right after the
 *     timestamp and the line right after each scene break.
 *   - Scene breaks are hairline gold-fade rules instead of empty
 *     spacers, signalling "fade to next scene" rather than padding.
 *   - The closing punchline is a verdict block: hairline gold border
 *     above + extra weight, isolated from the lines that build to it.
 *   - Body text bumped to 0.82 opacity, line-height 1.8, padding
 *     dropped — let the line-height do the work for cleaner rhythm. */
.svc-sa-pro-story {
  max-width: 660px;
  margin: 0;
  text-align: left;
  position: relative;
  padding-left: 1.75rem;
}
.svc-sa-pro-story::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(180deg, rgba(201, 164, 74, 0.65) 0%, rgba(201, 164, 74, 0.15) 100%);
  border-radius: 2px;
}

/* Cinematic timestamp opener — promoted from the first story row. */
.svc-sa-pro-story-timestamp {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1.5rem;
  padding: 0 0 1rem;
  line-height: 1;
}
.svc-sa-pro-story-timestamp::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gildhart-gold), transparent);
}

.svc-sa-pro-story-line {
  position: relative;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin: 0;
  padding: 0;
}
.svc-sa-pro-story-line + .svc-sa-pro-story-line {
  margin-top: 0.625rem;
}
.svc-sa-pro-story-line strong {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 600;
}
.svc-sa-pro-story-line em {
  color: var(--gildhart-gold);
  font-style: normal;
  font-weight: 600;
}

/* Scene-start dots: anchored on the gold timeline at the start of
 * each narrative scene — i.e. the first line after the timestamp
 * and the first line after each scene break. The ring colour matches
 * the section's dark-navy gradient so the dot reads as "on" the line
 * rather than "above" it. */
.svc-sa-pro-story-timestamp + .svc-sa-pro-story-line::before,
.svc-sa-pro-story-break + .svc-sa-pro-story-line::before {
  content: '';
  position: absolute;
  left: -2.05rem;
  top: 0.6rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gildhart-gold);
  box-shadow:
    0 0 0 3px #0c1220,
    0 0 0 4.5px rgba(201, 164, 74, 0.35);
}

/* Scene break — hairline horizontal rule instead of empty space.
 * Subtle gold-fade signals "scene fades, next scene starts" rather
 * than dead padding. */
.svc-sa-pro-story-break {
  position: relative;
  height: 1.5rem;
  margin: 0.5rem 0;
}
.svc-sa-pro-story-break::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 164, 74, 0.45), transparent);
  transform: translateY(-50%);
}

/* Punchline as a verdict block — hairline gold border-top isolates
 * it from the narrative above, larger weight + extra padding lets
 * the eye register "this is the conclusion" before reading. */
.svc-sa-pro-story-punchline {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 1.3125rem;
  font-weight: 700;
  color: white;
  line-height: 1.5;
  margin: 1.5rem 0 0;
  padding: 1.5rem 0 0.25rem;
  border-top: 1px solid rgba(201, 164, 74, 0.22);
}
.svc-sa-pro-story-punchline::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 90px;
  height: 1px;
  background: var(--gildhart-gold);
}
.svc-sa-pro-story-punchline em {
  color: var(--gildhart-gold);
  font-style: normal;
}

.svc-sa-pro-story-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-sa-pro-story-image-inner {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.svc-sa-pro-story-image-inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
}
.svc-sa-pro-story-image-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(30, 61, 47, 0.12);
}

/* Stat cards */
.svc-sa-pro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.svc-sa-pro-stat {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  padding: 2rem 2rem 2.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 0.5px rgba(30, 61, 47, 0.10);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.svc-sa-pro-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gildhart-gold), transparent);
  opacity: 0.55;
  transition: opacity 0.4s ease;
}
.svc-sa-pro-stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 164, 74, 0.12);
  border-color: rgba(201, 164, 74, 0.30);
}
.svc-sa-pro-stat:hover::before { opacity: 1; }

/* Client chip — gold pulse dot + mono uppercase practice name at the
 * top of each card. Replaces the barely-visible attribution footer
 * from the old Revenue Dashboard row; reads as a verified-client
 * stamp rather than a grey footnote. The hairline gold-fade divider
 * separates the chip from the headline number below. */
.svc-sa-pro-stat-client {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 auto 1.5rem;
  padding-bottom: 1.125rem;
  width: 100%;
  max-width: 280px;
  position: relative;
}
.svc-sa-pro-stat-client::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 74, 0.45), transparent);
}
.svc-sa-pro-stat-client-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gildhart-gold);
  box-shadow: 0 0 6px rgba(201, 164, 74, 0.70);
  animation: svcLivePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.svc-sa-pro-stat-client-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.svc-sa-pro-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--gildhart-gold);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 0.5rem;
}
.svc-sa-pro-stat--text .svc-sa-pro-stat-num {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.svc-sa-pro-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin: 0 0 0.25rem;
}
.svc-sa-pro-stat-sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0.5rem 0 0;
}
.svc-sa-pro-stat--compare .svc-sa-pro-stat-sub { margin-top: 0.875rem; }

/* Comparison bars */
.svc-sa-pro-stat-compare {
  margin-top: 1rem;
}
.svc-sa-pro-stat-compare-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.svc-sa-pro-stat-compare-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 60px;
  text-align: right;
  flex-shrink: 0;
}
.svc-sa-pro-stat-compare-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}
.svc-sa-pro-stat-compare-fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-sa-pro-stat-compare-fill--them {
  background: rgba(255, 255, 255, 0.15);
}
.svc-sa-pro-stat-compare-fill--us {
  background: linear-gradient(90deg, var(--gildhart-green), #4a7a5e);
}
.svc-sa-pro-stat-compare-val {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  width: 36px;
  flex-shrink: 0;
}
.svc-sa-pro-stat-compare-val--us { color: var(--gildhart-gold); }

/* Revenue dashboard (3-up) */
.svc-sa-pro-dashboard {
  margin-top: 3.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.svc-sa-pro-revenue-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-sa-pro-revenue-item {
  padding: 2.5rem 2rem 2.25rem;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 0.5px rgba(30, 61, 47, 0.10);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.svc-sa-pro-revenue-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 61, 47, 0.6), transparent);
  border-radius: 2px;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.svc-sa-pro-revenue-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(30, 61, 47, 0.12);
  border-color: rgba(30, 61, 47, 0.3);
}
.svc-sa-pro-revenue-item:hover::before { opacity: 1; }
.svc-sa-pro-revenue-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 0.625rem;
}
.svc-sa-pro-revenue-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gildhart-gold);
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin: 0 0 0.375rem;
}
.svc-sa-pro-revenue-attribution {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  margin: 0;
}

/* CTA */
.svc-sa-pro-cta {
  text-align: center;
  margin-top: 2.75rem;
}
.svc-sa-pro-cta .svc-btn {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .svc-sa-pro { padding: 5rem 1.5rem; }
  .svc-sa-pro-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-sa-pro-story-image { order: -1; }
  .svc-sa-pro-story-image-inner { max-width: 360px; margin: 0 auto; }
  .svc-sa-pro-stats { grid-template-columns: 1fr; }
  .svc-sa-pro-revenue-bar { grid-template-columns: 1fr; }
}

/* ── A3: Testimonial section ────────────────────────────────── */

.svc-testimonial {
  background: #f5f0e8;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
/* Dual radial halos — forest green top-right, gold bottom-left.
 * Adds atmospheric depth so the testimonial reads as a credibility
 * moment, not a flat row of content. */
.svc-testimonial::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -160px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
.svc-testimonial::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
.svc-testimonial-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.svc-testimonial-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
/* Photo with a soft gold ambient halo — sits inside its own
 * positioned context so the halo can extend past the photo's
 * rounded corners. */
.svc-testimonial-photo-wrap {
  width: 260px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 6px rgba(201, 164, 74, 0.06),
    0 0 0 1px rgba(13, 26, 18, 0.08),
    0 24px 60px rgba(13, 26, 18, 0.18),
    0 8px 20px rgba(13, 26, 18, 0.08);
  position: relative;
}
.svc-testimonial-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.svc-testimonial-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* Result-metric card — replaces the old "PHARMACY CLIENT" pill. Big
 * gold display value, mono uppercase label below. Sits on cream
 * directly, no card chrome, so it reads editorial rather than tag-
 * gy. The hairline divider above the label provides containment. */
.svc-testimonial-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  max-width: 260px;
}
.svc-testimonial-metric-value {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gildhart-gold);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.svc-testimonial-metric-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
  line-height: 1.5;
  padding-top: 0.625rem;
  position: relative;
}
.svc-testimonial-metric-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: rgba(13, 26, 18, 0.18);
}
/* Legacy badge styling kept for safety — class is no longer rendered
 * by the template but might still appear in cached markup. */
.svc-testimonial-badge,
.svc-testimonial-badge-dot { display: none; }

.svc-testimonial-content {
  padding: 0.5rem 0;
  position: relative;
}
/* Cinematic watermark quote-mark. Large serif glyph at low opacity
 * sits behind/anchors the top-left of the content column. Reads as
 * editorial pull-quote rather than a tiny disconnected glyph. */
.svc-testimonial-quote-mark {
  position: absolute;
  top: -3rem;
  left: -1.25rem;
  font-family: 'Georgia', serif;
  font-size: 12rem;
  line-height: 1;
  color: rgba(201, 164, 74, 0.18);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.svc-testimonial-quote {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.125rem, 1.75vw, 1.3125rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.75;
  margin: 0 0 2.5rem;
}
.svc-testimonial-quote strong {
  color: #0f172a;
  font-weight: 700;
}
.svc-testimonial-quote em {
  color: var(--gildhart-green);
  font-style: normal;
  font-weight: 600;
}
.svc-testimonial-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gildhart-gold), transparent);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.svc-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.svc-testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
}
.svc-testimonial-role {
  font-size: 0.9375rem;
  color: var(--gray-600);
  font-weight: 500;
}
@media (max-width: 900px) {
  .svc-testimonial-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .svc-testimonial-photo-wrap { width: 200px; height: 230px; }
  .svc-testimonial-metric-value { font-size: 1.875rem; }
  .svc-testimonial-quote-mark {
    font-size: 7rem;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .svc-testimonial-content { padding-top: 2rem; }
  .svc-testimonial-divider { margin: 0 auto 1.5rem; }
  .svc-testimonial-meta { align-items: center; }
}

/* ── A3: Intelligence Engine section ────────────────────────── */

.svc-intel {
  background: var(--cream);
  padding: 7rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
/* Dual radial halos — forest green top-left, gold bottom-right.
 * Atmospheric depth matching Track Record + Why This Exists. */
.svc-intel::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -160px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
.svc-intel::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
.svc-intel-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.svc-intel-hero {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.svc-intel-hero-copy { max-width: 760px; }
.svc-intel-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-intel-hero-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13), 0 4px 16px rgba(30, 61, 47, 0.08);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.svc-intel-hero-image img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 6px 20px rgba(30, 61, 47, 0.15);
}

.svc-intel-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gildhart-green);
  margin: 0 0 1.5rem;
  display: inline-block;
}
.svc-intel-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.svc-intel-sub {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}

.svc-intel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
/* Card chrome: white surface, soft shadow, no more heavy green left-
 * border (replaced by an internal gold timeline). Extra left padding
 * holds the timeline gutter. */
.svc-intel-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 1.75rem 1.875rem 2.875rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 24px rgba(13, 26, 18, 0.06), 0 1px 3px rgba(13, 26, 18, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.svc-intel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(13, 26, 18, 0.10), 0 0 0 1px rgba(30, 61, 47, 0.18);
  border-color: rgba(30, 61, 47, 0.15);
}
/* Vertical timeline line down the left, faded gold gradient. Spans
 * from below the status header to just above the bottom edge. The
 * three timeline dots (one per moment) sit on top of this line. */
.svc-intel-card::before {
  content: '';
  position: absolute;
  left: 1.65rem;
  top: 4.25rem;
  bottom: 1.875rem;
  width: 1.5px;
  background: linear-gradient(180deg, rgba(201, 164, 74, 0.7) 0%, rgba(201, 164, 74, 0.20) 100%);
}

/* Status header — pulse dot + mono uppercase moment number. Negative
 * margins pull it edge-to-edge across the top of the card, with its
 * own padding and a hairline bottom border. */
.svc-intel-card-status {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.50);
  margin: -1.5rem -1.75rem 1.5rem -2.875rem;
  padding: 1.125rem 1.75rem 1.125rem 2.875rem;
  border-bottom: 1px solid rgba(13, 26, 18, 0.06);
  background: linear-gradient(180deg, rgba(245, 240, 232, 0.45), rgba(255, 255, 255, 0));
  border-radius: 16px 16px 0 0;
}
.svc-intel-card-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gildhart-gold);
  box-shadow: 0 0 6px rgba(201, 164, 74, 0.65);
  animation: svcLivePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Each labelled moment — query / outcome / intel. Hairline bottom
 * border separates moments (except the last). The leading timeline
 * dot is anchored on the left edge, sitting on the card's gold line. */
.svc-intel-card-moment {
  position: relative;
  padding-bottom: 1.125rem;
  margin-bottom: 1.125rem;
  border-bottom: 1px solid rgba(13, 26, 18, 0.05);
}
.svc-intel-card-moment:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.svc-intel-card-moment::before {
  content: '';
  position: absolute;
  left: -1.55rem;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gildhart-gold);
  box-shadow: 0 0 0 3px white, 0 0 0 4px rgba(201, 164, 74, 0.30);
}

.svc-intel-card-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.625rem;
}
.svc-intel-card-label--patient { color: rgba(13, 26, 18, 0.55); }
.svc-intel-card-label--agent   { color: var(--gildhart-green); }
.svc-intel-card-label--intel   { color: var(--gildhart-gold); }

.svc-intel-card-text {
  font-size: 0.9375rem;
  color: var(--navy);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}
.svc-intel-card-outcome {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Deployed asset — navy mini-card replacing the old amber callout.
 * Gold "↗ Ranking Live" chip + white body reads as a published,
 * indexed intelligence asset rather than a warning state. The
 * subtle gold corner halo gives the card depth. */
.svc-intel-card-asset {
  background: linear-gradient(135deg, #0f172a 0%, #131c33 60%, #18213a 100%);
  border-radius: 10px;
  padding: 1rem 1.125rem 1.125rem;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}
.svc-intel-card-asset::before {
  content: '';
  position: absolute;
  top: -28px;
  right: -28px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.svc-intel-card-asset-chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 0.625rem;
  position: relative;
  z-index: 1;
}
.svc-intel-card-asset-body {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.svc-intel-card-asset-body strong {
  font-weight: 700;
  color: white;
}

@media (max-width: 900px) {
  .svc-intel { padding: 5rem 1.5rem; }
  .svc-intel-cards { grid-template-columns: 1fr; }
}

/* ── A4: Content Flywheel section ───────────────────────────── */

.svc-flywheel {
  background: linear-gradient(180deg, #070b14 0%, #0c1220 40%, #0f172a 100%);
  padding: 7rem 2rem 6.5rem;
  position: relative;
  overflow: hidden;
}
.svc-flywheel::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.svc-flywheel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(30, 61, 47, 0.25) 50%, transparent 95%);
}
.svc-flywheel-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.svc-flywheel-header {
  text-align: center;
  margin-bottom: 4rem;
}
.svc-flywheel-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 164, 74, 0.9);
  margin: 0 0 1.5rem;
}
.svc-flywheel-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}
.svc-flywheel-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 400;
}
.svc-flywheel-desc p {
  margin: 0 0 1rem;
  color: inherit;
}
.svc-flywheel-desc p:last-child { margin-bottom: 0; }

/* 2×2 card grid with centre loop */
.svc-flywheel-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  align-items: center;
}
.svc-flywheel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.25rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.svc-flywheel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, var(--gildhart-green) 50%, transparent 90%);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.svc-flywheel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(30, 61, 47, 0.1);
  border-color: rgba(30, 61, 47, 0.35);
}
.svc-flywheel-card:hover::before { opacity: 1; }
.svc-flywheel-card--1 { grid-column: 1; grid-row: 1; }
.svc-flywheel-card--2 { grid-column: 3; grid-row: 1; }
.svc-flywheel-card--3 { grid-column: 1; grid-row: 2; }
.svc-flywheel-card--4 { grid-column: 3; grid-row: 2; }

.svc-flywheel-card-num {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(30, 61, 47, 0.18);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}
.svc-flywheel-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  font-size: 1.25rem;
}
.svc-flywheel-card-icon--capture { background: rgba(30, 61, 47, 0.14); }
.svc-flywheel-card-icon--intel   { background: rgba(180, 83, 9, 0.12); }
.svc-flywheel-card-icon--content { background: rgba(99, 102, 241, 0.12); }
.svc-flywheel-card-icon--rank    { background: rgba(16, 185, 129, 0.12); }
.svc-flywheel-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.3125rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin: 0 0 0.625rem;
  letter-spacing: -0.01em;
}
.svc-flywheel-card-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  margin: 0;
}

/* Centre flywheel loop graphic */
.svc-flywheel-centre {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  position: relative;
}
.svc-flywheel-loop-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(201, 164, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: svcRingPulse 4s ease-in-out infinite;
}
.svc-flywheel-loop-ring::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 74, 0.1);
}
.svc-flywheel-loop-ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 164, 74, 0.18);
  animation: svcLoopSpin 12s linear infinite;
}
@keyframes svcRingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 164, 74, 0); }
  50%      { box-shadow: 0 0 40px 8px rgba(201, 164, 74, 0.12); }
}
.svc-flywheel-loop-icon {
  font-size: 2rem;
  color: var(--gildhart-gold);
  animation: svcLoopSpin 3s linear infinite;
  line-height: 1;
}
@keyframes svcLoopSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.svc-flywheel-loop-label {
  margin: 1.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  text-align: center;
  line-height: 1.6;
}
.svc-flywheel-centre::before,
.svc-flywheel-centre::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, rgba(201, 164, 74, 0.4), rgba(201, 164, 74, 0.08));
  border-radius: 2px;
}
.svc-flywheel-centre::before { top: -8px; }
.svc-flywheel-centre::after  {
  bottom: -8px;
  background: linear-gradient(180deg, rgba(201, 164, 74, 0.08), rgba(201, 164, 74, 0.4));
}

.svc-flywheel-pill {
  text-align: center;
  margin-top: 3rem;
}
.svc-flywheel-pill-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 164, 74, 0.08);
  border: 1px solid rgba(201, 164, 74, 0.2);
  border-radius: 30px;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
}
.svc-flywheel-pill-arrow {
  display: inline-block;
  animation: svcLoopSpin 3s linear infinite;
}

.svc-flywheel-closing {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 700;
  color: white;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 4rem 0 0;
  line-height: 1.5;
}
.svc-flywheel-closing em {
  color: var(--gildhart-gold);
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 900px) {
  .svc-flywheel { padding: 5rem 1.5rem 5rem; }
  .svc-flywheel-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.25rem;
  }
  .svc-flywheel-card--1,
  .svc-flywheel-card--2,
  .svc-flywheel-card--3,
  .svc-flywheel-card--4 {
    grid-column: 1;
    grid-row: auto;
  }
  .svc-flywheel-centre {
    grid-column: 1;
    grid-row: auto;
    order: -1;
    padding: 0 0 1rem;
  }
  .svc-flywheel-centre::before,
  .svc-flywheel-centre::after { display: none; }
  .svc-flywheel-loop-ring { width: 100px; height: 100px; }
  .svc-flywheel-loop-icon { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .svc-flywheel-card { padding: 1.75rem 1.5rem 1.5rem; }
}

/* ── A4: Editorial Proof section ────────────────────────────── */

.svc-editorial-proof {
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0;
}
.svc-editorial-proof-header-wrap {
  background: linear-gradient(180deg, #faf7f2 0%, #f5f0e8 100%);
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative;
}
.svc-editorial-proof-header-wrap::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.svc-editorial-proof-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.svc-editorial-proof-header {
  text-align: center;
}
.svc-editorial-proof-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gildhart-green);
  margin: 0 0 1.5rem;
  display: inline-block;
}
.svc-editorial-proof-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 860px;
  margin: 0 auto;
}
.svc-editorial-proof-sub {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 620px;
  margin: 1.5rem auto 0;
  font-weight: 400;
}
.svc-editorial-proof-sub strong {
  color: var(--navy);
  font-weight: 700;
}

/* Editorial stat panels — alternating cream rows */
.svc-editorial-proof-panels {
  display: flex;
  flex-direction: column;
}
.svc-editorial-proof-panel {
  width: 100%;
  padding: 5.5rem 0;
  position: relative;
}
.svc-editorial-proof-panel:nth-child(odd)  { background: #f5f0e8; }
.svc-editorial-proof-panel:nth-child(even) { background: #ede8df; }
.svc-editorial-proof-panel-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 280px 1px 1fr;
  gap: 0 3.5rem;
  align-items: center;
}
.svc-editorial-proof-panel-stat {
  text-align: right;
  padding-right: 3.5rem;
  min-width: 0;
  overflow: hidden;
}
.svc-editorial-proof-panel-number {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 800;
  color: var(--gildhart-gold);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  white-space: nowrap;
}
.svc-editorial-proof-panel-divider {
  width: 1px;
  align-self: stretch;
  min-height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--gildhart-gold) 20%, var(--gildhart-gold) 80%, transparent 100%);
  opacity: 0.45;
  flex-shrink: 0;
}
.svc-editorial-proof-panel-content {
  min-width: 0;
}
.svc-editorial-proof-panel-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 0.875rem;
  display: block;
}
.svc-editorial-proof-panel-descriptor {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--gildhart-green);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.svc-editorial-proof-panel-text {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: #374151;
  line-height: 1.75;
  font-weight: 400;
  max-width: 580px;
  margin: 0;
}

@media (max-width: 768px) {
  .svc-editorial-proof-header-wrap { padding: 5rem 1.5rem 3.5rem; }
  .svc-editorial-proof-panel { padding: 3.5rem 0; }
  .svc-editorial-proof-panel-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
    padding: 0 1.5rem;
  }
  .svc-editorial-proof-panel-stat { text-align: left; padding-right: 0; }
  .svc-editorial-proof-panel-divider { display: none; }
}

/* ── A5: How It Works (Agent V2) section ────────────────────── */

.svc-how {
  background: linear-gradient(180deg, #070b14 0%, #0c1220 50%, #0f172a 100%);
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.svc-how::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.svc-how-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.svc-how-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.svc-how-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 164, 74, 0.9);
  margin: 0 0 1.5rem;
}
.svc-how-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
}

.svc-how-steps {
  display: flex;
  flex-direction: column;
}
.svc-how-step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 2rem;
  position: relative;
}
.svc-how-step + .svc-how-step { margin-top: 3rem; }
.svc-how-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.svc-how-step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid rgba(30, 61, 47, 0.55);
  background: rgba(30, 61, 47, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gildhart-gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201, 164, 74, 0.08);
  transition: background 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.svc-how-step:hover .svc-how-step-num {
  background: rgba(30, 61, 47, 0.28);
  border-color: var(--gildhart-green);
  box-shadow: 0 0 0 6px rgba(30, 61, 47, 0.12), 0 0 28px rgba(30, 61, 47, 0.22);
  transform: scale(1.06);
}
/* Connector reads as a deliberate timeline now — gold, thicker, flat
 * tone (no fade-out). It anchors the three steps as a single visual
 * spine instead of three loose markers. */
.svc-how-step-line {
  display: block;
  width: 3px;
  flex: 1;
  min-height: 40px;
  background: rgba(201, 164, 74, 0.55);
  margin-top: 0.75rem;
  border-radius: 2px;
}
.svc-how-step-content {
  padding: 0.5rem 0;
}
.svc-how-step-label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 0.5rem;
}
.svc-how-step-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}
.svc-how-step-text p {
  font-size: 1.0625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}
.svc-how-step-text p + p { margin-top: 1rem; }

.svc-how-timeline {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.svc-how-timeline-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.svc-how-timeline-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gildhart-gold), #e0c073);
  border-radius: 5px;
  box-shadow: 0 0 18px rgba(201, 164, 74, 0.35);
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-how-timeline.is-visible .svc-how-timeline-fill { width: 100%; }
.svc-how-timeline-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.875rem;
}
.svc-how-timeline-labels span {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}
/* Day 7 — Go Live carries slightly more visual weight than Day 1 so
 * the bar reads as a destination, not a neutral two-point span. */
.svc-how-timeline-labels span:last-child {
  color: var(--gildhart-gold);
  font-size: 0.9375rem;
  letter-spacing: 0.10em;
}

@media (max-width: 768px) {
  .svc-how { padding: 5rem 1.5rem 4rem; }
  .svc-how-step { grid-template-columns: 58px 1fr; gap: 1.25rem; }
  .svc-how-step-num { width: 58px; height: 58px; font-size: 1rem; }
}

/* ── A6: Closing Offer + Pricing section ────────────────────── */

.svc-closing {
  background: #f5f0e8;
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.svc-closing::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Top header */
.svc-closing-top {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.svc-closing-overline {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1.25rem;
  display: block;
}
.svc-closing-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
}
.svc-closing-copy-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.svc-closing-copy-block p {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.svc-closing-copy-block p:last-child { margin-bottom: 0; }
.svc-closing-copy-names {
  font-family: 'Inter', sans-serif;
  font-size: 1.3125rem !important;
  font-weight: 700;
  color: var(--navy) !important;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 1.75rem 0 !important;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.svc-closing-copy-punch {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem !important;
  font-weight: 700;
  color: var(--navy) !important;
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin-top: 1.75rem !important;
}

/* Two-column layout */
.svc-closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 3.5rem;
  align-items: start;
}
.svc-closing-checkout-lane {
  position: sticky;
  top: calc(var(--nav-h, 130px) + 1.5rem);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Left column — value stack */
.svc-closing-stack-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin-bottom: 1.5rem;
  display: block;
}
.svc-closing-stack {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
}
.svc-closing-stack li {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.svc-closing-stack li:first-child { padding-top: 0; }
.svc-closing-stack li:last-child  { border-bottom: none; }
.svc-closing-stack-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(30, 61, 47, 0.10);
  border: 1.5px solid rgba(30, 61, 47, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gildhart-green);
  font-size: 0.85rem;
}
.svc-closing-stack-content { flex: 1; }
.svc-closing-stack-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 0.35rem;
}
.svc-closing-stack-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* Eligibility bar */
.svc-closing-elig-bar {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2.25rem 2rem;
  background: #f0ede8;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 16px;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.10), 0 2px 10px rgba(0, 0, 0, 0.06);
}
.svc-closing-elig-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
  margin: 0 0 0.5rem;
  width: 100%;
}
.svc-closing-elig-intro:nth-of-type(2) { margin-bottom: 1.5rem; }
.svc-closing-elig-bar-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  width: 100%;
  margin: 0.25rem 0 0.75rem;
}
.svc-closing-elig-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.1875rem;
  color: var(--navy);
  font-weight: 700;
}
.svc-closing-elig-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(30, 61, 47, 0.10);
  border: 2px solid rgba(30, 61, 47, 0.35);
  color: var(--gildhart-green);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Testimonials */
.svc-closing-testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.svc-closing-testimonials-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 0.25rem;
}
.svc-closing-testimonial-card {
  background: #f0ede8;
  border-left: 3px solid var(--gildhart-green);
  border-radius: 0 14px 14px 0;
  padding: 1.5rem 1.75rem;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.svc-closing-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.svc-closing-testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin: 0 0 0.875rem;
}
.svc-closing-testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.svc-closing-testimonial-meta-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.svc-closing-testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 5%;
  flex-shrink: 0;
  display: block;
}
/* Monogram fallback — first initial on a muted forest-green tint
 * so the meta row stays visually balanced even when no avatar is
 * uploaded. Same dimensions as the image variant so layout doesn't
 * jump between the two states. */
.svc-closing-testimonial-avatar--monogram {
  background: rgba(30, 61, 47, 0.10);
  color: var(--gildhart-green, #1E3D2F);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 64px;
  text-align: center;
  letter-spacing: -0.01em;
}
.svc-closing-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.svc-closing-testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.svc-closing-testimonial-role {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
}
/* Metric pill contrast review:
 *   A) Forest-green bg + cream text — ~12:1 text contrast, reinforces
 *      the existing forest left-border on the card, and green carries
 *      a natural "win / positive outcome" semantic (these metrics
 *      describe revenue + bookings results).
 *   B) Dark-navy bg + gold text — ~5–6:1 text contrast, on brand but
 *      introduces a third dark tone alongside the forest border, and
 *      the gold-on-navy pairing reads more "premium/dressy" than
 *      "result/proof".
 * Shipping (A): forest green + cream. Strongest contrast against the
 * cream card backdrop and the most semantically aligned with what the
 * pill represents (a measurable outcome). Typography, letter-spacing,
 * and pill radius are unchanged from the original gold-outlined look. */
.svc-closing-testimonial-metric {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gildhart-cream, #F5F3EF);
  background: var(--gildhart-green, #1E3D2F);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  white-space: nowrap;
}

/* Right column — proof row */
.svc-closing-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-top: 0.25rem;
}
.svc-closing-proof-col { text-align: center; }
.svc-closing-proof-client {
  font-family: var(--font-mono);
  font-size: 0.575rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 0.5rem;
}
.svc-closing-proof-stat {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.375rem;
}
.svc-closing-proof-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* Pricing card wrapper */
.svc-closing-pricing {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2.75rem 2.25rem 2.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.svc-closing-promo {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1.75rem;
  display: block;
  text-align: center;
}
.svc-closing-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  align-items: center;
}
.svc-closing-cards-or {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
/* Cards are <button role="radio"> — reset native button chrome and
 * make them keyboard-focusable. The .--selected modifier is toggled
 * by service.js on click / keyboard activation. */
.svc-closing-card {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
  width: 100%;
  cursor: pointer;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1.625rem 1.25rem;
  text-align: center;
  position: relative;
  display: block;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease, background 0.3s ease;
}
.svc-closing-card:hover {
  border-color: rgba(30, 61, 47, 0.30);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.svc-closing-card:focus-visible {
  outline: 2px solid var(--gildhart-gold);
  outline-offset: 3px;
}
.svc-closing-card--popular {
  border: 2px solid var(--gildhart-green);
  background: white;
  box-shadow: 0 8px 32px rgba(30, 61, 47, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding-top: 2.25rem;
  padding-bottom: 2rem;
  z-index: 1;
}
.svc-closing-card--popular:hover {
  border-color: var(--gildhart-black);
  box-shadow: 0 16px 48px rgba(30, 61, 47, 0.22), 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
/* Selected state — gold ring + tick badge in the corner. Both cards
 * get equally strong selection feedback so the user can't miss that
 * their click registered. The popular card's default-state advantages
 * (badge, white backdrop, green border, larger padding) stay
 * untouched — those handle steering, separate from selection. */
.svc-closing-card--selected {
  border-color: var(--gildhart-gold);
  box-shadow:
    0 0 0 4px rgba(201, 164, 74, 0.32),
    0 16px 48px rgba(30, 61, 47, 0.16),
    0 4px 12px rgba(201, 164, 74, 0.20);
}
.svc-closing-card--popular.svc-closing-card--selected {
  border-color: var(--gildhart-gold);
  box-shadow:
    0 0 0 4px rgba(201, 164, 74, 0.32),
    0 20px 56px rgba(30, 61, 47, 0.20),
    0 4px 14px rgba(201, 164, 74, 0.22);
}
/* Hover-on-selected — generic .svc-closing-card:hover would otherwise
 * win on cascade order and strip the gold halo while the cursor is
 * over a selected card. Re-state the selected styles here with a
 * slightly stronger halo + a bigger lift so hover still feels alive. */
.svc-closing-card--selected:hover {
  border-color: var(--gildhart-gold);
  box-shadow:
    0 0 0 4px rgba(201, 164, 74, 0.40),
    0 20px 56px rgba(30, 61, 47, 0.18),
    0 4px 14px rgba(201, 164, 74, 0.26);
  transform: translateY(-3px);
}
.svc-closing-card--popular.svc-closing-card--selected:hover {
  border-color: var(--gildhart-gold);
  box-shadow:
    0 0 0 4px rgba(201, 164, 74, 0.40),
    0 24px 64px rgba(30, 61, 47, 0.22),
    0 4px 16px rgba(201, 164, 74, 0.28);
  transform: translateY(-5px);
}
.svc-closing-card-tick {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gildhart-gold);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(201, 164, 74, 0.40);
}
.svc-closing-card--selected .svc-closing-card-tick {
  opacity: 1;
  transform: scale(1);
}
.svc-closing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: var(--navy);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.20);
  z-index: 2;
}
.svc-closing-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.625rem;
}
.svc-closing-card-price {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 0.5rem;
}
.svc-closing-card-price-suffix {
  font-size: 0.5em;
  font-weight: 500;
  opacity: 0.5;
}
/* Tax note — small mono uppercase below the price (e.g. "+ 20% VAT").
 * Stripe Tax adds VAT on top at checkout; this primes the user's
 * expectations so the checkout total isn't a surprise. */
.svc-closing-card-tax-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0.125rem 0 0.625rem;
  line-height: 1.3;
}
.svc-closing-card-detail {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0.375rem 0 0;
}
.svc-closing-card-detail strong { color: var(--gildhart-green); }
.svc-closing-card-save {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gildhart-green);
  background: rgba(30, 61, 47, 0.08);
  padding: 0.2rem 0.625rem;
  border-radius: 20px;
}
.svc-closing-card-save--gold {
  color: #92400e;
  background: rgba(217, 169, 56, 0.15);
  border: 1px solid rgba(217, 169, 56, 0.30);
  margin-top: 0.375rem;
}
.svc-closing-card-total {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0.75rem 0 0;
  padding-top: 0.75rem;
  border-top: 2px solid var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.svc-closing-card-price-lock {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  margin: 0.625rem 0 0;
  text-align: center;
}

/* Fee waiver callout */
.svc-closing-waiver {
  margin: 0 -0.25rem 1.75rem;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(135deg, rgba(201, 164, 74, 0.12) 0%, rgba(240, 230, 200, 0.35) 50%, rgba(201, 164, 74, 0.08) 100%);
  border: 2px solid rgba(201, 164, 74, 0.40);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(201, 164, 74, 0.10), 0 1px 4px rgba(0, 0, 0, 0.04);
}
.svc-closing-waiver::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--gildhart-gold) 30%, var(--gildhart-gold) 70%, transparent 95%);
  opacity: 0.7;
  border-radius: 2px;
}
.svc-closing-waiver-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 1rem;
  display: block;
}
.svc-closing-waiver-amount-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
  flex-wrap: wrap;
}
.svc-closing-waiver-amount {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-500);
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-color: rgba(201, 164, 74, 0.80);
  text-decoration-thickness: 3px;
  display: inline-block;
}
.svc-closing-waiver-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--gildhart-green);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(30, 61, 47, 0.25);
  line-height: 1;
  white-space: nowrap;
}
.svc-closing-waiver-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0 0 0.625rem;
}
.svc-closing-waiver-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gildhart-gold), transparent);
  margin: 0.75rem auto;
  border-radius: 2px;
  opacity: 0.6;
}
.svc-closing-waiver-details {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 360px;
  margin: 0 auto;
}
.svc-closing-waiver-details strong { color: var(--navy); font-weight: 600; }

.svc-closing-punchline {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 0 1.75rem;
  text-align: center;
  font-style: italic;
}
.svc-closing-form-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 1.75rem;
}

/* Form */
.svc-closing-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.svc-closing-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
/* The HTML `hidden` attribute applies `display: none`, but `display: flex`
 * on the class above wins on specificity — without this override, the
 * Card Payment section would still render its label + empty mount slot
 * before Step 1 completes. */
.svc-closing-form-group[hidden] { display: none; }
/* Two-column row for First Name + Last Name on desktop. Collapses
 * to a single column at narrow widths so the fields stay legible. */
.svc-closing-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
@media (max-width: 600px) {
  .svc-closing-form-row { grid-template-columns: 1fr; gap: 1.125rem; }
}
.svc-closing-form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.svc-closing-form-input {
  width: 100%;
  padding: 0.9375rem 1.125rem;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
}
.svc-closing-form-input::placeholder { color: rgba(15, 23, 42, 0.35); }
.svc-closing-form-input:focus {
  border-color: var(--gildhart-green);
  background: white;
  box-shadow: 0 0 0 3px rgba(30, 61, 47, 0.10);
}
/* Payment Element mount area. Initial state shows the empty placeholder
 * (.svc-closing-payment-empty) explaining that card fields will appear
 * after the lead form is filled in. Once the WP REST endpoint creates
 * the Subscription, JS hides the empty state and Stripe.js mounts the
 * actual Payment Element directly into .svc-closing-payment-mount. */
.svc-closing-payment-mount {
  width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  max-width: 100%;
}
.svc-closing-payment-empty {
  width: 100%;
  padding: 0.9375rem 1.125rem;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(15, 23, 42, 0.45);
  font-size: 0.875rem;
  box-sizing: border-box;
  max-width: 100%;
}
.svc-closing-payment-empty svg {
  width: 20px;
  height: 20px;
  opacity: 0.45;
  stroke: var(--navy);
}
/* Inline error banner shown above the submit button on validation /
 * Stripe API failures. Aria-live=polite is set in the markup so screen
 * readers announce changes without interrupting. */
.svc-closing-form-error {
  background: rgba(185, 28, 28, 0.06);
  border: 1px solid rgba(185, 28, 28, 0.30);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #991b1b;
  line-height: 1.45;
  margin-top: 0.5rem;
}
/* Locked state for lead inputs after Step 1 succeeds — visually muted
 * so the user knows they're frozen and the focus has shifted to card
 * details. */
.svc-closing-form-input--locked {
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 0.65);
  cursor: not-allowed;
}
.svc-closing-form-input--locked:focus { outline: none; }
/* Legacy alias kept for any cached markup referring to the old class. */
.svc-closing-stripe-placeholder { display: none; }
.svc-closing-pull-quote {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.5rem;
}
.svc-closing-pull-quote-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin: 0 0 0.5rem;
}
.svc-closing-pull-quote-attr {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gildhart-gold);
  margin: 0;
}
.svc-closing-bold-close {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.25vw, 1.625rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
.svc-closing-form-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--gildhart-green);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(30, 61, 47, 0.30);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  margin-top: 0.5rem;
}
.svc-closing-form-submit:hover {
  background: var(--gildhart-black);
  box-shadow: 0 8px 30px rgba(30, 61, 47, 0.45);
  transform: translateY(-2px);
}
.svc-closing-form-note {
  font-size: 0.9375rem;
  color: var(--gray-600);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
}
.svc-closing-form-note svg {
  width: 16px;
  height: 16px;
  opacity: 0.55;
  stroke: var(--gray-600);
}
.svc-closing-joining-note {
  font-size: 0.9375rem;
  color: var(--gray-600);
  text-align: center;
  margin: 0.75rem 0 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-closing-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .svc-closing-checkout-lane {
    position: static;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .svc-closing-testimonials {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .svc-closing-testimonials::-webkit-scrollbar { display: none; }
  .svc-closing-testimonial-card {
    flex: 0 0 85%;
    max-width: 380px;
    scroll-snap-align: start;
  }
  .svc-closing-testimonials-label { flex: 0 0 100%; }
}
@media (max-width: 768px) {
  .svc-closing { padding: 3rem 1rem; }
  .svc-closing-top { margin-bottom: 2.5rem; }
  .svc-closing-headline { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .svc-closing-copy-block p { font-size: 1.0625rem; }
  .svc-closing-copy-names { font-size: 1.125rem !important; }
  .svc-closing-copy-punch { font-size: 1.0625rem !important; }
  .svc-closing-cards { grid-template-columns: 1fr; gap: 0.5rem; }
  .svc-closing-cards-or { padding: 0.25rem 0; }
  .svc-closing-elig-bar { flex-direction: column; gap: 0.75rem; padding: 1.5rem 1.25rem; }
  .svc-closing-pricing { padding: 1.75rem 1.125rem 1.5rem; border-radius: 16px; }
  .svc-closing-promo { font-size: 0.7rem; margin-bottom: 1.25rem; }
  .svc-closing-card { padding: 1.25rem 1rem; }
  .svc-closing-card--popular { padding: 1.75rem 1rem 1.5rem; }
  .svc-closing-card-price { font-size: 2rem; }
  .svc-closing-punchline { font-size: 0.875rem; margin-bottom: 1.25rem; }
  .svc-closing-proof-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-closing-proof-stat { font-size: 1.5rem; }
  .svc-closing-bold-close { font-size: 1.125rem; }
  .svc-closing-form-input { padding: 0.8125rem 1rem; font-size: 0.875rem; }
  .svc-closing-form-submit { padding: 1rem 1.5rem; font-size: 1rem; }
  /* Stack testimonials on mobile (cancel the tablet horizontal scroll) */
  .svc-closing-testimonials {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 1rem;
    padding-bottom: 0;
  }
  .svc-closing-testimonial-card { flex: none; max-width: 100%; width: 100%; padding: 1.25rem; }
  .svc-closing-testimonial-quote { font-size: 0.875rem; }
  .svc-closing-testimonial-footer { flex-direction: column; align-items: flex-start; gap: 0.625rem; }
  /* Stack avatar above the name/role on small screens — keeps the
   * meta block readable without crowding the 64px avatar. */
  .svc-closing-testimonial-meta-row { flex-direction: column; align-items: flex-start; gap: 0.625rem; }
  .svc-closing-testimonial-avatar { width: 64px; height: 64px; }
  .svc-closing-stack-icon { width: 26px; height: 26px; min-width: 26px; font-size: 0.75rem; }
  .svc-closing-stack li { gap: 0.875rem; padding: 1rem 0; }
  .svc-closing-stack-title { font-size: 1rem; }
  .svc-closing-stack-desc { font-size: 0.9375rem; }
}

/* ── Agent Thank-You page ──────────────────────────────────────
 *
 * Bound to the page-templates/page-agent-thank-you.php template.
 * Sits on the same cream backdrop + dual radial halos as the agent
 * sections so the page feels like a continuation of the offer flow,
 * not a separate destination.
 *
 * Personalisation: spans with [data-personalise="email"] /
 * [data-personalise="plan_label"] are populated client-side by
 * agent-thank-you.js after a fetch to /wp-json/gildhart/v1/payment-intent.
 * Static fallback copy reads naturally if JS doesn't run.
 * ────────────────────────────────────────────────────────────── */
/* Hide the nav-spacer on the thank-you page so the cream backdrop
 * extends up under the fixed nav — same pattern as .single-service
 * and .home. Without this, the body's --cream-warm shows through
 * between the nav bottom and the section's --cream top, creating a
 * visible horizontal seam right under the menu. */
.page-template-page-agent-thank-you .nav-spacer,
.page-template-page-playbook-thank-you .nav-spacer { display: none; }

.svc-thank-you {
  background: var(--cream);
  /* Top padding compensates for the now-hidden nav-spacer using --nav-h
   * (set by nav.js). Bottom keeps generous breathing room. */
  padding: calc(5rem + var(--nav-h, 80px)) 2rem 7.5rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.svc-thank-you::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -180px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.svc-thank-you::after {
  content: '';
  position: absolute;
  bottom: -220px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.svc-thank-you-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
}

/* Confirmation hero — full-width 2-column "order confirmation" layout.
 *
 * The previous centred 880px treatment read as a small island in the
 * 1200px container. This version uses the full container width with a
 * 2-column grid (message on the left, order-summary receipt card on
 * the right) so the hero earns its space the same way the timeline
 * does. Below both columns sits a full-width status strip carrying
 * the "Deployment kicks off in 7 days" commitment.
 *
 * Mobile collapses to a single column (receipt card stacked under the
 * message) at 880px; the inline gold tick + eyebrow row stays inline
 * at every breakpoint. */
.svc-thank-you-hero {
  /* No max-width / no margin auto — span the full .svc-thank-you-inner
   * (1200px) so the hero matches the timeline's full-bleed feel. */
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0 0;
}
.svc-thank-you-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 3rem;
  align-items: center;
}

/* LEFT — confirmation message. Left-aligned, tighter rhythm than the
 * old centred stack so the eye flows top→bottom without each element
 * feeling isolated. */
.svc-thank-you-hero-message {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

/* Inline tick + eyebrow on a single row. Replaces the previous giant
 * centred 140px tick badge with a compact 56px gold disc that sits
 * inline next to the eyebrow pill — much tighter, more confident. */
.svc-thank-you-hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.25rem;
}
.svc-thank-you-hero-tick {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c89d3f 0%, var(--gildhart-gold) 50%, #e0c178 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 4px rgba(201, 164, 74, 0.10),
    0 8px 18px rgba(201, 164, 74, 0.28),
    0 4px 10px rgba(13, 26, 18, 0.12);
  position: relative;
  animation: svcThankYouTick 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.svc-thank-you-hero-tick::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  pointer-events: none;
}
.svc-thank-you-hero-tick svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 3px rgba(13, 26, 18, 0.20));
}
@keyframes svcThankYouTick {
  0%   { transform: scale(0.4) rotate(-12deg); opacity: 0; }
  60%  { transform: scale(1.06) rotate(2deg);  opacity: 1; }
  100% { transform: scale(1)    rotate(0);     opacity: 1; }
}

/* Hero eyebrow — same gold mono pill as before, now inline next to
 * the tick rather than stacked above the title. */
.svc-thank-you-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 164, 74, 0.40);
  border-radius: 999px;
  background: rgba(201, 164, 74, 0.06);
  white-space: nowrap;
}

/* Big left-aligned headline. clamp(3.25rem, 7vw, 5.25rem) carries real
 * typographic weight at desktop; downscales gracefully on tablet. */
.svc-thank-you-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3.25rem, 7vw, 5.25rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0.5rem 0 0.75rem;
  text-align: left;
}
.svc-thank-you-hero-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.1875rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}

/* Confirmation-email row. Mono uppercase label + bold navy value,
 * mirrors the receipt card's row treatment so the two halves of the
 * hero read as one cohesive design system. */
.svc-thank-you-hero-meta {
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.625rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}
.svc-thank-you-hero-meta-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
}
.svc-thank-you-hero-meta-value {
  color: var(--navy);
  font-weight: 700;
}

/* RIGHT — order-summary receipt card. White card matching the
 * timeline-card design language: 16px radius, hairline border, deep
 * shadow, gold accent strip down the left edge as a quiet brand
 * thread. */
.svc-thank-you-receipt {
  background: #ffffff;
  border: 1px solid rgba(13, 26, 18, 0.06);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  box-shadow:
    0 1px 0 rgba(13, 26, 18, 0.03),
    0 18px 40px rgba(13, 26, 18, 0.10),
    0 4px 12px rgba(13, 26, 18, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.svc-thank-you-receipt::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--gildhart-gold) 0%, rgba(201, 164, 74, 0.30) 100%);
}
.svc-thank-you-receipt-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(13, 26, 18, 0.08);
}
.svc-thank-you-receipt-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-thank-you-receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.svc-thank-you-receipt-row dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
  margin: 0;
}
.svc-thank-you-receipt-row dd {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  text-align: right;
}
/* Total paid — emphasised row. Larger value anchors the hero's "this
 * is what you paid" moment; small mono "incl. VAT" label sits below. */
.svc-thank-you-receipt-row--total {
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 26, 18, 0.08);
}
.svc-thank-you-receipt-row--total dd {
  font-size: 1.625rem;
  letter-spacing: -0.02em;
}
.svc-thank-you-receipt-vat {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.45);
  margin-top: 0.25rem;
}
.svc-thank-you-receipt-foot {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(13, 26, 18, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
}
.svc-thank-you-receipt-foot-icon {
  width: 14px;
  height: 14px;
  color: var(--gildhart-gold);
  flex-shrink: 0;
}

/* BELOW BOTH COLUMNS — full-width status strip. Replaces the squeezed
 * centred "Deployment kicks off in 7 days" pill with a proper
 * full-bleed gold-tinted strip and a pulsing gold dot. */
.svc-thank-you-hero-status {
  margin: 1rem 0 0;
  padding: 1.125rem 1.75rem;
  background: linear-gradient(90deg, rgba(201, 164, 74, 0.10) 0%, rgba(201, 164, 74, 0.18) 50%, rgba(201, 164, 74, 0.10) 100%);
  border: 1px solid rgba(201, 164, 74, 0.32);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
}
.svc-thank-you-hero-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gildhart-gold);
  box-shadow: 0 0 0 4px rgba(201, 164, 74, 0.20);
  flex-shrink: 0;
  animation: svcThankYouStatusPulse 2s ease-in-out infinite;
}
@keyframes svcThankYouStatusPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 164, 74, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(201, 164, 74, 0.06); }
}

/* Welcome video — full-width container, prominent gold eyebrow with
 * matching hairline underline (mirrors the section-eyebrow pattern
 * used across the agent page), 16:9 oEmbed frame with bigger shadow,
 * caption styled in mono uppercase to feel like part of the design
 * system rather than a footnote. */
.svc-thank-you-video {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.svc-thank-you-video-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a7a2a;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(154, 122, 42, 0.45);
  margin: 0 auto;
  display: inline-block;
}
.svc-thank-you-video-frame {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy);
  box-shadow:
    0 32px 80px rgba(13, 26, 18, 0.22),
    0 12px 32px rgba(13, 26, 18, 0.12),
    0 0 0 1px rgba(13, 26, 18, 0.06);
}
.svc-thank-you-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.svc-thank-you-video-caption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
  margin: 0;
  font-style: normal;
}

/* Section eyebrow shared by Timeline + While You Wait — bigger, matches
 * the prominence of section eyebrows on the agent page (Why This Exists
 * intro, Track Record stat strip header, etc). */
.svc-thank-you-section-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a7a2a;
  margin-bottom: 2rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(154, 122, 42, 0.45);
  text-align: center;
}

/* Timeline — three step cards in a horizontal grid. Each card has a
 * numbered badge in the top-left, mono uppercase label, bold title, and
 * body copy. Mirrors the Intelligence Engine card pattern so the
 * thank-you page reads as part of the same design system. Top of each
 * card has a small gold dot indicator pinned to the top edge. */
.svc-thank-you-timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  counter-reset: tl-step;
}
.svc-thank-you-timeline-item {
  position: relative;
  padding: 2.25rem 1.875rem 2rem;
  background: white;
  border: 1px solid rgba(13, 26, 18, 0.06);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(13, 26, 18, 0.06), 0 1px 3px rgba(13, 26, 18, 0.04);
  counter-increment: tl-step;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.svc-thank-you-timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(13, 26, 18, 0.10), 0 0 0 1px rgba(201, 164, 74, 0.30);
}
/* Step number badge — gold mono uppercase number in the top-right. */
.svc-thank-you-timeline-item::before {
  content: counter(tl-step, decimal-leading-zero);
  position: absolute;
  top: 1.125rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gildhart-gold);
}
/* Top-pinned gold dot indicator. */
.svc-thank-you-timeline-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.875rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gildhart-gold);
  box-shadow: 0 0 0 3px white, 0 0 0 4.5px rgba(201, 164, 74, 0.30);
  transform: translateY(-6px);
}
.svc-thank-you-timeline-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
  display: block;
  margin-bottom: 0.625rem;
}
.svc-thank-you-timeline-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.svc-thank-you-timeline-body {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* While You Wait — wide editorial split. Eyebrow + intro live on the
 * left at 5/12 of the width; the action list takes the right 7/12 with
 * generous bullet styling. White card backdrop with brand shadow.
 * Mirrors the Why This Exists / Intelligence Engine wide layouts. */
.svc-thank-you-wait {
  background: white;
  border: 1px solid rgba(13, 26, 18, 0.06);
  border-radius: 22px;
  padding: 3rem 3.5rem;
  box-shadow: 0 12px 40px rgba(13, 26, 18, 0.06), 0 2px 6px rgba(13, 26, 18, 0.04);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3.5rem;
  align-items: start;
}
.svc-thank-you-wait .svc-thank-you-section-eyebrow {
  text-align: left;
  margin-bottom: 1rem;
  display: inline-block;
}
.svc-thank-you-wait-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.svc-thank-you-wait-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.svc-thank-you-wait-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.svc-thank-you-wait-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gildhart-gold);
  box-shadow: 0 0 0 3px white, 0 0 0 4.5px rgba(201, 164, 74, 0.25);
}

/* Reassurance — premium pull-quote with a giant gold opener mark
 * (matching the Track Record + Testimonial sections), bumped weight
 * and size, hairline gold-fade divider above the attribution. */
.svc-thank-you-reassure {
  position: relative;
  text-align: left;
  padding: 0 1rem 0 4.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.svc-thank-you-reassure::before {
  content: '\201C'; /* left double quotation mark */
  position: absolute;
  top: -2.25rem;
  left: 0.5rem;
  font-family: 'Georgia', serif;
  font-size: 6rem;
  font-weight: 800;
  color: var(--gildhart-gold);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.85;
}
.svc-thank-you-reassure-quote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1875rem, 1.7vw, 1.375rem);
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
}
.svc-thank-you-reassure-attr {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
  margin: 0;
  padding-top: 1rem;
  position: relative;
}
.svc-thank-you-reassure-attr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gildhart-gold), transparent);
}

/* Founder note — smaller, text-only signoff. */
.svc-thank-you-founder {
  text-align: center;
  padding: 2rem 1rem 0;
  border-top: 1px solid rgba(13, 26, 18, 0.08);
}
.svc-thank-you-founder-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 0.875rem;
}
.svc-thank-you-founder-body {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
/* Optional founder photo — sits ABOVE the signoff (not beside it),
 * generously sized with a soft gold ambient ring + drop shadow so
 * the headshot reads with real presence on the page. */
.svc-thank-you-founder-photo-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.svc-thank-you-founder-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 25%;
  border: 3px solid var(--gildhart-gold);
  box-shadow:
    0 0 0 6px rgba(201, 164, 74, 0.08),
    0 12px 32px rgba(13, 26, 18, 0.18),
    0 4px 12px rgba(13, 26, 18, 0.08);
}
.svc-thank-you-founder-signoff {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  margin: 0;
  line-height: 1.55;
}
.svc-thank-you-founder-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
  font-style: normal;
}

/* Tablet — collapse the 2-col hero grid to a single column (receipt
 * card stacks under the message), and the 3-column timeline + wait
 * splits to single columns. */
@media (max-width: 960px) {
  .svc-thank-you-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .svc-thank-you-receipt {
    padding: 1.75rem 1.75rem;
  }
  .svc-thank-you-timeline-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .svc-thank-you-wait {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.25rem 2rem;
  }
  .svc-thank-you-wait .svc-thank-you-section-eyebrow { text-align: center; display: block; }
  .svc-thank-you-video-frame { max-width: 100%; }
}
@media (max-width: 700px) {
  .svc-thank-you {
    padding: calc(3rem + var(--nav-h, 80px)) 1.5rem 5.5rem;
  }
  .svc-thank-you-inner { gap: 3.5rem; }
  .svc-thank-you-hero { gap: 1.5rem; }
  .svc-thank-you-hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .svc-thank-you-hero-tick { width: 48px; height: 48px; flex-basis: 48px; }
  .svc-thank-you-hero-tick svg { width: 22px; height: 22px; }
  .svc-thank-you-hero-eyebrow { font-size: 0.70rem; letter-spacing: 0.22em; padding: 0.4rem 0.8rem; }
  .svc-thank-you-hero-lead { font-size: 1.0625rem; }
  .svc-thank-you-receipt-row--total dd { font-size: 1.375rem; }
  .svc-thank-you-hero-status { font-size: 0.75rem; padding: 0.875rem 1.25rem; letter-spacing: 0.18em; }
  .svc-thank-you-founder-photo { width: 120px; height: 120px; }
  .svc-thank-you-reassure {
    padding: 0 1rem 0 3rem;
  }
  .svc-thank-you-reassure::before {
    font-size: 4.5rem;
    top: -1.5rem;
    left: 0.25rem;
  }
  .svc-thank-you-upsell { padding: 4rem 1.25rem 5rem; }
  .svc-thank-you-upsell-stack { gap: 2.5rem; }
  /* Break the image out of the section's 1.25rem horizontal padding
   * so it goes edge-to-edge on phones — every pixel of width helps
   * when the source has dense detail (multiple chat cards). */
  .svc-thank-you-upsell-media {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
    max-width: none;
  }
  .svc-thank-you-upsell-image { border-radius: 0; }
  .svc-thank-you-upsell-headline { font-size: clamp(2rem, 8vw, 2.75rem); }
  .svc-thank-you-upsell-subhead { font-size: 1.0625rem; }
  .svc-thank-you-upsell-proof-body { font-size: 1rem; }
  .svc-thank-you-upsell-proof-emphasis { font-size: 1.0625rem; }
  .svc-thank-you-upsell-cta { font-size: 0.9375rem; padding: 1rem 1.625rem; }
  .svc-thank-you-upsell-cta-wrap--centered { margin-top: 3rem; padding: 2.25rem 1.5rem; }
}

/* ─────────────────────────────────────────────────────────────────
 * Playbook Upsell — stacked cross-sell above the footer.
 *
 * Lives as its own <section> (outside .svc-thank-you-inner) so it
 * carries a subtle cream→warm-cream gradient — signals a shift in
 * intent ("here's what's next") without breaking the page's feel.
 * Top hairline border + a tiny gold marker reinforce the break.
 *
 * Vertical stack inside a 1200px container:
 *   TOP    — full-width proof image (WhatsApp screenshot / playbook
 *            shot), 16px radius + halo. Acts as the visual anchor.
 *   BOTTOM — copy column centred to a comfortable reading width
 *            (~760px): eyebrow / headline / subhead / body / proof
 *            label + paragraph + italic takeaway / gold CTA + footnote
 * ─────────────────────────────────────────────────────────────────── */
.svc-thank-you-upsell {
  position: relative;
  padding: 6rem 2rem 7rem;
  background: linear-gradient(180deg, var(--cream, #f5f3ef) 0%, #efece5 100%);
  border-top: 1px solid rgba(13, 26, 18, 0.06);
  overflow: hidden;
}
.svc-thank-you-upsell::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gildhart-gold);
  box-shadow: 0 0 0 4px var(--cream, #f5f3ef);
}
.svc-thank-you-upsell-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.svc-thank-you-upsell-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

/* Copy column. Centred under the image at a comfortable reading
 * width — keeps line length sane on wide monitors while the
 * section above goes full-bleed for visual impact. */
.svc-thank-you-upsell-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  max-width: 760px;
}
.svc-thank-you-upsell-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 164, 74, 0.40);
  border-radius: 999px;
  background: rgba(201, 164, 74, 0.06);
}
.svc-thank-you-upsell-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.svc-thank-you-upsell-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}
.svc-thank-you-upsell-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* Proof block — supporting prose under the body. Sits inside the left
 * copy column, separated by a hairline above and a gold mono label. */
.svc-thank-you-upsell-proof {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 26, 18, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-self: stretch;
}
.svc-thank-you-upsell-proof-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
}
.svc-thank-you-upsell-proof-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: var(--navy);
  line-height: 1.65;
  margin: 0;
}
.svc-thank-you-upsell-proof-emphasis {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.45;
  color: #b88a30;
  margin: 0;
}

/* CTA wrap — left-aligned under the proof block. */
.svc-thank-you-upsell-cta-wrap {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
/* Centred variant — used when the CTA sits in its own container below
 * the full-width Live Clients carousel (Playbook thank-you upsell),
 * rather than left-aligned inside the copy column. Rendered as a navy
 * panel so the final "Add the Agent" decision reads as a deliberate,
 * contained moment against the cream section. */
.svc-thank-you-upsell-cta-wrap--centered {
  align-items: center;
  text-align: center;
  margin: 4.5rem auto 0;
  max-width: 680px;
  padding: 3rem 2rem;
  border-radius: 20px;
  background: linear-gradient(165deg, #0f172a 0%, #16223b 100%);
  border: 1px solid rgba(201, 164, 74, 0.20);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.28),
    0 8px 20px rgba(15, 23, 42, 0.16);
}
/* Secondary link + footnote sit on navy here, so they need light ink
 * (their base colours are dark for the Agent page's cream CTA). */
.svc-thank-you-upsell-cta-wrap--centered .svc-thank-you-upsell-secondary {
  color: rgba(245, 243, 239, 0.75);
}
.svc-thank-you-upsell-cta-wrap--centered .svc-thank-you-upsell-secondary:hover {
  color: var(--gildhart-gold);
}
.svc-thank-you-upsell-cta-wrap--centered .svc-thank-you-upsell-footnote {
  color: rgba(245, 243, 239, 0.72);
  font-size: 0.74rem;
}
.svc-thank-you-upsell-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.125rem 2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #c89d3f 0%, var(--gildhart-gold) 50%, #d4ad55 100%);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid rgba(201, 164, 74, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 10px 22px rgba(201, 164, 74, 0.32),
    0 4px 10px rgba(13, 26, 18, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.svc-thank-you-upsell-cta:hover,
.svc-thank-you-upsell-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.30) inset,
    0 16px 30px rgba(201, 164, 74, 0.40),
    0 6px 14px rgba(13, 26, 18, 0.12);
  background: linear-gradient(135deg, #b88a30 0%, var(--gildhart-gold) 50%, #c89d3f 100%);
}
/* Secondary "Learn more" link — muted, underlined, no button. Only the
 * Playbook→Agent upsell uses this (the Agent→Playbook upsell has no
 * secondary link); harmless on both since it only renders when present. */
.svc-thank-you-upsell-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(13, 26, 18, 0.6);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}
.svc-thank-you-upsell-secondary:hover { color: var(--gildhart-green); }
.svc-thank-you-upsell-footnote {
  font-family: var(--font-mono);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(13, 26, 18, 0.55);
  margin: 0;
}

/* Proof image — sits at the top of the stack as the visual anchor.
 * 16px radius + deep shadow + soft gold halo behind it; mirrors the
 * receipt card / founder photo language so the upsell reads as part
 * of the page's design system. Width capped slightly under the
 * container so the halo can breathe. */
.svc-thank-you-upsell-media {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-thank-you-upsell-media::before {
  content: '';
  position: absolute;
  inset: 4% 4% 4% 4%;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(201, 164, 74, 0.22) 0%, rgba(201, 164, 74, 0) 70%);
  z-index: 0;
  filter: blur(28px);
}
.svc-thank-you-upsell-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(13, 26, 18, 0.04),
    0 24px 48px rgba(13, 26, 18, 0.16),
    0 8px 18px rgba(13, 26, 18, 0.08);
}
/* The Playbook thank-you upsell pulls the Agent hero (a larger,
 * full-frame asset than the Agent upsell's Playbook shot), so cap its
 * container tighter here — it reads as a contained card rather than a
 * full-bleed hero. Scoped to the template so the Agent upsell keeps
 * its wider anchor. */
.page-template-page-playbook-thank-you .svc-thank-you-upsell-media {
  max-width: 640px;
}
/* Give the proof emphasis line room to breathe before the full-width
 * Live Clients carousel that follows, so it stops crowding the section
 * below. Scoped to the Playbook page (the Agent upsell has no carousel
 * between copy and CTA). */
.page-template-page-playbook-thank-you .svc-thank-you-upsell-stack {
  padding-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════════
 * WebPro Elite — Intro / Positioning
 *
 * Two-column editorial block on warm cream: copy left, three client
 * proof cards right. Forest-green + gold radial halos wash the cream.
 * Reveal on scroll via .is-visible (wired in service.js).
 * ═══════════════════════════════════════════════════════════════════ */
.svc-wpe-intro {
  position: relative;
  background: var(--cream, #f5f3ef);
  padding: 7rem 2rem 6rem;
  overflow: hidden;
}
.svc-wpe-intro::before,
.svc-wpe-intro::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.svc-wpe-intro::before {
  top: -180px;
  left: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(30, 61, 47, 0.06) 0%, transparent 70%);
}
.svc-wpe-intro::after {
  bottom: -200px;
  right: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.07) 0%, transparent 70%);
}
.svc-wpe-intro-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── Left copy column ── */
.svc-wpe-intro-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-wpe-intro-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.svc-wpe-intro-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0 0 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
/* Interrupt statement — sits between body paragraphs and disrupts the
 * flow. Bigger, bolder, dark navy, generous breathing room each side
 * so it lands as a deliberate beat rather than another paragraph. */
.svc-wpe-intro-interrupt {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.0625rem, 1.4vw, 1.15rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
/* Closing — three stacked one-line "blows". Each line is its own block;
 * 8px gap keeps them tight and percussive, 2.5rem above lifts them
 * clear of the second body paragraph. */
.svc-wpe-intro-closing {
  margin: 2.5rem 0 2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}
.svc-wpe-intro-closing-line {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.015em;
  margin: 0;
}
.svc-wpe-intro-closing-line + .svc-wpe-intro-closing-line {
  margin-top: 8px;
}
.svc-wpe-intro-cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}
.svc-wpe-intro-eyebrow.is-visible,
.svc-wpe-intro-headline.is-visible,
.svc-wpe-intro-body.is-visible,
.svc-wpe-intro-interrupt.is-visible,
.svc-wpe-intro-closing.is-visible,
.svc-wpe-intro-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Right proof-card column ── */
.svc-wpe-intro-proof {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.svc-wpe-intro-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-left: 4px solid var(--gildhart-gold);
  box-shadow: 0 4px 20px rgba(13, 26, 18, 0.05);
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.svc-wpe-intro-card:nth-child(1) { transition-delay: 0.15s; }
.svc-wpe-intro-card:nth-child(2) { transition-delay: 0.3s; }
.svc-wpe-intro-card:nth-child(3) { transition-delay: 0.45s; }
.svc-wpe-intro-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.svc-wpe-intro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(13, 26, 18, 0.09);
}
/* Oversized gold stat figure — sits above the client name and is the
 * card's dominant visual element. Tight bottom margin so it kisses the
 * uppercase client line below it. */
.svc-wpe-intro-card-figure {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gildhart-gold);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 0.4rem;
}
.svc-wpe-intro-card-client {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 0.5rem;
}
.svc-wpe-intro-card-stat {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
.svc-wpe-intro-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ── Featured anchor card ──
 * Card 2 carries the page. Forest-green ground + 2px gold border +
 * extra padding + a gold "Flagship Result" badge. Stat figure is
 * bumped one notch larger; client/headline/body colours flip to gold
 * + white + soft cream. Hover-lift behaviour is preserved alongside
 * the standard cards. */
.svc-wpe-intro-card--featured {
  position: relative;
  background: var(--gildhart-green);
  border: 2px solid var(--gildhart-gold);
  border-left: 2px solid var(--gildhart-gold);
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(201, 164, 74, 0.20);
}
.svc-wpe-intro-card--featured:hover {
  box-shadow: 0 14px 44px rgba(201, 164, 74, 0.28);
}
.svc-wpe-intro-card--featured .svc-wpe-intro-card-figure {
  font-size: clamp(2.75rem, 5.5vw, 3.5rem);
  margin-top: 0.5rem;
}
.svc-wpe-intro-card--featured .svc-wpe-intro-card-stat {
  color: #ffffff;
  font-size: clamp(1.375rem, 2.2vw, 1.5rem);
}
.svc-wpe-intro-card--featured .svc-wpe-intro-card-desc {
  color: var(--gildhart-cream, #F0E6C8);
}
.svc-wpe-intro-card-flagship {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-block;
  background: var(--gildhart-gold);
  color: var(--gildhart-green);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

@media (max-width: 960px) {
  .svc-wpe-intro {
    padding: 5rem 1.5rem 4rem;
  }
  .svc-wpe-intro-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
 * WebPro Elite — Portfolio Showcase
 *
 * Centred header + alternating browser-chrome cards. Reveal via
 * .is-visible (wired in service.js).
 * ═══════════════════════════════════════════════════════════════════ */
.svc-wpe-portfolio {
  background: var(--cream, #f5f3ef);
  padding: 7rem 2rem 6rem;
  position: relative;
}
.svc-wpe-portfolio-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.svc-wpe-portfolio-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}
.svc-wpe-portfolio-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  display: block;
  margin-bottom: 1.25rem;
}
.svc-wpe-portfolio-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
}
.svc-wpe-portfolio-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 1.25rem 0 0;
}

/* ── Card ── */
.svc-wpe-portfolio-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-wpe-portfolio-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.svc-wpe-portfolio-card:last-child { margin-bottom: 0; }
.svc-wpe-portfolio-card--reversed { grid-template-columns: 1fr 1.15fr; }
.svc-wpe-portfolio-card--reversed .svc-wpe-portfolio-preview { order: 2; }
.svc-wpe-portfolio-card--reversed .svc-wpe-portfolio-info { order: 1; }

/* ── Browser chrome ── */
.svc-wpe-preview-browser {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(13, 26, 18, 0.13), 0 0 0 1px rgba(13, 26, 18, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.svc-wpe-portfolio-card:hover .svc-wpe-preview-browser {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 20px 60px rgba(13, 26, 18, 0.18), 0 0 0 1px rgba(13, 26, 18, 0.06);
}
.svc-wpe-preview-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f3f4f6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.svc-wpe-preview-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-wpe-preview-dot--red   { background: #ff5f56; }
.svc-wpe-preview-dot--amber { background: #ffbd2e; }
.svc-wpe-preview-dot--green { background: #27c93f; }
.svc-wpe-preview-url {
  flex: 1;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  color: var(--gray-600);
  font-family: var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.svc-wpe-preview-shot {
  width: 100%;
  height: auto;
  display: block;
}
.svc-wpe-preview-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(201, 164, 74, 0.08) 0%, rgba(30, 61, 47, 0.06) 100%),
    #fbf9f4;
}
.svc-wpe-preview-placeholder span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(30, 61, 47, 0.45);
}

/* ── Info side ── */
.svc-wpe-portfolio-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gildhart-green);
  display: block;
  margin-bottom: 0.875rem;
}
.svc-wpe-portfolio-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.svc-wpe-portfolio-outcome {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0 0 1.75rem;
}
.svc-wpe-portfolio-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.svc-wpe-portfolio-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.45;
}
.svc-wpe-portfolio-highlight-icon {
  color: var(--gildhart-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.075em;
}
.svc-wpe-portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gildhart-green);
  text-decoration: none;
  border-bottom: 2px solid var(--gildhart-gold);
  padding-bottom: 2px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.svc-wpe-portfolio-link:hover {
  color: var(--gildhart-gold);
  gap: 0.625rem;
}

@media (max-width: 960px) {
  .svc-wpe-portfolio { padding: 5rem 1.5rem 4rem; }
  .svc-wpe-portfolio-header { margin-bottom: 3.5rem; }
  .svc-wpe-portfolio-card,
  .svc-wpe-portfolio-card--reversed {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  .svc-wpe-portfolio-card--reversed .svc-wpe-portfolio-preview,
  .svc-wpe-portfolio-card--reversed .svc-wpe-portfolio-info {
    order: unset;
  }
}

/* ═══════════════════════════════════════════════════════════════════
 * WebPro Elite — Package + Outcome Momentum Timeline
 *
 * Forest-green section, two gold-bordered columns, then a cinematic
 * horizontal timeline whose line draws + milestones reveal once the
 * container gains .is-active (wired in service.js).
 * ═══════════════════════════════════════════════════════════════════ */
.svc-wpe-package {
  background: var(--gildhart-green);
  padding: 8rem 2rem 7rem;
  position: relative;
  overflow: hidden;
}
.svc-wpe-package::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.svc-wpe-package-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.svc-wpe-package-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 5rem;
}
.svc-wpe-package-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  display: block;
  margin-bottom: 1.25rem;
}
.svc-wpe-package-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #faf5ee;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
}
.svc-wpe-package-headline span { display: block; }
.svc-wpe-package-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: rgba(245, 236, 215, 0.7);
  line-height: 1.75;
  margin: 1.5rem 0 0;
}
.svc-wpe-package-subhead em {
  font-style: normal;
  color: #faf5ee;
  font-weight: 600;
}

/* ── Columns ── */
.svc-wpe-package-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.svc-wpe-package-col {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 3rem 2.75rem;
  border: 1.5px solid var(--gildhart-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
  position: relative;
  overflow: hidden;
}
.svc-wpe-package-col--dark { background: rgba(255, 255, 255, 0.11); }
/* Featured (premium) column — heavier 2px gold border, gold glow, a
 * faint gold wash to lift it off Card 1, and 16px more top/bottom
 * padding so it reads as the differentiator without altering layout. */
.svc-wpe-package-col--featured {
  border-width: 2px;
  padding: calc(3rem + 16px) 2.75rem;
  background: rgba(201, 164, 74, 0.04);
  box-shadow: 0 12px 40px rgba(201, 164, 74, 0.18);
}
.svc-wpe-package-col:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), 0 0 0 2px rgba(201, 164, 74, 0.5);
}
/* Numbered label is now a giant gold watermark behind the card title,
 * pinned to the top-right of the card interior. The card's overflow:
 * hidden keeps it from spilling past the rounded corners; content
 * below carries z-index: 1 to stay above it. Scales down on smaller
 * cards so it never dominates. */
.svc-wpe-package-col-num {
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gildhart-gold);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.svc-wpe-package-col-header,
.svc-wpe-package-list {
  position: relative;
  z-index: 1;
}
.svc-wpe-package-col-header {
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
}
/* Short gold accent rule between the intro paragraph and the bullet
 * list — replaces the old faint full-width divider, which read as a
 * muddy hairline at 0.25 opacity. */
.svc-wpe-package-col-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: var(--gildhart-gold);
}
.svc-wpe-package-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: #ffffff;
}
.svc-wpe-package-col-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #f5ecd7;
  line-height: 1.65;
  margin: 0;
}
.svc-wpe-package-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.svc-wpe-package-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #f5ecd7;
  line-height: 1.55;
}
.svc-wpe-pkg-check {
  color: var(--gildhart-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15em;
}

/* ── Outcome Momentum Timeline ── */
.svc-wpe-delivery {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 4rem 4rem 3.5rem;
  border: 1px solid rgba(201, 164, 74, 0.2);
  box-shadow: inset 0 1px 0 rgba(201, 164, 74, 0.06);
  position: relative;
  overflow: hidden;
}
.svc-wpe-delivery-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 3.5rem;
  position: relative;
  z-index: 1;
}
.svc-wpe-timeline {
  position: relative;
  display: flex;
  align-items: stretch;
  z-index: 1;
}
.svc-wpe-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: rgba(201, 164, 74, 0.5);
  z-index: 0;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-wpe-delivery.is-active .svc-wpe-timeline::before { transform: scaleX(1); }
.svc-wpe-milestone {
  flex: 1;
  position: relative;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-wpe-milestone:first-child { padding-left: 0; }
.svc-wpe-milestone:last-child { padding-right: 0; }
.svc-wpe-delivery.is-active .svc-wpe-milestone:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.svc-wpe-delivery.is-active .svc-wpe-milestone:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.svc-wpe-delivery.is-active .svc-wpe-milestone:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }
.svc-wpe-delivery.is-active .svc-wpe-milestone:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 1.2s; }
.svc-wpe-milestone-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gildhart-gold);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-bottom: 1.75rem;
  opacity: 1;
  transition: all 0.4s ease;
}
.svc-wpe-milestone:hover .svc-wpe-milestone-dot {
  opacity: 1;
  box-shadow: 0 0 16px rgba(201, 164, 74, 0.5);
  transform: scale(1.3);
}
.svc-wpe-milestone--destination .svc-wpe-milestone-dot {
  width: 14px;
  height: 14px;
  opacity: 1;
  box-shadow: 0 0 0 5px rgba(201, 164, 74, 0.12), 0 0 24px rgba(201, 164, 74, 0.3);
  animation: svcWpeDestPulse 2.5s ease-in-out infinite 2s;
}
@keyframes svcWpeDestPulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(201, 164, 74, 0.12), 0 0 24px rgba(201, 164, 74, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(201, 164, 74, 0.18), 0 0 36px rgba(201, 164, 74, 0.45); }
}
.svc-wpe-milestone-month {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 0.875rem;
  white-space: nowrap;
}
.svc-wpe-milestone-body {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #f5ecd7;
  line-height: 1.8;
  max-width: 260px;
  margin: 0;
}
.svc-wpe-milestone--destination .svc-wpe-milestone-month {
  font-size: 0.78rem;
}
.svc-wpe-milestone--destination .svc-wpe-milestone-body {
  color: var(--gildhart-gold);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 290px;
}

@media (max-width: 960px) {
  .svc-wpe-package { padding: 5rem 1.5rem 4rem; }
  .svc-wpe-package-cols { grid-template-columns: 1fr; }
  .svc-wpe-package-col { padding: 2.25rem 1.75rem; }
  .svc-wpe-delivery { padding: 2.5rem 1.75rem 2rem; }
  .svc-wpe-delivery-label { margin-bottom: 2rem; }

  /* Mobile: drop the timeline metaphor entirely. The connecting line
   * and the dot markers are hidden; each milestone becomes a full-
   * width stacked card with a gold left accent. Easier to scan than
   * a vertical line + small dots at this width. */
  .svc-wpe-timeline { flex-direction: column; gap: 1rem; }
  .svc-wpe-timeline::before { display: none; }
  .svc-wpe-milestone-dot { display: none; }

  .svc-wpe-milestone {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(201, 164, 74, 0.04);
    border-left: 3px solid rgba(201, 164, 74, 0.5);
    border-radius: 8px;
  }
  .svc-wpe-milestone-month {
    font-size: 0.6875rem;
    margin: 0 0 0.75rem;
  }
  .svc-wpe-milestone-body,
  .svc-wpe-milestone--destination .svc-wpe-milestone-body {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
    margin: 0;
  }

  /* Destination card carries the same gold-on-dark visual weight as
   * its desktop equivalent — full-opacity gold accent, heavier
   * padding, larger gold body copy. The pulse animation on the dot
   * is moot here (dots are hidden) so the card itself is the signal. */
  .svc-wpe-milestone--destination {
    padding: 2rem;
    border-left-color: var(--gildhart-gold);
  }
  .svc-wpe-milestone--destination .svc-wpe-milestone-body {
    color: var(--gildhart-gold);
    font-weight: 700;
    font-size: 1.125rem;
  }
}

/* ── WPE § Closing CTA + Waitlist Form ──────────────────────── */

.svc-wpe-closing {
  background: var(--gildhart-green);
  padding: 6rem 2rem;
  overflow: hidden;
}
.svc-wpe-closing-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 5rem;
  align-items: start;
}

/* — Left column — */
.svc-wpe-closing-eyebrow {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.svc-wpe-closing.is-visible .svc-wpe-closing-eyebrow { opacity: 1; transform: none; }

.svc-wpe-closing-headline {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FFFDF8;
  margin: 0 0 2rem;
}
.svc-wpe-closing-headline span {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.svc-wpe-closing-headline span:nth-child(1) { transition-delay: 0.1s; }
.svc-wpe-closing-headline span:nth-child(2) { transition-delay: 0.22s; }
.svc-wpe-closing.is-visible .svc-wpe-closing-headline span { opacity: 1; transform: none; }

.svc-wpe-closing-body {
  color: rgba(255, 253, 248, 0.75);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
  max-width: 520px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}
.svc-wpe-closing.is-visible .svc-wpe-closing-body { opacity: 1; transform: none; }

/* Pricing block */
.svc-wpe-closing-pricing {
  margin-top: 2.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 164, 74, 0.3);
  border-left: 3px solid var(--gildhart-gold);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease 0.3s, transform 0.55s ease 0.3s;
}
.svc-wpe-closing.is-visible .svc-wpe-closing-pricing { opacity: 1; transform: none; }

.svc-wpe-closing-pricing-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gildhart-gold);
  margin: 0 0 0.75rem;
}
.svc-wpe-closing-pricing-detail {
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

/* Trust list */
.svc-wpe-closing-trust {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-wpe-closing-trust li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255, 253, 248, 0.85);
  font-size: 0.9375rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.svc-wpe-closing-trust li:nth-child(1) { transition-delay: 0.35s; }
.svc-wpe-closing-trust li:nth-child(2) { transition-delay: 0.5s; }
.svc-wpe-closing-trust li:nth-child(3) { transition-delay: 0.65s; }
.svc-wpe-closing.is-visible .svc-wpe-closing-trust li { opacity: 1; transform: none; }

.svc-wpe-closing-trust-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(201, 164, 74, 0.15);
  border: 1px solid rgba(201, 164, 74, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gildhart-gold);
}

/* — Right column: form card — */
.svc-wpe-closing-right {
  position: sticky;
  top: calc(var(--nav-h, 80px) + 2rem);
}
.svc-wpe-closing-form-card {
  background: #FFFDF8;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}
.svc-wpe-closing.is-visible .svc-wpe-closing-form-card { opacity: 1; transform: none; }

.svc-wpe-closing-form-eyebrow {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gildhart-green);
  margin: 0 0 0.5rem;
}
.svc-wpe-closing-form-subhead {
  font-size: 0.9rem;
  color: rgba(13, 26, 18, 0.6);
  line-height: 1.6;
  margin: 0 0 1.75rem;
}

/* Form fields */
.svc-wpe-closing-form { display: flex; flex-direction: column; gap: 1rem; }
.svc-wpe-closing-form-group { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.svc-wpe-closing-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.svc-wpe-closing-form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gildhart-green);
  letter-spacing: 0.01em;
}
.svc-wpe-closing-form-input,
.svc-wpe-closing-form-select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(30, 61, 47, 0.18);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--gildhart-green);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}
.svc-wpe-closing-form-input::placeholder { color: rgba(30, 61, 47, 0.35); }
.svc-wpe-closing-form-input:focus,
.svc-wpe-closing-form-select:focus {
  outline: none;
  border-color: var(--gildhart-green);
  box-shadow: 0 0 0 3px rgba(30, 61, 47, 0.1);
}
.svc-wpe-closing-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231E3D2F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.svc-wpe-closing-form-select option[disabled] { color: rgba(30, 61, 47, 0.35); }

.svc-wpe-closing-form-error {
  font-size: 0.875rem;
  color: #c0392b;
  padding: 0.5rem 0.75rem;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 6px;
}
.svc-wpe-closing-form-submit {
  width: 100%;
  padding: 1rem 1.75rem;
  background: var(--gildhart-green);
  color: #FFFDF8;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  margin-top: 0.25rem;
  font-family: inherit;
}
.svc-wpe-closing-form-submit:hover {
  background: #0D1A12;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 26, 18, 0.3);
}
/* Submit loading state — dims the button + disables interaction
 * while the REST request is in flight. */
.svc-wpe-closing-form-submit.is-loading,
.svc-wpe-closing-form-submit:disabled {
  opacity: 0.6;
  cursor: progress;
  transform: none;
  box-shadow: none;
}
/* Per-field error highlight — applied by the JS when the REST
 * endpoint returns a 400 with a field-specific message map. */
.svc-wpe-closing-form-input--error,
.svc-wpe-closing-form-select--error {
  border-color: #c0392b !important;
  background: rgba(192, 57, 43, 0.04);
}
/* Honeypot — visually + screen-reader hidden, but still in the DOM
 * so spam bots fill it. Position off-screen rather than display:none
 * so headless browsers that ignore display:none still find it. */
.svc-wpe-closing-form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* Inline success state — replaces the form card content on a 200
 * response. Sits in the same white card so the page layout doesn't
 * jump, with a gold tick + confirmation copy. */
.svc-wpe-closing-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0.25rem;
  gap: 1rem;
}
.svc-wpe-closing-form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201, 164, 74, 0.12);
  color: var(--gildhart-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.svc-wpe-closing-form-success-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gildhart-green);
  margin: 0;
}
.svc-wpe-closing-form-success-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(13, 26, 18, 0.75);
  line-height: 1.6;
  margin: 0;
  max-width: 360px;
}
.svc-wpe-closing-form-note {
  font-size: 0.8125rem;
  color: rgba(13, 26, 18, 0.5);
  text-align: center;
  line-height: 1.5;
  margin: 0.25rem 0 0;
}

@media (max-width: 1100px) {
  .svc-wpe-closing-inner { grid-template-columns: 1fr; gap: 3rem; }
  .svc-wpe-closing-right { position: static; }
  .svc-wpe-closing-body { max-width: 100%; }
}
@media (max-width: 640px) {
  .svc-wpe-closing { padding: 4rem 1.5rem; }
  .svc-wpe-closing-form-card { padding: 1.75rem 1.5rem; }
  .svc-wpe-closing-form-row { grid-template-columns: 1fr; }
  .svc-wpe-closing-headline { font-size: clamp(1.75rem, 6vw, 2.5rem); }
}
