/* Invictus Energy Solutions — Fortune 500 Redesign
   Design system: original brand palette — navy #003e7e + orange #f99d32 (from 2015 site), Inter typeface */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Single brand blue — unified to #0f2240 (the mission-band navy) everywhere */
  --navy-950: #0f2240;
  --navy-900: #0f2240;
  --navy-800: #0f2240;
  --navy-700: #0f2240;
  --navy-600: #0f2240;
  --navy-400: #0f2240;
  --navy-200: #8ab4d8;
  --navy-100: #c5d9ec;
  --navy-50:  #eaf1f8;

  /* Brand orange (original site accent: #f99d32 / #faa746) — var names kept for compatibility */
  --gold-600: #c97712;
  --gold-500: #e58b1f;
  --gold-400: #f99d32;
  --gold-300: #faa746;
  --gold-100: #fdeedd;

  --slate-600: #4b5563;
  --slate-400: #9ca3af;
  --slate-200: #e5e7eb;
  --slate-100: #f3f4f6;

  /* Invictus logo GREEN — third brand accent (#80a050), used sparingly as markers */
  --green-700: #4f6d2e;
  --green-600: #688a3f;
  --green-500: #80a050;
  --green-400: #9fc06a;
  --green-100: #eef3e3;

  /* Anantam light blue (from the Anantam lotus logo, #50d0e0) — accent on Capital & Advisory pages */
  --teal-600: #2596a5;   /* darker — for markers/labels on white */
  --teal-500: #50d0e0;   /* the logo light blue */
  --teal-400: #6fd2dc;   /* lighter — for accents on the dark navy */
  --teal-50:  #e7f6f8;

  --white: #ffffff;
  --text-primary: #0f2240;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --shadow-card: 0 2px 16px rgba(15,34,64,0.08);
  --shadow-hero: 0 8px 48px rgba(15,34,64,0.18);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --section-pad: 48px 0;
  --container: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,34,64,0.08);
  box-shadow: 0 1px 12px rgba(15,34,64,0.06);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 30px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-600);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-600); }
.nav-cta {
  padding: 9px 22px;
  background: var(--gold-400);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--navy-950) !important;
  transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--white) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-600);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── DROPDOWN MEGA-MENU (multi-page nav) ── */
.nav-links { gap: 26px; }
.nav-item { position: relative; }
.nav-item > a,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-600);
  background: none;
  border: none;
  font-family: var(--font-sans);
  cursor: pointer;
  padding: 26px 0;            /* tall hit area so hover bridges to the panel */
  transition: color 0.2s;
}
.nav-item > a:hover,
.nav-toggle:hover { color: var(--gold-600); }
.nav-caret { transition: transform 0.25s; }
.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 300px;
  background: var(--white);
  border: 1px solid rgba(15,34,64,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 56px rgba(15,34,64,0.18);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 120;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}
/* Invisible hover bridge: spans the gap between the nav button and the
   dropdown so moving the cursor down keeps the menu open (no "sticky" close). */
.nav-dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.nav-dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-primary);
}
.nav-dropdown a:hover { background: var(--slate-100); color: var(--navy-600); }
.nav-dd-title {
  font-size: 13.5px;
  font-weight: 600;
  display: block;
}
.nav-dd-desc {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.nav-dd-all {
  margin-top: 4px;
  border-top: 1px solid var(--slate-200);
}
.nav-dd-all a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-600);
}

