/* =============================================================
   MSM UNIFY ENTERPRISES — CINEMATIC EDITORIAL DESIGN SYSTEM v3
   A premium enterprise editorial stylesheet.
   "Apple meets IBM meets Deloitte Digital meets Bloomberg"
   ============================================================= */

/* ─── LOGO — real image version ─────────────────────────────── */
.nav__logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav__logo-img {
  height: 38px!important;
  width: auto;
  display: block;
  /* ensure the white-bg logo is visible on dark hero */
  filter: none;
  transition: filter 0.3s;
}
/* On dark (transparent) nav, invert so dark logo becomes visible on dark bg */
.nav:not(.nav--scrolled) .nav__logo-img {
  filter: brightness(0) invert(1);
}
.nav__logo-tag {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 3px 7px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
  align-self: center;
  margin-top: 2px;
}
.nav--scrolled .nav__logo-tag {
  color: var(--muted);
  border-color: var(--border);
}

/* Footer logo */
.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none;
}
.footer__logo-img {
  height: 38px!important;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer__logo-tag {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 3px 7px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  white-space: nowrap;
  align-self: center;
}

/* Trust rail inline SVG logos */
.tl__logo-svg {
  display: block;
  height: 36px;
  width: auto;
  max-width: 180px;
  filter: grayscale(1) brightness(0) opacity(0.55);
  transition: filter 0.25s;
}

/* Thinking hero card — image at top */
.thk__hero-img-wrap {
  width: calc(100% + 96px);
  margin: -48px -48px 28px;
  height: 180px!important;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.thk__hero-img {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%) brightness(0.85);
  transition: transform 0.5s var(--ease);
}
.thk__card--hero:hover .thk__hero-img { transform: scale(1.04); }

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --red:          #E8000D;
  --red-dim:      rgba(232,0,13,0.12);
  --ink:          #0A0A0A;
  --ink-2:        #1A1A1A;
  --ink-3:        #2C2C2C;
  --canvas:       #FFFFFF;
  --canvas-soft:  #F8F7F4;   /* warm off-white */
  --canvas-dark:  #F2F1EE;
  --muted:        #6B7280;
  --muted-2:      #9CA3AF;
  --border:       #E5E3DE;
  --border-2:     rgba(0,0,0,0.08);

  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-display:   'Poppins', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --font-mono:      'SF Mono','Fira Code','Courier New', monospace;

  --nav-h:      76px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);

  --shadow-card: 0 2px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-up:   0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --radius:      4px;
  --radius-lg:   8px;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--red);
  color: #fff!important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600!important;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #c50009;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232,0,13,0.28);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-full { width: 100%; justify-content: center; }
#wpforms-submit-60614 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#wpforms-submit-60614::after {
    content: "\f061"; /* Font Awesome arrow-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 27px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff!important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500!important;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
[data-sr] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-sr].sr-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-sr][data-sr-delay="100"] { transition-delay: 0.1s; }
[data-sr][data-sr-delay="200"] { transition-delay: 0.2s; }
[data-sr][data-sr-delay="300"] { transition-delay: 0.3s; }
[data-sr][data-sr-delay="400"] { transition-delay: 0.4s; }
[data-sr][data-sr-delay="500"] { transition-delay: 0.5s; }

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease);
}
.nav--scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1360px;
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  min-width: 1360px;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo svg { height: 46px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav--scrolled .nav__links a { color: var(--ink-3); }
.nav--scrolled .nav__links a:hover { color: var(--ink); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--red);
  color: #fff!important;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600!important;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.nav__cta:hover {
  background: #c50009;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,0,13,0.3);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav--scrolled .nav__burger span { background: var(--ink); }
.nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a0202;
}

/* Full-bleed photo background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center;
  will-change: transform;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(20,5,5,0.72) 0%,
    rgba(180,10,10,0.25) 40%,
    rgba(255,255,255,0.08) 100%
  );
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 64px) 48px 80px;
  min-height: 100vh;
}

/* Hero copy — left side */
.hero__copy { display: flex; flex-direction: column; gap: 0; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.hero__eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
}
.hero__h1 {
  font-family: var(--font-editorial);
  font-size: clamp(3.2rem, 5.5vw, 6.4rem)!important;
  font-weight: 600!important;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hero__h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}
