/* ════════════════════════════════════════════════════════════════
   Benchmark Insurance Group, Shared Stylesheet
   Newfront-inspired editorial system · Benchmark brand palette
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Benchmark 2026, Jivar's institutional design system */
  --bg: #f9f9fc;
  --bg-alt: #f3f3f6;
  --surface: #ffffff;
  --ink: #0d1118;
  --ink-2: #1a1c1e;
  --muted: #46464e;
  --line: rgba(13, 17, 24, 0.10);
  --line-strong: rgba(13, 17, 24, 0.22);
  --accent: #19C19E;          /* Benchmark logo teal — the single brand green */
  --accent-bright: #19C19E;   /* unified to logo teal (retired the washed mint) */
  --accent-dark: #0f8e74;     /* darker teal for hover / teal-on-white contrast */
  --accent-soft: #e6f8f3;
  --navy: #0d1640;            /* benchmark navy */
  --navy-deep: #07092d;
  --gold: #E0C18D;            /* logo gold */
  --warn: #A16207;
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 64px);
  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 12px;
  --noise-overlay: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Hanken Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'ss01';
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.serif { font-family: 'Hanken Grotesk', 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.display { font-family: 'Hanken Grotesk', 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.025em; line-height: 1.02; }
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.eyebrow {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
}
.accent-bar { display: none; } /* legacy; institutional eyebrow uses no bar */
.label-caps {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}

/* ── NAV (Jivar institutional flat bar) ──────────────────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249, 249, 252, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav-wrap.scrolled {
  border-bottom-color: var(--line);
  background: rgba(249, 249, 252, 0.97);
}
.nav { position: relative; }
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 8px; }
.brand-mark { display: none; }
.brand-name { display: none; }
.brand-logo {
  display: block;
  height: 38px;
  width: auto;
  max-width: 220px;
}
@media (max-width: 600px) { .brand-logo { height: 32px; } }

.nav-links {
  display: none;
  gap: 4px;
  list-style: none; padding: 0; margin: 0;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
}
.nav-links a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--ink-2);
  transition: color .15s ease, background .15s ease;
  position: relative;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--ink); background: rgba(13, 17, 24, 0.04); }
.nav-links a.active {
  color: var(--ink);
  font-weight: 600;
}
.nav-links a.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--accent);
}
.nav-links a[data-dropdown]::after {
  content: '';
  width: 10px; height: 10px;
  margin-left: 2px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'><path d='M6 9l6 6 6-6'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5'><path d='M6 9l6 6 6-6'/></svg>") center / contain no-repeat;
  opacity: 0.5; transition: transform .2s ease, opacity .2s ease;
}
.nav-links a[data-dropdown][aria-expanded="true"]::after {
  transform: rotate(180deg); opacity: 1;
}
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-login {
  font-size: 14px; font-weight: 500; color: var(--ink-2); display: none;
  padding: 8px 4px;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-login:hover { color: var(--ink); border-bottom-color: var(--ink); }
@media (min-width: 720px) { .nav-login { display: inline-block; } }
@media (min-width: 1080px) { .nav-links { display: flex; } }

/* Mobile toggle */
.menu-toggle {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  width: 40px; height: 40px;
  border-radius: var(--radius);
  display: grid; place-items: center;
}
.menu-toggle:hover { background: rgba(13, 17, 24, 0.04); }
.menu-toggle svg { width: 18px; height: 18px; }
@media (min-width: 1080px) { .menu-toggle { display: none; } }
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  z-index: 40;
  padding: 24px var(--pad);
  flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 22px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 10px;
}

/* CTAs inside the nav */
.nav .btn-accent {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  height: 40px;
  padding: 0 18px;
  font-weight: 600;
}
.nav .btn-accent:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.nav .btn-ghost {
  color: var(--ink-2);
  border-color: var(--line-strong);
  background: transparent;
  height: 40px;
}
.nav .btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

/* Buttons (institutional 4px corners) */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px;
  border-radius: var(--radius); border: 1px solid transparent;
  font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-accent { background: var(--accent-bright); color: var(--ink); }
.btn-accent:hover { background: var(--accent); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-link {
  background: transparent; padding: 0; height: auto;
  color: var(--accent); font-weight: 600; font-size: 14px;
  border-bottom: 1px solid currentColor; border-radius: 0;
}
.btn-link::after { content: ' →'; transition: transform .15s ease; display: inline-block; }
.btn-link:hover::after { transform: translateX(3px); }

/* ── MEGA MENU (institutional white panel with hairline) ───── */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
  width: min(1080px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(13, 17, 24, 0.18);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 60;
}
.mega-menu[aria-hidden="false"] {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.mega-left {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.mega-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.mega-desc {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px; line-height: 1.5;
  color: var(--ink-2); margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.mega-left-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid var(--ink);
}
.mega-left-cta:hover { color: var(--accent); border-bottom-color: var(--accent); }
.mega-left-cta::after { content: ' →'; transition: transform .15s ease; }
.mega-left-cta:hover::after { transform: translateX(3px); }

.mega-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.mega-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 14px; font-weight: 500;
  transition: background .15s ease, color .15s ease;
}
.mega-item:hover, .mega-item:focus-visible {
  background: var(--bg-alt);
  color: var(--ink);
  outline: none;
}
.mega-item-text { display: flex; flex-direction: column; gap: 2px; }
.mega-item-title { font-weight: 600; line-height: 1.2; }
.mega-item-sub {
  font-size: 12px; color: var(--muted); font-weight: 400;
}
.mega-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mega-icon svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .mega-inner { grid-template-columns: 1fr; gap: 20px; }
  .mega-left { padding-right: 0; padding-bottom: 18px; border-right: none; border-bottom: 1px solid var(--line); }
  .mega-right { grid-template-columns: 1fr; }
}

.mobile-menu details { border-bottom: 1px solid var(--line); }
.mobile-menu details > summary {
  list-style: none; cursor: pointer;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 22px; font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu details > summary::-webkit-details-marker { display: none; }
.mobile-menu details > summary::after {
  content: '+'; font-size: 18px; opacity: 0.5;
}
.mobile-menu details[open] > summary::after { content: '−'; }
.mobile-menu details .mobile-sub {
  display: flex; flex-direction: column; gap: 0;
  padding: 4px 0 14px;
}
.mobile-menu details .mobile-sub a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--ink-2);
  padding: 8px 0;
  border: none;
  letter-spacing: 0;
}
.mobile-menu details .mobile-sub a:hover { color: var(--ink); }

/* ── HERO (homepage variant) ───── */
.hero {
  padding: clamp(48px, 9vw, 96px) 0 clamp(48px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; gap: clamp(28px, 5vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; }
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500; letter-spacing: -0.025em;
  font-size: clamp(40px, 5.6vw, 72px); line-height: 1.04;
  margin: 18px 0 24px; color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--accent-dark); font-weight: 500; }
.hero p.lede {
  font-size: clamp(17px, 1.4vw, 19px); line-height: 1.55;
  color: var(--ink-2); max-width: 560px; margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── INNER PAGE HERO (compact) ── */
.page-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-hero-grid {
  display: grid; gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 960px) {
  .page-hero-grid { grid-template-columns: 1.3fr 1fr; }
}
.page-hero h1 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5.4vw, 72px); line-height: 1.04; letter-spacing: -0.028em;
  margin: 16px 0 0;
  color: var(--ink);
}
.page-hero h1 em { font-style: normal; color: var(--accent); font-weight: 800; }
.page-hero p.lede {
  font-size: 17px; line-height: 1.55;
  color: var(--ink-2); margin: 0;
}
.page-hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.breadcrumb {
  font-size: 13px; color: var(--muted); display: flex; gap: 8px;
}
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb span { color: var(--ink); font-weight: 500; }

/* ── PANEL (operational widget) ─── */
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -40px rgba(11, 30, 51, 0.18);
  overflow: hidden;
}
.panel-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  font-size: 12px; letter-spacing: 0.04em; color: var(--muted); font-weight: 500;
}
.panel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block; margin-right: 8px; box-shadow: 0 0 0 4px rgba(16,184,158,0.15); }
.panel-body { padding: 18px; }
.panel-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.panel-row:last-child { border-bottom: 0; }
.panel-row .label { color: var(--ink-2); font-weight: 500; }
.panel-row .val { color: var(--ink); font-weight: 600; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-dark);
  font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
}
.panel-foot {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  font-size: 12px; color: var(--muted);
  display: flex; justify-content: space-between; align-items: center;
}
.heat-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px; margin-top: 8px; }
.heat { aspect-ratio: 1; border-radius: 3px; background: var(--accent-soft); }
.heat.m { background: #B5EBDD; } .heat.h { background: var(--accent); } .heat.x { background: var(--accent-dark); }

/* ── METRICS STRIP ───────────────── */
.metrics-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.metrics-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
@media (min-width: 720px) { .metrics-row { grid-template-columns: repeat(4, 1fr); } }
.metric {
  padding: 32px clamp(16px, 2.4vw, 32px);
  border-left: 1px solid var(--line);
}
.metric:first-child { border-left: 0; }
@media (max-width: 719px) { .metric:nth-child(odd) { border-left: 0; } .metric:nth-child(3),.metric:nth-child(4){border-top:1px solid var(--line);} }
.metric .num {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(32px, 3vw, 44px); letter-spacing: -0.02em; line-height: 1; color: var(--ink);
}
.metric .lbl { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* ── SECTION SHELL ───────────────── */
section { padding: clamp(72px, 10vw, 120px) 0; }
.section-head {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 920px; margin-bottom: clamp(40px, 5vw, 64px);
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1.2fr 1fr; }
}
.section-head h2 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(30px, 3.4vw, 48px); line-height: 1.1; letter-spacing: -0.02em;
  margin: 12px 0 0;
}
.section-head p {
  color: var(--muted); font-size: 17px; line-height: 1.55;
  align-self: end; margin: 0;
}

/* ── ALTERNATING L/R ROWS ───────── */
.industry-row {
  display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
}
.industry-row:first-of-type { border-top: 0; padding-top: 0; }
@media (min-width: 960px) {
  .industry-row { grid-template-columns: 1fr 1fr; }
  .industry-row.flip .industry-media { order: 2; }
}
.industry-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}
.industry-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.industry-media:hover img { transform: scale(1.04); }
.industry-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink);
}
.industry-num {
  font-family: 'Fraunces', serif; font-size: 14px; font-weight: 500;
  color: var(--accent-dark); letter-spacing: 0.04em;
}
.industry-content h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(28px, 2.8vw, 40px); line-height: 1.1; letter-spacing: -0.015em;
  margin: 10px 0 16px;
}
.industry-content p {
  color: var(--ink-2); font-size: 16px; line-height: 1.6; margin: 0 0 20px;
}
.industry-products {
  list-style: none; padding: 0; margin: 24px 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.industry-products li {
  padding: 6px 12px; border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 13px; color: var(--ink-2); font-weight: 500;
  transition: all .15s ease;
}
.industry-products li:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-dark); }