/* Mobile accordion submenu inside the slide-down menu */
.m-sub { list-style: none; padding: 8px 0 4px 14px; display: flex; flex-direction: column; gap: 12px; }
.m-sub a { font-size: 14px !important; color: rgba(255,255,255,0.6) !important; font-weight: 400 !important; }
.m-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* ── HERO ── */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  background: var(--navy-950);
  overflow: hidden;
  padding: 120px 0 48px;   /* match interior pages: ~1/2in below header, ~1/2in below last element */
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(15,34,64,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(15,34,64,0.8) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.hero-swirl {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 36vw, 560px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--green-400);
}
.hero-h1 {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--gold-300);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold-400);
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold-400);
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
}
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 620px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}
.hero-stat {
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.hero-stat:not(:first-child):not(:last-child) { padding: 0 32px; }
.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* Full-bleed photo hero — dark navy overlay (heavier on the left for text legibility) */
.hero--photo .hero-bg {
  background-image:
    linear-gradient(108deg, rgba(15,34,64,0.92) 0%, rgba(15,34,64,0.74) 48%, rgba(15,34,64,0.42) 100%),
    url('assets/photos/global-illuminated-map.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.hero--photo .hero-swirl { opacity: 0.08; }
.hero--photo .hero-grid { opacity: 0.5; }

/* ===== HERO VARIANTS (review compare) ===== */
/* VIVID — map glows, warm focal glow at the headline, slow cinematic zoom */
.hero.hv-vivid .hero-bg {
  background-image:
    radial-gradient(ellipse 55% 65% at 20% 42%, rgba(249,157,50,0.16) 0%, transparent 60%),
    linear-gradient(100deg, rgba(15,34,64,0.90) 0%, rgba(15,34,64,0.55) 40%, rgba(15,34,64,0.12) 75%, rgba(15,34,64,0.05) 100%),
    url('assets/photos/global-illuminated-map.png');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  animation: heroZoom 26s ease-in-out infinite alternate;
}
.hero.hv-vivid .hero-grid { opacity: 0.25; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.09); } }

/* SPLIT — solid navy text panel left, vivid map right */
.hero.hv-split .hero-bg {
  background-image:
    linear-gradient(90deg, rgba(15,34,64,0.92) 0%, rgba(15,34,64,0.64) 24%, rgba(15,34,64,0.44) 46%, rgba(15,34,64,0.36) 72%, rgba(15,34,64,0.36) 100%),
    url('assets/photos/hero-global-v3.png');
  background-size: cover, cover;
  background-position: center, left center;
}
.hero.hv-split .hero-grid { opacity: 0.18; }

/* SPOTLIGHT — darker, dramatic, big orange focal glow */
.hero.hv-spotlight .hero-bg {
  background-image:
    radial-gradient(circle at 27% 45%, rgba(249,157,50,0.22) 0%, transparent 45%),
    linear-gradient(115deg, rgba(15,34,64,0.96) 0%, rgba(15,34,64,0.86) 50%, rgba(15,34,64,0.70) 100%),
    url('assets/photos/global-illuminated-map.png');
  background-size: cover, cover, cover;
  background-position: center, center, center;
}

/* Hero variant switcher reuses .theme-switch pill styling */

/* ── CREDIBILITY STRIP (under hero) ── */
.cred-strip {
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 30px 0;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cred-item {
  padding: 4px 28px;
  border-left: 1px solid var(--slate-200);
}
.cred-item:first-child { border-left: none; }
.cred-k {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cred-k::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--gold-400);
}
.cred-item:nth-child(2n) .cred-k::before { background: var(--green-500); }
.cred-v {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-600);
  line-height: 1.35;
}

/* ── SECTION COMMON ── */
.section { padding: var(--section-pad); }
.section-dark {
  background: var(--navy-900);
  color: var(--white);
}
.section-navy {
  background: var(--navy-800);
  color: var(--white);
}
.section-light {
  background: var(--slate-100);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-500);
}
.section-title {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
}
.section-body.light { color: rgba(255,255,255,0.65); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  margin: 0;
}
.about-figure img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}
.about-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 28px 28px;
  background: linear-gradient(transparent, rgba(15,34,64,0.55) 40%, rgba(15,34,64,0.94));
}
.about-fig-stat {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-400);
}
.about-fig-label {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-top: 12px;
  max-width: 340px;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.value-icon::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--green-600);
  border-radius: 50%;
}
.value-item p { font-size: 15px; color: var(--text-secondary); }
.value-item strong { color: var(--text-primary); }

