/* =========================================================================
   Valocity Apps — Homepage redesign (consolidated)
   All classes namespaced .vh-* . Reuses palette from tokens.css.
   Palette (Midnight Operator): navy #0A1A3F + electric lime #E8B400.
   ========================================================================= */

.vh {
  /* local tokens layered on top of tokens.css */
  --vh-section-y: 120px;
  --vh-card-radius: 16px;
  --vh-gap: var(--space-6);
  --vh-nav-h: 72px;
  color: var(--color-ink);
  font-family: var(--font-body);
  background: var(--color-surface-elev);
}

.vh *,
.vh *::before,
.vh *::after { box-sizing: border-box; }

.vh img { max-width: 100%; display: block; }
.vh a { color: inherit; }
.vh ul { margin: 0; padding: 0; list-style: none; }
.vh p { margin: 0; }
.vh h1, .vh h2, .vh h3, .vh h4 { margin: 0; }

/* ---------------------------------------------------------------- atoms */

.vh-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.vh-section { padding-block: var(--vh-section-y); }
.vh-section--surface { background: var(--color-surface); }
.vh-section--white   { background: var(--color-surface-elev); }

.vh-eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 16px;
}

.vh-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--color-ink);
}

/* mixed bold/italic heading — italic word stays inline */
.vh-em {
  font-style: italic;
  font-weight: 400;
  display: inline;
}

.vh-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--color-ink-soft);
  text-wrap: pretty;
}

.vh-head--center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.vh-head--center .vh-lead { margin-top: 16px; }

/* buttons */
.vh-btn {
  --btn-pad-y: 15px;
  --btn-pad-x: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms var(--ease-out-soft),
              box-shadow 220ms var(--ease-out-soft),
              background 220ms var(--ease-out-soft),
              color 220ms var(--ease-out-soft),
              border-color 220ms var(--ease-out-soft);
}
.vh-btn__arrow { transition: transform 220ms var(--ease-out-soft); }
.vh-btn:hover .vh-btn__arrow { transform: translateX(4px); }

.vh .vh-btn--accent {
  /* gold sheen (hi → accent) + a soft resting glow so the CTA has depth at rest */
  background: linear-gradient(180deg, var(--color-accent-hi), var(--color-accent));
  color: var(--color-primary);
  border-color: var(--color-accent);
  box-shadow: 0 8px 22px -12px rgba(232, 180, 0, 0.5);
}
.vh-btn--accent:hover {
  background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark));
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(232, 180, 0, 0.5);
}
.vh-btn--accent:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 5px 14px -10px rgba(232, 180, 0, 0.45);
}
.vh-btn--accent:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.vh-btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
  padding: 11px 20px;
  font-size: 14px;
}
.vh-btn--outline:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

/* text links with arrow */
.vh-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-ink);
  text-decoration: none;
  position: relative;
}
.vh-link::after {
  content: "";
  position: absolute;
  left: 0; right: 14px; bottom: -3px;
  height: 1.5px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease-out-soft);
}
.vh-link:hover::after { transform: scaleX(1); }
.vh-link__arrow { transition: transform 220ms var(--ease-out-soft); }
.vh-link:hover .vh-link__arrow { transform: translateX(3px); }
.vh-link-row { display: flex; margin-top: 32px; }
.vh-link-row--right { justify-content: flex-end; }

/* card base */
.vh-card {
  background: var(--color-surface-elev);
  border: 1px solid var(--color-border);
  border-radius: var(--vh-card-radius);
  box-shadow: 0 1px 2px rgba(15, 20, 25, 0.04);
  transition: transform 280ms var(--ease-out-soft),
              box-shadow 280ms var(--ease-out-soft),
              border-color 280ms var(--ease-out-soft);
}
.vh-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 18px 40px rgba(10, 26, 63, 0.10);
}

/* placeholder system */
.vh-ph {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: rgba(248, 249, 251, 0.92);
  position: relative;
}
.vh-ph--img { aspect-ratio: 4 / 3; width: 100%; }
.vh-ph--img::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 80% 10%, rgba(232,180,0,0.18), transparent 55%),
    radial-gradient(80% 80% at 10% 90%, rgba(255,255,255,0.06), transparent 60%);
}
.vh-ph--logo {
  background: var(--color-surface);
  color: var(--color-ink-soft);
  border: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: 8px;
}
.vh-ph--avatar {
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-accent);
}
.vh-ph--badge {
  width: 44px; height: 48px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--color-primary);
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
}

/* =================================================================== NAV */
.vh-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--color-primary);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.vh-nav.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 12px rgba(4, 13, 46, 0.45);
}
.vh-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--vh-nav-h);
}
.vh .vh-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.vh-nav__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.vh-nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.vh .vh-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 180ms ease;
}
.vh .vh-nav__link:hover { color: #fff; }
.vh-nav__cta { margin-left: 6px; }
.vh-nav__toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.vh-nav__toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: #fff;
  transition: transform 200ms ease, opacity 200ms ease;
}
.vh-nav__toggle span:nth-child(1) { top: 14px; }
.vh-nav__toggle span:nth-child(2) { top: 20px; }
.vh-nav__toggle span:nth-child(3) { top: 26px; }
.vh-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.vh-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vh-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.vh-nav__panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--color-primary);
  padding: 16px var(--container-pad) 24px;
}
.vh-nav__panel.is-open { display: block; }
.vh-nav__panel .vh-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.vh-nav__panel .vh-btn { margin-top: 18px; width: 100%; justify-content: center; }

/* ================================================================== HERO */
.vh-hero {
  padding-top: 80px;
  padding-bottom: 0;
  overflow-x: clip;
}
.vh-hero__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;   /* give the big phone the larger share + shift it right */
  gap: var(--space-7);
  align-items: center;
}
.vh-hero__copy { max-width: 900px; }

/* Headline — Anybody, with a #E8B400 highlighter that hugs each wrapped line.
   Hero sits on the dark cinematic video stage (see home-hero-video.css), so copy is white. */
.vh-hero__title {
  font-family: "Anybody", var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;                     /* light over the dark video */
  margin-bottom: 28px;
}
.vh-hero__mark,
.vh-mark {           /* reusable section-heading highlighter — identical to the hero marker */
  background: var(--color-accent);     /* #E8B400 */
  color: var(--color-primary);         /* navy text on the marker — AAA contrast */
  font-weight: 900;
  padding: 0.04em 0.14em;
  border-radius: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone; /* highlight wraps per line */
}
.vh-hero__title .vh-em {       /* italic continuation flows inline (was display:block) */
  display: inline;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
}

/* Paragraph with bold lead-in */
.vh-hero__lead {
  margin-bottom: 28px;
  max-width: 54ch;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);   /* light over the dark video */
}
.vh-hero__lead-em { font-weight: 700; color: #fff; }

.vh-hero__cta { border-radius: 12px; padding: 18px 30px; }
.vh-hero__microcopy {
  margin-top: 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
}

/* ---- Right column: one big floating product shot ---- */
.vh-hero__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
}
/* warm gold glow blooming behind the phone — the key element separating the
   dark cutout from the dark video. Scales with the (now larger) column. */
.vh-hero__media::before {
  content: "";
  position: absolute;
  width: 100%; aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(232,180,0,0.26), rgba(232,180,0,0.09) 40%, transparent 66%);
  z-index: 0;
  filter: blur(2px);
}

.vh-hero__phonewrap {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  place-items: center;
  animation: vh-hero-float 7.5s ease-in-out infinite;
}
.vh-hero__phone {
  width: 100%;
  max-width: 800px;        /* much larger hero product shot */
  height: auto;
  object-fit: contain;
  /* grounded soft shadow that follows the transparent silhouette */
  filter: drop-shadow(0 32px 54px rgba(0, 0, 0, 0.42));
  /* nudge slightly toward the open right side (%-based → overflow-safe) */
  transform: translateX(4%) rotate(-1.5deg);
}