/* "We serve" customer-type list, explicit SEO callout */
.we-serve {
  margin: 0 0 24px;
  padding: 16px 18px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--accent);
}
.we-serve dt {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--muted);
  margin-bottom: 6px;
}
.we-serve dd {
  margin: 0;
  font-size: 14px; line-height: 1.6; color: var(--ink-2);
  font-weight: 500;
}
.we-serve dd span { color: var(--accent-dark); margin: 0 6px; }

/* ── PROCESS RAIL ─────────────── */
.approach { background: var(--bg-alt); }
.approach-rail {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 720px) { .approach-rail { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .approach-rail { grid-template-columns: repeat(5, 1fr); } }
.approach-rail.three-up { grid-template-columns: 1fr; }
@media (min-width: 720px) { .approach-rail.three-up { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s ease, transform .2s ease;
}
.step:hover { border-color: var(--accent); transform: translateY(-2px); }
.step-num {
  font-family: 'Fraunces', serif; font-size: 14px; font-weight: 500;
  color: var(--accent-dark); letter-spacing: 0.04em;
}
.step h4 {
  font-size: 17px; font-weight: 600; margin: 0; color: var(--ink); letter-spacing: -0.01em;
}
.step p {
  font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55;
}

/* ── PARALLAX BAND ───────────────── */
.parallax {
  position: relative;
  min-height: clamp(360px, 50vw, 520px);
  background-image: linear-gradient(rgba(11,30,51,0.78), rgba(11,30,51,0.78)), url('/assets/u/photo-1486406146926-c627a92ad1ab.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  display: grid; place-items: center;
  text-align: center;
  padding: 80px 0;
}
@media (max-width: 720px) { .parallax { background-attachment: scroll; } }
.parallax-inner { max-width: 820px; padding: 0 var(--pad); }
.parallax h2 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.1; letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.parallax p {
  font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.95); margin: 0 0 32px;
}
.parallax .eyebrow { color: rgba(255,255,255,0.9); }

/* ── PRODUCT/SERVICE GRID ─────── */
.products-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
.product {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
  display: flex; flex-direction: column;
}
.product:hover { border-color: var(--ink); transform: translateY(-2px); }
.product .icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.product .icon svg { width: 20px; height: 20px; }
.product h4 {
  font-size: 17px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em;
}
.product p {
  font-size: 14px; color: var(--muted); margin: 0 0 16px; line-height: 1.55;
}
.product .btn-link { margin-top: auto; }

/* ── TESTIMONIAL ROW ─────────────── */
.quote-section { background: var(--navy-deep); color: #fff; }
.quote-grid {
  display: grid; gap: clamp(32px, 5vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .quote-grid { grid-template-columns: 1.1fr 1fr; } }
.big-quote {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px); line-height: 1.3; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.96);
}
.quote-meta { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,0.85); }
.quote-meta strong { color: #fff; font-weight: 600; display: block; margin-bottom: 2px; }
.quote-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; align-self: center; }
.quote-stat { border-left: 2px solid var(--accent); padding-left: 16px; }
.quote-stat .num { font-family: 'Fraunces', serif; font-size: clamp(28px, 3vw, 40px); font-weight: 500; line-height: 1; }
.quote-stat .lbl { color: rgba(255,255,255,0.85); font-size: 13px; margin-top: 6px; }

/* ── PARTNER LOGOS ─────────────── */
.partners {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 56px 0;
}
.partners-head {
  text-align: center; margin-bottom: 32px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.partners-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  align-items: center;
}
@media (min-width: 720px) { .partners-row { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1080px) { .partners-row { grid-template-columns: repeat(6, 1fr); } }
.partners-row img {
  max-height: 36px; width: auto; margin: 0 auto;
  opacity: 0.55; filter: grayscale(100%);
  transition: opacity .2s ease, filter .2s ease;
}
.partners-row img:hover { opacity: 1; filter: grayscale(0%); }

/* ── FINAL CTA ─────────────── */
.final-cta {
  background: var(--bg-alt);
  padding: clamp(72px, 10vw, 120px) 0;
}
.final-cta .inner {
  text-align: left;
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) { .final-cta .inner { grid-template-columns: 1.4fr 1fr; } }
.final-cta h2 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(36px, 4.4vw, 64px); line-height: 1.05; letter-spacing: -0.025em;
  margin: 16px 0 0;
}
.final-cta .actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-self: end;
}

/* ── FAQ ─────────────── */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  cursor: pointer; padding: 22px 28px;
  font-weight: 600; font-size: 16px; color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 24px; font-weight: 400; color: var(--accent-dark);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body {
  padding: 0 28px 22px;
  color: var(--ink-2); font-size: 15px; line-height: 1.65;
}

/* ── FORM ─────────────── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select {
  height: 48px; padding: 0 16px;
  font: inherit;
  background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.field textarea { padding: 14px 16px; min-height: 120px; resize: vertical; height: auto; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: var(--surface);
}
.privacy-note { font-size: 12px; color: var(--muted); margin-top: 16px; }

/* ── CONTACT CARDS ─────────────── */
.contact-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-card h4 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 8px;
}
.contact-card .val {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 12px;
}
.contact-card a { color: var(--accent-dark); font-weight: 600; font-size: 14px; }

/* ── FOOTER ─────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
footer h5 {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-weight: 600; margin: 0 0 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; font-size: 14px; }
footer ul a:hover { color: var(--accent); }
.footer-brand { color: #fff; }
.footer-brand .brand-logo {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; margin: 16px 0 0; max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.72);
}

/* ── VALUE-PROP GRID (3-up cards) ─ */
.values-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value {
  padding: 32px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.value .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: grid; place-items: center; margin-bottom: 18px;
}
.value .icon svg { width: 22px; height: 22px; }
.value h4 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em; margin: 0 0 12px;
}
.value p { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.6; }

/* ── ABOUT / TEAM ───────────────── */
.team-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  display: grid; gap: 20px;
  grid-template-columns: 100px 1fr;
  align-items: center;
}
.team-card .avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 32px; color: var(--accent-dark);
  overflow: hidden;
}
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 18px; margin: 0 0 4px; }
.team-card .role { font-size: 13px; color: var(--muted); margin: 0 0 8px; }
.team-card p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* utility */
.arrow-icon { width: 14px; height: 14px; }

/* Fade-up animation, JS-gated */
@media (prefers-reduced-motion: no-preference) {
  .js .anim {
    opacity: 0; transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .js .anim.in { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════════
   IMAGE COMPONENTS, Newfront-inspired breakup imagery
   ════════════════════════════════════════════════════════════════ */

/* Hero visual, full-width image directly under page hero */
.hero-visual {
  position: relative;
  width: 100%;
  height: clamp(280px, 38vw, 480px);
  overflow: hidden;
  background: var(--bg-alt);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,30,51,0) 0%, rgba(11,30,51,0.25) 100%);
  pointer-events: none;
}
.hero-visual .caption {
  position: absolute; left: var(--pad); bottom: 24px;
  color: #fff; font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.hero-visual .caption::before {
  content: ''; width: 24px; height: 2px; background: var(--accent);
}

/* Full-bleed image band with editorial caption */
.image-band {
  position: relative;
  width: 100%;
  height: clamp(320px, 45vw, 560px);
  overflow: hidden;
  background: var(--ink);
}
.image-band img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85;
}
.image-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,30,51,0.20) 0%, rgba(11,30,51,0.55) 45%, rgba(11,30,51,0.85) 100%);
  pointer-events: none;
}
.image-band-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(32px, 5vw, 64px) var(--pad);
  color: #fff;
  max-width: var(--maxw); margin: 0 auto;
}
.image-band-inner .eyebrow {
  color: rgba(255,255,255,0.92); margin-bottom: 12px;
}
.image-band-inner .accent-bar { background: var(--accent); }
.image-band-inner h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(28px, 3vw, 44px); line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 8px;
  max-width: 720px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.image-band-inner p {
  font-size: 16px; color: rgba(255,255,255,0.95); margin: 0; max-width: 560px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Split feature, image left, content right (or flipped) */
.split-feature {
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
@media (min-width: 960px) {
  .split-feature { grid-template-columns: 1fr 1fr; }
  .split-feature.flip .split-media { order: 2; }
}
.split-media {
  position: relative;
  min-height: clamp(280px, 35vw, 420px);
  background: var(--bg-alt);
  overflow: hidden;
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.split-content {
  padding: clamp(32px, 5vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
}
.split-content h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(26px, 2.6vw, 36px); line-height: 1.1; letter-spacing: -0.015em;
  margin: 12px 0 16px;
}
.split-content p {
  color: var(--ink-2); font-size: 16px; line-height: 1.6; margin: 0 0 20px;
}

/* Image-quote, full-width image with overlaid quote */
.image-quote {
  position: relative;
  width: 100%;
  min-height: clamp(380px, 50vw, 560px);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: clamp(48px, 8vw, 96px) var(--pad);
}
.image-quote-bg {
  position: absolute; inset: 0;
}
.image-quote-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.image-quote-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,30,51,0.72) 0%, rgba(11,30,51,0.78) 100%);
}
.image-quote-inner {
  position: relative; z-index: 1;
  max-width: 820px;
}
.image-quote-inner h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px); line-height: 1.2; letter-spacing: -0.015em;
  margin: 16px 0 20px;
}
.image-quote-inner cite {
  font-style: normal; font-size: 14px; color: rgba(255,255,255,0.9);
}


/* ════════════ Subpage utility components ════════════ */
.serves-list {
  list-style: none; padding: 0;
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
  margin: 0;
}
@media (min-width: 720px) { .serves-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .serves-list { grid-template-columns: repeat(3, 1fr); } }
.serves-list li {
  position: relative; padding: 14px 16px 14px 40px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--ink-2); font-weight: 500;
  line-height: 1.4;
}
.serves-list li::before {
  content: ''; position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.risk-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .risk-list { grid-template-columns: repeat(2, 1fr); } }
.risk-list li {
  position: relative; padding: 16px 20px;
  font-size: 15px; line-height: 1.55; color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ════════════════════════════════════════════════════════════════
   PARALLAX IMAGES
   Each parallax image gets ~30% extra height so it can translate
   within its overflow:hidden container without exposing empty space.
   ════════════════════════════════════════════════════════════════ */
.hero-visual, .image-band, .industry-media, .split-media {
  overflow: hidden;
  position: relative;
}
.parallax-img {
  width: 100% !important;
  height: 130% !important;
  position: absolute !important;
  top: -15% !important;
  left: 0;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0,0,0);
}
/* Special case for industry-media which is already aspect-ratio sized */
.industry-media { aspect-ratio: 4/3; }
.industry-media .parallax-img { transition: transform 0s linear; }

/* Disable parallax for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .parallax-img {
    position: static !important;
    height: 100% !important;
    top: 0 !important;
    transform: none !important;
  }
  .parallax { background-attachment: scroll !important; }
}

/* ════════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ════════════════════════════════════════════════════════════════ */

/* Visually-hidden utility for screen reader text */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Skip-to-main-content link, visible on focus */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  z-index: 100;
  transition: top .15s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Focus-visible, clear, consistent focus ring for keyboard users */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
}
.faq summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius);
}

/* Higher-contrast secondary text for AA compliance.
   --muted was #5C
/* ════════════════════════════════════════════════════════════════
   RICHER VISUAL TREATMENT, hero composition + ambient gradients
   ════════════════════════════════════════════════════════════════ */