/* ── CAPABILITIES / PM ── */
.pm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.pm-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.pm-card:hover { border-color: rgba(249,157,50,0.35); }
.pm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.pm-card:hover::before { transform: scaleX(1); }
.pm-card:hover { background: rgba(255,255,255,0.07); }
.pm-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.pm-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.pm-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* Lifecycle sub-heading + intro (themable) */
.cap-lc-h { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cap-lc-p { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 560px; margin-bottom: 0; }

/* ── LIFECYCLE ── */
.lifecycle {
  position: relative;
  margin-top: 72px;
}
.lifecycle-track {
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--navy-400));
}
.lifecycle-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.lc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.lc-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.lc-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.lc-desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  padding: 0 4px;
}

/* ── SECTORS ── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.sector-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.sector-card:hover {
  box-shadow: 0 16px 40px rgba(15,34,64,0.12);
  transform: translateY(-3px);
}
.sector-header {
  padding: 32px 28px 24px;
  background: var(--navy-800);
  position: relative;
  flex: 1;
}
.sector-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(249,157,50,0.15);
  border: 1px solid rgba(249,157,50,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.sector-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sector-header p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.sector-body {
  padding: 18px 28px;
  background: var(--white);
}
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--slate-100);
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
}
.sector-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.sector-link:hover { gap: 10px; }

/* ── LOCATIONS ── */
.locations-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.loc-group {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.loc-group:last-child { border-right: none; }
.loc-region {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.loc-cities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.loc-cities li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.loc-cities li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
  flex-shrink: 0;
}
.loc-hq {
  font-weight: 600;
  color: var(--white) !important;
}

/* Immersive locations hero — photo background, offices overlaid, tighter spacing */
.locations-hero { padding: 120px 0 48px; }
.locations-hero .locations-bar { margin-top: 40px; }
.locations-bar .loc-intro { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.78); line-height: 1.55; margin-bottom: 12px; }

/* World map panel */
.locations-map {
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
}
.locations-map img {
  width: 100%;
  filter: none;
  opacity: 1;
}
.locations-map figcaption {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-400);
  text-align: center;
}

/* Breadcrumbs (interior pages) */
.breadcrumbs {
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
  padding: 14px 0;
}
.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.breadcrumbs a {
  color: var(--navy-600);
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--gold-600); }
.breadcrumbs .bc-sep { color: var(--slate-400); }
.breadcrumbs [aria-current="page"] { color: var(--text-secondary); }

/* ── MISSION BAND ── */
.mission-band {
  padding: 48px 0;
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.mission-band .container { position: relative; z-index: 1; }
.mission-text {
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  max-width: 860px;
  position: relative;
  z-index: 1;
  padding-left: 28px;
  border-left: 3px solid var(--gold-400);
}
.mission-attr {
  margin-top: 24px;
  margin-left: 31px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ── FEATURED PROGRAMME (spotlight) ── */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.spotlight-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}
.spotlight-figure img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
}
.spotlight-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.spotlight-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-secondary);
}
.spotlight-checks strong { color: var(--text-primary); font-weight: 600; }
.spotlight-checks svg { flex-shrink: 0; margin-top: 3px; }

/* ── CSR ── */
.csr-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.csr-initiative {
  padding: 20px 0;
  border-bottom: 1px solid var(--slate-200);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.csr-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
  margin-top: 8px;
}
.csr-photo {
  margin: 36px 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.csr-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
}
.csr-photo figcaption {
  background: var(--navy-800);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 14px 20px;
}
.csr-initiative h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.csr-initiative p { font-size: 14px; color: var(--text-secondary); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  outline: none;
}
.field input::placeholder, .field textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-400);
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}
/* Visible keyboard focus for all interactive elements */
a:focus-visible, button:focus-visible, .nav-hamburger:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
  border-radius: 2px;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23faa746' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 38px;
  cursor: pointer;
}
.field select option { background: var(--navy-800); }
.field textarea { resize: vertical; min-height: 100px; }

