/* ============================================================
 * GroupEd — MARKETING PAGE PATTERNS  (portable)
 * ------------------------------------------------------------
 * Reusable hi-* components for GroupEd campaign / landing pages,
 * lifted from the "Halve it" launch page. Brand-default accent
 * (sky / navy / blue) — NOT the violet OnSite sub-brand.
 *
 * LOAD ORDER (never reorder):
 *   1. colors_and_type.css   (tokens + base type)
 *   2. foundation.css        (.btn .card .eyebrow .nav .hl …)
 *   3. marketing-page.css    (this file)
 *
 * Component vocabulary (prefix .hi-):
 *   .hi-section / .container          section rhythm + width
 *   .hi-hero  (.hi-hero__board/__bg/__copy/__badges)   full-bleed photo hero w/ left navy fade + corner badge
 *   .hi-feature  (--onsite/--classroom/--one)          alternating photo feature rows on colour fields
 *   .hi-how  (.hi-how__media/__steps)                  image-led "how it works" band
 *   .hi-marquee                                        seamless logo strip (pauses on hover, RM fallback)
 *   .hi-statsband                                      by-the-numbers tiles, staggered reveal
 *   .hi-guarantee (bars + collapsible breakdown)       before/after savings
 *   .hi-imageband (.hi-imageband__caption)             centred device shot + caption
 *   .hi-final (.hi-final__bg/__board)                  photo-backed closing CTA
 *   [data-reveal]                                      fade/rise on scroll (needs the IO script)
 *
 * Needs the scroll-reveal IntersectionObserver from the page's
 * inline script (toggles .is-in on [data-reveal]).
 * ============================================================ */

:root { scroll-padding-top: 100px; }

/* ---------- reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms var(--ease-standard),
              transform 640ms var(--ease-standard);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- section rhythm (matches index) ---------- */
.hi-section { padding: clamp(72px, 7vw, 112px) 0; }

/* ---------- wider Monzo-style layout (page-scoped: only halve-it loads this file) ---------- */
.container { max-width: 1640px; }
.nav__inner { max-width: 1640px; }
@media (min-width: 768px) { .nav__inner { height: 100px; } }
.nav__cta { padding: 15px 30px; font-size: 16px; }

.hi-band-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  max-width: 760px;
  margin: 0 auto var(--sp-12);
}
.hi-band-label h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: var(--fw-light);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}
.hi-band-label p {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: var(--fw-light);
  color: var(--fg2);
  line-height: 1.55;
  margin: 0;
  max-width: 640px;
}
/* foundation .eyebrow is align-self:flex-start; centre it in band labels */
.hi-band-label .eyebrow { align-self: center; }

/* brand lockup — tagline under the logo */
.nav__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.nav__tagline {
  font-size: 13.5px; font-weight: var(--fw-regular); letter-spacing: 0.04em;
  color: var(--ge-text-secondary); line-height: 1; white-space: nowrap;
}
@media (max-width: 600px) { .nav__tagline { display: none; } }

/* urgency strip under the hero */
.hi-urgency { background: transparent; }
.hi-urgency__inner {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-3);
  flex-wrap: wrap; margin: 0; padding: var(--sp-7) var(--sp-6);
  background: var(--ge-blue-3); border-radius: var(--radius-md);
  font-size: var(--fs-body-sm); color: var(--ge-navy); text-align: center;
}
.hi-urgency__dot {
  width: 9px; height: 9px; border-radius: 999px; background: var(--ge-red-3); flex: none;
  animation: hi-pulse 2.4s var(--ease-standard) infinite;
}
@media (prefers-reduced-motion: reduce) { .hi-urgency__dot { animation: none; } }
.hi-urgency__inner a { color: var(--ge-blue); font-weight: var(--fw-regular); }
.hi-urgency__inner a:hover { color: var(--ge-navy); text-decoration: underline; }

/* step email chip */
.hi-step__chip {
  display: inline-flex; align-items: center; margin-top: var(--sp-4);
  padding: 9px 18px; border-radius: var(--radius-pill);
  background: var(--ge-navy); color: var(--ge-white);
  font-size: var(--fs-body-sm); font-weight: var(--fw-regular);
  transition: background var(--dur-base) var(--ease-standard);
}
.hi-step__chip:hover { background: var(--ge-blue); color: var(--ge-white); }

/* ============================================================
 * SOCIAL PROOF — testimonials + trusted-by schools strip
 * ============================================================ */
