/* ============================================================
   ANSI Solutions — Brand Design System
   Primary: #014f86  |  Accent: #F97316  |  Text: #0D1B2A
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0D1B2A;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* === CSS VARIABLES === */
:root {
  --navy:       #014f86;
  --navy-dark:  #013b64;
  --navy-900:   #01294a;
  --navy-light: #e8f0f8;
  --navy-mid:   #cddff0;
  --orange:     #F97316;
  --dark:       #0D1B2A;
  --grey-700:   #374151;
  --grey-500:   #6B7280;
  --grey-300:   #D1D5DB;
  --grey-100:   #F3F4F6;
  --light-bg:   #EEF3F9;
  --white:      #ffffff;
  --border:     #E5E7EB;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(1,79,134,.10);
  --shadow-lg:  0 8px 32px rgba(1,79,134,.14);
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 999px;
  --container:  1200px;
  --section-y:  96px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { line-height: 1.15; font-weight: 800; color: var(--dark); }
h1 { font-size: clamp(40px, 5vw, 64px); letter-spacing: -1.5px; }
h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -1px; }
h3 { font-size: clamp(20px, 2.5vw, 28px); letter-spacing: -.5px; font-weight: 700; }
h4 { font-size: 20px; font-weight: 700; }
h5 { font-size: 16px; font-weight: 600; }
p { color: var(--grey-700); line-height: 1.75; }
.lead { font-size: 18px; color: var(--grey-500); line-height: 1.8; max-width: 640px; }
.dot { color: var(--orange); }
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--navy-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.label-orange { background: #FFF3E8; color: var(--orange); }

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-y) 0; }
.section-light { background: var(--light-bg); }
.section-navy { background: var(--navy-900); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy p, .section-navy .lead { color: rgba(255,255,255,.75); }
.section-navy .label { background: rgba(255,255,255,.12); color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }
.section-header { max-width: 680px; margin-bottom: 56px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { background: var(--navy-light); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* Arrow icon */
.arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   NAVIGATION — Redesigned
═══════════════════════════════════════════════════ */

/* Gradient accent stripe that slides in on scroll */
.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #014f86 0%, #F97316 52%, #014f86 100%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
  pointer-events: none;
}
.nav.nav-scrolled::before { opacity: 1; }

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  box-shadow: none;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.nav.nav-scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.06);
}

/* ── Dark hero nav — solid dark navy, ALWAYS visible ── */
/* Applied directly to .dark-hero-page .nav so it works even without JS */
.dark-hero-page .nav {
  background: rgba(10, 20, 35, 0.92);
  border-bottom-color: rgba(255,255,255,.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
/* When scrolled past hero → switch to clean white */
.dark-hero-page .nav.nav-scrolled {
  background: rgba(255,255,255,.98);
  border-bottom-color: rgba(0,0,0,.07);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 4px 20px rgba(0,0,0,.06);
}

/* Links — white on dark */
.dark-hero-page .nav .nav-links a,
.dark-hero-page .nav .nav-links button {
  color: rgba(255,255,255,.82);
}
.dark-hero-page .nav .nav-links a:hover,
.dark-hero-page .nav .nav-links button:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.dark-hero-page .nav .nav-links a::after { background: rgba(255,255,255,.8); }

/* Logo — white filter on dark */
.dark-hero-page .nav .nav-logo svg { filter: brightness(0) invert(1); }
.dark-hero-page .nav .nav-logo-sep { background: rgba(255,255,255,.15); }

/* CTA button */
.dark-hero-page .nav .nav-cta .btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 2px 14px rgba(249,115,22,.4);
}

/* Hamburger */
.dark-hero-page .nav .hamburger { border-color: rgba(255,255,255,.2); }
.dark-hero-page .nav .hamburger span { background: rgba(255,255,255,.8); }

/* When scrolled: restore dark text & logo */
.dark-hero-page .nav.nav-scrolled .nav-links a,
.dark-hero-page .nav.nav-scrolled .nav-links button { color: #1e293b; }
.dark-hero-page .nav.nav-scrolled .nav-links a:hover,
.dark-hero-page .nav.nav-scrolled .nav-links button:hover {
  color: var(--navy);
  background: rgba(1,79,134,.07);
}
.dark-hero-page .nav.nav-scrolled .nav-links a::after { background: var(--orange); }
.dark-hero-page .nav.nav-scrolled .nav-logo svg { filter: none; }
.dark-hero-page .nav.nav-scrolled .nav-logo-sep { background: rgba(0,0,0,.1); }
.dark-hero-page .nav.nav-scrolled .hamburger { border-color: rgba(0,0,0,.12); }
.dark-hero-page .nav.nav-scrolled .hamburger span { background: var(--dark); }

/* ── Nav inner layout ── */
.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding-right: 22px;
}
.nav-logo svg {
  height: 34px;
  width: auto;
  display: block;
  transition: filter .22s, opacity .22s;
}
.nav-logo:hover svg { opacity: .72; }

/* Thin vertical rule between logo and links */
.nav-logo-sep {
  width: 1px;
  height: 26px;
  background: rgba(0,0,0,.1);
  flex-shrink: 0;
  margin-right: 22px;
}

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
  justify-content: flex-start;
}
.nav-links li { position: relative; }