.contact-details { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-400); margin-bottom: 4px;
}
.contact-item-val { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .wordmark {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── SECTOR PAGE (interior) ── */
.sector-hero {
  background: var(--navy-950);
  padding: 120px 0 48px;   /* ~1/2in (48px) below the fixed 72px header, ~1/2in after last text */
  position: relative;
  overflow: hidden;
}
/* Consistent interior-page rhythm (matching the Anantam page) */
.sector-hero + .section { padding-top: 48px; }
.breadcrumbs + .section { padding-top: 24px; }
/* Footer brand mark + justified body copy */
.footer-brand { display: flex; align-items: flex-start; gap: 18px; }
.footer-mark { width: 60px; height: auto; opacity: 0.6; flex-shrink: 0; }
.content-prose p,
.section-body { text-align: justify; }
.sector-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(15,34,64,0.5) 0%, transparent 70%);
}
.sector-hero .container { position: relative; z-index: 1; }
.sector-hero .section-eyebrow { color: var(--gold-400); }
.sector-hero h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.sector-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.7;
}
.content-prose {
  max-width: 780px;
}
/* Interior (Capabilities/Sectors) pages: tightened vertical rhythm —
   16px between sections; first heading flush (its top margin is zeroed below). */
.content-prose h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 16px 0 16px;
  color: var(--text-primary);
}
.content-prose > :first-child { margin-top: 0; }
.content-prose p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.content-prose ul {
  margin: 16px 0 24px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-prose ul li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}
.content-prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-600);
}
.highlight-block {
  background: var(--navy-800);
  border-left: 3px solid var(--gold-400);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.highlight-block p {
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ── ANANTAM / CAPITAL & ADVISORY (teal sub-brand) ── */
.anantam-hero::after {
  background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(15,34,64,0.55) 0%, transparent 70%) !important;
}
.anantam-hero .section-eyebrow { color: var(--teal-400) !important; }
.anantam-logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 8px 0 28px;
}
.anantam-logo-lockup img {
  height: 150px;
  width: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
}
.relationship-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  background: rgba(46,154,166,0.12);
  border: 1px solid rgba(78,195,207,0.4);
  color: var(--teal-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.draft-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--gold-400);
  border-top: 1px solid var(--gold-600);
  color: var(--navy-950);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(15,34,64,0.18);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--slate-200);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
}
.fact {
  background: var(--white);
  padding: 22px 24px;
}
.fact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 6px;
}
.fact-val { font-size: 15px; font-weight: 600; color: var(--text-primary); line-height: 1.45; }
.fact-val small { display: block; font-size: 12px; font-weight: 400; color: var(--text-muted); margin-top: 3px; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0 8px;
}
.service-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  background: var(--white);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 14px 36px rgba(15,34,64,0.10);
  border-color: rgba(78,195,207,0.5);
  transform: translateY(-2px);
}
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }
.service-card .svc-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--teal-500); margin-bottom: 12px;
}
.anantam-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--teal-600);
  color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid var(--teal-600);
  transition: background 0.2s, transform 0.15s;
}
.anantam-cta:hover { background: var(--teal-500); border-color: var(--teal-500); transform: translateY(-1px); }

/* Capital & Advisory page: Anantam light blue is the primary accent/markers */
.page-anantam .section-eyebrow::before { background: var(--green-500); }
/* Tighter vertical rhythm on the Capital & Advisory page */
.anantam-hero { padding-bottom: 48px; }
.page-anantam .section { padding-top: 48px; }
/* Block style, centered column — left-aligned text in a centered column (like the other pages) */
.anantam-hero .container { max-width: 880px; text-align: left; }
.anantam-hero p { max-width: 100%; }
.page-anantam .section .container { max-width: 880px; }
.page-anantam .content-prose { max-width: 100%; text-align: left; }
.page-anantam .content-prose h2 { margin-top: 0; }
.page-anantam .highlight-block { border-left: 3px solid var(--teal-400); text-align: left; }
.page-anantam .content-prose ul li::before { background: var(--teal-600); }
.page-anantam .highlight-block { border-left-color: var(--teal-400); }