@keyframes vh-hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* award strip — auto-scrolling marquee */
.vh-awards {
  margin-top: 64px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  padding-block: 32px;
}
.vh-awards__eyebrow {
  margin: 0 0 18px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 26, 63, 0.72);   /* navy on the gold band */
}
.vh-marquee {
  overflow: hidden;
  /* premium edge-fade: awards dissolve into the band at both edges instead of
     hard-clipping, so the loop reads as continuous motion */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.vh-marquee__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: vh-marquee 40s linear infinite;
}
.vh-marquee:hover .vh-marquee__track { animation-play-state: paused; }
@keyframes vh-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--vh-marquee-shift, 50%))); }
}
.vh-award {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 176px;
  margin-right: 60px;
  flex: 0 0 auto;
}
/* Apple awards carry no medallion — let the text size to its content so it sits
   tight in the row instead of reserving an empty icon column. */
.vh-award--noicon { width: auto; }
.vh-award__text {
  font-size: 10.5px;
  line-height: 1.3;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- award medallions: themed navy glyph inside a metallic gold hex seal ---- */
.vh-award__icon svg {
  width: 21px; height: 21px;
  display: block;
  position: relative;        /* sits above the badge sheen */
}
/* force brand navy on every glyph, independent of token scope */
.vh .vh-awards .vh-award__icon { color: #0A1A3F; }

/* turn the flat hex into a struck medallion: metallic gold gradient, an inner
   top sheen + bottom shade (clipped to the hex), and a soft navy lift shadow.
   filter:drop-shadow follows the clip-path silhouette; box-shadow inset is
   clipped to the hex so it reads as a rim, not a rectangle. */
.vh-awards .vh-ph--badge {
  background: linear-gradient(155deg, var(--color-accent-hi) 0%, #E8B400 50%, var(--color-accent-dark) 100%);
  box-shadow:
    inset 0 1.5px 0 rgba(255, 255, 255, 0.5),
    inset 0 -2px 3px rgba(10, 26, 63, 0.22);
  filter: drop-shadow(0 3px 5px rgba(10, 26, 63, 0.28));
  transition: transform 220ms var(--ease-out-soft);
}
/* the marquee pauses on hover; lift the hovered medallion for a tactile beat */
.vh-award:hover .vh-ph--badge { transform: scale(1.09); }
.vh-hero__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding: 18px 0 6px;
  font-size: 11.5px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}
.vh-hero__stats span { white-space: nowrap; }
.vh-hero__stats .vh-dot { color: var(--color-border); }

/* =============================================================== GROWTH / SERVICES */
.vh-growth__card {
  position: relative;
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(232, 180, 0, 0.07), transparent 60%),
    linear-gradient(180deg, #0E2150, #0B1C42);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
/* hairline accent sweep across the top edge of the panel */
.vh-growth__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 180, 0, 0.55), transparent);
}

.vh-svc__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.vh-svc__eyebrow {
  display: inline-block;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.vh-svc__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
}
.vh-svc__sub {
  color: var(--color-ink-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 600px;
  margin: 20px auto 0;
}

.vh-svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* row divider labels ("01 — Build the product", "02 — Amplify the launch") */
.vh-svc-rowhead {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
}
.vh-svc-rowhead--amplify { margin-top: 32px; }
.vh-svc-rowhead__num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--color-accent);
}
.vh-svc-rowhead__txt {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}
.vh-svc-rowhead__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 180, 0, 0.5), rgba(255, 255, 255, 0.22) 25%, transparent);
}

.vh-svc-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #14264E, #0F1F42);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 34px;
  transition: transform 260ms var(--ease-out-soft),
              border-color 260ms var(--ease-out-soft),
              box-shadow 260ms var(--ease-out-soft),
              background 260ms var(--ease-out-soft);
}
/* thin accent rail that grows in on hover, top edge */
.vh-svc-card::after {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 320ms var(--ease-out-soft), opacity 320ms var(--ease-out-soft);
}
.vh-svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 180, 0, 0.32);
  background: linear-gradient(160deg, #182C58, #122449);
  box-shadow: 0 22px 48px -22px rgba(0, 0, 0, 0.65),
              0 0 32px -8px rgba(232, 180, 0, 0.14);
}
.vh-svc-card:hover::after { transform: scaleX(1); opacity: 1; }
.vh-svc-card:hover .vh-svc-card__icon {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

/* wide "amplify" cards — span half the row, horizontal icon + content layout */
.vh-svc-card--wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: flex-start;
  gap: 26px;
}
.vh-svc-card--wide .vh-svc-card__icon { margin-bottom: 0; flex-shrink: 0; }
.vh-svc-card__main { display: flex; flex-direction: column; flex: 1; min-width: 0; }