/* Subtle ambient gradient, adds warmth without competing */
.hero {
  background:
    radial-gradient(900px circle at 92% -10%, rgba(16,184,158,0.10), transparent 60%),
    radial-gradient(700px circle at -10% 110%, rgba(22,50,79,0.07), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #F4F1EA 100%);
  position: relative;
  overflow: hidden;
}
/* Decorative grid dots in hero, very faint */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(11,30,51,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 65%);
  mask-image: radial-gradient(ellipse at top right, black 0%, transparent 65%);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* Body sections now have soft color rhythm, alternating tones */
body {
  background:
    radial-gradient(1400px circle at 50% 0%, rgba(16,184,158,0.04), transparent 50%),
    var(--bg);
}

/* New: hero-right composition, photo + floating dashboard card */
.hero-right {
  position: relative;
  isolation: isolate;
}
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  box-shadow: 0 40px 80px -50px rgba(11,30,51,0.35);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02); /* subtle parallax-ready scale */
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,30,51,0) 40%, rgba(11,30,51,0.35) 100%);
  pointer-events: none;
}
/* Floating tag in upper-left of photo */
.hero-photo-tag {
  position: absolute; top: 20px; left: 20px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}
.hero-photo-tag::before {
  content: ''; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent);
  display: inline-block; margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 0 4px rgba(16,184,158,0.18);
}
/* Make the dashboard panel float over the bottom of the photo */
.hero-right .panel {
  position: absolute;
  bottom: -28px;
  left: -32px;
  width: clamp(280px, 88%, 460px);
  z-index: 3;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px -30px rgba(11,30,51,0.4);
}
@media (max-width: 1023px) {
  .hero-right .panel {
    position: static;
    width: auto;
    margin-top: 24px;
  }
  .hero-photo { aspect-ratio: 16/10; }
}

/* Section background rhythm, alternating subtle tones */
section:nth-of-type(even):not(.parallax):not(.quote-section):not(.image-quote):not(.image-band) {
  position: relative;
}
section:nth-of-type(even):not(.parallax):not(.quote-section):not(.image-quote):not(.image-band)::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(16,184,158,0.025) 100%);
  pointer-events: none;
  z-index: 0;
}
section > * { position: relative; z-index: 1; }

/* Metrics strip, add a soft top-down highlight for depth */
.metrics-strip {
  background: linear-gradient(180deg, var(--surface) 0%, #FDFCFA 100%);
}

/* Final CTA section gets a subtle gradient overlay */
.final-cta {
  background:
    radial-gradient(800px circle at 80% 50%, rgba(16,184,158,0.06), transparent 60%),
    var(--bg-alt);
}

/* ════════════════════════════════════════════════════════════════
   NEWFRONT-INSPIRED PATTERNS
   ════════════════════════════════════════════════════════════════ */

/* Hero, fixed composition: photo fills right column cleanly, no overlap */
.hero-grid--v3 {
  display: grid; gap: clamp(28px, 5vw, 64px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid--v3 { grid-template-columns: 1.05fr 0.95fr; }
}
.hero-photo--v3 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  box-shadow: 0 50px 90px -50px rgba(11,30,51,0.4);
}
.hero-photo--v3 img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 25%;
}
.hero-photo--v3::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(11,30,51,0) 50%, rgba(11,30,51,0.5) 100%);
  pointer-events: none;
}
.hero-photo--v3 .photo-pill {
  position: absolute; top: 20px; left: 20px;
  background: rgba(255,255,255,0.96);
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-photo--v3 .photo-pill::before {
  content: ''; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(16,184,158,0.18);
}
.hero-photo--v3 .photo-caption {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  color: #fff;
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 18px; line-height: 1.3;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ────────── Gradient feature section ("Charting a New Course"-pattern) ────────── */
.feature-card {
  position: relative;
  border-radius: 32px;
  background:
    radial-gradient(900px circle at 20% 30%, rgba(16,184,158,0.85), transparent 55%),
    radial-gradient(800px circle at 90% 80%, rgba(22,50,79,0.7), transparent 50%),
    linear-gradient(135deg, #0B1E33 0%, #066B5A 100%);
  overflow: hidden;
  padding: clamp(48px, 6vw, 96px);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 1024px) {
  .feature-card { grid-template-columns: 1fr 1.2fr; }
}
.feature-card-content .eyebrow {
  color: rgba(255,255,255,0.85);
}
.feature-card-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
  color: #fff;
}
.feature-card-content > p {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 0 28px;
  max-width: 480px;
}
.feature-card-pill-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.feature-card-pill {
  background: rgba(255,255,255,0.96);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
/* Floating dashboard on right side of feature card */
.feature-card-visual {
  position: relative;
  perspective: 1200px;
}
.feature-card-visual .panel {
  background: #fff;
  transform: rotateY(-8deg) rotateX(4deg);
  transform-origin: center center;
  box-shadow:
    -30px 30px 80px -30px rgba(0,0,0,0.4),
    -10px 10px 30px rgba(0,0,0,0.2);
  max-width: 520px;
  margin: 0 auto;
}

/* ────────── Editorial block (Newfront's "Talent Meets Tech" pattern) ────────── */
.editorial-block {
  display: grid; gap: clamp(32px, 5vw, 80px);
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
  border-top: 1px solid var(--line);
}
.editorial-block:first-of-type { border-top: 0; }
@media (min-width: 960px) {
  .editorial-block { grid-template-columns: 1fr 1fr; }
  .editorial-block.flip .editorial-media { order: 2; }
}
.editorial-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--bg-alt);
}
.editorial-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.editorial-content .eyebrow {
  letter-spacing: 0.18em;
}
.editorial-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--ink);
}
.editorial-content > p {
  font-size: 16px; line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 480px;
}
.feature-bullets {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.feature-bullets li {
  padding: 18px 0 18px 36px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.feature-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 22px;
  width: 16px; height: 16px;
  background: var(--accent);
  -webkit-mask-image: radial-gradient(circle, transparent 30%, black 30%, black 36%, transparent 36%, transparent 70%, black 70%);
  mask-image: radial-gradient(circle, transparent 30%, black 30%, black 36%, transparent 36%, transparent 70%, black 70%);
  border-radius: 50%;
}
/* Simpler accent dot for the bullet marker */
.feature-bullets li::before {
  content: '✱';
  position: absolute; left: 0; top: 18px;
  width: auto; height: auto;
  background: none;
  -webkit-mask-image: none; mask-image: none;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}
.feature-bullets li b,
.feature-bullets li strong {
  color: var(--ink);
  font-weight: 600;
}

/* ────────── Photo mosaic (Newfront's "Built to Scale" portraits pattern) ────────── */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}
.photo-mosaic .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
}
.photo-mosaic .photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.photo-mosaic .photo:nth-child(1) { margin-top: 0; aspect-ratio: 4/5; }
.photo-mosaic .photo:nth-child(2) { margin-top: 48px; aspect-ratio: 3/4; }
.photo-mosaic .photo:nth-child(3) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ════════════════════════════════════════════════════════════════
   ▼▼▼  JIVAR HOMEPAGE MODULES (institutional / Stripe-Atlas)  ▼▼▼
   ════════════════════════════════════════════════════════════════ */

/* ── HERO v4, stat-led, no portrait ───────────────────────── */
.hero-j {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 72px);
  position: relative;
}
.hero-j .container { max-width: var(--maxw); }
.hero-j-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 28px;
}
.hero-j h1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink);
  max-width: 16ch;
}
.hero-j h1 em {
  font-style: normal; color: var(--accent); font-weight: 800;
}
.hero-j .lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 36px;
  letter-spacing: -0.005em;
}
.hero-j-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-j-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.hero-j-grid > .anim:first-child {
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 900px) {
  .hero-j-grid { grid-template-columns: 1fr; }
}
.hero-j-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.hero-j-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.hero-j-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 17, 24, 0) 60%, rgba(13, 17, 24, 0.55) 100%);
  pointer-events: none;
}
.hero-j-stat-card {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 10px;
}
.hero-j-stat-card .label-caps { margin-bottom: 4px; }
.hero-j-stat-card-meta { display: flex; flex-direction: column; gap: 2px; }
.hero-j-stat-card-sub { font-size: 13px; color: var(--muted); }
.hero-j-stat-card .value {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800; font-size: 38px;
  letter-spacing: -0.025em; color: var(--ink);
  line-height: 1; white-space: nowrap;
  display: flex; align-items: baseline; gap: 4px;
}
.hero-j-stat-card .value small {
  font-size: 14px; color: var(--accent); font-weight: 700;
}
.hero-j-trend {
  font-size: 12px; font-weight: 700; color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 8px; border-radius: var(--radius);
  white-space: nowrap;
}

/* ── STAT BAND, 4 prominent metrics directly under hero ──── */
.stat-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--surface);
}
.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 800px) {
  .stat-band-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.stat-band-cell {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px 0;
}
.stat-band-cell .value {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.stat-band-cell .label {
  font-size: 13px; color: var(--muted); font-weight: 500;
  letter-spacing: 0;
}

/* ── LOGO STRIP, "trusted by" placeholder row ────────────── */
.logo-strip {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.logo-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 24px;
}
.logo-strip-inner > * {
  text-align: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.55;
}
@media (max-width: 700px) {
  .logo-strip-inner { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .logo-strip-inner > *:nth-child(n+4) { display: none; }
}

/* ── SECTION SHELL (Jivar) ────────────────────────────────── */
.section-j { padding: clamp(64px, 9vw, 120px) 0; }
.section-j-head { margin-bottom: 56px; max-width: 720px; }
.section-j-head .eyebrow { margin-bottom: 18px; display: inline-block; }
.section-j h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-j .section-desc {
  font-size: 17px; line-height: 1.55; color: var(--ink-2);
  margin: 0;
}
.section-j-head-row {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px;
}
.section-j-head-row > div { max-width: 720px; }
.section-j-head-row a { white-space: nowrap; }

/* ── TALENT MEETS TECH, 4-column institutional grid ─────── */
.tmt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--surface);
}
@media (max-width: 1000px) {
  .tmt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .tmt-grid { grid-template-columns: 1fr; }
}
.tmt-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.tmt-cell-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 4px;
}
.tmt-cell-icon svg { width: 24px; height: 24px; }
.tmt-cell h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.tmt-cell p {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-2); margin: 0;
}

/* ── SECTOR EXPERTISE, B&W architecture grid ─────────────── */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
}
.sector-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform .25s ease;
}
.sector-tile:hover { transform: translateY(-3px); }
.sector-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.92);
  transition: filter .3s ease, transform .5s ease;
}
.sector-tile:hover img {
  filter: saturate(1.1) brightness(1);
  transform: scale(1.04);
}
.sector-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 17, 24, 0) 40%, rgba(13, 17, 24, 0.85) 100%);
  pointer-events: none;
}
.sector-tile-caption {
  position: absolute; left: 20px; right: 20px; bottom: 18px;
  color: #fff; z-index: 1;
}
.sector-tile-caption .label-caps {
  color: var(--accent-bright);
  margin-bottom: 4px;
}
.sector-tile-caption h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700; font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0; color: #fff;
}