.hero__h1-sub {
  display: block;
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  line-height: 1.1;
}
.hero__lead {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-top: 28px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero visual — right side (dashboard) */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

/* Bloomberg-style dashboard panel */
.hero__dash {
  width: 100%;
  max-width: 460px;
  background: rgba(8,8,8,0.88);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
}
.hd__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.4);
}
.hd__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hd__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #22c55e;
}
.hd__live-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hd__stats {
  display: flex;
  align-items: stretch;
  padding: 20px 18px 16px;
  gap: 0;
}
.hd__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hd__stat-div {
  width: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 20px;
}
.hd__stat-n {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hd__stat-l {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}
.hd__chart-wrap {
  padding: 0 18px 4px;
  position: relative;
  height: 80px;
}
#heroSparkline {
  width: 100% !important;
  height: 80px !important;
  max-height: 80px;
}
.hd__alert {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 14px 14px;
  padding: 10px 14px;
  background: rgba(232,0,13,0.1);
  border: 1px solid rgba(232,0,13,0.2);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.hd__alert .fa-circle-check {
  color: var(--red);
  font-size: 13px;
  flex-shrink: 0;
}
.hd__alert strong { color: rgba(255,255,255,0.85); }

/* Floating pills */
.hero__pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(12,12,12,0.82);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  backdrop-filter: blur(16px);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero__pill i { color: var(--red); font-size: 14px; }
.hero__pill-1 { animation: pillFloat 4s ease-in-out infinite; }
.hero__pill-2 { animation: pillFloat 4s ease-in-out infinite 1.3s; }
@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero__scroll-track {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-track::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(255,255,255,0.9);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -40%; }
  100% { top: 120%; }
}

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.trust {
  background: var(--canvas-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  overflow: hidden;
}
.trust__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
}
.trust__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
  margin-bottom: 32px;
}
.trust__rail-wrap {
  overflow: hidden;
  position: relative;
}
.trust__rail-wrap::before,
.trust__rail-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.trust__rail-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--canvas-soft), transparent);
}
.trust__rail-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--canvas-soft), transparent);
}
.trust__rail {
  display: flex;
  align-items: center;
  gap: 0;
  animation: trustScroll 36s linear infinite;
  width: max-content;
}
.trust__rail:hover { animation-play-state: paused; }
@keyframes trustScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  border-right: 1px solid var(--border);
  gap: 5px;
  flex-shrink: 0;
  min-width: 100px;
}
.tl:last-child { border-right: none; }
.tl__logo-svg {
  display: block;
  height: 36px;
  width: auto;
  max-width: 180px;
  filter: grayscale(1) brightness(0) opacity(0.55);
  transition: filter 0.25s;
}
.tl:hover .tl__logo-svg {
  filter: grayscale(1) brightness(0) opacity(0.9);
}
.tl__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  white-space: nowrap;
}
.tl__cat {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ─── EDITORIAL STATEMENT ────────────────────────────────────── */
.statement {
  background: var(--canvas);
  padding: 120px 48px;
}
.statement__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.statement__pre {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 32px;
}
.statement__quote {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
  position: relative;
}
.statement__quote::before {
  content: '\201C';
  font-size: 1.2em;
  color: var(--red);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 4px;
}
.statement__body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 40px;
}
.statement__bar {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 0 auto;
  border-radius: 2px;
}

/* ─── WHAT WE DO — ALTERNATING BLOCKS ───────────────────────── */
.what {
  background: var(--canvas-soft);
}

/* Separator between blocks */
.what__sep {
  height: 1px;
  background: var(--border);
  margin: 0 48px;
}

/* Individual block */
.what__block {
  display: grid;
  align-items: center;
  min-height: 560px;
  gap: 0;
}
.what__block--image-right {
  grid-template-columns: 45% 55%;
}
.what__block--image-left {
  grid-template-columns: 55% 45%;
}
.what__block--image-left .what__copy {
  order: 2;
}
.what__block--image-left .what__img-wrap {
  order: 1;
}