.vh-svc-card__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 13px;
  background: #1B2A54;
  color: var(--color-accent);
  margin-bottom: 28px;
  transition: background 260ms var(--ease-out-soft), color 260ms var(--ease-out-soft);
}
.vh-svc-card__icon svg { width: 26px; height: 26px; }
.vh-svc-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 16px;
}
.vh-svc-card__tagline {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16.5px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.vh-svc-card__body {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.vh-svc-card__foot { margin-top: auto; }
.vh-svc-card__rule {
  height: 1px;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  margin: 0 0 20px;
}
.vh-svc-card__meta-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.vh-svc-card__meta {
  font-size: 16.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  font-variant-numeric: tabular-nums;
  margin-bottom: 24px;
}
/* Primary per-card CTA — a SOLID GOLD PILL that always glows yellow, so every
   button reads as the loud, pressable next step (matches the "Wedge" pill).
   Rest: solid gold fill, deep-navy text, always-on gold glow halo (≥44px tall).
   Hover / card-hover / focus: glow intensifies + the pill lifts + arrow slides.
   NOTE: selector is qualified (.vh a.vh-svc-card__link) so the navy text wins
   over the global ".vh a { color: inherit }" reset at the top of this file. */
.vh a.vh-svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  white-space: nowrap;         /* keep each pill on a single line */
  padding: 13px 22px;          /* ~46px tall → meets 44px touch target */
  color: var(--color-primary);
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;        /* pill */
  background: linear-gradient(180deg, var(--color-accent-hi), var(--color-accent));
  box-shadow: 0 0 10px rgba(232, 180, 0, 0.28),      /* soft always-on yellow glow */
              0 6px 18px -10px rgba(232, 180, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.40);
  transition: color 220ms var(--ease-out-soft),
              background 220ms var(--ease-out-soft),
              border-color 220ms var(--ease-out-soft),
              box-shadow 220ms var(--ease-out-soft),
              transform 220ms var(--ease-out-soft);
}
.vh-svc-card__link span { transition: transform 220ms var(--ease-out-soft); }
/* Hover + whole-card hover brighten the glow and lift the pill. */
.vh-svc-card__link:hover,
.vh-svc-card:hover .vh-svc-card__link {
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(232, 180, 0, 0.42),      /* slightly intensified glow */
              0 10px 24px -10px rgba(232, 180, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.vh-svc-card__link:hover span { transform: translateX(4px); }
.vh-svc-card__link:focus-visible {
  outline: 2px solid var(--color-accent-hi);
  outline-offset: 3px;
}

/* the highlighted "1 of 1" offer — faint gold tint + stronger glow draws the eye */
.vh-svc-card--featured {
  background:
    radial-gradient(130% 90% at 50% -10%, rgba(232, 180, 0, 0.13), transparent 58%),
    linear-gradient(160deg, #16284F, #101F43);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), 0 0 44px rgba(232, 180, 0, 0.20);
}
.vh-svc-card--featured:hover {
  background:
    radial-gradient(130% 90% at 50% -10%, rgba(232, 180, 0, 0.16), transparent 58%),
    linear-gradient(160deg, #1A2E58, #132449);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), 0 0 56px rgba(232, 180, 0, 0.30),
              0 22px 48px -22px rgba(0, 0, 0, 0.65);
}
/* (Every CTA pill now ships solid-gold + glowing by default — see
   .vh-svc-card__link above — so no featured-only override is needed.) */
.vh-svc-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2; /* always paint above the card's 1px top border + ::after accent rail */
  white-space: nowrap;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 8px;
  box-shadow: 0 6px 18px -6px rgba(232, 180, 0, 0.55),
              0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

/* honor reduced-motion: keep the yellow + states, drop the movement/transitions */
@media (prefers-reduced-motion: reduce) {
  .vh-svc-card,
  .vh-svc-card__link,
  .vh-svc-card__link span,
  .vh-svc-card__icon,
  .vh-svc-card::after { transition: none; }
  .vh-svc-card:hover { transform: none; }
  .vh-svc-card__link:hover span { transform: none; }
  /* keep the gold-fill colour change, drop the pill's lift */
  .vh-svc-card__link:hover,
  .vh-svc-card:hover .vh-svc-card__link { transform: none; }
}

/* ================================================================ CASES */
.vh-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.vh-case {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.vh-case__media { border-radius: 0; }
.vh-case__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px;
}
.vh-case__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.vh-case__title b { color: var(--color-ink); }
.vh-case__body p { color: var(--color-ink-soft); font-size: 13.5px; line-height: 1.6; }
.vh-case__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}
.vh-case__client {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-ink);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
}

/* feature article card */
.vh-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  margin-top: 56px;
}
.vh-feature__media { aspect-ratio: auto; min-height: 280px; }
.vh-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 56px);
}
.vh-feature__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.vh-feature__body p { color: var(--color-ink-soft); line-height: 1.6; margin-bottom: 24px; }
.vh-feature__arrow {
  align-self: flex-end;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: grid; place-items: center;
  color: var(--color-ink);
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.vh-feature__arrow:hover { background: var(--color-accent); border-color: var(--color-accent); transform: translateX(3px); }

/* ================================================================== WHY */
.vh-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.vh-why__box {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
  border: none;
  border-radius: 0;
  padding: 36px 32px;
  transition: background 260ms var(--ease-out-soft);
}
/* Gold top accent bar — reveals on hover, no layout shift */
.vh-why__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-hi), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease-out-soft);
}
.vh-why__box:hover { background: #12285A; }
.vh-why__box:hover::before { transform: scaleX(1); }

/* Gold icon chip */
.vh-why__box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 180, 0, 0.10);
  color: var(--color-accent);
  margin-bottom: 18px;
  transition: background 260ms var(--ease-out-soft);
}
.vh-why__box:hover .vh-why__box-icon { background: rgba(232, 180, 0, 0.18); }
.vh-why__box-icon svg { display: block; }

.vh-why__box-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 10px;
}
.vh-why__box p { color: rgba(255, 255, 255, 0.84); font-size: 15px; line-height: 1.65; }

@media (prefers-reduced-motion: reduce) {
  .vh-why__box::before { transition: none; }
}

/* =============================================================== STATS2 */
.vh-stats2__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
}
/* the four proof metrics now read as a single vertical stack of full-width
   horizontal rows — value on the left, a guaranteed ONE-LINE label on the
   right — so long labels never wrap the way they did in the cramped 2×2 grid. */
.vh-stats2__nums {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* each metric is a premium elevated navy bento row — lifts off the #0C1E46
   surface band with a gold-tinted top glow + hairline, mirroring the site's
   signature card treatment. */
.vh-bigstat {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  min-height: 96px;
  padding: clamp(16px, 1.8vw, 22px) clamp(20px, 2.2vw, 28px);
  background:
    radial-gradient(120% 180% at 0% -40%, rgba(232, 180, 0, 0.07), transparent 60%),
    linear-gradient(180deg, #163069, #0E2350);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.22);
  transition: transform 320ms var(--ease-out-soft),
              box-shadow 320ms var(--ease-out-soft),
              border-color 320ms var(--ease-out-soft),
              opacity 520ms var(--ease-out-soft);
}
/* gold hairline sweep along the top edge — softly lit, brightens on hover */
.vh-bigstat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 180, 0, 0.6), transparent);
  opacity: 0.45;
  transition: opacity 320ms var(--ease-out-soft);
}
.vh-bigstat:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(232, 180, 0, 0.18);
}
.vh-bigstat:hover::before { opacity: 1; }
/* value cell — the dominant element, fixed-width so labels align in a column.
   short tokens (100%) stay one line; two-word values wrap inside this cell. */
.vh-bigstat__num {
  flex: 0 0 auto;
  width: clamp(132px, 16vw, 190px);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  /* tabular figures so the count-up animation never reflows the row */
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
/* "A Handful" is the only two-line value — centre it so the lone "A" sits
   over the middle of "Handful" instead of orphaned flush-left. */
.vh-stats2__nums .vh-bigstat:last-child .vh-bigstat__num { text-align: center; }
/* label cell — small uppercase caption on ONE line, divided from the value by
   a thin gold-tinted hairline */
.vh-bigstat__label {
  flex: 1 1 auto;
  margin: 0;
  padding-left: clamp(18px, 2vw, 28px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(12px, 1vw, 13px);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.74);
}
/* featured stat — gold-lit emphasis row (the single highlighted metric) */
.vh-bigstat--featured {
  border-color: var(--color-accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px var(--color-accent),
    0 0 40px rgba(232, 180, 0, 0.18);
}
.vh-bigstat--featured::before { opacity: 1; }      /* keep the gold top hairline lit */
.vh-bigstat--featured:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px var(--color-accent),
    0 0 52px rgba(232, 180, 0, 0.26),
    0 18px 44px rgba(0, 0, 0, 0.34);
}
/* value sits in a solid gold-bordered tile */
.vh-bigstat--featured .vh-bigstat__num {
  padding: 10px 14px;
  border: 1px solid var(--color-accent);
  border-radius: 10px;
  background: rgba(232, 180, 0, 0.04);
  text-align: center;
}
/* label reads in gold, divider warms to match */
.vh-bigstat--featured .vh-bigstat__label {
  border-left-color: rgba(232, 180, 0, 0.45);
  color: rgba(232, 180, 0, 0.92);
}
/* reveal — progressive enhancement (armed by JS; visible by default w/o JS) */
.vh-stats2__nums.is-armed .vh-bigstat { opacity: 0; transform: translateY(18px); }
.vh-stats2__nums.is-armed .vh-bigstat.is-in { opacity: 1; transform: none; }
/* re-assert the hover lift over the higher-specificity .is-in rule above */
.vh-stats2__nums.is-armed .vh-bigstat.is-in:hover { transform: translateY(-4px); }
.vh-stats2__copy h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-ink);
  margin-bottom: 16px;
}
.vh-stats2__copy p {
  color: var(--color-ink-soft);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
}
/* reassurance microcopy under the band CTA — risk-reversal lifts conversion */
.vh-stats2__cta-note {
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-muted);              /* quiet reassurance line beneath the CTA */
}