/* ── BENCHMARK PROTOCOL, 4-step numbered process ─────────── */
.protocol-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(64px, 8vw, 96px) 0;
}
.protocol-head { text-align: center; margin-bottom: 56px; }
.protocol-head h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: var(--ink);
}
.protocol-head p {
  font-size: 16px; color: var(--ink-2); margin: 0;
}
.protocol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) {
  .protocol-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .protocol-grid { grid-template-columns: 1fr; }
}
.protocol-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.protocol-cell:last-child { border-right: none; }
@media (max-width: 900px) {
  .protocol-cell:nth-child(2n) { border-right: none; }
  .protocol-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .protocol-cell:nth-child(3) { border-right: 1px solid var(--line); }
}
.protocol-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}
.protocol-cell h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700; font-size: 19px;
  letter-spacing: -0.015em; margin: 6px 0 0;
  color: var(--ink);
}
.protocol-cell p {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-2); margin: 0;
}

/* ── BY THE NUMBERS, dark band ───────────────────────────── */
.numbers-band {
  background: var(--ink);
  background-image: var(--noise-overlay);
  color: #fff;
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.numbers-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(25, 193, 158, 0.10), transparent 60%);
  pointer-events: none;
}
.numbers-band-head { text-align: center; margin-bottom: 56px; position: relative; }
.numbers-band-head .label-caps { color: var(--accent-bright); margin-bottom: 14px; display: block; }
.numbers-band-head h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.025em;
  margin: 0; color: #fff;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
@media (max-width: 800px) {
  .numbers-grid { grid-template-columns: 1fr; }
}
.numbers-cell {
  padding: 44px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
}
.numbers-cell:last-child { border-right: none; }
@media (max-width: 800px) {
  .numbers-cell { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
  .numbers-cell:last-child { border-bottom: none; }
}
.numbers-cell .value {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.03em;
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: 18px;
  white-space: nowrap;
}
.numbers-cell .value--tight { font-size: clamp(40px, 5vw, 64px); }
.numbers-cell .label {
  font-size: 13px; color: rgba(255, 255, 255, 0.75);
  font-weight: 500; letter-spacing: 0.02em;
}

/* ── FINAL CTA (Jivar institutional) ──────────────────────── */
.final-cta-j {
  background: var(--ink);
  background-image: var(--noise-overlay);
  color: #fff;
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta-j::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(25, 193, 158, 0.12), transparent 60%);
  pointer-events: none;
}
.final-cta-j-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.final-cta-j .label-caps { color: var(--accent-bright); display: block; margin-bottom: 16px; }
.final-cta-j h2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 18px;
  color: #fff;
}
.final-cta-j p {
  font-size: 17px; line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 32px;
}
.final-cta-j .btn-accent {
  background: var(--accent-bright);
  color: var(--ink);
  border-color: var(--accent-bright);
  font-weight: 700;
  box-shadow: 0 0 0 6px rgba(25, 193, 158, 0.10);
}
.final-cta-j .btn-accent:hover {
  background: #fff; border-color: #fff;
}

 border-color: #fff;
}


/* ════════════════════════════════════════════════════════════════
   ▼▼▼  HOMEPAGE-DOC MODULES (Reviews, Triple-card, Marquee, FAQ, Form)
   ════════════════════════════════════════════════════════════════ */

/* ── GMB SOCIAL PROOF ─────────────────────────────────────── */
.reviews-section { padding: clamp(48px, 6vw, 72px) 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reviews-head { text-align: center; margin-bottom: 36px; max-width: 720px; margin-left: auto; margin-right: auto; }
.reviews-rating { display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--accent-soft); margin-bottom: 24px; }
.reviews-rating-value { font-weight: 700; font-size: 16px; color: var(--ink); }
.reviews-rating-stars { color: #f5a623; letter-spacing: 1px; font-size: 15px; }
.reviews-rating-count { font-size: 13px; color: var(--muted); }
.reviews-section h2 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.025em;
  margin: 0 0 12px; color: var(--ink); line-height: 1.1;
}
.reviews-section .section-desc { font-size: 16px; color: var(--ink-2); margin: 0; }
.reviews-scroll {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 900px) { .reviews-scroll { grid-template-columns: 1fr; } }
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-card-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.review-card-meta { display: flex; flex-direction: column; gap: 2px; }
.review-card-name { font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.review-card-biz { font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }
.review-card-stars { color: #f5a623; letter-spacing: 1px; font-size: 14px; flex-shrink: 0; }
.review-card-quote { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.review-card-avatar { display: none; }
.reviews-cta { text-align: center; }

/* ── TRIPLE GRID (Industries / Products / Services) ──────── */
.triple-section { padding: clamp(72px, 9vw, 120px) 0; }
.triple-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.triple-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.triple-head h2 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px); letter-spacing: -0.025em;
  margin: 0 0 16px; color: var(--ink);
}
.triple-head p { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.triple-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 1000px) { .triple-grid { grid-template-columns: 1fr; } }
.triple-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  height: 100%;
  transition: border-color .2s ease, transform .2s ease;
}
.triple-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.triple-card-items { flex: 1; }
.triple-card-cta { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); text-align: left; }
.triple-card-head { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.triple-card-head h3 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: -0.015em;
  margin: 0; color: var(--ink);
}
.triple-card-items { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.triple-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: color .15s ease;
}
.triple-item:last-of-type { border-bottom: none; }
.triple-item:hover { color: var(--accent); }
.triple-item-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.triple-item-icon svg { width: 18px; height: 18px; }
.triple-item-text { display: flex; flex-direction: column; gap: 2px; }
.triple-item-text strong { font-weight: 600; font-size: 15px; color: var(--ink); line-height: 1.3; }
.triple-item-text span { font-size: 13px; color: var(--muted); line-height: 1.4; }
.triple-item:hover .triple-item-text strong { color: var(--accent); }
.triple-card-cta { margin-top: 24px; text-align: left; }

/* ── CLIENT LOGOS MARQUEE ─────────────────────────────────── */
.marquee-section { padding: clamp(48px, 6vw, 72px) 0; background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-head { text-align: center; margin-bottom: 36px; }
.marquee-head .label-caps { display: block; margin-bottom: 10px; color: var(--accent); }
.marquee-head h2 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.025em;
  margin: 0 0 12px; color: var(--ink); line-height: 1.1;
}
.marquee-head p { font-size: 15px; color: var(--ink-2); margin: 0; }
.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee-scroll 40s linear infinite;
  padding-right: 80px;
  flex-shrink: 0;
}
.marquee-track > span {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--ink);
  opacity: 0.55;
  white-space: nowrap;
  align-self: center;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ── 3-STEP PROCESS ───────────────────────────────────────── */
.process3-section { padding: clamp(72px, 9vw, 120px) 0; background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process3-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.process3-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.process3-head h2 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(32px, 4.2vw, 52px); letter-spacing: -0.025em;
  margin: 0 0 12px; color: var(--ink); line-height: 1.1;
}
.process3-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .process3-grid { grid-template-columns: 1fr; } }
.process3-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.process3-num {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; color: var(--accent);
  text-transform: uppercase;
}
.process3-cell h3 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: -0.015em;
  margin: 0; color: var(--ink); line-height: 1.2;
}
.process3-cell p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.process3-cta { text-align: center; }

/* ── WARM CTA (Section 7) ─────────────────────────────────── */
.warm-cta-section {
  padding: clamp(72px, 9vw, 120px) 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(25, 193, 158, 0.12), transparent 70%),
    var(--surface);
  border-top: 1px solid var(--line);
}
.warm-cta-inner { text-align: center; max-width: 820px; margin: 0 auto; }
.warm-cta-inner h2 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(36px, 4.8vw, 60px); letter-spacing: -0.028em;
  line-height: 1.08;
  margin: 0 0 18px; color: var(--ink);
}
.warm-cta-inner p { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0 0 32px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-section { padding: clamp(72px, 9vw, 120px) 0; background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-wrap {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-intro h2 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.025em;
  margin: 0 0 18px; color: var(--ink); line-height: 1.1;
}
.contact-intro p { font-size: 16px; line-height: 1.55; color: var(--ink-2); margin: 0 0 24px; }
.contact-intro .eyebrow { display: inline-block; margin-bottom: 14px; }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 600px) { .contact-form { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(25, 193, 158, 0.10);
}
.field textarea { min-height: 110px; resize: vertical; }
.contact-form .submit-row { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.contact-form .submit-row button {
  font-family: inherit;
  font-weight: 700;
}
.contact-form .privacy { font-size: 12px; color: var(--muted); margin: 0; }
.contact-form .privacy a { color: var(--accent); text-decoration: underline; }

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-section { padding: clamp(72px, 9vw, 120px) 0; }
.faq-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.faq-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.faq-head h2 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(32px, 4.2vw, 52px); letter-spacing: -0.025em;
  margin: 0 0 12px; color: var(--ink); line-height: 1.1;
}
.faq-head p { font-size: 16px; color: var(--ink-2); margin: 0; }
.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .15s ease;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px; font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .2s ease, color .15s ease;
}
.faq-item[open] summary::after { content: '−'; color: var(--accent); }
.faq-item .faq-body {
  padding: 0 0 24px;
  font-size: 16px; line-height: 1.6;
  color: var(--ink-2);
  max-width: 760px;
}
                                                        
/* ════════════════════════════════════════════════════════════════
   ▼▼▼  INNER PAGE ALIGNMENT (institutional B&W imagery)  ▼▼▼
   ════════════════════════════════════════════════════════════════ */

/* All inner-page hero / industry / split / band images get the institutional B&W look */
.hero-visual img,
.image-band img,
.industry-media img,
.split-media img,
.hero-photo img,
.hero-photo--v3 img {
  filter: saturate(1.05);
  transition: filter .3s ease, transform .5s ease;
}
.hero-visual:hover img,
.industry-media:hover img,
.split-media:hover img {
  filter: saturate(1.1) brightness(1.03);
}

/* Tighten page-hero p.lede typography */
.page-hero p.lede {
  letter-spacing: -0.005em;
}

/* page-hero adopt off-white surface like other institutional sections */
.page-hero {
  background: var(--surface);
}

/* Override legacy editorial-block headers so they feel like the homepage sections */
.editorial-block h2 {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
}
.editorial-block em,
.section-shell h2 em,
.split-feature em {
  font-style: normal !important;
  color: var(--accent) !important;
  font-weight: inherit !important;
}

/* Image-band overlay caption: use Hanken Grotesk */
.image-band-inner h3 {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

/* Final massive CTA: replace cream gradient with the institutional dark band aesthetic */
.final-cta--massive {
  background: var(--ink) !important;
  background-image: var(--noise-overlay) !important;
  color: #fff !important;
}
.final-cta--massive::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(25, 193, 158, 0.12), transparent 60%);
  pointer-events: none;
}
.final-cta--massive h2 {
  font-family: 'Hanken Grotesk', sans-serif !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
}
.final-cta--massive p { color: rgba(255, 255, 255, 0.78) !important; }
.final-cta--massive .btn-accent {
  background: var(--accent-bright) !important;
  color: var(--ink) !important;
  border-color: var(--accent-bright) !important;
}
.final-cta--massive .btn-accent:hover { background: #fff !important; border-color: #fff !important; }

/* Gradient feature cards: tone down warm tones in favor of institutional */
.feature-card {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
}
.feature-card h3 {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 700 !important;
}

/* Metrics strip: align with institutional Hanken Grotesk */
.metrics-strip .value,
.metric .value {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
}

/* Process rail (Newfront-style) numbered steps — tone down */
.process-rail h3 {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 700 !important;
}

/* Industry rows — tighten the H3 */
.industry-row h3 {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}
.industry-row h3 em {
  font-style: normal !important;
  color: var(--accent) !important;
}

/* Photo mosaic — apply same B&W treatment */
.photo-mosaic img {
  filter: grayscale(100%) contrast(1.05);
}

/* Hero photo overlays still readable */
.photo-pill, .photo-caption {
  background: rgba(13, 17, 24, 0.85) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}


/* ════════════════════════════════════════════════════════════════
   ▼▼▼  UNIVERSAL INSTITUTIONAL OVERRIDES (kill warm/editorial)
   ════════════════════════════════════════════════════════════════ */

/* Every italic accent inside any heading: mint, non-italic, bold */
main h1 em, main h2 em, main h3 em,
.page-hero em, .editorial-block em, .split-feature em,
.industry-row em, .image-band em, .image-band-inner em,
.hero-photo--v3 em {
  font-style: normal !important;
  color: var(--accent) !important;
  font-weight: inherit !important;
}

/* Every <img> inside any content section gets institutional B&W treatment */
main img:not(.brand-logo),
/* GLOBAL GRAYSCALE REMOVED — site now runs in full color */
.hero-visual img, .image-band img, .industry-media img,
.split-media img, .editorial-media img, .image-quote-bg img,
.photo img, .hero-photo img, .hero-photo--v3 img, .sector-tile img {
  filter: none;
}

/* Override Fraunces font usage anywhere it slipped through */
.page-hero h1, .editorial-block h2, .editorial-block h3,
.industry-row h3, .image-band-inner h3, .split-feature h3,
.hero-photo--v3 h1, .image-quote-bg blockquote,
.process-rail h3, .feature-card h3, .metric .value, .metric .label {
  font-family: 'Hanken Grotesk', sans-serif !important;
}

/* Asterisk bullet feature-bullets: tone down */
.feature-bullets li {
  font-family: 'Hanken Grotesk', sans-serif !important;
}


/* ════════════════════════════════════════════════════════════════
   ▼▼▼  DRIVE-CONTENT MODULES (who-for, product grid, features, services)
   ════════════════════════════════════════════════════════════════ */

/* WHO-FOR list */
.who-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .who-wrap { grid-template-columns: 1fr; gap: 32px; } }
.who-wrap h2 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -0.025em;
  margin: 12px 0 0; color: var(--ink); line-height: 1.1;
}
.who-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding-top: 24px;
}
@media (max-width: 700px) { .who-list { grid-template-columns: 1fr; } }
.who-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--ink-2); line-height: 1.5;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.who-icon {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0; margin-top: 1px;
}
.who-icon svg { width: 18px; height: 18px; }