/* Copy side */
.what__copy {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.what__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 20px;
}
.what__h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 3vw, 3.4rem)!important;
  font-weight: 600!important;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.what__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 480px;
}
.what__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.what__list li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-3);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.what__list li::before {
  content: '—';
  color: var(--red);
  flex-shrink: 0;
  font-weight: 300;
  margin-top: 1px;
}
.what__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600!important;
  color: var(--ink)!important;
  letter-spacing: 0.03em;
  transition: color 0.2s, gap 0.2s;
}
.what__link:hover { color: var(--red); gap: 12px; }
.what__link i { font-size: 11px; }

/* Image side */
.what__img-wrap {
  position: relative;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}
.what__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.what__block:hover .what__img { transform: scale(1.03); }

/* Floating stat overlay */
.what__img-stat {
  position: absolute;
  bottom: 32px;
  right: 28px;
  background: rgba(5,5,5,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
}
.what__img-stat--right { right: auto; left: 28px; }
.wis__n {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.wis__n span {
  font-size: 22px;
  font-weight: 500;
  color: var(--red);
}
.wis__l {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-top: 4px;
}

/* Cards row (solutions 04 + 05) */
.what__cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-top: 1px solid var(--border);
}
.what__card {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--canvas);
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.what__card--dark {
  background: #1e3a5f;
  border-right: none;
}
.what__card h3 {
  font-family: var(--font-editorial);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
  margin-top: 16px;
  letter-spacing: -0.01em;
}
.what__card--dark h3 { color: #fff; }
.what__card p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
}
.what__card--dark p { color: rgba(255,255,255,0.5); }
.what__card .what__list { margin-bottom: 28px; }
.what__card--dark .what__list li { color: rgba(255,255,255,0.6); }

/* ─── NUMBERS — FULL BLEED ───────────────────────────────────── */
.numbers {
  position: relative;
  overflow: hidden;
  padding: 120px 48px;
  background: #1a2e4a;
}
.numbers__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.numbers__bg-img {
  width: 100%;
  height: 100%!important;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  filter: grayscale(30%);
}
.numbers__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,40,70,0.88) 0%, rgba(26,46,74,0.78) 100%);
}
.numbers__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
}
.numbers__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 64px;
}
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.numbers__item {
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.numbers__item:last-child { border-right: none; }
.ni__n {
  display: block;
  font-family: var(--font-editorial);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 600;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ni__l {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}
.ni__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

/* ─── INDUSTRIES — CINEMATIC GRID ───────────────────────────── */
.industries {
  background: var(--canvas);
  padding: 120px 48px;
}
.industries__head {
  max-width: 1360px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 80px;
  align-items: end;
}
.industries__head .ind__eyebrow {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.ind__h2 {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-editorial);
  font-size: clamp(2.5rem, 4vw, 5rem)!important;
  font-weight: 600!important;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.ind__h2 em { font-style: italic; font-weight: 400; }
.ind__sub {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
}

/* Magazine grid — 7 cards: BFSI (tall), Tech, Healthcare, Mfg, Govt (wide), Agritech, Dairy */
.industries__grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 400px 260px 260px;
  gap: 3px;
}
.ig__card {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  cursor: default;
}
.ig__card--tall { grid-row: 1 / 3; }
.ig__card--wide { grid-column: 2 / 4; }
.ig__card--wide-bottom { grid-column: 1 / 3; }
.ig__card--full-row { grid-column: 1 / 4; height: 300px; }

.ig__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.72) 100%);
  transition: background 0.4s;
}
.ig__card:hover .ig__overlay {
  background: linear-gradient(160deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.82) 100%);
}
.ig__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.ig__sector {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.ig__body h3 {
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}
.ig__card--tall .ig__body h3 { font-size: 2rem; }
.ig__body p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 320px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out) 0.05s, transform 0.4s var(--ease-out) 0.05s;
}
.ig__card:hover .ig__body p {
  opacity: 1;
  transform: translateY(0);
}
.ig__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600!important;
  color: #fff!important;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.35);
  transition: text-decoration-color 0.2s;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease-out) 0.1s,
              transform 0.35s var(--ease-out) 0.1s,
              text-decoration-color 0.2s;
}
.ig__card:hover .ig__link {
  opacity: 1;
  transform: translateY(0);
  text-decoration-color: rgba(255,255,255,0.7);
}