/* Secondary brand accents — the four service cards carry a top bar that cycles
   through the group's three accent colours (light blue · orange · green). */
.page-anantam .service-card { border-top-width: 3px; }
.page-anantam .service-card:nth-child(1) { border-top-color: var(--teal-500); }
.page-anantam .service-card:nth-child(2) { border-top-color: var(--gold-400); }
.page-anantam .service-card:nth-child(3) { border-top-color: var(--green-500); }
.page-anantam .service-card:nth-child(4) { border-top-color: var(--teal-500); }
.page-anantam .service-card:nth-child(2) .svc-num { color: var(--gold-500); }
.page-anantam .service-card:nth-child(3) .svc-num { color: var(--green-600); }

/* ══════════════════════════════════════════════════════════════
   LIGHT THEME VARIANT (body.theme-light) — for A/B comparison.
   Flips the dominant dark sections to airy white with navy/gold accents.
   ══════════════════════════════════════════════════════════════ */
/* Hero */
.theme-light .hero { background: var(--navy-50); }
.theme-light .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(138,180,216,0.28) 0%, transparent 70%),
    linear-gradient(135deg, #ffffff 0%, var(--navy-50) 100%);
}
.theme-light .hero-grid {
  background-image:
    linear-gradient(rgba(15,34,64,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,34,64,0.045) 1px, transparent 1px);
}
.theme-light .hero-h1 { color: var(--navy-900); }
.theme-light .hero-h1 em { color: var(--gold-600); }
.theme-light .hero-sub { color: var(--text-secondary); }
.theme-light .hero-swirl { opacity: 0.07; }
.theme-light .hero-stats { border-top-color: rgba(15,34,64,0.12); }
.theme-light .hero-stat { border-right-color: rgba(15,34,64,0.12); }
.theme-light .stat-label { color: var(--text-muted); }
.theme-light .btn-outline { color: var(--navy-700); border-color: rgba(15,34,64,0.25); }
.theme-light .btn-outline:hover { color: var(--gold-600); border-color: var(--gold-400); }

/* Dark sections → white */
.theme-light .section-dark { background: var(--white); color: var(--text-primary); }
.theme-light .section-title.light { color: var(--navy-900); }
.theme-light .section-body.light { color: var(--text-secondary); }
.theme-light .pm-card { background: var(--slate-100); border-color: var(--slate-200); }
.theme-light .pm-card:hover { background: var(--white); }
.theme-light .pm-card h3 { color: var(--navy-900); }
.theme-light .pm-card p { color: var(--text-secondary); }
.theme-light .lc-dot { background: var(--white); }
.theme-light .lc-label { color: var(--navy-900); }
.theme-light .lc-desc { color: var(--text-secondary); }
.theme-light .cap-lc-h { color: var(--navy-900); }
.theme-light .cap-lc-p { color: var(--text-secondary); }

/* Navy section (Locations) → light */
.theme-light .section-navy { background: var(--slate-100); color: var(--text-primary); }
.theme-light .section-navy .section-title.light { color: var(--navy-900); }
.theme-light .section-navy .section-body.light { color: var(--text-secondary); }
.theme-light .locations-bar { border-color: var(--slate-200); }
.theme-light .loc-group { border-right-color: var(--slate-200); }
.theme-light .loc-cities li { color: var(--text-secondary); }
.theme-light .loc-hq { color: var(--navy-900) !important; }

/* Mission band → light tint */
.theme-light .mission-band { background: var(--navy-50); }
.theme-light .mission-text { color: var(--navy-900); }
.theme-light .mission-attr { color: var(--text-secondary); }
.theme-light .mission-band::before { color: rgba(0,62,126,0.08); }

/* Contact form on light */
.theme-light .field label { color: var(--text-secondary); }
.theme-light .field input,
.theme-light .field select,
.theme-light .field textarea {
  background: var(--white);
  border-color: var(--slate-200);
  color: var(--text-primary);
}
.theme-light .field input::placeholder,
.theme-light .field textarea::placeholder { color: var(--text-muted); }
.theme-light .field select option { background: var(--white); }
.theme-light .contact-item-icon { border-color: var(--slate-200); }
.theme-light .contact-item-icon svg { stroke: var(--slate-400) !important; }
.theme-light .contact-item-val { color: var(--text-secondary); }