/* PRODUCT GRID — cards for coverage/products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit;
  transition: border-color .2s ease, transform .2s ease;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.product-card .card-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 6px;
}
.product-card .card-icon svg { width: 22px; height: 22px; }
.product-card h3 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: 19px; letter-spacing: -0.015em;
  margin: 0; color: var(--ink); line-height: 1.25;
}
.product-card p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-2); margin: 0; flex: 1;
}
.product-card-cta {
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin-top: 8px;
}

/* FEATURE ROW — 3-feature blocks (institutional) */
.feature-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .feature-row-grid { grid-template-columns: 1fr; } }
.feature-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.feature-cell .feature-icon {
  width: 32px; height: 32px;
  color: var(--accent);
  display: grid; place-items: center;
}
.feature-cell .feature-icon svg { width: 24px; height: 24px; }
.feature-cell h3 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: 19px; letter-spacing: -0.015em;
  margin: 0; color: var(--ink);
}
.feature-cell p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-2); margin: 0;
}

/* SERVICES ROW — 3 service cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit;
  transition: border-color .2s ease, transform .2s ease;
}
.svc-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.svc-card .svc-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.svc-card .svc-icon svg { width: 22px; height: 22px; }
.svc-card h3 {
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700;
  font-size: 20px; letter-spacing: -0.015em;
  margin: 0; color: var(--ink);
}
.svc-card p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-2); margin: 0; flex: 1;
}
.svc-card .svc-cta {
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin-top: 8px;
}


/* ──────────────────────────────────────────────────────────────────
   SCENARIOS SECTION — page-unique narrative grid
   Lives between hero and final CTA on every page. Each card is a
   real, anonymized Benchmark engagement (or the page's version
   of one). Editorial tone, no icons, mint accent tag.
   ────────────────────────────────────────────────────────────── */
.scenarios-section {
  background: #fff;
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.scenarios-head {
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: left;
}
.scenarios-head .eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.scenarios-head h2 {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 22px;
  font-weight: 600;
}
.scenarios-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 760px;
  margin: 0;
}
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--line);
}
@media (max-width: 760px) {
  .scenarios-grid { grid-template-columns: 1fr; }
}
.scenario-card {
  background: #fff;
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background-color 160ms ease;
}
.scenario-card:hover {
  background: #fbfbfd;
}
.scenario-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 600;
  background: rgba(25, 193, 158, 0.04);
}
.scenario-card h3 {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.scenario-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────
   HIGHLIGHTS SECTION — page-specific Coverage Highlights block
   2x3 or 3x2 grid of detailed coverage items with title + description
   ────────────────────────────────────────────────────────────── */
.highlights-section {
  background: var(--bg-alt, #f9f9fc);
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.highlights-head {
  max-width: 880px;
  margin: 0 auto 56px;
  text-align: left;
}
.highlights-head .eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.highlights-head h2 {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
  font-weight: 600;
}
.highlights-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 760px;
  margin: 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 980px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .highlights-grid { grid-template-columns: 1fr; } }
.highlight-item {
  background: #fff;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.highlight-item h3 {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  font-weight: 600;
}
.highlight-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────
   BUILT-FOR + WHAT-SETS-US-APART combo section
   Left column: "Built For" with bullet list of operator types
   Right column: "What Sets Us Apart" with 2x2 differentiator cards
   ────────────────────────────────────────────────────────────── */
.bf-diff-section {
  background: #fff;
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.bf-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}
@media (max-width: 980px) { .bf-grid { grid-template-columns: 1fr; gap: 48px; } }
.bf-col .eyebrow,
.diff-col .eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.bf-col h2 {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
  font-weight: 600;
}
.bf-col > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 28px;
}
.bf-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.bf-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--ink);
  position: relative;
  padding-left: 24px;
  font-weight: 500;
}
.bf-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.diff-h {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: 600;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 540px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-card {
  background: #fff;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.diff-eyebrow {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
}
.diff-card h3 {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  font-weight: 600;
}
.diff-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────
   INDUSTRIES GRID — 14-cell display on business-insurance.html hub
   Two-column tablet, three-column desktop institutional grid.
   ────────────────────────────────────────────────────────────── */
.industries-grid-section {
  background: var(--bg-alt, #f9f9fc);
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.industries-grid-head {
  max-width: 880px;
  margin: 0 auto 56px;
  text-align: left;
}
.industries-grid-head .eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.industries-grid-head h2 {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 22px;
  font-weight: 600;
}
.industries-grid-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 760px;
  margin: 0;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 980px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .industries-grid { grid-template-columns: 1fr; } }
.industry-cell {
  background: #fff;
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: background-color 160ms ease;
  position: relative;
}
.industry-cell:hover {
  background: #fbfbfd;
}
.industry-cell:hover .industry-cell-cta { color: var(--accent); }
.industry-cell-num {
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 6px;
}
.industry-cell h3 {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  font-weight: 600;
}
.industry-cell p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex-grow: 1;
}
.industry-cell-cta {
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  font-weight: 600;
  margin-top: 8px;
  transition: color 160ms ease;
}

/* Mega menu wider variant for 14-item commercial dropdown */
.mega-menu--wide .mega-inner { max-width: 1160px; }
.mega-right--cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

/* ──────────────────────────────────────────────────────────────────
   EXPLORE SECTION — Newfront-style dark carousel with real photos
   Used on commercial hub (14 industries) and personal hub (9 lines).
   ────────────────────────────────────────────────────────────── */
.explore-section {
  background: #0a0e0c;
  color: #fff;
  padding: 110px 0 120px;
  overflow: hidden;
  position: relative;
}
.explore-section .container { max-width: 1280px; }
.explore-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.explore-head-left { max-width: 720px; }
.explore-eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #19C19E;
  margin-bottom: 18px;
  font-weight: 600;
}
.explore-section h2 {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 12px;
  font-weight: 600;
}
.explore-section .explore-head p {
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 620px;
}
.explore-arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.explore-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.explore-arrow:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}
.explore-arrow:active { transform: scale(0.96); }
.explore-arrow svg { width: 20px; height: 20px; stroke: currentColor; }

.explore-rail-wrap { position: relative; }
.explore-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 6px;
}
.explore-rail::-webkit-scrollbar { display: none; }
.explore-card {
  flex: 0 0 300px;
  height: 440px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  text-decoration: none;
  display: block;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
  background: #111;
}
.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
}
.explore-card img,
.explore-card .explore-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important; /* override global grayscale */
  -webkit-filter: none !important;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.explore-card:hover img,
.explore-card:hover .explore-card-bg {
  transform: scale(1.05);
}
.explore-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.55) 78%, rgba(0, 0, 0, 0.75));
  pointer-events: none;
  z-index: 1;
}
.explore-card-pill {
  position: absolute;
  top: 22px;
  left: 22px;
  background: #fff;
  color: #0a0e0c;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.explore-card-body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}
.explore-card-title {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
}
.explore-card-sub {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 14px;
}
.explore-card-cta {
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #19C19E;
  font-weight: 600;
}

@media (max-width: 760px) {
  .explore-head { flex-direction: column; align-items: flex-start; }
  .explore-arrows { align-self: flex-end; }
  .explore-card { flex-basis: 84vw; max-width: 320px; height: 420px; }
}

/* ──────────────────────────────────────────────────────────────────
   STAT BAND — full-bleed deep mint band with 3 oversized stats
   Used as a section break between text-heavy modules on hub pages.
   ────────────────────────────────────────────────────────────── */
.stat-band {
  background: linear-gradient(135deg, #004d3d 0%, #19C19E 50%, #008b6f 100%);
  color: #fff;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.stat-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 90% 10%, rgba(25, 193, 158, 0.18) 0%, transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(25, 193, 158, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.stat-band-head { max-width: 760px; margin: 0 0 56px; position: relative; }
.stat-band-eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #19C19E;
  margin-bottom: 18px;
  font-weight: 600;
}
.stat-band h2 {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 14px;
  font-weight: 600;
}
.stat-band-head p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 620px;
}
.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 820px) { .stat-band-grid { grid-template-columns: 1fr; } }
.stat-band-cell {
  padding: 44px 36px 8px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-band-cell:last-child { border-right: none; }
@media (max-width: 820px) {
  .stat-band-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 32px 0; }
  .stat-band-cell:last-child { border-bottom: none; }
}
.stat-band-value {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
}
.stat-band-value small {
  display: inline-block;
  font-size: 0.32em;
  letter-spacing: 0;
  color: #19C19E;
  font-weight: 500;
  margin-left: 8px;
  vertical-align: middle;
}
.stat-band-label {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 280px;
}
.stat-band-label strong { color: #fff; display: block; margin-bottom: 4px; font-weight: 600; }

/* ──────────────────────────────────────────────────────────────────
   FEATURE ROW — image + copy, alternating sides
   ────────────────────────────────────────────────────────────── */
.feature-row {
  padding: 110px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-row + .feature-row { border-top: none; }
.feature-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) {
  .feature-row-grid { grid-template-columns: 1fr; gap: 40px; }
}
.feature-row--reverse .feature-row-grid .feature-row-media { order: 2; }
@media (max-width: 880px) {
  .feature-row--reverse .feature-row-grid .feature-row-media { order: 0; }
}
.feature-row-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #111;
}
.feature-row-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
  -webkit-filter: none !important;
}
.feature-row-media-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(10, 14, 12, 0.86);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.feature-row-body .eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 600;
}
.feature-row-body h2 {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 22px;
  font-weight: 600;
}
.feature-row-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.feature-row-body .feature-row-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  margin-top: 8px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}