.hi-proof { padding: clamp(56px, 6vw, 96px) 0; }
.hi-proof__head { text-align: center; max-width: 640px; margin: 0 auto var(--sp-12); display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); }
.hi-proof__head .eyebrow { align-self: center; }
.hi-proof__head h2 {
  margin: 0; font-size: clamp(34px, 4.6vw, 56px); font-weight: var(--fw-light);
  letter-spacing: -0.02em; line-height: 1.06; color: var(--ge-navy);
}
.hi-proof__quotes {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}
@media (min-width: 820px) { .hi-proof__quotes { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
.hi-quote {
  position: relative; margin: 0;
  background: var(--ge-white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: var(--sp-6);
  transition: transform .28s var(--ease-standard), box-shadow .28s var(--ease-standard), border-color .28s var(--ease-standard);
}
.hi-quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px -24px rgba(15,20,56,0.28);
  border-color: transparent;
}
@media (prefers-reduced-motion: reduce) { .hi-quote:hover { transform: none; } }
.hi-quote__mark {
  font-family: var(--font-sans);
  font-size: 64px; line-height: 0.6; color: var(--ge-sky);
  height: 32px; display: block;
}
.hi-quote__text {
  margin: 0; font-size: clamp(18px, 1.9vw, 23px); font-weight: var(--fw-light);
  line-height: 1.45; letter-spacing: -0.01em; color: var(--ge-navy); flex: 1 1 auto;
}
.hi-quote__by { display: flex; align-items: center; gap: var(--sp-4); }
.hi-quote__crest {
  flex: none; width: 48px; height: 48px; border-radius: 999px;
  object-fit: contain; background: var(--ge-white);
  border: 1px solid var(--border); padding: 5px;
}
.hi-quote__avatar {
  flex: none; width: 46px; height: 46px; border-radius: 999px;
  background: var(--ge-sky); color: var(--ge-white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: var(--fw-regular); letter-spacing: 0.04em;
}
.hi-quote__id { display: flex; flex-direction: column; gap: 2px; }
.hi-quote__name { font-size: var(--fs-body); font-weight: var(--fw-regular); color: var(--ge-navy); }
.hi-quote__role { font-size: var(--fs-body-sm); font-weight: var(--fw-light); color: var(--ge-text-secondary); }

/* ---- Testimonial carousel (ported from OnSite, navy/sky palette) ---- */
.testimonial__carousel { position: relative; z-index: 1; margin-bottom: var(--sp-12); }
.testimonial__track {
  display: flex; align-items: stretch; gap: var(--sp-6);
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none; padding: 4px; margin: -4px;
}
.testimonial__track::-webkit-scrollbar { display: none; }
.testimonial__track:focus-visible { outline: 2px solid var(--ge-sky); outline-offset: 4px; border-radius: var(--radius-xl); }
.testimonial__slide { flex: 0 0 100%; scroll-snap-align: center; scroll-snap-stop: always; min-width: 0; }

.testimonial__controls { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); margin-top: var(--sp-7); }
.testimonial__dots { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial__dot {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px;
  background: var(--ge-neutral-lt3, #D7DDED); cursor: pointer;
  transition: width 200ms var(--ease-standard), background 200ms var(--ease-standard);
}
.testimonial__dot.is-active { width: 28px; background: var(--ge-sky); }
.testimonial__arrows { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial__arrow {
  width: 48px; height: 48px; flex: 0 0 48px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid var(--border); background: var(--ge-white); color: var(--ge-navy); cursor: pointer;
  transition: background 180ms var(--ease-standard), border-color 180ms var(--ease-standard), opacity 180ms var(--ease-standard);
}
.testimonial__arrow svg { width: 22px; height: 22px; }
.testimonial__arrow:hover { border-color: var(--ge-text-secondary); }
.testimonial__arrow:disabled { opacity: 0.35; cursor: default; }

.testimonial__card {
  position: relative; display: flex; flex-direction: column; margin: 0;
  padding: var(--sp-8) var(--sp-6); border-radius: var(--radius-xl, 24px); overflow: hidden; text-align: left;
}
@media (min-width: 768px) { .testimonial__card { padding: var(--sp-12) var(--sp-12); } }
/* Card 1 — navy. Card 2 — blue. White writing on both. */
.testimonial__track .testimonial__card { background: var(--ge-navy); }
.testimonial__track .testimonial__card:nth-child(2) { background: var(--ge-blue); }
.testimonial__quote { font-size: clamp(21px, 2.3vw, 30px); font-weight: var(--fw-light); line-height: 1.4; letter-spacing: -0.015em; color: var(--ge-white); margin: 0 0 var(--sp-7); flex: 1 1 auto; text-wrap: pretty; }
.testimonial__hl { color: var(--ge-sky); font-weight: var(--fw-regular); }
.testimonial__icon { display: block; color: rgba(255,255,255,0.85); margin-bottom: var(--sp-4); }
.testimonial__icon svg { width: 44px; height: 44px; }

.testimonial__byline { display: flex; flex-direction: column; gap: var(--sp-5); margin-top: auto; padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.22); }
@media (min-width: 600px) { .testimonial__byline { flex-direction: row; align-items: center; justify-content: space-between; gap: var(--sp-8); padding-top: var(--sp-6); } }
.testimonial__byline-school { display: flex; align-items: center; gap: var(--sp-5); flex: 1 1 auto; min-width: 0; }
.testimonial__byline-logo { width: 80px; height: 80px; flex: 0 0 80px; background: var(--ge-white); border-radius: var(--radius-md); padding: 8px; object-fit: contain; display: block; }
@media (min-width: 768px) { .testimonial__byline-logo { width: 96px; height: 96px; flex-basis: 96px; } }
.testimonial__byline-id { display: flex; flex-direction: column; gap: 4px; }
.testimonial__byline-name { font-size: var(--fs-h4); font-weight: var(--fw-regular); color: var(--ge-white); margin: 0; letter-spacing: -0.005em; }
.testimonial__byline-role { font-size: var(--fs-body-sm); font-weight: var(--fw-light); color: rgba(255,255,255,0.78); margin: 0; }
.testimonial__byline-stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.22); padding-top: var(--sp-5); flex: 0 0 auto; }
@media (min-width: 600px) { .testimonial__byline-stats { border-top: 0; padding-top: 0; border-left: 1px solid rgba(255,255,255,0.22); padding-left: var(--sp-8); gap: var(--sp-7); } }
.testimonial__byline-stat { display: flex; flex-direction: column; gap: 4px; }
.testimonial__byline-stat-num { font-size: clamp(32px, 3.6vw, 44px); font-weight: var(--fw-light); line-height: 1; letter-spacing: -0.025em; color: var(--ge-white); margin: 0; }
.testimonial__byline-stat-num .hl-sky { color: var(--ge-sky); font-weight: var(--fw-regular); margin-right: 0.05em; }
.testimonial__byline-stat-label { font-size: var(--fs-body-sm); font-weight: var(--fw-light); color: rgba(255,255,255,0.72); margin: 0; line-height: 1.45; max-width: 18ch; }

.hi-proof__logos { display: flex; flex-direction: column; align-items: center; gap: var(--sp-8); text-align: center; }
.hi-schools__label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ge-text-secondary); margin: 0;
}
.hi-schools__logos {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: nowrap; gap: clamp(10px, 1.4vw, 26px);
  width: 100%;
}
.hi-schools__logos img {
  height: clamp(34px, 3.4vw, 50px); width: auto; max-width: 100%;
  object-fit: contain; flex: 0 1 auto; min-width: 0;
  filter: grayscale(1); opacity: 0.7;
  transition: filter var(--dur-base) var(--ease-standard), opacity var(--dur-base) var(--ease-standard), transform .25s var(--ease-standard);
}
@media (max-width: 640px) {
  .hi-schools__logos { flex-wrap: wrap; justify-content: center; gap: 20px 28px; }
}
.hi-schools__logos img:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px) scale(1.04); }

/* accreditation badges — official, seated on one credentials plate */
.hi-accred { display: flex; flex-direction: column; align-items: center; gap: var(--sp-5); width: 100%; }
.hi-accred__logos {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  background: var(--ge-bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 18px);
  padding: clamp(20px, 2.4vw, 32px) clamp(16px, 2vw, 28px);
}
.hi-accred__logo {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 clamp(24px, 3.5vw, 52px);
  transition: transform var(--dur-2, .2s) var(--ease-standard);
}
.hi-accred__logo + .hi-accred__logo { border-left: 1px solid var(--border); }
.hi-accred__logo img { height: clamp(54px, 5.5vw, 72px); width: auto; object-fit: contain; }
.hi-accred__logo:hover { transform: translateY(-2px); }
@media (max-width: 560px) {
  .hi-accred__logos { flex-direction: column; gap: clamp(18px, 5vw, 26px); }
  .hi-accred__logo { padding: 0; }
  .hi-accred__logo + .hi-accred__logo { border-left: none; border-top: 1px solid var(--border); padding-top: clamp(18px, 5vw, 26px); }
}