/* =============================================================== TRUST */
.vh-trust__grid-outer {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-8);
  align-items: center;
}
.vh-trust__lead-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.vh-trust__lead p { color: var(--color-ink-soft); line-height: 1.6; margin-bottom: 28px; }
.vh-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.vh-trustitem__icon {
  width: 40px; height: 44px;
  margin-bottom: 14px;
}
.vh-trustitem__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.vh-trustitem p { color: var(--color-ink-soft); font-size: 13px; line-height: 1.55; }

/* ============================================================== PROCESS */
.vh-process__intro { max-width: 720px; margin-bottom: 56px; }
.vh-process__intro .vh-h2 { margin-bottom: 18px; }
.vh-process__intro p { color: var(--color-ink-soft); line-height: 1.7; }

/* --- vertical timeline ------------------------------------------------- */
.vh-timeline {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  grid-template-rows: repeat(5, auto);  /* explicit rows so the spine's `1 / -1` spans all five */
  row-gap: var(--space-7);
}
/* centred spine + scroll-linked lime fill */
.vh-timeline__spine {
  grid-column: 2;
  grid-row: 1 / -1;
  position: relative;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.16) 8%,
    rgba(255, 255, 255, 0.16) 92%,
    rgba(255, 255, 255, 0.03)
  );
  border-radius: 3px;
}
.vh-timeline__progress {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, rgba(232, 180, 0, 0.25), var(--color-accent) 70%);
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(232, 180, 0, 0.7), 0 0 34px rgba(232, 180, 0, 0.35);
}
/* glowing comet at the leading tip of the fill */
.vh-timeline__progress::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -3px;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px 2px rgba(232, 180, 0, 0.95), 0 0 26px 8px rgba(232, 180, 0, 0.45);
}

/* The spine is child 1, so items are children 2..6. Each gets its own row so
   they alternate down the spine (not side-by-side). Left = cols 2/4/6,
   right = cols 3/5. */
.vh-timeline__item { position: relative; }
.vh-timeline__item:nth-child(2) { grid-column: 1; grid-row: 1; }  /* item 1 — left  */
.vh-timeline__item:nth-child(3) { grid-column: 3; grid-row: 2; }  /* item 2 — right */
.vh-timeline__item:nth-child(4) { grid-column: 1; grid-row: 3; }  /* item 3 — left  */
.vh-timeline__item:nth-child(5) { grid-column: 3; grid-row: 4; }  /* item 4 — right */
.vh-timeline__item:nth-child(6) { grid-column: 1; grid-row: 5; }  /* item 5 — left  */
/* gap between each card and the spine */
.vh-timeline__item:nth-child(2),
.vh-timeline__item:nth-child(4),
.vh-timeline__item:nth-child(6) { padding-right: 40px; }
.vh-timeline__item:nth-child(3),
.vh-timeline__item:nth-child(5) { padding-left: 40px; }

/* node centred on the spine — hollow by default, lights up once the fill reaches it */
.vh-timeline__node {
  position: absolute;
  top: 34px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-surface-elev);
  border: 2px solid rgba(232, 180, 0, 0.45);
  box-shadow: 0 0 0 5px var(--color-surface-elev);  /* mask the spine behind the dot */
  z-index: 2;
  transition: transform 420ms var(--ease-out-soft) 140ms,
              background 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}
.vh-timeline__item.is-active .vh-timeline__node {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 5px var(--color-surface-elev),
              0 0 0 9px rgba(232, 180, 0, 0.16),
              0 0 18px 3px rgba(232, 180, 0, 0.65);
}
.vh-timeline__item:nth-child(2) .vh-timeline__node,
.vh-timeline__item:nth-child(4) .vh-timeline__node,
.vh-timeline__item:nth-child(6) .vh-timeline__node { right: -9px; }
.vh-timeline__item:nth-child(3) .vh-timeline__node,
.vh-timeline__item:nth-child(5) .vh-timeline__node { left: -9px; }

/* connector line linking each card to its node on the spine */
.vh-timeline__item::before {
  content: "";
  position: absolute;
  top: 41px; height: 2px; width: 40px;
  background: rgba(255, 255, 255, 0.14);
  transition: background 320ms ease, box-shadow 320ms ease;
  z-index: 1;
}
.vh-timeline__item:nth-child(2)::before,
.vh-timeline__item:nth-child(4)::before,
.vh-timeline__item:nth-child(6)::before { right: 0; }
.vh-timeline__item:nth-child(3)::before,
.vh-timeline__item:nth-child(5)::before { left: 0; }
.vh-timeline__item.is-active::before {
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(232, 180, 0, 0.55);
}

/* card */
.vh-tstep {
  position: relative;
  display: inline-block;
  text-align: left;
  width: 100%;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(232, 180, 0, 0.05), transparent 60%),
    linear-gradient(160deg, #122a59, #0b1b3f);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--vh-card-radius);
  padding: var(--space-6);
  overflow: hidden;
  transition: transform 320ms var(--ease-out-soft), box-shadow 320ms var(--ease-out-soft), border-color 240ms ease;
}
/* accent bar along the top edge — grows in when the step becomes active.
   z-index keeps it above the photo so it reads as a gold rule across the top. */
.vh-tstep::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 100%;
  z-index: 4;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(to right, var(--color-accent), rgba(232, 180, 0, 0.2));
  transition: transform 500ms var(--ease-out-soft);
}
.vh-timeline__item.is-active .vh-tstep::before { transform: scaleX(1); }
.vh-timeline__item.is-active .vh-tstep {
  border-color: rgba(232, 180, 0, 0.28);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 180, 0, 0.12);
}
.vh-tstep:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 180, 0, 0.5);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5), 0 0 26px rgba(232, 180, 0, 0.18);
}
/* --- per-step process photo -------------------------------------------- *
   Full-bleed media at the top of each card. The card already has
   `overflow:hidden` + `--vh-card-radius`, so the photo's top corners inherit
   the card rounding. A blurred copy of the same photo fills the frame edges so
   the *whole* sharp photo (object-fit:contain) is always visible without empty
   letterbox bars — works across the five different native aspect ratios. */
.vh-tstep__media {
  position: relative;
  z-index: 1;
  isolation: isolate;               /* keep the media's internal layers self-contained */
  margin: calc(-1 * var(--space-6)) calc(-1 * var(--space-6)) var(--space-6);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(155deg, #16264D, #0A1A3F);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* blurred, zoomed copy — fills the bars left by the contained sharp image */
.vh-tstep__media-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  filter: blur(20px) saturate(1.12);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

/* the real photo — whole image always visible, gentle zoom on card hover */
.vh-tstep__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 1;
  transform: scale(1.001);          /* own layer for crisp zoom */
  transition: transform 600ms var(--ease-out-soft);
}
.vh-tstep:hover .vh-tstep__media-img { transform: scale(1.035); }

/* navy scrim — darkens the top (behind the numeral) and bottom edges and adds
   a faint flat tint so all five photos read cohesively with the navy card,
   plus a crisp inner edge. Mirrors pr-process.css's `.pr-phase__media::after`. */
.vh-tstep__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(4, 13, 46, 0.66) 0%,
      rgba(4, 13, 46, 0.16) 30%,
      rgba(4, 13, 46, 0.00) 54%,
      rgba(4, 13, 46, 0.20) 78%,
      rgba(4, 13, 46, 0.62) 100%),
    linear-gradient(0deg, rgba(4, 13, 46, 0.08), rgba(4, 13, 46, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* big step numeral — metallic brand-gold, now overlaid top-left ON the photo
   (was a faint watermark behind the text). Top scrim + drop-shadow keep it
   legible on any photo. Matches the methodology page's `.pr-phase__num`. */
.vh-tstep__num {
  position: absolute;
  top: clamp(8px, 1.6vw, 16px);
  left: clamp(12px, 1.8vw, 20px);
  z-index: 3;
  font-family: "Anybody", var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 5.6vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #FFE24A 0%, var(--color-accent) 70%, #C99A00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 3px 14px rgba(4, 13, 46, 0.90))
    drop-shadow(0 1px 2px rgba(4, 13, 46, 0.65));
  pointer-events: none;
  opacity: 1;
  transition: transform 260ms var(--ease-out-soft);
}
.vh-timeline__item.is-active .vh-tstep__num,
.vh-tstep:hover .vh-tstep__num { transform: translateY(-2px); }

/* fallback: paint solid gold if clipped-text gradients aren't supported */
@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .vh-tstep__num {
    color: var(--color-accent);
    -webkit-text-fill-color: var(--color-accent);
  }
}
.vh-tstep__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.vh-tstep__list {
  position: relative;
  z-index: 1;
}
.vh-tstep__list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: var(--color-ink-soft);
  line-height: 1.4;
  margin-bottom: 10px;
}
.vh-tstep__list li::before {
  content: "›";
  position: absolute;
  left: 4px; top: -1px;
  color: var(--color-accent);
  font-weight: 700;
}
/* gold CTA on every timeline card — the card's "next step" is its most clickable element */
.vh-tstep__link {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-accent);            /* #E8B400 gold — was inheriting white */
}
.vh-tstep__link .vh-link__arrow { color: var(--color-accent); }   /* arrow gold too */