.nav-links a, .nav-links button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -.01em;
  transition: color .18s, background .18s;
  border-radius: 8px;
}

/* Pill hover for all nav items */
.nav-links a:hover,
.nav-links button:hover {
  color: var(--navy);
  background: rgba(1,79,134,.07);
}

/* Sliding underline — direct links only */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover::after  { transform: scaleX(1); }

/* Active state — orange underline + navy bold */
.nav-links a.active {
  color: var(--navy);
  font-weight: 700;
  background: rgba(1,79,134,.06);
}
.nav-links a.active::after { transform: scaleX(1); }

/* CTA area */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 22px;
}
.nav-cta .btn-primary {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 2px 12px rgba(1,79,134,.28), 0 1px 3px rgba(1,79,134,.18);
  transition: box-shadow .2s, transform .15s, background .2s;
}
.nav-cta .btn-primary:hover {
  box-shadow: 0 4px 20px rgba(1,79,134,.38), 0 2px 6px rgba(1,79,134,.22);
  transform: translateY(-1px);
}

/* ── SVG Chevron ── */
.nav-chevron {
  width: 11px; height: 11px;
  flex-shrink: 0;
  opacity: .45;
  transition: transform .22s cubic-bezier(.22,1,.36,1), opacity .18s;
}
.dropdown:hover .nav-chevron { transform: rotate(180deg); opacity: .9; }

/* ── Dropdown shell ── */
.dropdown { position: relative; }

/* Invisible hover bridge so cursor can travel to panel without it closing */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: -24px; right: -24px;
  height: 18px;
  background: transparent;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: block;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(.97);
  background: #fff;
  border: 1px solid rgba(1,79,134,.1);
  border-top: none;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(1,79,134,.05),
    0 8px 24px rgba(1,79,134,.09),
    0 28px 72px rgba(0,0,0,.13);
  z-index: 200;
  overflow: hidden;
  transition: opacity .22s cubic-bezier(.22,1,.36,1),
              transform .22s cubic-bezier(.22,1,.36,1),
              visibility .22s;
}

/* Brand gradient top accent stripe */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--orange) 55%, var(--navy) 100%);
  z-index: 2;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Wide dropdown (Services — 2 col) */
.dropdown-menu-wide { min-width: 660px; }

/* Narrow dropdown (About — 1 col), anchored to right */
.dropdown-menu-sm {
  min-width: 290px;
  left: auto; right: 0;
  transform: translateX(0) translateY(-10px) scale(.97);
}
.dropdown-menu-sm::before { /* keep accent stripe; no caret needed */ }
.dropdown:hover .dropdown-menu-sm {
  transform: translateX(0) translateY(0) scale(1);
}

/* ── Dropdown header ── */
.dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--light-bg);
}
.dropdown-head-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--navy);
}
.dropdown-head-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap .15s, color .15s;
}
.dropdown-head-link:hover { gap: 8px; color: var(--orange); }

/* ── Item grids ── */
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 10px 10px 8px;
}
.dropdown-grid-1col {
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 10px 10px 8px;
}

/* ── Individual item ── */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 13px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background .15s;
}
/* Left orange accent bar that slides in on hover */
.dropdown-item::after {
  content: '';
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 3px;
  background: var(--orange);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: opacity .15s, transform .2s cubic-bezier(.22,1,.36,1);
}
.dropdown-item:hover {
  background: var(--light-bg);
}
.dropdown-item:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

/* ── Icon box ── */
.dropdown-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  transition: background .18s, transform .18s;
}
.dropdown-item:hover .dropdown-icon {
  background: var(--navy);
  transform: scale(1.06);
}

/* ── Item text ── */
.dropdown-item-text h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
  line-height: 1.3;
  transition: color .15s;
}
.dropdown-item:hover .dropdown-item-text h5 { color: var(--navy); }
.dropdown-item-text p { font-size: 12px; color: var(--grey-500); line-height: 1.4; }

/* ── Featured strip (GCC) at the bottom of Services dropdown ── */
.dropdown-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(1,79,134,.15);
  margin-top: 2px;
  text-decoration: none;
  color: inherit;
  transition: filter .15s;
  border-radius: 0 0 16px 16px;
}
.dropdown-featured:hover {
  filter: brightness(1.08);
}
.dropdown-featured-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 5px;
}
.dropdown-featured-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.dropdown-featured-body p {
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
  line-height: 1.35;
}
.dropdown-featured-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(249,115,22,.35);
  border-radius: 8px;
  padding: 7px 13px;
  transition: background .15s, gap .15s;
}
.dropdown-featured-cta:hover {
  background: rgba(249,115,22,.12);
  gap: 8px;
}