/* accreditation — Monzo-style navy award band */
.hi-trustband {
  width: 100%; display: grid; grid-template-columns: 1fr; gap: var(--sp-7);
  align-items: center; text-align: center;
  background: var(--ge-navy); color: var(--ge-white);
  border-radius: clamp(20px, 2.4vw, 32px);
  padding: clamp(30px, 4vw, 56px);
  margin-top: var(--sp-10);
}
@media (min-width: 760px) {
  .hi-trustband { grid-template-columns: auto 1fr; gap: clamp(36px, 5vw, 72px); text-align: left; }
}
.hi-trustband__badges { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2.2vw, 28px); }
.hi-trustband__badge { display: inline-flex; transition: transform var(--dur-base) var(--ease-standard); }
.hi-trustband__badge:hover { transform: translateY(-2px); }
.hi-trustband__badge img {
  height: clamp(58px, 6vw, 84px); width: auto; object-fit: contain;
  background: var(--ge-white); border-radius: var(--radius-md); padding: 10px 14px;
}
.hi-trustband__copy { display: flex; flex-direction: column; gap: var(--sp-3); align-items: center; }
@media (min-width: 760px) { .hi-trustband__copy { align-items: flex-start; } }
.hi-trustband__copy .eyebrow { background: var(--ge-sky); color: var(--ge-white); align-self: center; }
@media (min-width: 760px) { .hi-trustband__copy .eyebrow { align-self: flex-start; } }
.hi-trustband__copy h3 {
  font-size: clamp(24px, 2.8vw, 36px); font-weight: var(--fw-light);
  line-height: 1.1; letter-spacing: -0.02em; margin: 0; color: var(--ge-white);
}
.hi-trustband__copy p {
  font-size: clamp(15px, 1.6vw, 18px); font-weight: var(--fw-light);
  line-height: 1.55; color: rgba(255,255,255,0.78); margin: 0; max-width: 52ch;
}

/* ============================================================
 * NAV deadline pill
 * ============================================================ */
.hi-nav-deadline {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ge-text-secondary);
  white-space: nowrap;
}
.hi-nav-deadline strong { font-weight: var(--fw-regular); color: var(--ge-navy); }
.hi-nav-deadline::before {
  content: "";
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--ge-red-3);
  animation: hi-pulse 2.4s var(--ease-standard) infinite;
}
@media (min-width: 1180px) { .hi-nav-deadline { display: inline-flex; } }
@keyframes hi-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(235,81,46,0.45); }
  70%  { box-shadow: 0 0 0 7px rgba(235,81,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(235,81,46,0); }
}
@media (prefers-reduced-motion: reduce) { .hi-nav-deadline::before { animation: none; } }

/* ============================================================
 * HERO — navy rounded board on a white canvas (index style)
 * ============================================================ */
.hi-hero { padding: clamp(108px, 9vw, 124px) 0 clamp(14px, 1.6vw, 20px); }
/* hero layout — single navy board: copy left, photo right (Monzo single-focus) */
.hi-hero__board {
  position: relative;
  background: var(--ge-navy); color: var(--ge-white);
  border-radius: clamp(24px, 2.4vw, 36px);
  overflow: hidden;
  display: flex;
  min-height: clamp(440px, 72vw, 540px);
}
@media (min-width: 900px) {
  .hi-hero__board { min-height: clamp(520px, 48vw, 680px); }
}
/* full-bleed photo behind everything (Monzo-style single image) */
.hi-hero__bg { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; max-width: none; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
@media (min-width: 900px) { .hi-hero__bg { width: 120%; } }
/* flat navy wash for text legibility — no gradient (Rebecca, 28 Jul: remove
   all gradients site-wide; was a top-to-bottom fade, and a left-to-right
   fade on desktop) */
.hi-hero__board::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: rgba(15,20,56,0.62);
}
.hi-hero__stats { display: flex; gap: clamp(28px, 4vw, 56px); margin-top: clamp(26px, 3.4vw, 40px); }
.hi-hero__statitem { display: flex; flex-direction: column; gap: 4px; }
.hi-hero__statnum { font-size: clamp(30px, 3.4vw, 44px); font-weight: var(--fw-light); line-height: 1; letter-spacing: -0.03em; color: var(--ge-sky); }
.hi-hero__statlabel { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* right-column bento */
.hi-hero__bento { display: grid; grid-template-rows: auto auto; gap: var(--sp-5); }
@media (min-width: 900px) {
  .hi-hero__bento { grid-template-rows: 1.15fr 0.85fr; min-height: clamp(420px, 40vw, 500px); }
}
.hi-hero__bento-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.hi-hero__tile { border-radius: clamp(18px, 2vw, 26px); overflow: hidden; }
.hi-hero__tile--photo { display: block; width: 100%; height: 100%; min-height: 200px; position: relative; }
.hi-hero__photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hi-hero__tile--stat {
  position: relative;
  background: var(--ge-sky); color: var(--ge-navy);
  padding: var(--sp-6); display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  min-height: 150px;
}
.hi-hero__stat-icon {
  position: absolute; top: clamp(14px, 2vw, 22px); right: clamp(14px, 2vw, 22px);
  color: var(--ge-white); opacity: 0.30; pointer-events: none;
}
.hi-hero__stat-icon svg { width: clamp(54px, 7vw, 84px); height: auto; }
.hi-hero__stat-num { font-size: clamp(38px, 5vw, 54px); font-weight: var(--fw-light); line-height: 0.92; letter-spacing: -0.03em; }
.hi-hero__stat-label { font-size: 11px; font-weight: var(--fw-regular); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(15,20,56,0.65); }
.hi-hero__tile--deadline {
  position: relative;
  background: var(--ge-blue); color: var(--ge-white);
  padding: var(--sp-6); display: flex; flex-direction: column; justify-content: flex-end; gap: var(--sp-3);
  min-height: 150px;
}
.hi-hero__stat-icon--ondark { color: var(--ge-white); opacity: 0.22; }
.hi-hero__deadline-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--ge-red-3); }
.hi-hero__deadline-text { font-size: 11px; font-weight: var(--fw-regular); letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.3; }

.hi-hero__copy { position: relative; z-index: 2; max-width: 640px; display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 56px); }
@media (min-width: 900px) { .hi-hero__copy { padding: clamp(40px, 4vw, 64px); } }

/* 2026 launch-deal circular badge, top-right of the hero (Monzo-style) */
.hi-hero__deal-badge {
  position: absolute; z-index: 3;
  top: clamp(18px, 2.4vw, 32px); right: clamp(18px, 2.4vw, 36px);
  width: clamp(94px, 9vw, 120px); height: clamp(94px, 9vw, 120px);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: var(--ge-sky); color: var(--ge-navy);
  font-size: clamp(12px, 1.1vw, 15px); font-weight: var(--fw-medium);
  letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.18;
  box-shadow: 0 8px 24px rgba(15,20,56,0.3);
}

/* overlaid trust badges (Monzo-style), bottom-right of the hero */
.hi-hero__badges {
  position: absolute; right: clamp(20px, 2.5vw, 40px); bottom: clamp(20px, 2.5vw, 40px);
  z-index: 2; display: flex; align-items: center; gap: 10px;
}
.hi-hero__badges img {
  height: clamp(64px, 6.5vw, 92px); width: auto;
  background: var(--ge-white); border-radius: 10px; padding: 7px 10px;
  box-shadow: 0 6px 18px rgba(15,20,56,0.25);
}
@media (max-width: 680px) { .hi-hero__badges { display: none; } }
.hi-hero__eyebrows { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }
/* ghost eyebrow turns white on the dark board (mirrors index) */
.hi-hero__copy .eyebrow--ghost { color: var(--ge-white); border-color: rgba(255,255,255,0.35); }