/* brighten on link hover, whole-card hover, and the active (scroll-spied) step */
.vh-tstep__link:hover,
.vh-tstep:hover .vh-tstep__link,
.vh-timeline__item.is-active .vh-tstep__link { color: var(--color-accent-hi); }  /* #F4C01C */

/* whole-card hover nudges the arrow so the entire card reads as a single CTA */
.vh-tstep:hover .vh-tstep__link .vh-link__arrow { transform: translateX(3px); }

/* reveal — progressive enhancement: the hidden initial state only applies once
   JS adds `.is-armed`, so cards stay visible if JS is disabled. */
.vh-timeline__item {
  transition: opacity 600ms var(--ease-out-soft), transform 600ms var(--ease-out-soft);
}
.vh-timeline__node { transition: transform 420ms var(--ease-out-soft) 140ms; }

.vh-timeline.is-armed .vh-timeline__item[data-reveal] { opacity: 0; }
.vh-timeline.is-armed .vh-timeline__item:nth-child(2)[data-reveal],
.vh-timeline.is-armed .vh-timeline__item:nth-child(4)[data-reveal],
.vh-timeline.is-armed .vh-timeline__item:nth-child(6)[data-reveal] { transform: translate(-28px, 24px); }  /* left → slide from left  */
.vh-timeline.is-armed .vh-timeline__item:nth-child(3)[data-reveal],
.vh-timeline.is-armed .vh-timeline__item:nth-child(5)[data-reveal] { transform: translate( 28px, 24px); }  /* right → slide from right */
.vh-timeline.is-armed .vh-timeline__item[data-reveal] .vh-timeline__node { transform: scale(0); }

/* revealed state — selectors made specific enough to beat the armed hidden rules above */
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible { opacity: 1; transform: none; }
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible .vh-timeline__node { transform: scale(1); }

/* --- engagement layer: icons, ripples, sheen, ambient glow, inner cascade --- */

/* icon + duration-chip row */
.vh-tstep__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
/* per-step icon badge */
.vh-tstep__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  color: var(--color-accent);
  background: rgba(232, 180, 0, 0.07);
  border: 1px solid rgba(232, 180, 0, 0.22);
  transition: background 320ms ease, border-color 320ms ease, box-shadow 320ms ease, transform 320ms var(--ease-out-soft);
}
/* duration chip — tabular, gold-on-navy pill that brightens with the step */
.vh-tstep__meta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  color: var(--color-accent);
  background: rgba(232, 180, 0, 0.07);
  border: 1px solid rgba(232, 180, 0, 0.22);
  border-radius: 999px;
  padding: 6px 11px;
  transition: background 320ms ease, border-color 320ms ease, color 320ms ease, box-shadow 320ms ease;
}
.vh-timeline__item.is-active .vh-tstep__meta,
.vh-tstep:hover .vh-tstep__meta {
  background: rgba(232, 180, 0, 0.16);
  border-color: rgba(232, 180, 0, 0.55);
  color: var(--color-accent-hi);
  box-shadow: 0 0 18px rgba(232, 180, 0, 0.22);
}
/* summary lede — brighter than the bullets to lead the reading order */
.vh-tstep__lede {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 16px;
  max-width: 42ch;
}
.vh-tstep__icon svg { width: 23px; height: 23px; }
.vh-timeline__item.is-active .vh-tstep__icon,
.vh-tstep:hover .vh-tstep__icon {
  background: rgba(232, 180, 0, 0.16);
  border-color: rgba(232, 180, 0, 0.55);
  box-shadow: 0 0 22px rgba(232, 180, 0, 0.3);
  transform: translateY(-2px);
}

/* thin gradient divider under the title */
.vh-tstep__title { padding-bottom: 14px; margin-bottom: 14px; }
.vh-tstep__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.16);
  transition: width 420ms var(--ease-out-soft), background 320ms ease;
}
.vh-timeline__item.is-active .vh-tstep__title::after,
.vh-tstep:hover .vh-tstep__title::after { width: 56px; background: var(--color-accent); }

/* pulsing ripple on the active node */
.vh-timeline__node::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.vh-timeline__item.is-active .vh-timeline__node::after {
  animation: vh-node-ping 2.4s var(--ease-out-soft) infinite;
}
@keyframes vh-node-ping {
  0%   { box-shadow: 0 0 0 0 rgba(232, 180, 0, 0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(232, 180, 0, 0); }
  100% { box-shadow: 0 0 0 16px rgba(232, 180, 0, 0); }
}

/* glow pulse on the comet tip */
.vh-timeline__progress::after { animation: vh-tip-pulse 2s var(--ease-out-soft) infinite; }
@keyframes vh-tip-pulse {
  0%, 100% { box-shadow: 0 0 12px 2px rgba(232, 180, 0, 0.95), 0 0 26px 8px rgba(232, 180, 0, 0.45); }
  50%      { box-shadow: 0 0 16px 3px rgba(232, 180, 0, 1),    0 0 40px 12px rgba(232, 180, 0, 0.55); }
}

/* hover sheen sweep across the card */
.vh-tstep::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: skewX(-16deg);
  transition: left 750ms var(--ease-out-soft);
  pointer-events: none;
  z-index: 0;
}
.vh-tstep:hover::after { left: 130%; }

/* ambient depth glow behind the section */
.vh-process { position: relative; overflow: hidden; }
.vh-process > .vh-container { position: relative; z-index: 1; }
.vh-process::before,
.vh-process::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}
.vh-process::before { width: 480px; height: 480px; top: 4%;  right: -160px; background: rgba(232, 180, 0, 0.055); }
.vh-process::after  { width: 560px; height: 560px; bottom: -8%; left: -200px; background: rgba(56, 104, 220, 0.12); }