/* ─── APPROACH — EDITORIAL TIMELINE ─────────────────────────── */
.approach {
  background: var(--canvas-soft);
  padding: 120px 48px;
}
.approach__inner {
  max-width: 1360px;
  margin: 0 auto;
}
.approach__header {
  margin-bottom: 80px;
}
.approach__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.approach__h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2.4rem, 3.8vw, 4.6rem)!important;
  font-weight: 600!important;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.approach__h2 em { font-style: italic; font-weight: 400; }

.approach__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.approach__steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.apstep {
  padding: 0 24px;
  position: relative;
  z-index: 1;
  opacity: 0.4;
  transition: opacity 0.5s var(--ease);
}
.apstep.active { opacity: 1; }
.apstep__marker {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.apstep__n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--canvas-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  transition: border-color 0.4s, color 0.4s, background 0.4s;
  flex-shrink: 0;
}
.apstep.active .apstep__n {
  border-color: var(--red);
  color: var(--red);
  background: rgba(232,0,13,0.06);
}
.apstep__line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-left: 8px;
  transition: background 0.4s;
}
.apstep.active .apstep__line { background: var(--red); }

.apstep__body h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.apstep__body p {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── CASE STUDY — ANNUAL REPORT ────────────────────────────── */
.casestudy {
  background: var(--canvas);
  padding: 0 48px 120px;
}
.cs__eyebrow-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 80px 0 64px;
  max-width: 1360px;
  margin: 0 auto;
}
.cs__eyebrow-wrap::before,
.cs__eyebrow-wrap::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.cs__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
  padding: 0 16px;
}
.cs__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 80px;
  align-items: start;
}
.cs__photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.cs__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cs__photo-wrap:hover .cs__photo { transform: scale(1.03); }
.cs__photo-caption {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted-2);
  font-style: italic;
}
.cs__kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 28px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cs__kpi {
  background: var(--canvas-soft);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.csk__n {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.csk__l {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Right column */
.cs__sector-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.cs__h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2.4rem, 3.5vw, 4.2rem)!important;
  font-weight: 600!important;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.cs__h2 em { font-style: italic; font-weight: 400; }
.cs__body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}
.cs__results {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 8px;
  margin-bottom: 32px;
}
.csr__title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.csr__list { display: flex; flex-direction: column; gap: 12px; }
.csr__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.5;
}
.csr__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 7px;
}
.cs__chart-wrap {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.cs__chart-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
/* CRITICAL: Chart.js needs explicit height on the container, not just canvas */
#csChart {
  max-height: 220px;
  width: 100% !important;
  height: 220px !important;
}

/* ─── VOICES — EDITORIAL TESTIMONIALS ───────────────────────── */
.voices {
  background: var(--canvas-soft);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.voices__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.voices__left {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}
.v__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.v__h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 2.8vw, 3.2rem)!important;
  font-weight: 600!important;
  line-height: 1.15;
  color: var(--ink)!important;
  letter-spacing: -0.01em;
}

.voices__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.voice {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.voice:first-child { padding-top: 0; }
.voice--lead {
  padding-bottom: 48px;
}
.voice p {
  font-family: var(--font-editorial);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.voice--lead p {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--ink);
}
.voice footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.voice__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.voice--lead .voice__avatar { width: 48px; height: 48px; font-size: 14px; }
.voice__info { display: flex; flex-direction: column; gap: 2px; }
.voice__info strong {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.voice__info span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.voices__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.voices__pair .voice {
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 0;
}

/* ─── THINKING — McKINSEY EDITORIAL ─────────────────────────── */
.thinking {
  background: var(--canvas);
  padding: 120px 48px;
}
.thinking__inner {
  max-width: 1360px;
  margin: 0 auto;
}
.thinking__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 64px;
}
.thk__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.thk__h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2.4rem, 3.5vw, 4.2rem)!important;
  font-weight: 600!important;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.thk__h2 em { font-style: italic; font-weight: 400; }