/* Theme switcher (review-only control — Dark / Balanced / Light) */
.theme-switch {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px 6px 14px;
  border-radius: 100px;
  background: var(--navy-900);
  box-shadow: 0 8px 28px rgba(15,34,64,0.28);
  border: 1px solid rgba(255,255,255,0.15);
}
.theme-switch-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-right: 4px;
}
.theme-switch button {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  background: transparent; border: none;
  padding: 7px 14px; border-radius: 100px; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.theme-switch button:hover { color: #fff; }
.theme-switch button.is-active { background: var(--gold-400); color: var(--navy-950); }

/* ══════════════════════════════════════════════════════════════
   BALANCED THEME (body.theme-mid) — same navy+gold palette, mid value range.
   Light-dominant content with softened dark anchors: hero, contact, footer.
   ══════════════════════════════════════════════════════════════ */
/* Softened dark anchors — lift near-black navy toward brand navy */
.theme-mid .hero { background: var(--navy-800); }
.theme-mid .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(15,34,64,0.40) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(15,34,64,0.7) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
}
.theme-mid .mission-band { background: var(--navy-700); }
.theme-mid #contact.section-dark { background: var(--navy-800); }
.theme-mid .site-footer { background: var(--navy-900); }

/* Warm the stark whites to a soft navy-tinted off-white (not "too light") */
.theme-mid .section:not(.section-dark):not(.section-navy):not(.section-light) { background: var(--navy-50); }
.theme-mid .section-light { background: #e9eff6; }

/* Capabilities: dark → light (the main de-heavying change) */
.theme-mid #capabilities.section-dark { background: var(--white); color: var(--text-primary); }
.theme-mid #capabilities .section-title.light { color: var(--navy-900); }
.theme-mid #capabilities .section-body.light { color: var(--text-secondary); }
.theme-mid #capabilities .pm-card { background: var(--navy-50); border-color: var(--slate-200); }
.theme-mid #capabilities .pm-card:hover { background: var(--white); }
.theme-mid #capabilities .pm-card h3 { color: var(--navy-900); }
.theme-mid #capabilities .pm-card p { color: var(--text-secondary); }
.theme-mid #capabilities .cap-lc-h { color: var(--navy-900); }
.theme-mid #capabilities .cap-lc-p { color: var(--text-secondary); }
.theme-mid #capabilities .lc-dot { background: var(--white); }
.theme-mid #capabilities .lc-label { color: var(--navy-900); }
.theme-mid #capabilities .lc-desc { color: var(--text-secondary); }

/* Locations: dark navy → soft tint */
.theme-mid .section-navy { background: #e9eff6; color: var(--text-primary); }
.theme-mid .section-navy .section-title.light { color: var(--navy-900); }
.theme-mid .section-navy .section-body.light { color: var(--text-secondary); }
.theme-mid .locations-bar { border-color: var(--slate-200); }
.theme-mid .loc-group { border-right-color: var(--slate-200); }
.theme-mid .loc-cities li { color: var(--text-secondary); }
.theme-mid .loc-hq { color: var(--navy-900) !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-pad: 40px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .pm-grid { grid-template-columns: repeat(2, 1fr); }
  .lifecycle-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .lifecycle-track { display: none; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .csr-grid { grid-template-columns: 1fr; gap: 40px; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 36px; }
  .spotlight-figure img { height: 320px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 16px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .pm-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .locations-bar { grid-template-columns: 1fr; }
  .loc-group { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .lifecycle-steps { grid-template-columns: repeat(2, 1fr); }
  .hero-h1 { font-size: 40px; }
  .facts-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; gap: 20px 0; }
  .cred-item:nth-child(odd) { border-left: none; }
}

/* ── ACCESSIBILITY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