/* inner content cascade — title, bullets and link rise in after the card */
.vh-timeline.is-armed .vh-timeline__item[data-reveal] .vh-tstep__title,
.vh-timeline.is-armed .vh-timeline__item[data-reveal] .vh-tstep__lede,
.vh-timeline.is-armed .vh-timeline__item[data-reveal] .vh-tstep__list li,
.vh-timeline.is-armed .vh-timeline__item[data-reveal] .vh-tstep__link {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms var(--ease-out-soft), transform 520ms var(--ease-out-soft);
}
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible .vh-tstep__title,
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible .vh-tstep__lede,
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible .vh-tstep__list li,
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible .vh-tstep__link {
  opacity: 1;
  transform: none;
}
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible .vh-tstep__title       { transition-delay: 140ms; }
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible .vh-tstep__lede        { transition-delay: 210ms; }
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible .vh-tstep__list li:nth-child(1) { transition-delay: 290ms; }
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible .vh-tstep__list li:nth-child(2) { transition-delay: 360ms; }
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible .vh-tstep__list li:nth-child(3) { transition-delay: 430ms; }
.vh-timeline.is-armed .vh-timeline__item[data-reveal].is-visible .vh-tstep__link        { transition-delay: 510ms; }

/* ========================================================= TESTIMONIALS */
.vh-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.vh-quote {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
  overflow: hidden;
}
.vh-quote__avatar { width: auto; height: auto; min-height: 100%; border-radius: 0; align-self: stretch; font-size: 28px; }
.vh-quote > div { padding: 28px 30px; }
.vh-quote__text { font-size: 14px; line-height: 1.6; color: var(--color-ink-soft); margin-bottom: 16px; }
.vh-quote__name { font-weight: 600; font-size: 14px; }
.vh-quote__role { font-size: 12.5px; color: var(--color-muted); margin-bottom: 8px; }
.vh-stars { color: var(--color-accent); letter-spacing: 2px; font-size: 13px; }

/* ============================================================= SERVICES */
.vh-services__head { max-width: 620px; margin-bottom: 48px; }
.vh-services__head .vh-lead { margin-top: 16px; }
.vh-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.vh-service {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.vh-service__media { aspect-ratio: 16 / 9; }
.vh-service__body { display: flex; flex-direction: column; flex: 1 1 auto; padding: 22px; }
.vh-service__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
.vh-service__body p { color: var(--color-ink-soft); font-size: 13px; line-height: 1.6; }
.vh-service__arrow {
  margin-top: auto;
  padding-top: 18px;
  color: var(--color-ink);
}

/* ----- two-tier services: Core Build (left) vs Growth Attach-ons (right) ----- */
.vh-svc2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
}
/* divider down the centre gap */
.vh-svc2::before {
  content: "";
  position: absolute;
  top: 6px; bottom: 6px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-border) 12%, var(--color-border) 88%, transparent);
  transform: translateX(-50%);
}
.vh-svc2__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.vh-svc2__colhead { margin-bottom: var(--space-2); }
.vh-svc2__colhead .vh-eyebrow { margin-bottom: 8px; }
.vh-svc2__sub {
  color: var(--color-ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

/* service card */
.vh-tcard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.vh-tcard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  margin-bottom: 18px;
  color: var(--color-accent);
  background: rgba(232, 180, 0, 0.07);
  border: 1px solid rgba(232, 180, 0, 0.22);
  transition: background 320ms ease, border-color 320ms ease, box-shadow 320ms ease, transform 320ms var(--ease-out-soft);
}
.vh-tcard__icon svg { width: 23px; height: 23px; }
.vh-tcard:hover .vh-tcard__icon {
  background: rgba(232, 180, 0, 0.16);
  border-color: rgba(232, 180, 0, 0.55);
  box-shadow: 0 0 22px rgba(232, 180, 0, 0.28);
  transform: translateY(-2px);
}
.vh-tcard__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.vh-tcard__desc {
  color: var(--color-ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.vh-tcard__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}
.vh-tcard__price { display: flex; flex-direction: column; line-height: 1.2; }
.vh-tcard__price b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-accent);
}
.vh-tcard__price i {
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--color-muted);
  margin-top: 3px;
}
.vh-tcard__link { font-size: 13px; color: var(--color-ink); white-space: nowrap; }

/* the wedge — highlighted card */
.vh-tcard--wedge {
  border-color: rgba(232, 180, 0, 0.4);
  box-shadow: 0 0 0 1px rgba(232, 180, 0, 0.12), 0 18px 40px rgba(0, 0, 0, 0.35);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(232, 180, 0, 0.08), transparent 55%),
    #0E2149;
}
.vh-tcard__badge {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 4px 10px;
  border-radius: 999px;
}

.vh-svc2__note {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-muted);
}

/* reveal — progressive enhancement (armed by JS; visible by default without JS) */
.vh-tcard { transition: opacity 560ms var(--ease-out-soft), transform 560ms var(--ease-out-soft),
            border-color 280ms var(--ease-out-soft), box-shadow 280ms var(--ease-out-soft); }
.vh-svc2.is-armed .vh-tcard { opacity: 0; transform: translateY(18px); }
.vh-svc2.is-armed .vh-tcard.is-in { opacity: 1; transform: none; }

/* ============================================================ SOLUTIONS */
.vh-solutions__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-8);
  align-items: start;
}
.vh-solutions__tabs { border-left: 2px solid var(--color-border); }
.vh-solutions__tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  border-left: 2px solid transparent;
  margin-left: -2px;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-muted);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease;
}
.vh-solutions__tab[aria-selected="true"] {
  color: var(--color-ink);
  border-left-color: var(--color-accent);
}
.vh-solutions__panel[hidden] { display: none; }
.vh-solutions__panel p { color: var(--color-ink-soft); line-height: 1.7; margin-bottom: 24px; }
.vh-solutions__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 24px;
}
.vh-solutions__links a {
  padding: 12px 0;
  font-size: 14px;
  color: var(--color-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: color 160ms ease;
}
.vh-solutions__links a:hover { color: var(--color-accent-dark); }

/* black banner */
.vh-banner {
  margin-top: 80px;
  background: var(--color-primary-dark);
  border-radius: 18px;
}
.vh-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 5vw, 56px);
}
.vh-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 40px);
  color: #fff;
  letter-spacing: -0.02em;
}
.vh-banner__title em { color: var(--color-accent); font-style: italic; font-weight: 400; }
.vh .vh-banner__btn {
  flex: none;
  width: 72px; height: 72px;
  border-radius: 14px;
  background: var(--color-accent);
  color: var(--color-primary);
  display: grid; place-items: center;
  text-decoration: none;
  font-size: 26px;
  transition: transform 200ms var(--ease-out-soft), background 200ms ease;
}
.vh-banner__btn:hover { transform: translateX(4px); background: var(--color-accent-dark); }

/* ----- final CTA: "Last call" layout wrapping the banner as its button ----- */
.vh-lastcta { position: relative; overflow: hidden; padding-block: clamp(110px, 13vw, 168px); }
.vh-lastcta::before {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  width: 760px; height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(232, 180, 0, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.vh-lastcta__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
/* NOTE: margins are scoped under .vh-lastcta__inner to beat the base resets
   `.vh ul/p/h1-h4 { margin:0 }` (home.css:24-26), which have higher specificity
   than a single class. The eyebrow is display:flex (block-level, centered) so its
   bottom margin reliably pushes the headline down. */
.vh-lastcta__inner .vh-lastcta__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.vh-lastcta__eyebrow::before,
.vh-lastcta__eyebrow::after {
  content: "";
  width: 24px; height: 1px;
  background: var(--color-accent);
  opacity: 0.7;
}
.vh-lastcta__inner .vh-lastcta__title {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
}
.vh-lastcta__title em { font-style: normal; color: var(--color-accent); }
.vh-lastcta__inner .vh-lastcta__sub {
  max-width: 680px;
  margin: 0 auto 88px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--color-ink-soft);
  text-wrap: pretty;
}
/* the banner sits centred inside the CTA; cancel its standalone top margin */
.vh-lastcta .vh-banner { margin-top: 0; text-align: left; }
.vh-lastcta .vh-banner__inner { padding-block: clamp(38px, 5vw, 56px); }
.vh-lastcta__inner .vh-lastcta__ticks {
  margin: 88px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 34px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}
.vh-lastcta__ticks li { display: inline-flex; align-items: center; gap: 8px; }
.vh-lastcta__ticks li::before {
  content: "";
  flex: none;
  width: 16px; height: 16px;
  border-radius: 5px;
  background: var(--color-accent);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A1628' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center / 68% no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A1628' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center / 68% no-repeat;
}

/* ================================================================== FAQ */
.vh-faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* Card-style boxes: subtle elevated surface that lifts off the navy page,
   matching the site's .vh-card idiom (#0E2149). overflow-hidden so the
   expanding panel respects the rounded corners. */
.vh-faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
  transition:
    background 200ms var(--ease-out-soft),
    border-color 200ms var(--ease-out-soft),
    box-shadow 200ms var(--ease-out-soft);
}
.vh-faq__item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
/* Active item is clearly highlighted — brand navy card surface + gold-tinted
   border draws the eye to the open answer (conversion). */