.hi-hero__kicker {
  display: block;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ge-sky);
  font-weight: var(--fw-regular);
  margin-bottom: var(--sp-4);
}
.hi-hero h1 {
  font-size: clamp(40px, 5.4vw, 84px);
  font-weight: var(--fw-light);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ge-white);
  margin: 0 0 var(--sp-5);
  text-wrap: pretty;
}
/* the heading highlight pill — sky tint, brand primary */
.hi-hero h1 .hl {
  background: var(--ge-blue-3);
  color: var(--ge-blue);
  border-radius: var(--radius-md);
  padding: 0.04em 16px 0.18em;
  line-height: 1.1;
}
.hi-hero__lede {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: var(--fw-light);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 40ch;
  margin: 0 0 var(--sp-6);
}
.hi-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-5); }
.hi-hero__note {
  margin: var(--sp-4) 0 0;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-light);
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
}
.hi-hero__note a { color: var(--ge-sky); }
.hi-hero__note a:hover { color: var(--ge-white); text-decoration: underline; }

/* White pill CTA on the dark board (navy arrow). */
.hi-hero__board .btn--primary {
  background: var(--ge-white);
  border-color: var(--ge-white);
  color: var(--ge-navy);
}
.hi-hero__board .btn--primary .btn__arrow { background: var(--ge-navy); color: var(--ge-white); }
.hi-hero__board .btn--primary:hover { background: var(--ge-blue); border-color: var(--ge-blue); color: var(--ge-white); }
.hi-hero__board .btn--primary:hover .btn__arrow { background: var(--ge-white); color: var(--ge-blue); }

/* ---------- HERO countdown card (sits in the board) -------- */
.hi-countdown {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
}
.hi-countdown__label {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin: 0 0 var(--sp-6);
}
.hi-countdown__dot {
  width: 9px; height: 9px; border-radius: 999px; background: var(--ge-red-3); flex: none;
  animation: hi-pulse 2.4s var(--ease-standard) infinite;
}
@media (prefers-reduced-motion: reduce) { .hi-countdown__dot { animation: none; } }
.hi-countdown__title {
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: var(--fw-light);
  line-height: 1.25;
  color: var(--ge-white);
  margin: 0 0 var(--sp-7);
  letter-spacing: -0.01em;
}
.hi-countdown__clock { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.hi-count {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-2);
}
.hi-count__num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: var(--fw-light);
  line-height: 1;
  color: var(--ge-white);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.hi-count__unit {
  display: block; margin-top: 8px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hi-countdown__url {
  margin: var(--sp-7) 0 0; text-align: center;
  font-size: var(--fs-body-sm); letter-spacing: 0.02em;
  color: var(--ge-text-secondary);
}

/* ============================================================
 * GUARANTEE PROMISES — colourful rounded stat tiles (index style)
 * ============================================================ */
.hi-promise {
  position: relative;
  margin-top: var(--sp-12);
  padding: clamp(40px, 5vw, 60px) clamp(20px, 4vw, 48px) 0;
}
.hi-promise::before {
  content: "";
  position: absolute;
  inset: 0 0 clamp(40px, 5vw, 60px) 0;
  background: var(--ge-navy);
  border-radius: 28px;
  z-index: 0;
}
.hi-promise > * { position: relative; z-index: 1; }
.hi-promise__head { text-align: center; max-width: 640px; margin: 0 auto; }
.hi-promise__eyebrow {
  margin: 0 0 var(--sp-3);
  font-size: 12px; font-weight: var(--fw-regular);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ge-sky);
}
.hi-promise__title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: var(--fw-light);
  letter-spacing: -0.02em;
  color: var(--ge-white);
}
.hi-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 760px) { .hi-stats { grid-template-columns: repeat(3, 1fr); } }
.hi-promise .hi-stats { margin-top: clamp(28px, 4vw, 44px); }
.hi-stat {
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-height: 0;
}
.hi-stat:nth-child(1) { background: var(--ge-sky); }     /* sky      */
.hi-stat:nth-child(2) { background: var(--ge-blue-2); }  /* pale sky */
.hi-stat:nth-child(3) { background: var(--ge-blue); }    /* blue     */
.hi-stat__num {
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: var(--fw-light);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
.hi-stat__label {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-light);
  line-height: 1.5;
  margin: 0;
}
.hi-stat:nth-child(3) .hi-stat__num { color: var(--ge-white); }
.hi-stat:nth-child(3) .hi-stat__label { color: rgba(255,255,255,0.85); }
.hi-stat:nth-child(1) .hi-stat__num { color: var(--ge-navy); }
.hi-stat:nth-child(1) .hi-stat__label { color: var(--ge-navy); }
.hi-stat:nth-child(2) .hi-stat__num { color: var(--ge-blue); }
.hi-stat:nth-child(2) .hi-stat__label { color: var(--ge-navy); }
/* tile icons */
.hi-stat__icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
}
.hi-stat__icon svg { width: 26px; height: 26px; }
.hi-stat:nth-child(1) .hi-stat__icon { color: var(--ge-navy);  background: rgba(15,20,56,0.12); }
.hi-stat:nth-child(2) .hi-stat__icon { color: var(--ge-blue);  background: rgba(27,54,126,0.10); }
.hi-stat:nth-child(3) .hi-stat__icon { color: var(--ge-white); background: rgba(255,255,255,0.16); }

/* ============================================================
 * COMPARISON — two cards + VS medallion (the centrepiece)
 * ============================================================ */
.hi-compare__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
@media (min-width: 940px) {
  .hi-compare__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-10); align-items: stretch; }
}

.hi-compare__source {
  margin: var(--sp-6) auto 0;
  max-width: 60ch;
  text-align: center;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}

.hi-invoice {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .hi-invoice { padding: var(--sp-10); } }
.hi-invoice--now {
  background: var(--ge-white);
  border: 1px solid var(--border);
}
.hi-invoice--ours {
  background: var(--ge-navy);
  color: var(--ge-white);
}

.hi-invoice__eyebrow { font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 var(--sp-3); }
/* ⚠ red-4, not red-3 — 6 Aug 2026, accessibility audit (SC 1.4.3).
   --ge-red-3 #EB512E is 3.65:1 on white, under the 4.5:1 body-text minimum.
   --ge-red-4 #D7320F is 4.82:1 and is the palette's own darker red, so this
   needs no new colour. */
.hi-invoice--now .hi-invoice__eyebrow { color: var(--ge-red-4); }
.hi-invoice--ours .hi-invoice__eyebrow { color: var(--ge-sky); }
.hi-invoice__sub { font-size: var(--fs-h4); font-weight: var(--fw-light); margin: 0 0 var(--sp-6); }
.hi-invoice--now .hi-invoice__sub { color: var(--ge-navy); }
.hi-invoice--ours .hi-invoice__sub { color: rgba(255,255,255,0.85); }