/* New badge (inside dropdown items) */
.new-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: #FFF3E8;
  color: var(--orange);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── GCC top-level nav link ── */
.nav-links .nav-gcc-link {
  font-weight: 600;
  color: var(--navy) !important;
  background: rgba(1, 79, 134, 0.06);
  padding: 5px 12px !important;
  border-radius: 20px;
  border: 1px solid rgba(1, 79, 134, 0.15);
  transition: background .2s, border-color .2s, color .2s !important;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-links .nav-gcc-link:hover {
  background: rgba(1, 79, 134, 0.12) !important;
  border-color: rgba(1, 79, 134, 0.3);
  color: var(--navy) !important;
}
.nav-links .nav-gcc-link::after { display: none !important; }

/* New badge on nav top-level link */
.nav-badge-new {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  vertical-align: middle;
  line-height: 1.3;
}

/* Dark hero: GCC pill on dark bg */
.dark-hero-page .nav .nav-links .nav-gcc-link {
  color: #fff !important;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.dark-hero-page .nav .nav-links .nav-gcc-link:hover {
  background: rgba(255,255,255,.18) !important;
  border-color: rgba(255,255,255,.35);
}
.dark-hero-page .nav.nav-scrolled .nav-links .nav-gcc-link {
  color: var(--navy) !important;
  background: rgba(1, 79, 134, 0.06);
  border-color: rgba(1, 79, 134, 0.15);
}
.dark-hero-page .nav.nav-scrolled .nav-links .nav-gcc-link:hover {
  background: rgba(1, 79, 134, 0.12) !important;
}

/* ── Mobile GCC highlight ── */
.mobile-gcc-cta {
  display: flex !important;
  align-items: center;
  margin: 12px 0 8px !important;
  padding: 13px 16px !important;
  background: linear-gradient(135deg, #014f86 0%, #0369a1 100%) !important;
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600 !important;
  font-size: 14px !important;
  border-bottom: none !important;
  gap: 8px;
}
.mobile-gcc-cta:hover { opacity: .9; }
.mobile-gcc-cta .nav-badge-new {
  background: rgba(255,255,255,.25);
  color: #fff;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px; height: 38px;
  background: none;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
  transition: border-color .2s;
  margin-left: 12px;
}
.hamburger:hover { border-color: var(--navy); }
.hamburger span {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .28s cubic-bezier(.22,1,.36,1);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: scaleX(0); opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile nav panel ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: var(--white);
  z-index: 1001;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,.16);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.22,1,.36,1);
}
.mobile-nav.open {
  display: block;
  transform: translateX(0);
}
/* Dark top bar with close button and CTA */
.mobile-nav-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #0D1B2A;
  gap: 12px;
}
.mobile-nav-topbar .btn {
  flex: 1;
  justify-content: center;
  font-size: 13px;
  padding: 9px 14px;
}
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  color: rgba(255,255,255,.65);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s, color .15s;
  font-family: inherit;
}
.mobile-nav-close:hover { background: rgba(255,255,255,.2); color: #fff; }
.mobile-nav-body { padding: 4px 16px 48px; }
.mobile-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--grey-500);
  margin: 20px 0 4px;
  padding: 0;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color .15s;
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav a:last-of-type { border-bottom: none; }

/* Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1000;
  opacity: 0;
  transition: opacity .3s;
  cursor: pointer;
}
.mobile-nav-overlay.open { display: block; opacity: 1; }

/* === HERO === */
.hero {
  background: var(--light-bg);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(1,79,134,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { max-width: 560px; position: relative; z-index: 1; }
.hero-content h1 { margin-bottom: 24px; }
.hero-content .lead { margin-bottom: 36px; }
.hero-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-stat { padding: 20px 24px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.hero-stat-num { font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-stat-label { font-size: 13px; color: var(--grey-500); margin-top: 4px; }
.hero-stats { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

/* === LOGO BAR === */
.logo-bar { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.logo-bar-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--grey-500); margin-bottom: 24px; text-align: center; }
.logo-bar-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.logo-bar-item { font-size: 18px; font-weight: 800; color: var(--grey-300); letter-spacing: -0.5px; transition: color .2s; }
.logo-bar-item:hover { color: var(--grey-500); }

/* === CARDS === */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s ease;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--navy-mid); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--navy-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.card h4 { margin-bottom: 8px; }
.card p { font-size: 14px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--navy); margin-top: 16px; }
.card-link:hover { gap: 10px; }
.card-number { font-size: 48px; font-weight: 900; color: var(--navy-mid); line-height: 1; margin-bottom: 12px; }

/* Service card variant */
.service-card { position: relative; overflow: hidden; }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform .25s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  background: #FFF3E8; color: var(--orange);
  padding: 3px 8px; border-radius: 4px;
}

/* === VETTING PROCESS === */
.vetting-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.vetting-step-pct {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
  min-width: 90px;
}
.vetting-step-pct span { font-size: 14px; display: block; font-weight: 400; color: rgba(255,255,255,.5); margin-top: 2px; }

/* === STAT GRID === */
.stat-item { text-align: center; padding: 32px 20px; }
.stat-num { font-size: 48px; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-num-white { color: var(--white); }
.stat-label { font-size: 15px; color: var(--grey-500); margin-top: 8px; }
.stat-label-white { color: rgba(255,255,255,.65); }
.stat-divider { border-right: 1px solid var(--border); }

/* === PROCESS STEPS === */
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.process-num {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.process-content h4 { margin-bottom: 6px; }
.process-connector { width: 2px; height: 32px; background: var(--navy-mid); margin-left: 23px; }

/* === FEATURE LIST === */
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.feature-list li:last-child { border-bottom: none; }
.check { color: var(--navy); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* === TABS === */
.tabs-header {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}
.tab-btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-500);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
}
.tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); }

/* === TESTIMONIAL === */
.testimonial {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.testimonial-quote { font-size: 22px; font-style: italic; line-height: 1.7; color: rgba(255,255,255,.9); margin-bottom: 24px; }
.testimonial-author { font-weight: 700; }
.testimonial-role { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* === CTA BAND === */
.cta-band {
  background: var(--navy-900);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band .lead { color: rgba(255,255,255,.7); margin: 0 auto 36px; }
.cta-band .btn-group { justify-content: center; }

/* === FOOTER === */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo svg { width: 100px; height: auto; }
.footer-desc { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.55); max-width: 260px; }
.footer-col h6 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul a:hover { color: rgba(255,255,255,.9); }
/* ── Footer certifications strip ── */
.footer-certs {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 28px 0 4px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-certs-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-certs-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 12px 18px;
  transition: background .2s, border-color .2s;
}
.footer-cert-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.footer-cert-iso {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 50%;
  padding: 6px;
  flex-shrink: 0;
}
.footer-cert-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.footer-cert-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.footer-cert-text span {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.footer-cert-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
.footer-cert-award {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 10px 16px;
  transition: background .2s, border-color .2s;
}
.footer-cert-award:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.footer-cert-award-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 12px;
  display: block;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.4); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-social a:hover { color: rgba(255,255,255,.9); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero .lead { color: rgba(255,255,255,.75); max-width: 600px; }
.page-hero .label { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb span { margin: 0 8px; }

/* === TIMELINE === */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--navy-mid); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot { position: absolute; left: -40px; top: 4px; width: 24px; height: 24px; background: var(--navy); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--navy); display: flex; align-items: center; justify-content: center; }
.timeline-dot-num { font-size: 10px; font-weight: 800; color: var(--white); }
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: 14px; }

/* === PILL TAGS === */
.tag { display: inline-block; padding: 6px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; background: var(--navy-light); color: var(--navy); }
.tag-group { display: flex; flex-wrap: wrap; gap: 8px; }

/* === TWO-COL FEATURE === */
.feature-block { padding: 40px; background: var(--light-bg); border-radius: var(--radius-xl); }
.feature-block h3 { margin-bottom: 16px; }

/* === ACCORDION === */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 16px;
}
.accordion-icon { font-size: 20px; color: var(--navy); flex-shrink: 0; transition: transform .2s; }
.accordion-body { display: none; padding-bottom: 20px; color: var(--grey-700); font-size: 15px; line-height: 1.75; }
.accordion-item.open .accordion-body { display: block; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }

/* === COMPARISON TABLE === */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: var(--navy); color: var(--white); padding: 16px 20px; font-size: 14px; text-align: left; }
.compare-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light-bg); }
.tick { color: #22C55E; font-weight: 700; }
.cross { color: #EF4444; }

/* === INDUSTRY TAGS GRID === */
.industry-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-pill {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-700);
  background: var(--white);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.industry-pill:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-light); }

/* === HIGHLIGHT BOX === */
.highlight-box {
  background: var(--navy-light);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
}
.highlight-box p { color: var(--navy); font-weight: 500; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  :root { --section-y: 72px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --section-y: 56px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
  .hero-image { margin-top: 32px; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .logo-bar-items { gap: 24px; }
  .testimonial { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-band { padding: 56px 0; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .stat-num { font-size: 36px; }
  .dropdown-menu { min-width: 300px; grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { flex-direction: column; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
}