.vh-faq__item.is-open {
  background: #0E2149;
  border-color: rgba(232, 180, 0, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}
.vh-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.vh-faq__trigger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 8px;
}
.vh-faq__chevron {
  flex: none;
  width: 16px; height: 16px;
  transition:
    transform 250ms var(--ease-out-soft),
    color 200ms var(--ease-out-soft);
  color: rgba(255, 255, 255, 0.7);
}
.vh-faq__item.is-open .vh-faq__chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}
.vh-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms var(--ease-out-soft);
}
.vh-faq__answer {
  padding: 0 26px 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 70ch;
}

/* ============================================================== INSIGHT */
.vh-insight { border-top: 1px solid rgba(255, 255, 255, 0.06); }

.vh-insight__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}

.vh-insight__eyebrow { margin-bottom: 20px; }

.vh-insight__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
/* scoped highlight refinement — bigger type wants a touch more breathing room
   and a soft gold lift; other sections' .vh-mark is untouched */
.vh-insight__title .vh-mark {
  padding: 0.02em 0.16em;
  border-radius: 4px;
  box-shadow: 0 6px 18px -8px rgba(232, 180, 0, 0.45);
}

.vh-insight__copy {
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.72;
  max-width: 60ch;
  text-wrap: pretty;
  padding-left: clamp(20px, 2vw, 32px);
  border-left: 2px solid rgba(232, 180, 0, 0.55);
}
.vh-insight__lead { color: #fff; font-weight: 600; }

/* subtle scroll-linked reveal; guarded so browsers without scroll-driven
   animation (and reduced-motion users) just see static, fully-visible content */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .vh-insight__head,
    .vh-insight__copy {
      animation: vh-insight-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 38%;
    }
    @keyframes vh-insight-rise {
      from { opacity: 0; transform: translateY(26px); }
      to   { opacity: 1; transform: none; }
    }
  }
}

/* =============================================================== FOOTER */
.vh-footer {
  background: var(--color-primary-dark);
  color: rgba(248, 249, 251, 0.7);
  padding-top: 72px;
}
.vh-footer__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-7);
  padding-bottom: 48px;
}
.vh-footer__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 18px;
}
.vh-footer__blurb { font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.vh-footer__address { font-size: 12.5px; line-height: 1.7; font-style: normal; }
.vh-footer__links li { margin-bottom: 10px; }
.vh-footer__links a {
  font-size: 13.5px;
  color: rgba(248, 249, 251, 0.7);
  text-decoration: none;
  transition: color 160ms ease;
}
.vh-footer__links a:hover { color: var(--color-accent); }
.vh-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.vh-footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  display: grid; place-items: center;
  color: rgba(248,249,251,0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: background 160ms ease, color 160ms ease;
}
.vh-footer__social a:hover { background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); }
.vh-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.vh-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.vh-footer__legal { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; }
.vh-footer__legal a { color: rgba(248,249,251,0.7); text-decoration: none; }
.vh-footer__legal a:hover { color: var(--color-accent); }

/* =========================================================== RESPONSIVE */
@media (max-width: 980px) {
  .vh-services__grid { grid-template-columns: repeat(2, 1fr); }
  .vh-footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* tight two-column zone (≈861–1180px): the wider media cell already sits the
   phone to the right — drop the extra rightward nudge so it never kisses the
   viewport edge. The shift returns above 1180px where there's room. */
@media (max-width: 1180px) {
  .vh-hero__phone { transform: rotate(-1.5deg); }
}

@media (max-width: 860px) {
  .vh { --vh-section-y: 80px; }
  .vh-nav__links { display: none; }
  .vh-nav__toggle { display: block; }

  .vh-hero { padding-top: 56px; }
  .vh-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .vh-hero__copy { max-width: 100%; }
  .vh-hero__media { order: 2; display: block; }
  /* centered under the copy on stacked layouts — drop the rightward nudge */
  .vh-hero__phone { width: 100%; max-width: 520px; margin-right: 0; transform: rotate(-1.5deg); }
  .vh-hero__phonewrap { margin-inline: auto; max-width: 520px; }

  .vh-svc-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; gap: 16px; }
  .vh-svc-card,
  .vh-svc-card--wide { grid-column: 1 / -1; }
  .vh-svc-card__title { font-size: 27px; }
  /* wide amplify cards return to a vertical layout when stacked */
  .vh-svc-card--wide { flex-direction: column; gap: 0; }
  .vh-svc-card--wide .vh-svc-card__icon { margin-bottom: 28px; }
  .vh-svc-rowhead--amplify { margin-top: 20px; }
  .vh-cases__grid { grid-template-columns: repeat(2, 1fr); }
  .vh-why__grid { grid-template-columns: repeat(2, 1fr); }
  .vh-feature { grid-template-columns: 1fr; }
  .vh-feature__media { min-height: 220px; }

  .vh-stats2__grid,
  .vh-trust__grid-outer,
  .vh-solutions__grid,
  .vh-insight__grid { grid-template-columns: 1fr; gap: var(--space-6); }

  /* stacked insight: let copy use the full measure, soften the gold rule inset */
  .vh-insight__copy { max-width: 100%; padding-left: 16px; }

  /* two-tier services stack into one column; hide the centre divider */
  .vh-svc2 { grid-template-columns: 1fr; gap: var(--space-6); }
  .vh-svc2::before { display: none; }

  /* timeline → single left-rail: spine on the left, every card full-width to its right */
  .vh-timeline { grid-template-columns: 2px 1fr; }
  .vh-timeline__item:nth-child(2),
  .vh-timeline__item:nth-child(3),
  .vh-timeline__item:nth-child(4),
  .vh-timeline__item:nth-child(5),
  .vh-timeline__item:nth-child(6) {
    grid-column: 2;
    padding-left: 32px;
    padding-right: 0;
  }
  .vh-timeline__item:nth-child(2) { grid-row: 1; }
  .vh-timeline__item:nth-child(3) { grid-row: 2; }
  .vh-timeline__item:nth-child(4) { grid-row: 3; }
  .vh-timeline__item:nth-child(5) { grid-row: 4; }
  .vh-timeline__item:nth-child(6) { grid-row: 5; }
  .vh-timeline__item:nth-child(2) .vh-timeline__node,
  .vh-timeline__item:nth-child(3) .vh-timeline__node,
  .vh-timeline__item:nth-child(4) .vh-timeline__node,
  .vh-timeline__item:nth-child(5) .vh-timeline__node,
  .vh-timeline__item:nth-child(6) .vh-timeline__node { left: -9px; right: auto; }
  /* connectors all run left → spanning the 32px gap to the rail */
  .vh-timeline__item:nth-child(2)::before,
  .vh-timeline__item:nth-child(3)::before,
  .vh-timeline__item:nth-child(4)::before,
  .vh-timeline__item:nth-child(5)::before,
  .vh-timeline__item:nth-child(6)::before { left: 0; right: auto; width: 32px; }
  .vh-timeline.is-armed .vh-timeline__item:nth-child(2)[data-reveal],
  .vh-timeline.is-armed .vh-timeline__item:nth-child(3)[data-reveal],
  .vh-timeline.is-armed .vh-timeline__item:nth-child(4)[data-reveal],
  .vh-timeline.is-armed .vh-timeline__item:nth-child(5)[data-reveal],
  .vh-timeline.is-armed .vh-timeline__item:nth-child(6)[data-reveal] { transform: translate(24px, 24px); }
}