.hi-lines { display: flex; flex-direction: column; flex: 1 1 auto; }
.hi-invoice--ours .hi-lines { flex: 0 0 auto; }
.hi-invoice__save {
  flex: 1 1 auto; display: flex; align-items: center;
  margin: var(--sp-4) 0; font-size: clamp(18px, 2vw, 22px); font-weight: var(--fw-light);
  color: var(--ge-sky); line-height: 1.25;
}
.hi-invoice__save strong { font-weight: var(--fw-regular); color: var(--ge-white); }
.hi-line {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) 0; border-bottom: 1px solid var(--border);
}
.hi-invoice--ours .hi-line { border-bottom-color: rgba(255,255,255,0.10); }
.hi-line__name { font-size: var(--fs-body); font-weight: var(--fw-light); }
.hi-invoice--now .hi-line__name { color: var(--ge-navy); }
.hi-invoice--ours .hi-line__name { color: var(--ge-white); }
.hi-line__val { font-size: var(--fs-body); font-variant-numeric: tabular-nums; white-space: nowrap; }
.hi-invoice--now .hi-line__val { color: var(--ge-text-secondary); }

.hi-incl {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-body-sm); letter-spacing: 0.02em; color: var(--ge-sky);
  padding: 4px 12px; border-radius: 999px; background: rgba(47,183,241,0.12);
}
.hi-incl svg { width: 15px; height: 15px; flex: none; }

.hi-total {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4);
  margin-top: var(--sp-6); padding-top: var(--sp-6); border-top: 2px solid;
}
.hi-invoice--now .hi-total { border-top-color: var(--ge-neutral-lt4); }
.hi-invoice--ours .hi-total { border-top-color: rgba(255,255,255,0.35); }
.hi-total__label { font-size: var(--fs-body); letter-spacing: 0.01em; }
.hi-invoice--now .hi-total__label { color: var(--ge-text-secondary); }
.hi-invoice--ours .hi-total__label { color: rgba(255,255,255,0.85); }
.hi-total__num {
  font-size: clamp(34px, 5vw, 52px); font-weight: var(--fw-light); line-height: 1;
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
}
.hi-invoice--now .hi-total__num { color: var(--ge-navy); }
.hi-invoice--ours .hi-total__num {
  color: var(--ge-sky);
  display: inline-block;
  transform-origin: center right;
  animation: hi-num-pulse 2.4s var(--ease-standard) infinite;
}
@keyframes hi-num-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hi-invoice--ours .hi-total__num { animation: none; }
}

.hi-vs {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 76px; height: 76px; border-radius: 999px;
  background: var(--ge-white); color: var(--ge-navy);
  display: none; align-items: center; justify-content: center;
  font-size: 22px; letter-spacing: 0.04em;
  box-shadow: 0 0 0 6px var(--ge-white);
}
@media (min-width: 940px) { .hi-vs { display: inline-flex; } }

/* ============================================================
 * THE GUARANTEE — bold navy standout panel
 * ============================================================ */
.hi-guarantee {
  background: var(--ge-navy);
  border-radius: clamp(24px, 2.4vw, 36px);
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px);
}
.hi-guarantee__head { text-align: center; max-width: 680px; margin: 0 auto var(--sp-10); }
.hi-guarantee__eyebrow {
  margin: 0 0 var(--sp-3); font-size: 12px; font-weight: var(--fw-regular);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ge-sky);
}
.hi-guarantee__head h2 {
  margin: 0 0 var(--sp-4); font-size: clamp(34px, 4.4vw, 54px);
  font-weight: var(--fw-light); letter-spacing: -0.02em; line-height: 1.05; color: var(--ge-white);
}
.hi-guarantee__sub {
  margin: 0 auto; max-width: 52ch; font-size: clamp(16px, 1.6vw, 19px);
  font-weight: var(--fw-light); line-height: 1.55; color: rgba(255,255,255,0.72);
}
.hi-guarantee__deadline {
  display: inline-flex; align-items: center; gap: 8px;
  margin: var(--sp-5) auto 0;
  padding: 7px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px; letter-spacing: 0.02em; color: var(--ge-white);
}
.hi-guarantee__deadline-dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--ge-red-3); flex: none;
}
.hi-guarantee__divider { height: 1px; background: rgba(255,255,255,0.12); margin: clamp(28px, 4vw, 44px) 0; }

/* ---- Savings hero — the big-drama number above the table ---- */
.hi-savings { position: relative; text-align: center; margin: clamp(28px, 5vw, 56px) auto clamp(36px, 5vw, 64px); }
/* was a soft radial glow — removed rather than flattened, since a flat
   fill would just show as a hard-edged rectangle behind the number
   (Rebecca, 28 Jul: remove all gradients site-wide) */
.hi-savings::before {
  content: ""; position: absolute; left: 50%; top: 42%; transform: translate(-50%, -50%);
  width: min(720px, 92%); aspect-ratio: 1.7 / 1; z-index: 0; pointer-events: none;
}
.hi-savings > * { position: relative; z-index: 1; }
.hi-savings__label {
  font-size: clamp(14px, 1.5vw, 18px); letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin: 0 0 var(--sp-3);
}
.hi-savings__num { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); margin: 0; }
.hi-savings__amount {
  font-size: clamp(72px, 15vw, 184px); font-weight: var(--fw-light); line-height: 0.9;
  letter-spacing: -0.04em; color: var(--ge-sky); font-variant-numeric: tabular-nums;
}
.hi-savings__per { font-size: clamp(17px, 2vw, 24px); font-weight: var(--fw-light); color: var(--ge-white); letter-spacing: 0.01em; }
.hi-savings__from {
  font-size: clamp(15px, 1.7vw, 20px); font-weight: var(--fw-light); line-height: 1.5;
  color: rgba(255,255,255,0.78); margin: clamp(20px, 2.6vw, 32px) auto 0; max-width: 46ch;
}
.hi-savings__from span { color: rgba(255,255,255,0.6); text-decoration: line-through; text-decoration-thickness: 1px; }
.hi-savings__from strong { color: var(--ge-white); font-weight: var(--fw-regular); }

/* before/after comparison bars */
.hi-bars { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 32px); max-width: 880px; margin: 0 auto clamp(28px, 4vw, 44px); }
.hi-bar__top { display: flex; justify-content: space-between; align-items: baseline; gap: var(--sp-4); margin-bottom: var(--sp-3); }
.hi-bar__name { font-size: clamp(15px, 1.7vw, 19px); font-weight: var(--fw-light); color: rgba(255,255,255,0.9); }
.hi-bar__val { font-size: clamp(20px, 2.4vw, 30px); font-weight: var(--fw-regular); color: var(--ge-white); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; white-space: nowrap; }
.hi-bar__track { height: clamp(18px, 2vw, 28px); background: rgba(255,255,255,0.12); border-radius: 999px; overflow: hidden; }
.hi-bar__fill { height: 100%; width: 0; border-radius: 999px; transition: width 1.1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.hi-bars.is-in .hi-bar__fill { width: var(--w); }
@media (prefers-reduced-motion: reduce) { .hi-bar__fill { transition: none; width: var(--w); } }
.hi-bar--now .hi-bar__fill { background: rgba(255,255,255,0.4); }
.hi-bar--ours .hi-bar__fill { background: var(--ge-sky); }
.hi-bar--ours .hi-bar__val { color: var(--ge-sky); }

/* collapsible full breakdown */
.hi-breakdown { max-width: 1000px; margin: 0 auto; text-align: center; }
.hi-breakdown__summary {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer; list-style: none;
  padding: 10px 22px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.28); color: var(--ge-white);
  font-size: var(--fs-body-sm); letter-spacing: 0.01em;
  transition: border-color var(--dur-base) var(--ease-standard);
}
.hi-breakdown__summary::-webkit-details-marker { display: none; }
.hi-breakdown__summary::after { content: "+"; font-size: 18px; line-height: 1; }
.hi-breakdown[open] .hi-breakdown__summary::after { content: "\2013"; }
.hi-breakdown__summary:hover { border-color: rgba(255,255,255,0.55); }
.hi-breakdown > .hi-compare__grid { margin-top: clamp(28px, 4vw, 44px); text-align: left; }

