/* =========================================================
   LizardTouch — brand system
   ========================================================= */
:root {
  /* Brand */
  --ink: #0A1545;            /* deepest navy */
  --navy: #0E1F6E;           /* logo wordmark */
  --navy-2: #1A2D8A;
  --cream: #F6F2E9;          /* warm off-white */
  --paper: #FFFFFF;
  --line: rgba(14, 31, 110, 0.12);
  --line-strong: rgba(14, 31, 110, 0.28);
  --muted: #5A6385;

  /* Chameleon accents */
  --c-red:    #FF4A4A;
  --c-orange: #FF8A2A;
  --c-yellow: #FFC93C;
  --c-green:  #3FBE5C;
  --c-teal:   #2BC4B6;
  --c-blue:   #2D7EF7;
  --c-indigo: #4636C9;

  /* --grad-rainbow: linear-gradient(90deg,
    var(--c-red) 0%, var(--c-orange) 18%, var(--c-yellow) 36%,
    var(--c-green) 54%, var(--c-teal) 70%, var(--c-blue) 86%, var(--c-indigo) 100%); */
    --grad-rainbow: linear-gradient(90deg,
    var(--c-blue) 0%, var(--c-green) 45%, var(--c-orange) 100%);
    --grad-tail: linear-gradient(135deg, #4FB6FF 0%, #2D7EF7 45%, #1E2FAE 100%);

  /* Type */
  --f-display: "Josefin Sans", ui-sans-serif, system-ui, sans-serif;
  --f-body:    "Manrope", ui-sans-serif, system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============== TYPE ============== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-rainbow);
}
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7.4vw, 100px); font-weight: 600; letter-spacing: -0.015em; }
h2 { font-size: clamp(36px, 4.6vw, 64px); letter-spacing: -0.01em; }
h3 { font-size: clamp(22px, 2.1vw, 30px); letter-spacing: -0.005em; }
p  { text-wrap: pretty; }
.lead {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
  color: var(--muted);
  max-width: 60ch;
}

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 242, 233, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-weight: 700; font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--navy);
  text-transform: uppercase;
}
.brand img { height: 38px; width: auto; }
.brand .wordmark-stack {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  /* Josefin Sans uppercase has extra space above the cap line; nudge up
     so the wordmark optically centers against the chameleon mark. */
  transform: translateY(-2px);
}
.brand .wordmark {
  display: inline-flex; align-items: baseline; gap: 1px;
  line-height: 1;
}
.brand .tagline {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.65;
  line-height: 1;
  /* Optical alignment with the start of the wordmark */
  padding-left: 1px;
}
.brand .wordmark .b { font-weight: 700; letter-spacing: 0.01em; }
.brand .wordmark .l { font-weight: 400; letter-spacing: 0.01em; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  opacity: 0.78; transition: opacity .15s;
}
.nav-links a:hover { opacity: 1; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--f-body); font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--navy); }
.btn-ghost   { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn .arr {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: var(--c-orange); color: #fff;
  font-size: 11px;
}
.btn-primary .arr { background: var(--c-orange); }
.btn-ghost .arr { background: var(--navy); color: var(--cream); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 10px 0 clamp(60px, 8vw, 10px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.hero h1 {
  letter-spacing: -0.02em;
}
.hero h1 .stack { display: block; }
.hero h1 .accent {
  background: var(--grad-rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* font-style: italic; */
  font-weight: 500;
}
.hero-cta {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-side {
  display: flex; flex-direction: column; gap: 0;
  padding-bottom: 6px;
}
.hero-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px;
  padding-top: 0;
  border-top: 1px solid var(--line);
}
.hero-meta .item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .num {
  font-family: var(--f-display);
  font-size: 36px; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.hero-meta .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* Hero portrait — when the chameleon-wrap holds a person's photo */
.chameleon-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.chameleon-wrap::before {
  /* Soft rainbow bloom behind the portrait — keeps the chameleon DNA. */
  content: "";
  position: absolute; inset: 8%;
  /* background: var(--grad-rainbow);
  filter: blur(90px);
  opacity: 0.22; */
  border-radius: 50%;
  z-index: -1;
}
.chameleon-wrap img {
  /* Blend the photo into the cream page:
       - multiply: pure-white background pixels effectively disappear into cream.
       - radial mask: soft vignette so any remaining edges fade rather than clip. */
  width: 90%;
  /* aspect-ratio: 1 / 1; */
  object-fit: cover;
  /* mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 48%,
    rgba(0,0,0,1) 55%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0) 95%);
          mask-image: radial-gradient(ellipse 70% 75% at 50% 48%,
    rgba(0,0,0,1) 55%, rgba(0,0,0,0.85) 70%, rgba(0,0,0,0) 95%); */
  animation: none;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-14px) rotate(-1.5deg); }
}

/* Tail glyph row */
.glyph-row {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex; align-items: center; gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.glyph-row .label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.glyph-row .stack-list {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-family: var(--f-display);
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink);
}
.glyph-row .stack-list span { display: inline-flex; align-items: center; gap: 8px; }
.glyph-row .stack-list span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-blue);
}
.glyph-row .stack-list span:nth-child(2)::before { background: var(--c-green); }
.glyph-row .stack-list span:nth-child(3)::before { background: var(--c-orange); }
.glyph-row .stack-list span:nth-child(4)::before { background: var(--c-red); }
.glyph-row .stack-list span:nth-child(5)::before { background: var(--c-yellow); }
.glyph-row .stack-list span:nth-child(6)::before { background: var(--c-teal); }
.glyph-row .stack-list span:nth-child(7)::before { background: var(--c-indigo); }

/* ============== SECTION SCAFFOLDING ============== */
section { padding: clamp(70px, 9vw, 10px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-head .right { color: var(--muted); font-size: 18px; max-width: 46ch; justify-self: end; }

/* Dark section */
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark h2, .section-dark h3, .section-dark .num { color: var(--cream); }
.section-dark .lead, .section-dark p { color: rgba(246, 242, 233, 0.72); }
.section-dark .eyebrow { color: var(--c-yellow); }
.section-dark .btn-ghost { color: var(--cream); border-color: rgba(246, 242, 233, 0.3); }
.section-dark .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ============== TRUST STRIP ============== */
.trust {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.trust-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; flex-wrap: wrap;
}
.trust .tag {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.trust .logos {
  display: flex; gap: clamp(20px, 3vw, 44px); align-items: center;
  flex-wrap: wrap;
}
.trust .logos span {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  color: var(--ink);
  opacity: 0.45;
  letter-spacing: -0.01em;
}

/* ============== SERVICES ============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.svc {
  background: var(--cream);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  min-height: 260px;
  position: relative;
  transition: background .2s;
}
.svc:hover { background: var(--paper); }

.svc.cta-tile {
  background: var(--ink);
  color: var(--cream);
}
.svc.cta-tile:hover { background: var(--navy); }
.svc.cta-tile h3 { color: var(--cream); }
.svc.cta-tile p { color: rgba(246,242,233,0.7); }
.svc.cta-tile .more { color: var(--c-yellow); }
.svc.cta-tile .top { color: rgba(246,242,233,0.55); }
.svc.cta-tile .swatch { background: var(--grad-rainbow) !important; }
.svc .top {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em;
}
.svc .swatch {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--c-blue);
}
.svc:nth-child(1) .swatch  { background: var(--c-red); }
.svc:nth-child(2) .swatch  { background: var(--c-orange); }
.svc:nth-child(3) .swatch  { background: var(--c-yellow); }
.svc:nth-child(4) .swatch  { background: var(--c-green); }
.svc:nth-child(5) .swatch  { background: var(--c-teal); }
.svc:nth-child(6) .swatch  { background: var(--c-blue); }
.svc:nth-child(7) .swatch  { background: var(--c-indigo); }
.svc:nth-child(8) .swatch  { background: var(--navy); }
.svc:nth-child(9) .swatch  { background: var(--c-red); }
.svc:nth-child(10) .swatch { background: var(--c-green); }
.svc:nth-child(11) .swatch { background: linear-gradient(135deg, var(--c-red), var(--c-blue)); }

.svc h3 { letter-spacing: -0.02em; }
.svc p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.55; }
.svc .more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.svc .more::after {
  content: "→"; transition: transform .2s;
}
.svc:hover .more::after { transform: translateX(4px); }

/* ============== APEX SPOTLIGHT ============== */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.spotlight .copy h2 { margin-bottom: 24px; }
.spotlight .copy ul {
  margin: 28px 0 0; padding: 0; list-style: none;
  display: grid; gap: 14px;
}
.spotlight .copy li {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(246, 242, 233, 0.12);
}
.spotlight .copy li:last-child { border-bottom: none; }
.spotlight .copy li .k {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--c-yellow); letter-spacing: 0.06em;
}
.spotlight .copy li .v { font-size: 17px; color: var(--cream); }

.apex-viz {
  position: relative;
  /* aspect-ratio: 4 / 5; */
  background: linear-gradient(180deg, #15226F 0%, #0A1545 100%);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.apex-viz::after {
  content: ""; position: absolute; inset: -2px;
  background: var(--grad-rainbow);
  filter: blur(60px); opacity: 0.18;
  z-index: 0;
}
.apex-card {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 18px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(246,242,233,0.85);
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 14px;
}
.apex-card .row {
  display: flex; justify-content: space-between; align-items: center;
}
.apex-card .pill {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(63, 190, 92, 0.18);
  color: #7BE899;
  letter-spacing: 0.08em;
}
.apex-card .pill.warn { background: rgba(255, 138, 42, 0.18); color: #FFC18A; }
.apex-card .pill.info { background: rgba(45, 126, 247, 0.18); color: #A3C7FF; }
.apex-card h4 {
  font-family: var(--f-display);
  font-size: 18px; color: var(--cream); margin: 0;
  letter-spacing: -0.01em;
}
.apex-card .bar {
  height: 6px; border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden; position: relative;
}
.apex-card .bar > i {
  display: block; height: 100%;
  background: var(--grad-rainbow);
  border-radius: 999px;
}
.apex-card .stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  font-size: 11px;
}
.apex-card .stats .s b {
  display: block; font-family: var(--f-display); font-size: 22px;
  color: var(--cream); font-weight: 600; letter-spacing: -0.01em;
}

/* ============== HOW WE WORK ============== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.phase {
  background: var(--cream);
  padding: 32px 24px 36px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.phase .n {
  font-family: var(--f-mono);
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.06em;
}
.phase h3 {
  font-size: clamp(22px, 1.9vw, 28px);
}
.phase p { font-size: 14px; color: var(--muted); margin: 0; }
.phase .strip {
  margin-top: 4px;
  height: 4px; border-radius: 999px;
  background: var(--c-red);
}
.phase:nth-child(2) .strip { background: var(--c-orange); }
.phase:nth-child(3) .strip { background: var(--c-green); }
.phase:nth-child(4) .strip { background: var(--c-blue); }

/* ============== INDUSTRIES + FACTS ============== */
.split-stats {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.industries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.industries .ind {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
}
.industries .ind .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--paper);
  display: grid; place-items: center;
  color: var(--navy);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.facts {
  display: grid; gap: 18px;
}
.fact {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  background: var(--paper);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  align-items: center;
}
.fact .big {
  font-family: var(--f-display);
  font-size: 56px; font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.fact .big small { font-size: 22px; vertical-align: super; }
.fact .lbl { font-size: 14px; color: var(--muted); max-width: 20ch; }

/* ============== TRAINING ============== */
.training {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(36px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.training .courses { display: grid; gap: 12px; }
.training .course {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px;
  align-items: center;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px;
}
.training .course .tag {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--ink); color: var(--cream);
  letter-spacing: 0.04em;
}
.training .course .ttl { font-family: var(--f-display); font-size: 16px; }
.training .course .meta { color: var(--muted); font-size: 12px; }

/* ============== TESTIMONIAL ============== */
.quote-wrap {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.quote-wrap blockquote {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 36px;
  text-wrap: balance;
}
.quote-wrap blockquote em {
  font-style: normal;
  background: var(--grad-rainbow);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.quote-meta {
  display: inline-flex; align-items: center; gap: 14px;
  color: rgba(246, 242, 233, 0.8);
  font-size: 14px;
}
.quote-meta .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-tail);
  flex-shrink: 0;
  overflow: hidden;
}
.quote-meta .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============== CTA ============== */
.cta {
  background: var(--cream);
}
.cta-inner {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(44px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(36px, 4vw, 60px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px;
  background: var(--grad-rainbow);
  filter: blur(120px); opacity: 0.35;
  border-radius: 50%;
}
.cta-inner h2 { color: var(--cream); position: relative; z-index: 1; }
.cta-form {
  position: relative; z-index: 1;
  display: grid; gap: 12px;
}
.cta-form input {
  font-family: var(--f-body); font-size: 15px;
  padding: 16px 18px; border-radius: 12px;
  border: 1px solid rgba(246,242,233,0.18);
  background: rgba(246,242,233,0.06);
  color: var(--cream);
}
.cta-form input::placeholder { color: rgba(246, 242, 233, 0.5); }
.cta-form input:focus {
  outline: none;
  border-color: var(--c-yellow);
  background: rgba(246,242,233,0.1);
}
.cta-form button {
  background: var(--c-orange); color: #fff;
  border: none; border-radius: 12px;
  padding: 16px 18px;
  font-family: var(--f-body); font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.cta-form button:hover { background: #FF9D4D; }

/* ============== FOOTER ============== */
.footer {
  padding: 60px 0 40px;
  background: var(--ink);
  color: rgba(246,242,233,0.7);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(246,242,233,0.1);
}
.footer h4 {
  font-family: var(--f-body);
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-yellow); margin: 0 0 16px;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a:hover { color: var(--cream); }
.footer-brand { color: var(--cream); }
.footer-brand p { max-width: 32ch; opacity: 0.7; margin: 10px 0 0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 13px;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .micro { display: flex; gap: 6px; align-items: center; }
.footer-bottom .micro .bar {
  width: 60px; height: 3px; border-radius: 999px;
  background: var(--grad-rainbow);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1000px) {
  .hero-grid, .spotlight, .split-stats, .training, .cta-inner {
    grid-template-columns: 1fr;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .section-head { grid-template-columns: 1fr; }
  .section-head .right { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 440px) {
  .brand .wordmark-stack { display: none; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .industries { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; }
}
