/* ============================================================
   Roberts Analytics v2 — Premium Advisory Stylesheet
   Light-first. Boutique advisory aesthetic.
   Fonts loaded via Google Fonts in HTML.
   ============================================================ */

:root {
  --ink:       #0E1B2A;
  --navy:      #142B45;
  --navy-deep: #0B1A2D;
  --blue:      #2563EB;
  --blue-dim:  #1D4ED8;
  --blue-lt:   #EBF2FF;
  --sand:      #C8A96E;
  --sand-lt:   #F3EAD9;
  --stone:     #F5F2EC;
  --mist:      #F7F9FC;
  --line:      #E2EAF4;
  --line-w:    #E6DDD0;
  --muted:     #5E7285;
  --text:      #2C3E50;

  --fd: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --fb: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --nav-h: 68px;
  --w:     1120px;
  --py:    96px;
  --px:    28px;
  --r-s:   6px;
  --r-m:   12px;
  --r-l:   18px;
  --r-x:   28px;

  --sh-xs: 0 1px 3px rgba(14,27,42,.05);
  --sh-s:  0 2px 8px rgba(14,27,42,.06), 0 1px 3px rgba(14,27,42,.04);
  --sh-m:  0 4px 20px rgba(14,27,42,.08), 0 2px 6px rgba(14,27,42,.04);
  --sh-l:  0 8px 40px rgba(14,27,42,.10), 0 4px 12px rgba(14,27,42,.06);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { font: inherit; border: none; cursor: pointer; background: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--fd);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

/* ── Layout ─────────────────────────────────────────────────  */
.container { max-width: var(--w); margin-inline: auto; padding-inline: var(--px); }

.section        { padding-block: var(--py); }
.section--mist  { background: var(--mist); }
.section--stone { background: var(--stone); }
.section--navy  { background: var(--navy); }
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: #fff; }

/* ── Eyebrow / pills ────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-lt);
  border-radius: 100px;
  padding: 5px 14px;
}
.pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.pill--light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
}
.pill--light::before { background: var(--sand); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--sand);
  opacity: 0.7;
}

/* ── Section header ─────────────────────────────────────────── */
.sh           { margin-bottom: 52px; }
.sh--c        { text-align: center; max-width: 780px; margin-inline: auto; margin-bottom: 56px; }
.sh__tag      { margin-bottom: 14px; }
.sh__title    { font-size: clamp(1.75rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.sh__desc     { font-size: 1.0625rem; color: var(--muted); line-height: 1.75; max-width: 680px; }
.sh--c .sh__desc { margin-inline: auto; }
.section--navy .sh__title { color: #fff; }
.section--navy .sh__desc  { color: rgba(255,255,255,0.6); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-m);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--fb);
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
}
.btn--navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--navy:hover { background: var(--navy-deep); transform: translateY(-1px); box-shadow: var(--sh-m); }

.btn--blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 2px 10px rgba(37,99,235,.2);
}
.btn--blue:hover { background: var(--blue-dim); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(37,99,235,.3); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn--white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn--white:hover { background: var(--stone); transform: translateY(-1px); }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,.07); }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: background .32s, border-color .32s, box-shadow .32s, backdrop-filter .32s;
}
.nav.over-dark {
  background: rgba(11,26,45,.45);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav.scrolled {
  background: #fff !important;
  border-color: var(--line) !important;
  box-shadow: 0 2px 16px rgba(14,27,42,.06) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: var(--px);
  height: 100%;
}

.nav__logo { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.nav__logo-name {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
  transition: color .32s;
}
.nav__logo-tag {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .32s;
}
.nav.over-dark  .nav__logo-name { color: #fff; }
.nav.over-dark  .nav__logo-tag  { color: rgba(255,255,255,.45); }
.nav.scrolled   .nav__logo-name { color: var(--ink)  !important; }
.nav.scrolled   .nav__logo-tag  { color: var(--muted) !important; }

.nav__links { display: flex; align-items: center; gap: 2px; }

.nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: var(--r-s);
  transition: color .2s, background .2s;
}
.nav__link:hover           { color: var(--ink); background: var(--mist); }
.nav__link.active          { color: var(--blue); background: var(--blue-lt); }
.nav.over-dark .nav__link              { color: rgba(255,255,255,.7); }
.nav.over-dark .nav__link:hover        { color: #fff; background: rgba(255,255,255,.1); }
/* Active link on dark hero: sand accent — clearly readable, on-brand */
.nav.over-dark .nav__link.active       { color: var(--sand) !important; background: transparent; }
.nav.over-dark .nav__link.active:hover { color: #fff !important; background: rgba(255,255,255,.1); }
.nav.scrolled  .nav__link       { color: var(--muted) !important; }
.nav.scrolled  .nav__link:hover { color: var(--ink)   !important; background: var(--mist) !important; }
.nav.scrolled  .nav__link.active{ color: var(--blue)  !important; background: var(--blue-lt) !important; }

.nav__cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: var(--r-s) !important;
  margin-left: 6px;
  font-weight: 600;
}
.nav__cta:hover { background: var(--navy-deep) !important; }
.nav.over-dark .nav__cta {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
}
.nav.scrolled .nav__cta { background: var(--navy) !important; border: none !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-s);
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}
.nav.over-dark .nav__burger span { background: #fff; }
.nav.scrolled  .nav__burger span { background: var(--ink) !important; }

/* ── Logo image support ─────────────────────────────────────── */
.nav__logo img { display: block; height: 40px; width: auto; }
.nav__logo {
  transition: background .32s, padding .32s, border-radius .32s;
}
/* On dark hero: wrap logo in a solid white pill so it stays visible */
.nav.over-dark .nav__logo {
  background: #fff;
  border-radius: var(--r-s);
  padding: 6px 14px;
}
/* When nav turns white on scroll: remove the pill */
.nav.scrolled .nav__logo { background: none; padding: 0; border-radius: 0; }

.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px var(--px) 22px;
  gap: 2px;
  z-index: 99;
  box-shadow: var(--sh-l);
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link { padding: 12px 14px; }
.nav__mobile .nav__cta  { margin-top: 8px; margin-left: 0 !important; text-align: center; display: flex; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding-top: calc(var(--nav-h) + 88px);
  padding-bottom: 88px;
  position: relative;
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(37,99,235,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.hero__title {
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--sand); }
.hero__lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,.68);
  line-height: 1.73;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual img, .hero__visual svg {
  width: 100%;
  max-width: 520px;
}

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 48px;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}
.page-hero__bread {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.page-hero__bread a:hover { color: var(--blue); }
.page-hero__title { font-size: clamp(1.85rem, 3.5vw, 2.9rem); margin-bottom: 12px; }
.page-hero__desc  { font-size: 1rem; color: var(--muted); max-width: 760px; line-height: 1.75; }

/* ── Stats row ──────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
}
.stat {
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.section--navy .stats-row { border-color: rgba(255,255,255,.1); }
.section--navy .stat       { border-color: rgba(255,255,255,.1); }
.stat__v {
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.section--navy .stat__v { color: #fff; }
.stat__l {
  font-size: .8125rem;
  color: var(--muted);
}
.section--navy .stat__l { color: rgba(255,255,255,.5); }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 28px;
  box-shadow: var(--sh-xs);
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.card:hover { border-color: rgba(37,99,235,.2); box-shadow: var(--sh-m); transform: translateY(-3px); }

.card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-m);
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
}
.card__title {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}
.card__desc { font-size: .9rem; color: var(--muted); line-height: 1.68; }

/* ── Grid helpers ────────────────────────────────────────────── */
.g2  { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.g3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.g4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
/* Flex grids — orphan cards are centred, not left-stranded */
.ga3 { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.ga3 > * { flex: 1 1 280px; max-width: calc(33.333% - 16px); }
.ga4 { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.ga4 > * { flex: 1 1 220px; max-width: calc(25% - 15px); }
/* Stop flex/grid children from blowing past their container */
.g2 > *, .g3 > *, .g4 > *,
.ga3 > *, .ga4 > *,
.split > *, .split-60 > *, .split-40 > *,
.hero__inner > *, .footer__inner > *,
.contact-layout > * { min-width: 0; }

/* ── Tags ────────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.tag--blue  { background: var(--blue-lt); color: var(--blue); }
.tag--sand  { background: var(--sand-lt); color: #8a6b2a; }
.tag--slate { background: var(--mist); color: var(--muted); border: 1px solid var(--line); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ── Split layout ────────────────────────────────────────────── */
.split    { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.split-60 { grid-template-columns: 1.15fr 1fr; }
.split-40 { grid-template-columns: 1fr 1.4fr; }

/* ── Differentiator list ─────────────────────────────────────── */
.diff {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.diff:last-child { border-bottom: none; padding-bottom: 0; }
.diff__mark {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--sand);
  margin-top: 2px;
}
.diff h4 {
  font-family: var(--fb);
  font-size: .9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.diff p { font-size: .875rem; color: rgba(255,255,255,.58); line-height: 1.6; }

/* ── Methodology ─────────────────────────────────────────────── */
.method {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 0;
  position: relative;
}
.method::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: var(--line-w);
  z-index: 0;
}
.method-step {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  text-align: center;
}
.method-step__n {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line-w);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--sh-s);
}
.method-step__title { font-family: var(--fb); font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.method-step__desc  { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ── Profile cards ───────────────────────────────────────────── */
.profile-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-x);
  padding: 40px;
  box-shadow: var(--sh-s);
  transition: border-color .22s, transform .22s;
}
.profile-card:hover { border-color: rgba(37,99,235,.2); transform: translateY(-2px); }

.avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.avatar--rn { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.avatar--em { background: linear-gradient(135deg, #1a4d6b, #0ea5e9); }

.profile-card__name { font-size: 1.5rem; margin-bottom: 4px; }
.profile-card__role {
  font-family: var(--fb);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.profile-card__bio {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.profile-card__rule { height: 1px; background: var(--line); margin-bottom: 18px; }
.cred-h {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.cred {
  font-size: .875rem;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid rgba(226,234,244,.7);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.cred::before {
  content: '';
  flex-shrink: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 9px;
}
.cred:last-child { border-bottom: none; }

/* ── Engagement cards ────────────────────────────────────────── */
.engage-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.engage-card:hover { border-color: rgba(37,99,235,.2); box-shadow: var(--sh-m); transform: translateY(-3px); }
.engage-card__top {
  background: linear-gradient(120deg, var(--navy) 0%, #1e3a5f 100%);
  padding: 28px 28px 22px;
}
.engage-card__sector {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}
.engage-card__title { font-size: 1.25rem; color: #fff; line-height: 1.22; margin-bottom: 6px; }
.engage-card__loc   { font-size: .8125rem; color: rgba(255,255,255,.45); }
.engage-card__body  { padding: 24px 28px 28px; }
.engage-card__desc  { font-size: .9375rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

/* ── Mandate items ───────────────────────────────────────────── */
.mandate {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mandate:last-child { border-bottom: none; }
.mandate__n {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--blue);
  background: var(--blue-lt);
  border-radius: 4px;
  padding: 3px 7px;
  margin-top: 2px;
  text-transform: uppercase;
}
.mandate h5 { font-family: var(--fb); font-size: .9375rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.mandate p  { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── Service cards (services page) ──────────────────────────── */
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: border-color .22s, transform .22s;
}
.svc-card:hover { border-color: rgba(37,99,235,.25); transform: translateY(-2px); }

.svc-card__head {
  padding: 26px 26px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--mist) 0%, #fff 60%);
}
.svc-card__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.svc-card__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-m);
  background: var(--blue-lt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--blue);
}
.svc-card__title { font-family: var(--fb); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.svc-card__intro { font-size: .9rem; color: var(--muted); line-height: 1.68; }

.svc-card__body { padding: 20px 26px 26px; }
.svc-card__sub  {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  margin-top: 16px;
}
.svc-card__sub:first-child { margin-top: 0; }

.svc-list { display: flex; flex-direction: column; gap: 4px; }
.svc-list li {
  font-size: .875rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}
.svc-list li::before {
  content: '';
  flex-shrink: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 7px;
}

/* ── Value cards ─────────────────────────────────────────────── */
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 24px;
  box-shadow: var(--sh-xs);
  transition: border-color .22s, transform .22s;
}
.value-card:hover { border-color: rgba(37,99,235,.2); transform: translateY(-2px); }
.value-card__n     { font-family: var(--fd); font-size: 2rem; color: var(--blue-lt); margin-bottom: 6px; line-height: 1; }
.value-card__title { font-family: var(--fb); font-size: .9375rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.value-card__desc  { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── CTA band ─────────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(37,99,235,.18) 0%, transparent 68%);
  pointer-events: none;
}
.cta-band__title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: #fff; margin-bottom: 14px; position: relative; }
.cta-band__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.62);
  max-width: 660px;
  margin-inline: auto;
  line-height: 1.73;
  margin-bottom: 36px;
  position: relative;
}
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-item   { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-item__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-m);
  background: var(--mist);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item__lbl { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-item__val { font-size: .9375rem; color: var(--ink); }
.contact-item__val a { color: var(--blue); }
.contact-item__val a:hover { text-decoration: underline; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-x); padding: 40px; box-shadow: var(--sh-m); }
.form-notice { background: var(--blue-lt); border-radius: var(--r-m); padding: 14px 16px; font-size: .875rem; color: var(--text); margin-bottom: 26px; line-height: 1.55; }
.form-group { margin-bottom: 18px; }
.form-name-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { display: block; font-size: .8375rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-control {
  width: 100%;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 11px 14px;
  font-size: .9375rem;
  color: var(--ink);
  font-family: var(--fb);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-control:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,.09); }
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--ink); padding-block: 64px 36px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__name { font-family: var(--fd); font-size: 1.1rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.footer__tag  { font-size: .875rem; color: rgba(255,255,255,.38); font-style: italic; margin-bottom: 12px; }
.footer__sectors { font-size: .8125rem; color: rgba(255,255,255,.28); line-height: 1.85; }
.footer__col-h { font-family: var(--fb); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.footer__link { display: block; font-size: .875rem; color: rgba(255,255,255,.5); padding: 3.5px 0; transition: color .2s; }
.footer__link:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__copy, .footer__reg { font-size: .8125rem; color: rgba(255,255,255,.25); }

/* ── Inner-page section image ────────────────────────────────── */
.section-img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--r-l);
  box-shadow: var(--sh-m);
}
/* Image section wrapper — breathing room above, flush below */
.page-img {
  padding-top: 36px;
  padding-bottom: 0;
}
/* ── Scroll animation ────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — full mobile rebuild
   ═══════════════════════════════════════════════════════════════ */

/* ── 1024px: tablet ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .split, .split-60, .split-40 { grid-template-columns: 1fr; gap: 40px; }
  .g3 { grid-template-columns: repeat(2,1fr); }
  .g4 { grid-template-columns: repeat(2,1fr); }
  .method { grid-template-columns: repeat(3,1fr); }
  .method::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer__inner  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ga3 > * { max-width: calc(50% - 12px); flex-basis: calc(50% - 12px); }
  .ga4 > * { max-width: calc(50% - 10px); flex-basis: calc(50% - 10px); }
}

/* ── 768px: mobile ────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --py: 64px; --nav-h: 60px; --px: 20px; }

  /* Navigation */
  .nav__links  { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 52px; }
  .hero__title  { font-size: 2.1rem; letter-spacing: -0.02em; }
  .hero__lead   { font-size: .9375rem; max-width: 100%; margin-bottom: 28px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Inner-page hero */
  .page-hero { padding-top: calc(var(--nav-h) + 28px); padding-bottom: 36px; }
  .page-hero__title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .page-hero__desc  { max-width: 100%; font-size: .9375rem; }

  /* Section headings */
  .sh__title { font-size: clamp(1.4rem, 4.5vw, 1.9rem); }
  .sh--c  { max-width: 100%; }
  .sh     { margin-bottom: 36px; }
  .sh--c  { margin-bottom: 40px; }
  .sh__desc { max-width: 100%; }

  /* Grids */
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .method        { grid-template-columns: 1fr; }
  .ga3 > *, .ga4 > * { max-width: 100%; flex-basis: 100%; }

  /* Cards */
  .card           { padding: 22px; }
  .profile-card   { padding: 22px !important; }
  .form-card      { padding: 22px; }
  .value-card     { padding: 20px; }
  .svc-card__head { padding: 20px 20px 16px; }
  .svc-card__body { padding: 16px 20px 20px; }

  /* Stats — !important overrides any inline style */
  .stats-row { grid-template-columns: repeat(2, 1fr) !important; }

  /* CTA band */
  .cta-band { padding-block: 56px; }
  .cta-band__title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .cta-band__actions { flex-direction: column; align-items: center; gap: 10px; }
  .cta-band__actions .btn { min-width: 220px; justify-content: center; }

  /* Footer */
  .footer { padding-block: 48px 28px; }
  .footer__inner  { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  /* Images */
  .section-img { height: 210px; }
  .page-img    { padding-top: 24px; }
}

/* ── 480px: standard phones ───────────────────────────────────── */
@media (max-width: 480px) {
  :root { --py: 52px; --px: 16px; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-h) + 28px); padding-bottom: 44px; }
  .hero__title { font-size: 1.875rem; }

  /* Stats: single column */
  .stats-row { grid-template-columns: 1fr !important; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--line); padding: 20px 16px; }
  .stat:last-child { border-bottom: none; }
  .section--navy .stat { border-bottom-color: rgba(255,255,255,.1); }

  /* Cards */
  .card          { padding: 18px; }
  .profile-card  { padding: 18px !important; }
  .engage-card__top  { padding: 18px 18px 14px; }
  .engage-card__body { padding: 16px 18px 18px; }

  /* Form: name row single column */
  .form-name-grid { grid-template-columns: 1fr !important; }

  /* Methodology */
  .method { grid-template-columns: repeat(2, 1fr); }
  .method::before { display: none; }

  /* CTA */
  .cta-band__actions .btn { width: 100%; max-width: 100%; }
}

/* ── 390px: small phones ──────────────────────────────────────── */
@media (max-width: 390px) {
  :root { --px: 14px; }
  .hero__title { font-size: 1.6rem; }
  .nav__logo img { height: 34px; }
  .nav.over-dark .nav__logo { padding: 4px 10px; }
  .btn { padding: 11px 20px; font-size: .875rem; }
}