.hi-guarantee__cta { display: flex; justify-content: center; margin-top: clamp(28px, 4vw, 44px); }

/* pull-quote moment */
.hi-pullquote { padding: clamp(64px, 8vw, 112px) 0; }
.hi-pullquote__fig { max-width: 1100px; margin: 0 auto; text-align: center; background: var(--ge-sky); color: var(--ge-navy); border-radius: clamp(24px, 2.4vw, 36px); padding: clamp(40px, 6vw, 88px) clamp(28px, 5vw, 72px); }
.hi-pullquote__text { font-size: clamp(28px, 4vw, 54px); font-weight: var(--fw-light); line-height: 1.16; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.hi-pullquote__text .hl { background: var(--ge-navy); color: var(--ge-white); border-radius: var(--radius-md); padding: 0.02em 14px 0.14em; line-height: 1.1; }
.hi-pullquote__by { margin: clamp(20px, 3vw, 32px) 0 0; font-size: clamp(13px, 1.4vw, 17px); letter-spacing: 0.06em; text-transform: uppercase; color: rgba(15,20,56,0.7); }

/* by-the-numbers stats band */
.hi-statsband { padding: clamp(56px, 7vw, 96px) 0; }
.hi-statsband__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 48px) clamp(20px, 3vw, 40px); text-align: center; }
@media (min-width: 820px) { .hi-statsband__grid { grid-template-columns: repeat(4, 1fr); } }
.hi-statsband__item { display: flex; flex-direction: column; gap: var(--sp-2); align-items: center; }
.hi-statsband__num { font-size: clamp(40px, 5vw, 68px); font-weight: var(--fw-light); letter-spacing: -0.03em; line-height: 1; color: var(--ge-navy); margin: 0; }
.hi-statsband__label { font-size: var(--fs-body-sm); font-weight: var(--fw-light); color: var(--ge-text-secondary); max-width: 16ch; margin: 0; line-height: 1.4; }

/* #1 logo marquee */
.hi-marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.hi-marquee__track { display: flex; align-items: center; gap: clamp(36px, 5vw, 72px); width: max-content; animation: hi-marquee 48s linear infinite; }
.hi-marquee__track img { height: clamp(40px, 4vw, 54px); width: auto; flex: none; filter: grayscale(1); opacity: 0.62; }
.hi-marquee:hover .hi-marquee__track { animation-play-state: paused; }
@keyframes hi-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hi-marquee__track { animation: none; flex-wrap: wrap; justify-content: center; row-gap: clamp(20px,4vw,32px); } }

/* #4 final CTA — photo behind the board (hero-style) */
.hi-final__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hi-final__board::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(15,20,56,0.86); }
.hi-final__board .hi-final__inner { z-index: 2; }

/* #5 staggered reveal cadence */
.hi-features .hi-feature[data-reveal]:nth-child(2) { transition-delay: 110ms, 0s, 0s; }
.hi-features .hi-feature[data-reveal]:nth-child(3) { transition-delay: 220ms, 0s, 0s; }
.hi-statsband__item[data-reveal]:nth-child(2) { transition-delay: 90ms, 0s, 0s; }
.hi-statsband__item[data-reveal]:nth-child(3) { transition-delay: 180ms, 0s, 0s; }
.hi-statsband__item[data-reveal]:nth-child(4) { transition-delay: 270ms, 0s, 0s; }
.hi-guarantee .hi-stats { margin-top: clamp(20px, 3vw, 32px); }

/* winning quote card pops in sky on the dark panel */
.hi-guarantee .hi-invoice--ours { background: var(--ge-sky); color: var(--ge-navy); }
.hi-guarantee .hi-invoice--ours .hi-invoice__eyebrow { color: var(--ge-navy); }
.hi-guarantee .hi-invoice--ours .hi-invoice__sub { color: rgba(15,20,56,0.80); }
.hi-guarantee .hi-invoice--ours .hi-line__name { color: var(--ge-navy); }
.hi-guarantee .hi-invoice--ours .hi-line { border-bottom-color: rgba(15,20,56,0.16); }
.hi-guarantee .hi-invoice--ours .hi-incl { color: var(--ge-navy); font-weight: var(--fw-regular); background: var(--ge-white); }
.hi-guarantee .hi-invoice--ours .hi-invoice__save { color: var(--ge-navy); }
.hi-guarantee .hi-invoice--ours .hi-invoice__save strong { color: var(--ge-navy); font-weight: var(--fw-bold, 700); }
.hi-guarantee .hi-invoice--ours .hi-total {
  background: var(--ge-white); border-top: none;
  border-radius: var(--radius-md); padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-6); align-items: center;
}
.hi-guarantee .hi-invoice--ours .hi-total__label { color: var(--ge-text-secondary); }
.hi-guarantee .hi-invoice--ours .hi-total__num { color: var(--ge-navy); }
/* match the left card's total to a tile so both columns foot symmetrically */
.hi-guarantee .hi-invoice--now .hi-total {
  background: rgba(15,20,56,0.05); border-top: none;
  border-radius: var(--radius-md); padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-6); align-items: center;
}

/* ---- make the GroupEd quote the dominant, "winning" card ---- */
@media (min-width: 940px) {
  /* give the winning card more width than the invoices card */
  .hi-guarantee .hi-compare__grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .hi-guarantee .hi-invoice--ours {
    z-index: 2;
  }
  /* let the invoices card recede */
  .hi-guarantee .hi-invoice--now {
    opacity: 1;
  }
}
/* elevation on the winning card */
.hi-guarantee .hi-invoice--ours {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6);
}
/* "Best value" badge */
.hi-invoice__badge {
  position: absolute; top: var(--sp-5); right: var(--sp-5); z-index: 3;
  display: inline-flex; align-items: center; gap: 0.3em;
  background: var(--ge-navy); color: var(--ge-white);
  font-size: 13px; font-weight: var(--fw-medium); letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45em 0.85em; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(15,20,56,0.25);
}

/* ============================================================
 * THE DEAL — navy frame panel + bento of product tiles
 * ============================================================ */
/* full-bleed light band so the deal reads as its own "room",
 * not another navy box — breaks the navy-card repetition. */