.thinking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.thk__card {
  background: var(--canvas-soft);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  transition: background 0.3s var(--ease), box-shadow 0.3s;
}
.thk__card:hover {
  background: var(--canvas);
  box-shadow: var(--shadow-card);
}
.thk__card--hero {
  grid-row: 1 / 3;
  background: #1a2e4a;
  border-color: transparent;
}
.thk__card--hero:hover {
  background: #1e3a5f;
}
.thk__type {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.thk__card h3 {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.thk__card--hero h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  color: #fff;
}
.thk__card p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
  flex: 1;
}
.thk__card--hero p { color: rgba(255,255,255,0.5); }
.thk__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-2);
  margin-bottom: 28px;
}
.thk__card--hero .thk__meta { color: rgba(255,255,255,0.35); }
.thk__meta-sep { opacity: 0.4; }
.thk__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600!important;
  color: var(--ink)!important;
  transition: color 0.2s, gap 0.2s;
  margin-top: auto;
}
.thk__link:hover { color: var(--red); gap: 11px; }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact {
  background: var(--canvas-soft);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.contact__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 100px;
  align-items: start;
}
.contact__left { position: sticky; top: calc(var(--nav-h) + 40px); }
.contact__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.contact__h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 3.2vw, 4rem)!important;
  font-weight: 600!important;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.contact__h2 em { font-style: italic; font-weight: 400; }
.contact__sub {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
}
.contact__perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}
.contact__perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.5;
}
.cp__mark {
  color: var(--red);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact__offices { border-top: 1px solid var(--border); padding-top: 32px; }
.co__title {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.co__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 20px;
}
.co__cities span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-3);
}
.co__email {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--red);
  transition: opacity 0.2s;
}
.co__email:hover { opacity: 0.75; }

/* Form */
.cform {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-card);
}
.cform__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cform__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.cform__field label {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.cform__field label span { color: var(--red); margin-left: 2px; }
.cform__field input,
.cform__field select,
.cform__field textarea {
  padding: 12px 14px;
   border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--ink) !important;
    background: var(--canvas-soft) !important;
    outline: none !important;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s !important;
    width: 100%;
    appearance: none;
}
.cform__field input:focus,
.cform__field select:focus,
.cform__field textarea:focus {
  border-color: var(--ink-3);
  background: var(--canvas);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
.cform__field input.err,
.cform__field select.err,
.cform__field textarea.err {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,0,13,0.08);
}
.cform__field input::placeholder,
.cform__field textarea::placeholder { color: var(--muted-2); }
.cform__field select { cursor: pointer; }
.cform__field textarea { resize: vertical; min-height: 90px; }
.cform__err {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--red);
  min-height: 16px;
  line-height: 1.4;
}
.cform__consent { margin-bottom: 24px; }
.cform__chk-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.cform__chk-label input[type="checkbox"] { display: none; }
.cform__chk-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 2px;
  position: relative;
}
.cform__chk-label:has(input:checked) .cform__chk-box {
  background: var(--ink);
  border-color: var(--ink);
}
.cform__chk-label:has(input:checked) .cform__chk-box::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.cform__chk-label > span {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
}
.cform__chk-label > span a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