@media (max-width: 560px) {
  .vh { --vh-section-y: 56px; }
  .vh-container { padding-inline: 20px; }

  /* headline: trim size + allow clean wrapping so it never clips the right edge */
  .vh-hero__grid > * { min-width: 0; }
  .vh-hero__copy { min-width: 0; }
  .vh-hero__title {
    font-size: clamp(27px, 8.2vw, 38px);
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .vh-hero__phone { max-width: 360px; }
  .vh-hero__phonewrap { max-width: 360px; }

  /* keep the brighter weight/colour, but trim size so the nowrap label
     doesn't get clipped by the card's overflow on small phones */
  .vh-svc-rowhead { gap: 12px; }
  .vh-svc-rowhead__num { font-size: 13px; }
  .vh-svc-rowhead__txt { font-size: 12px; letter-spacing: 0.12em; }

  .vh-cases__grid,
  .vh-why__grid,
  .vh-services__grid,
  .vh-testimonials__grid { grid-template-columns: 1fr; }

  .vh-trust__grid { grid-template-columns: 1fr; }
  /* phones: stack value over label at full width — the longest label still fits
     one line at this size, and the vertical divider is dropped */
  .vh-bigstat { flex-direction: column; align-items: flex-start; gap: 10px; min-height: 0; }
  .vh-bigstat__num { width: auto; }
  .vh-bigstat--featured .vh-bigstat__num { align-self: stretch; }
  .vh-bigstat__label { padding-left: 0; border-left: 0; }
  .vh-solutions__links { grid-template-columns: 1fr; }

  .vh-awards__row {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .vh-award { flex: none; scroll-snap-align: start; }

  .vh-banner__inner { flex-direction: column; align-items: flex-start; }
  .vh-footer__cols { grid-template-columns: 1fr; }
  .vh-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vh *, .vh *::before, .vh *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* focus visibility */
.vh a:focus-visible,
.vh button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================================
   DARK THEME — colours only (deep navy + white + lime).
   Appended override: flips the homepage from the light palette to the dark
   navy treatment. No layout / spacing / type / structure changes.
   To revert to the light theme, delete everything below this banner.
   ========================================================================= */
.vh {
  /* re-map the colour tokens to a dark palette (navy bg, light text) */
  --color-ink:        #FFFFFF;
  --color-ink-soft:   rgba(255, 255, 255, 0.72);
  --color-muted:      rgba(255, 255, 255, 0.52);
  --color-surface:      #0C1E46;   /* alternating section band */
  --color-surface-elev: #0A1A3F;   /* page base + "white" sections */
  --color-border:     rgba(255, 255, 255, 0.12);
  /* --color-primary / --color-accent kept: navy stays the lime-button text,
     lime stays the accent. */

  background:
    radial-gradient(120% 90% at 80% -10%, rgba(232, 180, 0, 0.06), transparent 55%),
    radial-gradient(100% 80% at 0% 0%, rgba(17, 38, 84, 0.6), transparent 60%),
    var(--color-surface-elev);
}

/* cards sit one step above the section bands */
.vh-card { background: #0E2149; border-color: rgba(255, 255, 255, 0.10); }
.vh-card:hover { box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45); }

/* dark "Why Choose" boxes lift off the navy page */
.vh-why__box { background: #0E2149; }

/* eyebrow label reads in lime on dark */
.vh-eyebrow { color: var(--color-accent); }

/* outline (Contact) button: light on dark, lime on hover */
.vh-btn--outline { color: var(--color-ink); border-color: var(--color-border); }
.vh-btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

/* hero phone is now a transparent cutout on the LIGHT stage — normal blend,
   keep the grounded drop-shadow defined on the base rule. */
.vh-hero__phone { mix-blend-mode: normal; }

/* logo chips: subtle navy chips with light wordmarks */
.vh-ph--logo {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--color-ink-soft);
}

/* nav shadow on dark */
.vh-nav.is-scrolled { box-shadow: 0 1px 12px rgba(0, 0, 0, 0.4); }

/* =========================================================================
   INVERTED YELLOW SECTIONS — Final-CTA / Awards strip.
   (STATS2 was removed from this group — it now renders as a light band with
   white bento cards; see .vh-bigstat above.)
   These sections flip from the dark navy treatment to a LIME-YELLOW
   background with the palette inverted: was-navy bg → yellow, was-white text
   → navy, was-lime accents → navy, and the lime highlight boxes (.vh-mark)
   become NAVY boxes with LIME text. Everything is driven by re-mapping the
   colour tokens scoped to each section root, so the existing rules cascade
   into the inverted scheme with no per-element rewrites.
   Exception: the dark "Book a free consultation" card stays dark (see below).
   To revert these sections to the dark theme, delete everything below this
   banner (and the matching block at the end of home-geo.css).
   ========================================================================= */
.vh .vh-lastcta,
.vh .vh-awards {
  --color-surface:      #D4A017;            /* vh-section--surface bg → deep gold (solid fallback) */
  --color-surface-elev: #D4A017;            /* vh-section--white   bg → deep gold (solid fallback) */
  --color-ink:          #0A1A3F;            /* white headings/numbers → navy */
  --color-ink-soft:     rgba(10, 26, 63, 0.82);
  --color-muted:        rgba(10, 26, 63, 0.70);
  --color-accent:       #0A1A3F;            /* was-lime (mark bg, buttons, stars, eyebrow) → navy */
  --color-primary:      #E8B400;            /* navy-on-gold text (mark/button text) → BRIGHT gold (accents stay bright) */
  --color-border:       rgba(10, 26, 63, 0.18);
  /* Rich-gold metallic band: deep-goldenrod gradient + top sheen + faint grain.
     Solid fallback first, enhanced finish second. Wins over .vh-section--*. */
  background: var(--color-band);
  background: var(--gold-band);
  color: var(--color-ink);                  /* re-assert base text so inheriting nodes read navy */
}

/* hardcoded #fff title → navy (overrides home.css:1490) */
.vh .vh-lastcta .vh-lastcta__title { color: var(--color-ink); }

/* final-CTA radial glow: lime → subtle navy depth on yellow (overrides home.css:1442-1451) */
.vh .vh-lastcta::before {
  background: radial-gradient(50% 50% at 50% 50%, rgba(10, 26, 63, 0.07), transparent 70%);
}

/* Keep the dark CTA card exactly as today: restore the dark palette inside the
   banner subtree (its bg is --color-primary-dark, which is not remapped, so the
   card stays dark; we only restore its inner text/accent tokens). */
.vh .vh-lastcta .vh-banner {
  --color-ink:        #FFFFFF;
  --color-ink-soft:   rgba(255, 255, 255, 0.72);
  --color-muted:      rgba(255, 255, 255, 0.52);
  --color-accent:     #E8B400;              /* "a free" + arrow button → lime again */
  --color-primary:    #0A1A3F;              /* arrow glyph → navy again */
  color: #fff;
}