.hi-deal-panel {
  background: #ECECEE;
  border-radius: clamp(24px, 2.4vw, 36px);
  padding: clamp(24px, 3vw, 44px);
}
.hi-deal-head {
  display: block; margin-bottom: var(--sp-10);
}
.hi-deal-head__copy { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-4); max-width: 60ch; margin: 0 auto; }
.hi-deal-head__copy .eyebrow { align-self: center; }
.hi-deal-head__copy h2 {
  font-size: clamp(34px, 4.6vw, 56px); font-weight: var(--fw-light);
  line-height: 1.06; letter-spacing: -0.02em; margin: 0; color: var(--ge-navy);
}
.hi-deal-head__copy p {
  font-size: clamp(16px, 1.6vw, 19px); font-weight: var(--fw-light);
  line-height: 1.55; color: var(--fg2); margin: 0; max-width: 48ch;
}
.hi-deal-head__media {
  display: block; width: 100%; height: clamp(240px, 26vw, 340px);
}
.hi-band-label--ondark {
  align-items: flex-start; text-align: left; max-width: none; margin-bottom: var(--sp-10);
}
.hi-band-label--ondark h2 { color: var(--ge-white); }
.hi-band-label--ondark p { color: rgba(255,255,255,0.72); }
.hi-band-label--ondark .eyebrow { background: var(--ge-sky); color: var(--ge-white); align-self: flex-start; }

.hi-products { display: flex; flex-direction: column; gap: var(--sp-5); }
.hi-product {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: clamp(28px, 3.2vw, 44px);
  transition-property: opacity, transform, box-shadow;
  transition-duration: .55s, .35s, .3s;
  transition-timing-function: var(--ease-standard);
}
/* stagger delays the fade-in only, so hover stays snappy */
.hi-products .hi-product[data-reveal]:nth-child(2) { transition-delay: 120ms, 0s, 0s; }
.hi-products .hi-product[data-reveal]:nth-child(3) { transition-delay: 240ms, 0s, 0s; }
.hi-product:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(15,20,56,0.28); border-color: transparent; }
@media (prefers-reduced-motion: reduce) { .hi-product:hover { transform: none; } }
@media (min-width: 820px) {
  .hi-product { grid-template-columns: 1.55fr 0.95fr; align-items: stretch; gap: clamp(32px, 4vw, 64px); }
}
.hi-product__body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.hi-product--onsite    { background: var(--ge-blue-3); }
.hi-product--classroom { background: var(--ge-blue-3); }
.hi-product--one       { background: var(--ge-blue-3); }