.cform__success {
  text-align: center;
  padding: 48px 24px;
}
.cform__success .fa-circle-check {
  font-size: 40px;
  color: #22c55e;
  margin-bottom: 16px;
  display: block;
}
.cform__success h4 {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.cform__success p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* World map texture via SVG data URI — subtle ink dots */
.footer__map-texture {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cellipse cx='100' cy='160' rx='70' ry='50' fill='%23fff'/%3E%3Cellipse cx='200' cy='150' rx='80' ry='55' fill='%23fff'/%3E%3Cellipse cx='320' cy='140' rx='100' ry='60' fill='%23fff'/%3E%3Cellipse cx='450' cy='160' rx='90' ry='55' fill='%23fff'/%3E%3Cellipse cx='570' cy='155' rx='60' ry='45' fill='%23fff'/%3E%3Cellipse cx='680' cy='180' rx='50' ry='38' fill='%23fff'/%3E%3Cellipse cx='750' cy='200' rx='45' ry='35' fill='%23fff'/%3E%3Cellipse cx='400' cy='280' rx='80' ry='50' fill='%23fff'/%3E%3Cellipse cx='230' cy='290' rx='60' ry='40' fill='%23fff'/%3E%3Cellipse cx='560' cy='270' rx='55' ry='38' fill='%23fff'/%3E%3Cellipse cx='160' cy='310' rx='40' ry='30' fill='%23fff'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo {
  height: 46px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.footer__brand p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer__social a:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: rgba(255,255,255,0.85); }

.footer__nl-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer__nl {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}
.footer__nl input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.footer__nl input::placeholder { color: rgba(255,255,255,0.25); }
.footer__nl input:focus { border-color: rgba(255,255,255,0.3); }
.footer__nl button {
  padding: 10px 16px;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #fff;
  font-size: 13px;
  transition: background 0.2s;
  cursor: pointer;
  margin: 0;
}
.footer__nl button:hover { background: #c50009; }
.footer__email {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400!important;
  color: rgba(255,255,255,0.4)!important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer__email:hover { color: rgba(255,255,255,0.7); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 32px;
}
.footer__bottom p {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.footer__legal {
  display: flex;
  gap: 28px;
}
.footer__legal a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.65); }

/* ─── BACK TO TOP ────────────────────────────────────────────── */
.back-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 800;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background: var(--ink) !important;
    color: #fff !important;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(16px) !important;
    pointer-events: none ;
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 0;
}
.back-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover { background: var(--red)!important; }

/* ─── HIRE TRAIN DEPLOY ─────────────────────────────────────── */
.htd {
  background: var(--canvas);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.htd__inner {
  max-width: 1360px;
  margin: 0 auto;
}
.htd__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}
.htd__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.htd__h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2.8rem, 4.5vw, 5.6rem)!important;
  font-weight: 600!important;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.htd__h2 em { font-style: italic; font-weight: 400; color: var(--red); }
.htd__intro {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* Three-phase grid */
.htd__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 3px;
}
.htd__phase {
  background: var(--canvas-soft);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.htd__phase:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-up);
  z-index: 1;
}
.htd__phase--accent {
  background: #1e3a5f;
  border-color: transparent;
}
.htd__phase-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.htd__phase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.htd__phase:hover .htd__phase-img { transform: scale(1.05); }
.htd__phase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}
.htd__phase-num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 2px;
}
.htd__phase-body {
  padding: 36px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.htd__phase-body h3 {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.htd__phase--accent .htd__phase-body h3 { color: #fff; }
.htd__phase-body p {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
}
.htd__phase--accent .htd__phase-body p { color: rgba(255,255,255,0.5); }
.htd__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
}
.htd__list li {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-3);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.htd__phase--accent .htd__list li { color: rgba(255,255,255,0.6); }
.htd__list li::before {
  content: '—';
  color: var(--red);
  flex-shrink: 0;
  font-weight: 300;
}

/* CTA Bar */
.htd__cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 48px;
  background: var(--ink);
  border-radius: var(--radius);
  margin-top: 3px;
}
.htd__cta-copy { display: flex; flex-direction: column; gap: 4px; }
.htd__cta-stat {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
}
.htd__cta-stat span {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.htd__cta-note {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}

/* ─── GOVERNMENT TRAINING ────────────────────────────────────── */
.govtrain {
  background: var(--canvas-soft);
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.govtrain__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 80px;
  align-items: start;
}
.govtrain__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.govtrain__h2 {
  font-family: var(--font-editorial);
  font-size: clamp(2.4rem, 3.5vw, 4.4rem)!important;
  font-weight: 600!important;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.govtrain__h2 em { font-style: italic; font-weight: 400; }
.govtrain__body {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 36px;
}
.govtrain__accred {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.govtrain__badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}
.govtrain__badge i {
  font-size: 18px;
  color: var(--red);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.govtrain__badge div { display: flex; flex-direction: column; gap: 2px; }
.govtrain__badge strong {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.govtrain__badge span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

/* Right column */
.govtrain__right { display: flex; flex-direction: column; gap: 32px; }
.govtrain__photo-stack {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
}
.govtrain__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(15%);
  transition: transform 0.5s var(--ease);
}
.govtrain__photo-stack:hover .govtrain__photo { transform: scale(1.03); }
.govtrain__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}

/* Stats grid */
.govtrain__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.govtrain__stat {
  background: var(--canvas);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.govtrain__stat-n {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.govtrain__stat-l {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
}

/* Services */
.govtrain__services { }
.govtrain__services-title {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.govtrain__services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.govtrain__service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-3);
  padding: 10px 14px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.govtrain__service-item i {
  color: var(--red);
  font-size: 13px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

/* ─── PAY ON SUCCESS / ROI ───────────────────────────────────── */
.roi {
  background: var(--canvas-soft);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.roi::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,0,13,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.roi__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 80px;
  align-items: start;
}
.roi__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.roi__h2 {
  font-family: var(--font-editorial);
  font-size: clamp(3.5rem, 6vw, 7.5rem)!important;
  font-weight: 600!important;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.roi__h2 em {
  font-style: italic;
  color: var(--red);
  font-weight: 400;
  display: block;
}
.roi__asterisk {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 32px;
  margin-top: 12px;
  line-height: 1.5;
}
.roi__statement {
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.roi__statement p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}
.roi__statement p:last-child {
  font-family: var(--font-editorial);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}
.roi__triggers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.roi__trigger {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.roi__trigger-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232,0,13,0.12);
  border: 1px solid rgba(232,0,13,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.roi__trigger-icon i { color: var(--red); font-size: 15px; }
.roi__trigger div { display: flex; flex-direction: column; gap: 4px; }
.roi__trigger strong {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.roi__trigger span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}
.roi__cta { align-self: flex-start; }

/* Right panel */
.roi__right { display: flex; flex-direction: column; gap: 28px; }
.roi__panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.roi__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--canvas-soft);
}
.roi__panel-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.roi__panel-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 3px 10px;
  border-radius: 12px;
}
.roi__metrics {
  padding: 24px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.roi__metric { display: flex; flex-direction: column; gap: 6px; }
.roi__metric-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.roi__metric-bar {
  height: 7px;
  border-radius: 4px;
  width: var(--w);
  transition: width 1.2s var(--ease-out);
}
.roi__metric-bar--before { background: rgba(0,0,0,0.1); }
.roi__metric-bar--after  { background: var(--red); opacity: 0.9; }
.roi__metric-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roi__metric-labels > span:first-child {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.roi__metric-delta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  padding: 2px 8px;
  border-radius: 10px;
}
.roi__metric-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: rgba(0,0,0,0.35);
}
.roi__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.roi__dot--before { background: rgba(0,0,0,0.15); }
.roi__dot--after  { background: var(--red); }
.roi__panel-footer {
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
}
.roi__panel-footer span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  color: rgba(0,0,0,0.35);
  line-height: 1.5;
  display: block;
}

.roi__quote {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.roi__quote p {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}
.roi__quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ─── RESPONSIVE — NEW SECTIONS ─────────────────────────────── */
@media (max-width: 1000px) {
  .htd__grid { grid-template-columns: 1fr; }
  .htd__phase-img-wrap { height: 200px; }
  .htd__cta-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
  .govtrain__inner { grid-template-columns: 1fr; gap: 48px; }
  .govtrain__services-grid { grid-template-columns: 1fr; }
  .roi__inner { grid-template-columns: 1fr; gap: 48px; }
  .roi__h2 { font-size: clamp(3rem, 8vw, 5rem); }
}
@media (max-width: 720px) {
  .htd { padding: 72px 24px; }
  .htd__phase-body { padding: 28px 24px 32px; }
  .htd__cta-bar { padding: 28px 24px; }
  .govtrain { padding: 72px 24px; }
  .govtrain__stats { grid-template-columns: 1fr; }
  .govtrain__services-grid { grid-template-columns: 1fr; }
  .roi { padding: 72px 24px; }
  .roi__metrics { padding: 20px 20px 12px; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

/* 1200px */
@media (max-width: 1200px) {
  .nav__inner { padding: 0 32px; gap: 24px; }
  .hero__layout { padding: calc(var(--nav-h) + 48px) 32px 64px; gap: 40px; }
  .trust__inner { padding: 0 32px; }
  .statement { padding: 96px 32px; }
  .what__copy { padding: 64px 48px; }
  .what__card { padding: 48px; }
  .numbers { padding: 96px 32px; }
  .industries { padding: 96px 32px; }
  .approach { padding: 96px 32px; }
  .casestudy { padding: 0 32px 96px; }
  .voices { padding: 96px 32px; }
  .thinking { padding: 96px 32px; }
  .contact { padding: 96px 32px; }
  .footer__inner { padding: 0 32px; }
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr; gap: 32px; }
}

/* 1000px */
@media (max-width: 1000px) {
  .hero__layout { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { align-items: center; }
  .hero__dash { max-width: 100%; }
  .hero__copy { max-width: 600px; margin: 0 auto; text-align: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__lead { margin-left: auto; margin-right: auto; text-align: left; }
  .hero__actions { justify-content: center; }

  .what__block--image-right,
  .what__block--image-left {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .what__img-wrap { min-height: 380px; order: -1 !important; }
  .what__copy { order: 2 !important; padding: 48px 32px; }
  .what__cards-row { grid-template-columns: 1fr; }
  .what__card { border-right: none; border-bottom: 1px solid var(--border); }

  .numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .numbers__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 0 32px; }
  .numbers__item:nth-child(2n) { padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.08); }
  .numbers__item:last-child { border-bottom: none; }

  .industries__head { grid-template-columns: 1fr; gap: 12px; }
  .ind__sub { grid-column: 1; grid-row: 3; }
  .industries__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 260px 260px 260px; }
  .ig__card--tall { grid-row: 1 / 2; }
  .ig__card--wide { grid-column: 1 / 3; }
  .ig__card--wide-bottom { grid-column: 1 / 3; }
  .ig__card--full-row { grid-column: 1 / 3; }

  .approach__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .approach__steps::before { display: none; }
  .apstep__line { display: none; }

  .cs__inner { grid-template-columns: 1fr; gap: 48px; }

  .voices__inner { grid-template-columns: 1fr; gap: 48px; }
  .voices__left { position: static; }
  .voices__pair { grid-template-columns: 1fr; gap: 0; }
  .voices__pair .voice { border-bottom: 1px solid var(--border); padding-bottom: 40px; }

  .thinking__grid { grid-template-columns: 1fr; }
  .thk__card--hero { grid-row: auto; }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__left { position: static; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / 3; }
}

/* 720px */
@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 32px 28px 40px;
    gap: 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    z-index: 899;
    border-top: 1px solid var(--border);
  }
  .nav--scrolled .nav__links.open { background: var(--canvas); }
  .nav__links.open a { color: var(--ink); font-size: 16px; }
  .nav__inner { gap: 0; padding: 0 24px; }

  .hero__layout { padding: calc(var(--nav-h) + 40px) 24px 60px; }
  .hero__h1 { font-size: clamp(2.8rem, 9vw, 4.5rem); }
  .hero__pill { display: none; }
  .hd__stat-n { font-size: 22px; }

  .statement { padding: 72px 24px; }
  .trust__inner { padding: 0 24px; }
  .what__copy { padding: 40px 24px; }
  .what__card { padding: 40px 28px; }
  .what__img-wrap { min-height: 280px; }

  .numbers { padding: 72px 24px; }
  .numbers__grid { grid-template-columns: 1fr 1fr; }
  .numbers__item { padding: 0 0 28px; }
  .numbers__item:nth-child(2n) { padding-left: 24px; }

  .industries { padding: 72px 24px; }
  .industries__grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .ig__card { height: 280px; }
  .ig__card--tall { grid-row: auto; height: 360px; }
  .ig__card--wide { grid-column: auto; }
  .ig__card--wide-bottom { grid-column: auto; }
  .ig__card--full-row { grid-column: auto; height: 260px; }
  .ig__body p, .ig__link { opacity: 1; transform: none; }

  .approach { padding: 72px 24px; }
  .approach__steps { grid-template-columns: 1fr; }
  .apstep { padding: 0; }

  .casestudy { padding: 0 24px 72px; }
  .cs__h2 { font-size: clamp(2rem, 6vw, 3rem); }
  .csk__n { font-size: 22px; }

  .voices { padding: 72px 24px; }
  .thinking { padding: 72px 24px; }
  .thk__card { padding: 32px 28px; }

  .contact { padding: 72px 24px; }
  .cform { padding: 32px 24px; }
  .cform__row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__inner { padding: 0 24px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .back-top { bottom: 24px; right: 24px; }
}

/* 480px */
@media (max-width: 480px) {
  .hero__layout { padding: calc(var(--nav-h) + 32px) 20px 48px; }
  .hero__h1 { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero__lead { font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn-primary,
  .hero__actions .btn-ghost { justify-content: center; }

  .statement__quote { font-size: clamp(1.6rem, 5.5vw, 2.4rem); }
  .approach__h2 { font-size: clamp(2rem, 6vw, 3rem); }
  .numbers__grid { grid-template-columns: 1fr; }
  .numbers__item { padding: 0 0 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .numbers__item:nth-child(2n) { padding-left: 0; border-left: none; }
}