/* ──────────────────────────────────────────────────────────────────
   PHOTO COLLAGE BAND — 4-photo grid with caption overlays
   ────────────────────────────────────────────────────────────── */
.photo-band {
  padding: 0;
  background: #0a0e0c;
}
.photo-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 880px) { .photo-band-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .photo-band-grid { grid-template-columns: 1fr; } }
.photo-band-cell {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.photo-band-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
  -webkit-filter: none !important;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.photo-band-cell:hover img { transform: scale(1.04); }
.photo-band-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.78) 100%);
}
.photo-band-cell-body {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}
.photo-band-cell-eyebrow {
  display: inline-block;
  font-family: var(--font-mono, "Hanken Grotesk"), monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #19C19E;
  margin-bottom: 8px;
  font-weight: 600;
}
.photo-band-cell-title {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────
   PULL QUOTE — large mint editorial quote with attribution
   ────────────────────────────────────────────────────────────── */
.pull-quote {
  padding: 110px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pull-quote-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  padding-left: 56px;
}
.pull-quote-inner::before {
  content: """;
  position: absolute;
  top: -40px;
  left: 0;
  font-family: Georgia, serif;
  font-size: 220px;
  line-height: 1;
  color: #19C19E;
  font-weight: 400;
}
.pull-quote blockquote {
  font-family: var(--font-display, "Hanken Grotesk");
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.22;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 28px;
  font-weight: 500;
}
.pull-quote-attr {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--ink-2);
}
.pull-quote-attr::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.pull-quote-attr strong { color: var(--ink); font-weight: 600; }

/* ──────────────────────────────────────────────────────────────────
   PARALLAX BACKGROUNDS — drop-in utility for any section
   Wrap section with .with-parallax-bg, drop a .parallax-bg child
   containing an <img>. JS handles the scroll-driven translate.
   Veil variants: light (default), dark, mint.
   ────────────────────────────────────────────────────────────── */
.with-parallax-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.with-parallax-bg > .container,
.with-parallax-bg > * {
  position: relative;
  z-index: 2;
}
.parallax-bg {
  position: absolute;
  inset: -15% 0 -15% 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.parallax-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
  filter: grayscale(100%) contrast(1.08) !important;
  -webkit-filter: grayscale(100%) contrast(1.08) !important;
}
.parallax-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(249, 249, 252, 0.94) 0%,
    rgba(249, 249, 252, 0.86) 50%,
    rgba(249, 249, 252, 0.94) 100%);
}
/* Variant: dark veil for use over dark sections */
.parallax-bg--dark::after {
  background: linear-gradient(180deg,
    rgba(10, 14, 12, 0.86) 0%,
    rgba(10, 14, 12, 0.72) 50%,
    rgba(10, 14, 12, 0.90) 100%);
}
.parallax-bg--dark img {
  filter: grayscale(100%) brightness(0.55) contrast(1.15) !important;
  -webkit-filter: grayscale(100%) brightness(0.55) contrast(1.15) !important;
}
/* Variant: mint veil for stat-band parallax */
.parallax-bg--mint::after {
  background: linear-gradient(135deg,
    rgba(0, 77, 61, 0.92) 0%,
    rgba(25, 193, 158, 0.86) 50%,
    rgba(0, 139, 111, 0.92) 100%);
}
.parallax-bg--mint img {
  filter: grayscale(100%) brightness(0.5) contrast(1.18) !important;
  -webkit-filter: grayscale(100%) brightness(0.5) contrast(1.18) !important;
}
/* Variant: white veil (very subtle) for hub sections */
.parallax-bg--subtle::after {
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(249, 249, 252, 0.74) 50%,
    rgba(255, 255, 255, 0.82) 100%);
}

/* Allow already-dark sections (stat-band, photo-band, explore-section) to also carry parallax */
.stat-band.with-parallax-bg,
.explore-section.with-parallax-bg {
  background: transparent;
}
.stat-band.with-parallax-bg::before { /* hide the original radial gradient on stat-band */
  display: none;
}

/* ────── OVERRIDE: parallax-bg now runs in full color with light veil ────── */
.parallax-bg img {
  filter: saturate(1.08) !important;
  -webkit-filter: saturate(1.08) !important;
}
.parallax-bg::after {
  background: linear-gradient(180deg,
    rgba(249, 249, 252, 0.55) 0%,
    rgba(249, 249, 252, 0.35) 50%,
    rgba(249, 249, 252, 0.65) 100%) !important;
}
.parallax-bg--subtle::after {
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(249, 249, 252, 0.30) 50%,
    rgba(255, 255, 255, 0.60) 100%) !important;
}
/* No image-height override — the existing .parallax-img class on the img handles
   sizing (top:-15%, height:130%) so the JS engine can translate it cleanly. */

/* ════════════════════════════════════════════════════════════════════════════
   STITCH MODULE LIBRARY — per Jivar's approved 4-concept design system
   Tokens: --navy #15183b, --navy-soft #414469, --mint #19C19E, --mint-bright
   #19C19E, --gold-soft #f3dcae, --gold-dim #E0C18D
   ════════════════════════════════════════════════════════════════════════════ */
:root {
  --navy: #15183b;
  --navy-2: #1d2148;
  --navy-soft: #414469;
  --navy-text: #7e81aa;
  --mint-deep: #19C19E;
  --mint-bright: #19C19E;
  --mint-light: #19C19E;
  --gold-soft: #f3dcae;
  --gold-dim: #E0C18D;
  --surface-low: #f3f3f6;
  --surface: #f9f9fc;
  --line-soft: rgba(199,197,207,0.6);
}

.noise-overlay {
  background-image: url("https://www.transparenttextures.com/patterns/p6.png");
  opacity: 0.05;
  position: absolute; inset: 0;
  pointer-events: none;
}

/* ── Stitch HERO ─────────────────────────────────────────────────────── */
.stitch-hero {
  position: relative;
  min-height: 85vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.stitch-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.stitch-hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
  filter: none !important;
}
.stitch-hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, var(--navy) 0%, rgba(21,24,59,0.85) 50%, rgba(21,24,59,0.5) 100%);
}
.stitch-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/p6.png");
  opacity: 0.05;
}
.stitch-hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 64px;
}
.stitch-hero-content { max-width: 760px; }
.stitch-hero-eyebrow {
  display: inline-block;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint-bright);
  background: rgba(25, 193, 158, 0.08);
  border: 1px solid rgba(107, 250, 212, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.stitch-hero h1 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
}
.stitch-hero p.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 0 40px;
}
.stitch-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0 0 40px;
  max-width: 760px;
}
@media (max-width: 760px) { .stitch-hero-stats { grid-template-columns: repeat(2, 1fr); } }
.stitch-stat {
  padding-left: 16px;
  border-left: 1px solid rgba(126,129,170,0.4);
}
.stitch-stat-value {
  font-size: 32px; font-weight: 700;
  color: var(--mint-bright);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stitch-stat-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.stitch-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.stitch-btn-mint {
  background: var(--mint-bright);
  color: #002018;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  display: inline-block;
  transition: transform 180ms ease, background 180ms ease;
}
.stitch-btn-mint:hover { background: #15ad8d; transform: translateY(-1px); }
.stitch-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 180ms ease;
}
.stitch-btn-outline:hover { background: rgba(255,255,255,0.08); }

/* ── APPROACH GRID — 4 white cards w/ icons ─────────────────────────── */
.approach-section {
  background: var(--surface-low);
  padding: 96px 0;
}
.approach-section .container { max-width: 1440px; padding: 0 64px; }
.approach-head {
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 64px;
}
.approach-h2 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  max-width: 600px;
}
.approach-lede {
  font-size: 17px;
  line-height: 1.55;
  color: #46464e;
  max-width: 500px;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .approach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 12px;
  display: flex; flex-direction: column;
  gap: 28px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.approach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -20px rgba(21,24,59,0.18);
}
.approach-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.approach-card h3 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 22px; font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 12px;
}
.approach-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #46464e;
  margin: 0;
}

/* ── SPECIALTY BENTO GRID — colored tiles with photo overlays ───────── */
.specialty-section {
  background: #fff;
  padding: 96px 0;
}
.specialty-section .container { max-width: 1440px; padding: 0 64px; }
.specialty-head {
  text-align: center;
  margin-bottom: 56px;
}
.specialty-h2 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 14px;
}
.specialty-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #46464e;
}
.specialty-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}
@media (max-width: 980px) { .specialty-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; } }
@media (max-width: 560px) { .specialty-bento { grid-template-columns: 1fr; } }
.bento-tile {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 12px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
  text-decoration: none;
  transition: transform 320ms cubic-bezier(0.22,1,0.36,1);
}
.bento-tile:hover { transform: translateY(-4px); }
.bento-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.6;
  z-index: 0;
  filter: none !important;
}
.bento-tile > * { position: relative; z-index: 2; }
.bento-tile-top { display: flex; justify-content: space-between; align-items: flex-start; }
.bento-tile-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.bento-tile-title {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 24px; font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.bento-tile-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
}
/* Tile color variants & sizing */
.bento--navy { background: var(--navy); }
.bento--mint { background: var(--mint-deep); }
.bento--mint-bright { background: linear-gradient(135deg, var(--mint-deep) 0%, var(--mint-light) 100%); }
.bento--gold { background: linear-gradient(135deg, #936c3a 0%, var(--gold-dim) 100%); }
.bento--gold .bento-tile-title, .bento--gold .bento-tile-label { color: #2a1c00; }
.bento--gold .bento-tile-arrow { background: rgba(0,0,0,0.15); color: #2a1c00; }
.bento--violet { background: linear-gradient(135deg, #2d2547 0%, #5a4e8a 100%); }
.bento--teal { background: linear-gradient(135deg, #0d3b3b 0%, #1f7878 100%); }
.bento--charcoal { background: linear-gradient(135deg, #16161a 0%, #3a3a48 100%); }
.bento--sand { background: linear-gradient(135deg, #c8b88f 0%, #e5d6b3 100%); }
.bento--sand .bento-tile-title, .bento--sand .bento-tile-label { color: #2a1c00; }
.bento--sand .bento-tile-arrow { background: rgba(0,0,0,0.15); color: #2a1c00; }
.bento-span-7 { grid-column: span 7; }
.bento-span-5 { grid-column: span 5; }
.bento-span-6 { grid-column: span 6; }
.bento-span-4 { grid-column: span 4; }
.bento-span-3 { grid-column: span 3; }
@media (max-width: 980px) { .bento-span-7, .bento-span-5, .bento-span-6, .bento-span-4, .bento-span-3 { grid-column: span 1; } }

/* ── DARK FEATURE SPLIT — navy section w/ mint accents ─────────────── */
.dark-feature {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
}
.dark-feature::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/p6.png");
  opacity: 0.05;
  pointer-events: none;
}
.dark-feature::after {
  content: ""; position: absolute; top: 10%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,250,212,0.12), transparent 70%);
  pointer-events: none;
}
.dark-feature .container { max-width: 1440px; padding: 0 64px; position: relative; z-index: 2; }
.dark-feature-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.2fr);
  gap: 72px;
  align-items: center;
}
@media (max-width: 980px) { .dark-feature-grid { grid-template-columns: 1fr; gap: 48px; } }
.dark-feature-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #0b0d24;
}
.dark-feature-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none !important;
  opacity: 0.85;
}
.dark-feature-media-tag {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--mint-bright);
  color: #002018;
  padding: 9px 16px;
  border-radius: 4px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dark-feature-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mint-bright);
  margin-bottom: 20px;
}
.dark-feature-h2 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: #fff;
  margin: 0 0 36px;
}
.dark-feature-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 24px;
}
.dark-feature-bullet {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: flex-start;
}
.dark-feature-bullet-icon {
  width: 36px; height: 36px;
  border-radius: 4px;
  background: rgba(107,250,212,0.12);
  color: var(--mint-bright);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.dark-feature-bullet h4 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px; font-weight: 600;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 8px;
}
.dark-feature-bullet p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* ── INSTITUTIONAL TRUST 3-CARD ─────────────────────────────────────── */
.trust-section {
  background: #fff;
  padding: 96px 0;
}
.trust-section .container { max-width: 1440px; padding: 0 64px; }
.trust-head { text-align: center; margin-bottom: 56px; }
.trust-h2 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--surface-low);
  padding: 36px 32px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
}
.trust-card-stat {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 18px;
}
.trust-card h3 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 22px; font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 14px;
}
.trust-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #46464e;
  margin: 0;
}

/* ── DARK FORM SECTION ──────────────────────────────────────────────── */
.dark-form {
  background: var(--navy);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.dark-form::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/p6.png");
  opacity: 0.05;
  pointer-events: none;
}
.dark-form .container { max-width: 1440px; padding: 0 64px; position: relative; z-index: 2; }
.dark-form-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 72px;
  align-items: center;
}
@media (max-width: 980px) { .dark-form-grid { grid-template-columns: 1fr; gap: 48px; } }
.dark-form-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mint-bright);
  margin-bottom: 20px;
}
.dark-form h2 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: #fff;
  margin: 0 0 22px;
}
.dark-form-lede {
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0 0 32px;
}
.dark-form-contact {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  margin: 0 0 12px;
}
.dark-form-contact strong { color: var(--mint-bright); font-weight: 600; }
.dark-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 36px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.dark-form-field { display: flex; flex-direction: column; gap: 6px; }
.dark-form-field label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.dark-form-field input,
.dark-form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 4px;
  transition: border-color 180ms ease;
}
.dark-form-field input:focus,
.dark-form-field textarea:focus {
  outline: none;
  border-color: var(--mint-bright);
}
.dark-form-submit {
  background: var(--mint-bright);
  color: #002018;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 180ms ease;
  margin-top: 12px;
}
.dark-form-submit:hover { background: #15ad8d; }

/* ════════════════════════════════════════════════════════════════════════════
   STITCH FINAL — Jivar's approved final mockup
   ════════════════════════════════════════════════════════════════════════════ */

/* ── DARK NAV (site-wide) ───────────────────────────────────────────── */
.nav-wrap {
  background: var(--navy);
  border-bottom: 1px solid rgba(199,197,207,0.18);
  position: sticky; top: 0; z-index: 100;
}
.nav-wrap.scrolled {
  background: rgba(21,24,59,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-wrap .nav { background: transparent; }
.nav-wrap .nav-row {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  position: relative;
}
.nav-wrap nav[aria-label="Primary"] { margin-left: auto; }
.nav-wrap .brand-logo {
  filter: brightness(0) invert(1) !important;
  height: 30px; width: auto;
}
.nav-wrap .nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-wrap .nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 4px;
  transition: color 180ms ease, background 180ms ease;
}
.nav-wrap .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-wrap .nav-links a.active,
.nav-wrap .nav-links a[aria-expanded="true"] {
  color: var(--mint-bright);
  border-bottom: 2px solid var(--mint-bright);
  padding-bottom: 6px;
  border-radius: 0;
}
.nav-wrap .nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-wrap .nav-login {
  color: rgba(255,255,255,0.85);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
}
.nav-wrap .nav-login:hover { color: var(--mint-bright); }
.nav-wrap .btn.btn-accent {
  background: var(--mint-bright);
  color: #002018 !important;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
}
.nav-wrap .btn.btn-accent:hover { background: #15ad8d; }
.nav-wrap .menu-toggle { color: #fff; background: transparent; border: 1px solid rgba(255,255,255,0.18); }
.nav-wrap .menu-toggle:hover { background: rgba(255,255,255,0.08); }

/* Mega menu styled for dark nav */
.nav-wrap .mega-menu {
  background: rgba(21,24,59,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
.nav-wrap .mega-menu .mega-eyebrow,
.nav-wrap .mega-menu .mega-item-title,
.nav-wrap .mega-menu .mega-left-cta { color: #fff; }
.nav-wrap .mega-menu .mega-desc,
.nav-wrap .mega-menu .mega-item-sub { color: rgba(255,255,255,0.65); }
.nav-wrap .mega-menu .mega-item:hover { background: rgba(255,255,255,0.06); }
.nav-wrap .mega-menu .mega-left-cta { color: var(--mint-bright); border-bottom-color: var(--mint-bright); }
.nav-wrap .mega-menu .mega-icon { color: var(--mint-bright); }

/* ── PROTOCOL SECTION (4-step methodology) ──────────────────────────── */
.protocol-section {
  background: #fff;
  padding: 110px 0;
  text-align: center;
}
.protocol-section .container { max-width: 1200px; padding: 0 64px; margin: 0 auto; }
.protocol-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #46464e;
  margin-bottom: 18px;
}
.protocol-h2 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 64px;
}
.protocol-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
  border-top: 1px solid #e2e2e5;
  padding-top: 40px;
}
@media (max-width: 880px) { .protocol-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .protocol-steps { grid-template-columns: 1fr; } }
.protocol-step-num {
  width: 36px; height: 36px;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
  margin-bottom: 20px;
}
.protocol-step h3 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px; font-weight: 600;
  color: var(--navy);
  margin: 0 0 10px;
}
.protocol-step p {
  font-size: 14px;
  line-height: 1.55;
  color: #46464e;
  margin: 0;
}

/* ── LEADERSHIP SECTION (leader profile + form) ─────────────────────── */
.leadership-section {
  background: #fff;
  padding: 110px 0;
}
.leadership-section .container { max-width: 1280px; padding: 0 64px; margin: 0 auto; }
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .leadership-grid { grid-template-columns: 1fr; gap: 48px; } }
.leadership-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #46464e;
  margin-bottom: 18px;
}
.leadership-name {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 18px;
}
.leadership-role {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #46464e;
  margin-bottom: 4px;
}
.leadership-sector {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 36px;
}
.leadership-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.leadership-meta a {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.leadership-meta a:hover { color: var(--mint-deep); }
.leadership-meta a::before {
  content: "";
  width: 16px; height: 1px;
  background: var(--mint-deep);
}
.leadership-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
  padding-top: 28px;
  border-top: 1px solid #e2e2e5;
}
.leadership-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: #e2e2e5;
}
.leadership-photo img { width: 100%; height: 100%; object-fit: cover; filter: none !important; }
.leadership-card-cta {
  display: inline-block;
  background: var(--mint-bright);
  color: #002018;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
}
.leadership-card-cta:hover { background: #15ad8d; }

.leadership-form {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 36px;
  color: #fff;
  position: relative;
}
.leadership-form-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mint-bright);
  margin-bottom: 18px;
}
.leadership-form-title {
  font-size: 22px; font-weight: 600;
  color: #fff;
  margin: 0 0 28px;
  line-height: 1.3;
}
.leadership-form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.leadership-form-row label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.leadership-form-row input,
.leadership-form-row select,
.leadership-form-row textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 4px;
  width: 100%;
}
.leadership-form-row input:focus,
.leadership-form-row select:focus,
.leadership-form-row textarea:focus {
  outline: none; border-color: var(--mint-bright);
}
.leadership-form-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.leadership-form-submit {
  width: 100%;
  background: var(--navy-2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 4px;
  margin-top: 8px;
  cursor: pointer;
}
.leadership-form-submit:hover { background: rgba(255,255,255,0.1); }
.leadership-form-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  text-align: center;
}

/* ── DARK FOOTER (replaces light footer site-wide) ──────────────────── */
footer {
  background: var(--navy) !important;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 36px !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0 !important;
}
footer .container { max-width: 1440px; padding: 0 64px; margin: 0 auto; }
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 980px) { footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { footer .footer-grid { grid-template-columns: 1fr; } }
footer .footer-brand .brand-logo {
  filter: brightness(0) invert(1) !important;
  height: 30px; width: auto;
  margin-bottom: 18px;
}
footer .footer-brand p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}
footer h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mint-bright);
  margin: 0 0 22px;
}
footer ul { list-style: none; margin: 0; padding: 0; }
footer ul li {
  margin-bottom: 12px;
  font-size: 13.5px;
}
footer ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 180ms ease;
}
footer ul li a:hover { color: #fff; }
footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* Drop existing dark-form section spacing if it's been replaced */
.dark-form { display: none; }

/* Specialty section updated subtitle order */
.specialty-h2-sub {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #46464e;
  margin-top: 14px;
}

/* ════════════════════════════════════════════════════════════════════════════
   FULL-BLEED HEROj — Newfront-style hero with whole-background image
   ════════════════════════════════════════════════════════════════════════════ */
.hero-fullbleed {
  position: relative;
  min-height: 100vh;
  max-height: 920px;
  overflow: hidden;
  background: var(--navy, #15183b);
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-fullbleed-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-fullbleed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
  -webkit-filter: none !important;
}
.hero-fullbleed-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(10, 14, 28, 0.78) 0%,
      rgba(10, 14, 28, 0.55) 38%,
      rgba(10, 14, 28, 0.22) 60%,
      rgba(10, 14, 28, 0.10) 100%);
}
.hero-fullbleed-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 64px 110px;
}
.hero-fullbleed-eyebrow {
  display: inline-block;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 32px;
}
.hero-fullbleed-h1 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 28px;
  max-width: 16ch;
}
.hero-fullbleed-h1 em {
  font-style: italic;
  font-family: "Fraunces", "Hanken Grotesk", serif;
  color: #fff;
  font-weight: 500;
}
.hero-fullbleed-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  max-width: 540px;
  margin: 0 0 42px;
}
.hero-fullbleed-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-fullbleed-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--navy, #15183b);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 16px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}
.hero-fullbleed-btn:hover { background: #f9f9fc; transform: translateY(-1px); }

@media (max-width: 880px) {
  .hero-fullbleed { min-height: 80vh; }
  .hero-fullbleed-inner { padding: 100px 24px 80px; }
  .hero-fullbleed-h1 { font-size: clamp(40px, 9vw, 56px); }
}

/* Add Fraunces font for the italic emphasis */

/* ════════════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES — Jivar reviewing on phone
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Global: prevent horizontal overflow ─────────────────────────────── */
html, body { overflow-x: hidden; max-width: 100vw; }
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

/* ── Hero full-bleed: tighter padding + ensure em is white ───────────── */
.hero-fullbleed-h1 em {
  color: #fff !important;
  font-style: italic !important;
}
@media (max-width: 980px) {
  .hero-fullbleed { min-height: 88vh; max-height: none; }
  .hero-fullbleed-inner { padding: 88px 22px 60px; }
  .hero-fullbleed-h1 { font-size: clamp(38px, 9vw, 56px); margin-bottom: 22px; }
  .hero-fullbleed-eyebrow { margin-bottom: 22px; font-size: 10.5px; }
  .hero-fullbleed-lede { font-size: 15.5px; margin-bottom: 32px; }
  /* Stronger left gradient on small screens so text reads */
  .hero-fullbleed-bg::after {
    background: linear-gradient(180deg, rgba(10,14,28,0.72) 0%, rgba(10,14,28,0.55) 100%);
  }
}

/* ── Dark nav: collapse to hamburger below 1080px ────────────────────── */
@media (max-width: 1080px) {
  .nav-wrap .nav-row { padding: 0 22px; height: 70px; }
  .nav-wrap nav[aria-label="Primary"],
  .nav-wrap .nav-links { display: none !important; }
  .nav-wrap .mega-menu { display: none !important; }
  .nav-wrap .nav-login { display: none; }
  .nav-wrap .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 0;
  }
  .nav-wrap .menu-toggle svg { width: 22px; height: 22px; stroke: #fff; }
  .nav-wrap .btn.btn-accent { padding: 10px 16px; font-size: 11px; letter-spacing: 0.08em; }
  .nav-wrap .nav-cta { gap: 10px; }
  .nav-wrap .brand-logo { height: 26px; }
}
/* Always invert brand logo on the dark nav */
.nav-wrap .brand-logo,
.nav-wrap.scrolled .brand-logo {
  filter: brightness(0) invert(1) !important;
  -webkit-filter: brightness(0) invert(1) !important;
}

/* ── Mobile menu panel (sliding nav) ─────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  color: #fff;
  padding: 32px 22px 80px;
  overflow-y: auto;
  z-index: 200;
}
.mobile-menu.open { display: block; }
.mobile-menu details {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}
.mobile-menu summary {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.mobile-menu summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  font-size: 20px; color: var(--mint-bright); font-weight: 400;
}
.mobile-menu details[open] summary::after { content: "−"; }
.mobile-menu .mobile-sub { display: flex; flex-direction: column; gap: 14px; padding-top: 18px; }
.mobile-menu .mobile-sub a {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
}
.mobile-menu .mobile-sub a:hover { color: var(--mint-bright); }
.mobile-menu > a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.mobile-cta {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 32px;
}
.mobile-cta .btn {
  text-align: center;
  padding: 16px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.mobile-cta .btn-ghost {
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
}
.mobile-cta .btn-accent {
  background: var(--mint-bright);
  color: var(--navy);
}

/* ── Sections: collapse padding + container width on mobile ──────────── */
@media (max-width: 760px) {
  .approach-section,
  .specialty-section,
  .dark-feature,
  .protocol-section,
  .leadership-section,
  .stat-band,
  .feature-row,
  .pull-quote,
  .trust-section,
  .scenarios-section,
  .highlights-section,
  .bf-diff-section,
  .triple-section,
  .reviews-section,
  .numbers-band,
  .process3-section,
  .contact-section,
  .faq-section,
  .marquee-section,
  .final-cta-j {
    padding: 64px 0 !important;
  }
  .approach-section .container,
  .specialty-section .container,
  .dark-feature .container,
  .protocol-section .container,
  .leadership-section .container,
  .stat-band .container,
  .feature-row .container,
  .pull-quote .container,
  .trust-section .container,
  .scenarios-section .container,
  .highlights-section .container,
  .bf-diff-section .container,
  .triple-section .container,
  .reviews-section .container,
  .numbers-band .container,
  .process3-section .container,
  .contact-section .container,
  .faq-section .container,
  .industries-grid-section .container,
  .explore-section .container,
  footer .container {
    padding: 0 22px !important;
    max-width: 100%;
  }
  /* Headlines scale down on mobile */
  .approach-h2,
  .specialty-h2,
  .dark-feature-h2,
  .protocol-h2,
  .leadership-name,
  .stat-band h2,
  .feature-row-body h2,
  .trust-h2,
  .scenarios-head h2,
  .highlights-head h2 {
    font-size: clamp(28px, 7vw, 38px) !important;
  }
}

/* ── Approach grid: stack to 1 col on mobile ─────────────────────────── */
@media (max-width: 760px) {
  .approach-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .approach-card { padding: 28px 22px; gap: 18px; }
  .approach-head { flex-direction: column; gap: 14px; margin-bottom: 36px; }
  .approach-lede { font-size: 15px; max-width: 100%; }
}

/* ── Specialty bento: stack to 1 col on mobile ───────────────────────── */
@media (max-width: 760px) {
  .specialty-bento {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 240px !important;
    gap: 14px !important;
  }
  .bento-tile {
    grid-column: span 1 !important;
    padding: 24px;
  }
  .bento-tile-title { font-size: 20px; }
  .specialty-head { margin-bottom: 36px; }
}

/* ── Dark feature: stack media + content ─────────────────────────────── */
@media (max-width: 880px) {
  .dark-feature-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .dark-feature-media { aspect-ratio: 4/3; }
}

/* ── Stitch hero stat row: 2x2 on small screens ──────────────────────── */
@media (max-width: 600px) {
  .stitch-hero { min-height: 92vh; }
  .stitch-hero-inner { padding: 80px 22px 60px; }
  .stitch-hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
  }
  .stitch-hero h1 { font-size: clamp(34px, 9vw, 48px) !important; line-height: 1.05; }
  .stitch-hero p.lede { font-size: 15px; margin-bottom: 28px; }
  .stitch-hero-ctas { flex-direction: column; }
  .stitch-hero-ctas a { width: 100%; text-align: center; }
  .stitch-stat-value { font-size: 26px; }
}

/* ── Protocol steps: 2x2 then 1col on mobile ─────────────────────────── */
@media (max-width: 760px) {
  .protocol-steps { grid-template-columns: 1fr !important; gap: 28px !important; }
  .protocol-h2 { margin-bottom: 36px; }
}

/* ── Leadership: stack on mobile ─────────────────────────────────────── */
@media (max-width: 880px) {
  .leadership-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .leadership-form { padding: 28px 22px; }
  .leadership-form-double { grid-template-columns: 1fr !important; gap: 12px !important; }
  .leadership-card { grid-template-columns: 80px 1fr; gap: 16px; }
  .leadership-photo { width: 80px; height: 80px; }
}

/* ── Dark footer: stack columns ──────────────────────────────────────── */
@media (max-width: 760px) {
  footer { padding: 56px 0 24px !important; }
  footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-bottom: 36px;
  }
  footer .footer-bottom {
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
    text-align: left;
  }
}

/* ── Homepage triple / industries grid: stack ───────────────────────── */
@media (max-width: 760px) {
  .triple-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .industries-grid { grid-template-columns: 1fr !important; }
  .industry-cell { padding: 24px 20px; }
  .numbers-grid { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .process3-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .contact-wrap { grid-template-columns: 1fr !important; gap: 32px !important; }
  .reviews-scroll { grid-template-columns: 1fr !important; }
  .review-card { padding: 24px; }
  .bf-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .highlights-grid { grid-template-columns: 1fr !important; }
  .diff-grid { grid-template-columns: 1fr !important; }
  .scenarios-grid { grid-template-columns: 1fr !important; }
  .photo-band-grid { grid-template-columns: 1fr !important; }
}

/* ── Explore carousel: tighter card widths ──────────────────────────── */
@media (max-width: 760px) {
  .explore-card { flex-basis: 80vw; max-width: 320px; height: 400px; }
  .explore-section { padding: 64px 0 !important; }
  .explore-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .explore-section h2 { font-size: clamp(28px, 7vw, 40px) !important; }
}

/* ── Form fields: full width on mobile ──────────────────────────────── */
@media (max-width: 760px) {
  .contact-form { grid-template-columns: 1fr !important; }
  .contact-form .field--full { grid-column: span 1; }
  .submit-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .submit-row .btn { width: 100%; text-align: center; }
}

/* ── Stat band: 1-col on mobile ─────────────────────────────────────── */
@media (max-width: 820px) {
  .stat-band-grid { grid-template-columns: 1fr !important; }
  .stat-band-cell {
    padding: 28px 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .stat-band-cell:last-child { border-bottom: none; }
  .stat-band-value { font-size: 48px; }
}


/* ── Benchmark Difference: left text + right image ─────────────────── */
.bd-head { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.bd-head .approach-h2, .bd-head .approach-lede { max-width: none; }
.bd-head .approach-lede { margin-top: 20px; }
.bd-media { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 24px 60px rgba(13,17,24,0.14); }
.bd-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) { .bd-head { grid-template-columns: 1fr; gap: 32px; } .bd-media { aspect-ratio: 16 / 9; } }


/* ── Reviews: auto horizontal scroll on mobile ─────────────────────── */
.review-card--dup { display: none; }
@keyframes reviewsAutoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 700px) {
  .reviews-section .container { overflow: hidden; }
  .reviews-scroll { display: flex; flex-wrap: nowrap; width: max-content; gap: 14px; animation: reviewsAutoScroll 30s linear infinite; }
  .reviews-scroll .review-card { flex: 0 0 80vw; max-width: 320px; }
  .reviews-scroll .review-card--dup { display: flex; }
  .reviews-scroll:hover, .reviews-scroll:active { animation-play-state: paused; }
}

/* ── FAQ summary focus fix: drop the heavy green outline box ───────── */
.faq-item summary:focus { outline: none; }
.faq-item summary:focus-visible { outline: none; color: var(--accent); }

/* ── Mobile: nav CTA aligned right ─────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-wrap .nav-cta { margin-left: auto; }
}