.hi-product__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  color: var(--ge-white); font-size: 18px; font-weight: var(--fw-regular);
  margin-bottom: var(--sp-5);
}
.hi-product--onsite    .hi-product__num { background: #614DBA; }
.hi-product--classroom .hi-product__num { background: #3B6EF0; }
.hi-product--one       .hi-product__num { background: #00B1A7; }

.hi-product__chip {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
}
.hi-product__chip svg { width: 24px; height: 24px; color: var(--ge-white); }
.hi-product--onsite    .hi-product__chip { background: #614DBA; }
.hi-product--classroom .hi-product__chip { background: #3B6EF0; }
.hi-product--one       .hi-product__chip { background: #00B1A7; }

.hi-product__logo { height: 44px; width: auto; display: block; }
.hi-product__name { margin: 0 0 var(--sp-3); }
.hi-product__tag {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0 0 var(--sp-4); line-height: 1.5;
}
.hi-product--onsite    .hi-product__tag { color: #614DBA; }
.hi-product--classroom .hi-product__tag { color: #3B6EF0; }
.hi-product--one       .hi-product__tag { color: #00866A; }
.hi-product__desc {
  font-size: var(--fs-body); font-weight: var(--fw-light); line-height: 1.6;
  color: var(--ge-neutral-dk2); margin: 0; max-width: 52ch;
}
.hi-product__pay {
  display: flex; flex-direction: column; justify-content: center;
  border-radius: var(--radius-md);
  padding: clamp(24px, 2.6vw, 36px);
}
.hi-product--onsite    .hi-product__pay { background: #614DBA; }
.hi-product--classroom .hi-product__pay { background: #3B6EF0; }
.hi-product--one       .hi-product__pay { background: #00B1A7; }
.hi-product__pay-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); margin: 0 0 var(--sp-2);
}
.hi-product__price {
  font-size: clamp(22px, 2.6vw, 28px); font-weight: var(--fw-light);
  margin: 0 0 var(--sp-2); letter-spacing: -0.01em;
}
.hi-product--onsite    .hi-product__price,
.hi-product--classroom .hi-product__price,
.hi-product--one       .hi-product__price { color: var(--ge-white); }
.hi-product__fine {
  font-size: var(--fs-body-sm); font-weight: var(--fw-light);
  color: rgba(255,255,255,0.82); margin: 0; line-height: 1.5;
}

/* hero deadline pill (relocated from the top bar) */
.hi-hero__deadline { display: inline-flex; align-items: center; gap: 9px; margin-top: var(--sp-5); font-size: var(--fs-body-sm); color: rgba(255,255,255,0.85); }
.hi-hero__deadline-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--ge-red-3); flex: none; animation: hi-pulse 2.4s var(--ease-standard) infinite; }
@media (prefers-reduced-motion: reduce) { .hi-hero__deadline-dot { animation: none; } }

/* Monzo-style alternating product feature rows */
.hi-features { display: flex; flex-direction: column; gap: clamp(24px, 4vw, 56px); }
.hi-feature {
  display: grid; grid-template-columns: 1fr; align-items: stretch;
  background: var(--ge-white); border: 1px solid var(--border);
  border-radius: clamp(20px, 2.4vw, 32px); overflow: hidden;
}
@media (min-width: 860px) {
  .hi-feature { grid-template-columns: 1fr 1fr; }
  .hi-feature:nth-child(even) .hi-feature__media { order: 2; }
}
.hi-feature__media { position: relative; min-height: clamp(240px, 30vw, 380px); padding: clamp(18px, 2vw, 30px); }
.hi-feature--onsite .hi-feature__media { background: #ECE9F8; }
.hi-feature--classroom .hi-feature__media { background: var(--ge-blue-3); }
.hi-feature--one .hi-feature__media { background: #DEF2EF; }
.hi-feature__slot { display: block; width: 100%; height: 100%; }
#deal-onsite-photo::part(image) { transform: translate(-50%, -50%) scale(1.05) !important; }
.hi-feature__img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.hi-feature__content { padding: clamp(28px, 3.5vw, 56px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: var(--sp-4); }
.hi-feature .hi-product__desc { max-width: 46ch; }
.hi-feature .hi-product__pay { width: 100%; }
.hi-feature .hi-product__price { color: var(--ge-white); }
.hi-feature--onsite .hi-product__tag { color: #614DBA; }
.hi-feature--onsite .hi-product__pay { background: #614DBA; }
.hi-feature--classroom .hi-product__tag { color: #3B6EF0; }
.hi-feature--classroom .hi-product__pay { background: #3B6EF0; }
.hi-feature--one .hi-product__tag { color: #00866A; }
.hi-feature--one .hi-product__pay { background: #00B1A7; }

/* ============================================================
 * FULL-WIDTH IMAGE BAND — edge-to-edge placeholder
 * ============================================================ */
.hi-imageband { padding: clamp(40px, 5vw, 72px) 0; }
.hi-imageband__caption { text-align: center; font-size: clamp(24px, 3vw, 40px); font-weight: var(--fw-light); letter-spacing: -0.02em; color: var(--ge-navy); margin: 0 0 clamp(24px, 3vw, 40px); }
.hi-imageband__img { display: block; width: 100%; height: auto; border-radius: clamp(24px, 2.4vw, 36px); }

/* ============================================================
 * HOW IT WORKS — numbered chips on a dashed connector
 * ============================================================ */
.hi-how__grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); align-items: center;
  background: var(--ge-blue-3); border-radius: clamp(24px, 2.4vw, 36px);
  padding: clamp(28px, 4vw, 52px);
}
@media (min-width: 900px) { .hi-how__grid { grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 5vw, 72px); } }
.hi-how__media { position: relative; border-radius: clamp(20px, 2.4vw, 32px); overflow: hidden; min-height: 300px; align-self: stretch; }
.hi-how__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.09); }
.hi-how__content { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-5); }
.hi-guarantee .eyebrow--ghost { color: var(--ge-white); border-color: rgba(255,255,255,0.35); }
.hi-how__content h2 {
  font-size: clamp(34px, 4.6vw, 56px); font-weight: var(--fw-light);
  line-height: 1.05; letter-spacing: -0.02em; color: var(--ge-navy); margin: 0;
}
.hi-steps {
  display: flex; flex-direction: column; gap: var(--sp-7);
  width: 100%; max-width: none; margin: var(--sp-2) 0 var(--sp-2);
  list-style: none; padding-left: 0;
}
.hi-step { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-5); align-items: start; text-align: left; }
.hi-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--radius-md);
  font-size: 20px; font-weight: var(--fw-regular); color: var(--ge-white);
  flex: none; box-shadow: none; margin: 0;
}
.hi-step:nth-child(1) .hi-step__num { background: var(--ge-navy); }
.hi-step:nth-child(2) .hi-step__num { background: var(--ge-navy); }
.hi-step:nth-child(3) .hi-step__num { background: var(--ge-navy); }
.hi-step__title { font-size: var(--fs-h4); font-weight: var(--fw-regular); color: var(--ge-navy); margin: 0 0 var(--sp-2); }
.hi-step__body { font-size: var(--fs-body); font-weight: var(--fw-light); line-height: 1.6; color: var(--fg2); margin: 0; }
.hi-step__body a { color: var(--ge-blue); }
.hi-step__body a:hover { text-decoration: underline; color: var(--ge-navy); }

/* ============================================================
 * FINAL CTA — navy rounded board on white (index style)
 * ============================================================ */
.hi-final { padding: var(--sp-10) 0 var(--sp-12); }
.hi-final__board {
  position: relative;
  overflow: hidden;
  background: var(--ge-navy);
  color: var(--ge-white);
  border-radius: clamp(24px, 2.4vw, 36px);
  text-align: center;
  padding: clamp(48px, 6vw, 84px) var(--sp-6);
}
.hi-final__board::before {
  content: "";
  position: absolute; pointer-events: none; z-index: 0;
  top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-8deg);
  width: 94%; aspect-ratio: 175.14 / 193.47;
  background-color: var(--ge-white);
  -webkit-mask: url('../assets/logos/grouped-symbol-white.svg') no-repeat center / contain;
          mask: url('../assets/logos/grouped-symbol-white.svg') no-repeat center / contain;
  opacity: 0.045;
}
.hi-final__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.hi-final__deadline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px; border-radius: var(--radius-pill);
  background: var(--ge-red-3); color: var(--ge-white);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--sp-7);
}
.hi-final h2 {
  font-size: clamp(34px, 5vw, 56px); font-weight: var(--fw-light);
  line-height: 1.08; letter-spacing: -0.02em; color: var(--ge-white); margin: 0 0 var(--sp-5);
}
.hi-final h2 .hl {
  background: var(--ge-blue-3); color: var(--ge-blue);
  border-radius: var(--radius-md); padding: 0.02em 14px 0.16em; line-height: 1.1;
}
.hi-final__sub {
  font-size: clamp(17px, 1.8vw, 20px); font-weight: var(--fw-light);
  color: rgba(255,255,255,0.85); line-height: 1.55; margin: 0 auto var(--sp-8); max-width: 46ch;
}
.hi-final__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--sp-5); }
.hi-final__board .btn--primary {
  background: var(--ge-white); border-color: var(--ge-white); color: var(--ge-navy);
}
.hi-final__board .btn--primary .btn__arrow { background: var(--ge-navy); color: var(--ge-white); }
.hi-final__board .btn--primary:hover { background: var(--ge-blue); border-color: var(--ge-blue); color: var(--ge-white); }
.hi-final__board .btn--primary:hover .btn__arrow { background: var(--ge-white); color: var(--ge-blue); }
.hi-final__contact {
  margin: var(--sp-8) 0 0; display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--sp-2) var(--sp-8); font-size: var(--fs-body-sm); color: rgba(255,255,255,0.72);
}
.hi-final__contact a { color: var(--ge-sky); }
.hi-final__contact a:hover { color: var(--ge-white); text-decoration: underline; }

/* ============================================================
 * STICKY CTA BAR
 * ============================================================ */
.hi-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ge-navy); color: var(--ge-white);
  box-shadow: 0 -6px 24px rgba(15,20,56,0.18);
  transform: translateY(110%);
  transition: transform var(--dur-slow) var(--ease-emphasized);
}
.hi-sticky.is-shown { transform: none; }
.hi-sticky__inner {
  max-width: 1280px; margin: 0 auto; padding: var(--sp-3) var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-5);
}
@media (min-width: 768px) { .hi-sticky__inner { padding: var(--sp-3) var(--sp-8); } }
.hi-sticky__copy { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.hi-sticky__strong { font-size: var(--fs-body); color: var(--ge-white); font-weight: var(--fw-regular); }
.hi-sticky__small {
  font-size: 12px; color: rgba(255,255,255,0.72);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hi-sticky__time {
  margin-left: auto; font-variant-numeric: tabular-nums;
  font-size: var(--fs-body-sm); color: var(--ge-sky); letter-spacing: 0.02em;
  white-space: nowrap; display: none;
}
@media (min-width: 620px) { .hi-sticky__time { display: inline; } }
.hi-sticky .btn { flex: none; }
.hi-sticky__small-cta { margin-left: auto; }
@media (min-width: 620px) { .hi-sticky__small-cta { margin-left: var(--sp-5); } }
/* white pill on the navy bar */
.hi-sticky .btn--primary { background: var(--ge-white); border-color: var(--ge-white); color: var(--ge-navy); }
.hi-sticky .btn--primary .btn__arrow { background: var(--ge-navy); color: var(--ge-white); }
.hi-sticky .btn--primary:hover { background: var(--ge-blue); border-color: var(--ge-blue); color: var(--ge-white); }
.hi-sticky .btn--primary:hover .btn__arrow { background: var(--ge-white); color: var(--ge-blue); }

@media (max-width: 619px) {
  body.has-sticky .footer { padding-bottom: calc(var(--sp-6) + 72px); }
}
