/* ============================================
   SUMMIT FACILITY SOLUTIONS — GLOBAL STYLES
   Professional, GDI-inspired design system
   ============================================ */

:root {
  --navy: #1a3a5c;
  --navy-dark: #0f2640;
  --navy-light: #2a5080;
  --gold: #e8b94a;
  --gold-dark: #c9962e;
  --gold-light: #f0d080;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --text: #2d3748;
  --text-light: #718096;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.18);
  --transition: all 0.25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Container */
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

/* ============================================ TOP BAR ============================================ */
.topbar {
  background: var(--navy-dark);
  color: var(--gray-400);
  font-size: 0.8rem;
  padding: 8px 0;
  z-index: 1000;
  position: relative;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-left { display: flex; align-items: center; gap: 1.5rem; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left a { color: var(--gray-300); transition: var(--transition); }
.topbar-left a:hover { color: var(--gold); }
.topbar-left i { color: var(--gold); font-size: 0.75rem; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
/* Social icon circles — only target links with aria-label (the social icons) */
.topbar-right a[aria-label] { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); transition: var(--transition); flex-shrink: 0; }
.topbar-right a[aria-label]:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); transform: translateY(-1px); }

/* ============================================ HEADER ============================================ */
.main-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.main-header.scrolled { box-shadow: 0 4px 24px rgba(26,58,92,0.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

/* Logo */
.logo { display: flex; align-items: center; }
.site-logo-img { height: 64px; width: auto; display: block; }

/* Nav */
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link { font-size: 0.88rem; font-weight: 600; color: var(--navy); padding: 8px 14px; border-radius: 6px; transition: var(--transition); letter-spacing: 0.2px; }
.nav-link:hover, .nav-link.active { color: var(--gold-dark); background: rgba(232,185,74,0.08); }
/* Topbar CTA buttons — Join Our Team & Become a Vendor */
.topbar-btn {
  display: inline-flex !important; align-items: center !important; gap: 6px !important;
  padding: 5px 13px !important; border-radius: 6px !important; font-size: 0.76rem !important;
  font-weight: 700 !important; text-decoration: none !important; letter-spacing: 0.2px !important;
  transition: all 0.2s ease !important; white-space: nowrap !important;
  width: auto !important; height: auto !important; border-radius: 6px !important;
}
.topbar-btn-careers {
  background: rgba(255,255,255,0.12) !important; color: var(--gray-200) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
}
.topbar-btn-careers:hover, .topbar-btn-careers.active {
  background: rgba(255,255,255,0.22) !important; color: white !important;
  border-color: rgba(255,255,255,0.45) !important;
}
.topbar-btn-vendor {
  background: var(--gold) !important; color: var(--navy-dark) !important;
  border: 1px solid var(--gold) !important;
}
.topbar-btn-vendor:hover, .topbar-btn-vendor.active {
  background: var(--gold-dark) !important; border-color: var(--gold-dark) !important; color: var(--navy-dark) !important;
}
.topbar-divider {
  width: 1px; height: 16px; background: rgba(255,255,255,0.15); margin: 0 2px;
}

/* Mobile nav buttons */
.mobile-nav-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 10px; font-size: 0.9rem;
  font-weight: 700; text-decoration: none; margin: 4px 16px;
}
.mobile-nav-btn-careers {
  background: var(--navy); color: white !important;
}
.mobile-nav-btn-vendor {
  background: var(--gold); color: var(--navy-dark) !important;
}

.nav-cta { margin-left: 8px; }

/* Dropdown Nav */
.has-dropdown { position: relative; }
.nav-arrow { font-size: 0.6rem; margin-left: 4px; transition: transform 0.2s ease; vertical-align: middle; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
  opacity: 0; visibility: hidden; pointer-events: none;
  position: absolute; top: 100%;
  /* Center precisely under the parent nav item */
  left: 50%; transform: translateX(-50%);
  background: white; border-radius: 14px; min-width: 300px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.06);
  padding: 6px 6px 6px; margin-top: 16px; z-index: 1000; list-style: none;
  transition: opacity 0.18s ease, visibility 0s linear 0.18s;
}
/* Invisible bridge covers the margin-top gap so hover stays active */
.nav-dropdown::after {
  content: ''; position: absolute; top: -20px; left: -20px; right: -20px; height: 24px;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  width: 12px; height: 12px; background: white; border-radius: 2px;
  box-shadow: -2px -2px 4px rgba(0,0,0,0.04); transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 0.18s ease, visibility 0s linear 0s;
}
.dropdown-item {
  display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 8px;
  text-decoration: none; transition: background 0.15s ease;
}
.dropdown-item:hover { background: var(--gray-50); }
.dropdown-item.active { background: rgba(232,185,74,0.1); }
.dropdown-item-icon {
  width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0;
  background: #f0f4f9;
  border: 1px solid #dce4ef;
  display: flex; align-items: center; justify-content: center;
  color: #1a3a5c; font-size: 0.82rem;
  transition: background 0.15s, border-color 0.15s;
}
.dropdown-item:hover .dropdown-item-icon {
  background: #1a3a5c;
  border-color: #1a3a5c;
  color: #e8b94a;
}
.dropdown-item-icon-logo {
  background: white;
  border: 1px solid #e8ecf1;
  padding: 2px;
  width: 32px; height: 32px; border-radius: 7px;
}
.dropdown-brand-logo {
  width: 100%; height: 100%; object-fit: contain;
}
.dropdown-item-text { display: flex; flex-direction: column; gap: 2px; }
.dropdown-item-text strong { font-size: 0.82rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.dropdown-item-text small { font-size: 0.70rem; color: var(--gray-500); line-height: 1.3; }

/* Wide two-column dropdown (Services / Industries) */
/* Keep position:relative so left:50% resolves against the nav item itself */
.has-dropdown-wide { position: relative; }
.nav-dropdown-wide {
  opacity: 0; visibility: hidden; pointer-events: none;
  min-width: 520px;
  position: absolute; top: 100%;
  /* Center under the nav item label */
  left: 50%; transform: translateX(-50%);
  background: white; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.06);
  padding: 6px 6px 6px; margin-top: 16px; z-index: 1000; list-style: none;
  columns: 2; column-gap: 0;
  transition: opacity 0.18s ease, visibility 0s linear 0.18s;
}
/* Invisible bridge — wide dropdown covers the margin-top gap */
.nav-dropdown-wide::after {
  content: ''; position: absolute; top: -20px; left: -20px; right: -20px; height: 24px;
}
.nav-dropdown-wide::before { display: none; }
.has-dropdown-wide:hover .nav-dropdown-wide,
.has-dropdown-wide:focus-within .nav-dropdown-wide {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 0.18s ease, visibility 0s linear 0s;
}
.nav-dropdown-wide li { break-inside: avoid; }
/* Prevent wide dropdowns from overflowing viewport edges */
@supports (left: clamp(0px, 50%, 100%)) {
  .nav-dropdown-wide {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ── About Us mega dropdown — 3-section rich layout ──────────────────── */
/* The li gets extra bottom padding so the hover zone covers the gap to the dropdown */
.has-mega-about {
  position: relative;
  padding-bottom: 12px;   /* extends hover hitbox down to meet the dropdown */
  margin-bottom: -12px;   /* cancel out the layout shift */
}
.mega-about-dropdown {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  width: min(860px, calc(100vw - 32px));
  display: grid;
  gap: 0;
  z-index: 1100;
  padding-top: 12px;
  transition: opacity 0.15s ease;
}
.mega-about-dropdown.mab-open {
  opacity: 1;
  pointer-events: auto;
}
/* The actual visible card sits inside a wrapper */
.mab-inner {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10,30,54,0.16);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  position: relative;
}
/* Caret on the inner wrapper */
.mab-inner::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
  z-index: 1;
}

/* ── Shared section styles ── */
.mab-section {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mab-section + .mab-section { border-left: 1px solid var(--gray-100); }
.mab-section-heading {
  font-size: 0.64rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--gray-400); margin: 0 0 16px;
  display: flex; align-items: center; gap: 6px;
}
.mab-section-heading i { font-size: 0.7rem; color: var(--gold); }

/* ── Section 1: Links ── */
.mab-link-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.mab-link {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 9px;
  text-decoration: none;
  transition: background 0.15s;
}
.mab-link:hover { background: var(--gray-50); }
.mab-link.active { background: rgba(232,185,74,0.1); }
.mab-link-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(10,30,54,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 0.75rem;
  transition: background 0.15s, color 0.15s;
}
.mab-link:hover .mab-link-icon { background: var(--gold); color: #fff; }
.mab-link.active .mab-link-icon { background: var(--gold); color: #fff; }
.mab-link-body { display: flex; flex-direction: column; gap: 1px; }
.mab-link-body strong { font-size: 0.8rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.mab-link-body small  { font-size: 0.68rem; color: var(--gray-500); line-height: 1.3; }

/* ── Section 2: Leadership ── */
.mab-section-leadership { background: var(--gray-50); }
.mab-leader-card {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
  margin-bottom: 4px;
}
.mab-leader-card:hover { background: rgba(255,255,255,0.9); }
.mab-leader-card.active { background: rgba(232,185,74,0.1); }
.mab-leader-img-wrap {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  background: var(--gray-100);
  position: relative;
}
.mab-leader-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mab-leader-img-fallback {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), #1e4080);
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
}
.mab-leader-info { display: flex; flex-direction: column; gap: 2px; }
.mab-leader-info strong { font-size: 0.8rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.mab-leader-info span   { font-size: 0.68rem; color: var(--gray-500); }
.mab-see-all {
  display: flex; align-items: center; gap: 6px;
  margin-top: 8px; padding: 8px 10px;
  font-size: 0.75rem; font-weight: 700;
  color: var(--gold); text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}
.mab-see-all:hover { background: rgba(232,185,74,0.08); }
.mab-see-all i { font-size: 0.65rem; }

/* ── Section 3: Connect ── */
.mab-section-connect { background: linear-gradient(160deg, #0a1e36 0%, #1a3a6c 100%); }
.mab-section-connect .mab-section-heading { color: rgba(255,255,255,0.45); }
.mab-section-connect .mab-section-heading i { color: var(--gold); }
.mab-connect-cards { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.mab-connect-card {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.mab-connect-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(232,185,74,0.4); }
.mab-connect-card.active { background: rgba(232,185,74,0.15); border-color: rgba(232,185,74,0.5); }
.mab-cc-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(232,185,74,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem;
}
.mab-cc-body { display: flex; flex-direction: column; gap: 2px; }
.mab-cc-body strong { font-size: 0.78rem; font-weight: 700; color: #fff; line-height: 1.2; }
.mab-cc-body small  { font-size: 0.67rem; color: rgba(255,255,255,0.5); line-height: 1.3; }
.mab-stats-row {
  display: flex; gap: 4px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.mab-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mab-stat-num { font-size: 1.15rem; font-weight: 900; color: var(--gold); line-height: 1; }
.mab-stat-lbl { font-size: 0.62rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; }
.mab-cta-block { display: flex; flex-direction: column; gap: 10px; }
.mab-cta-text { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin: 0; }
.mab-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 8px;
  background: var(--gold); color: var(--navy);
  font-size: 0.8rem; font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.mab-cta-btn:hover { background: #d4a012; transform: translateY(-1px); }
.mab-cta-btn i { font-size: 0.7rem; }

/* ── Services mega dropdown ───────────────────────────────────────────── */
.has-mega-svc {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}
.mega-svc-dropdown {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  width: min(900px, calc(100vw - 32px));
  display: grid;
  gap: 0;
  z-index: 1100;
  padding-top: 12px;
  transition: opacity 0.15s ease;
}
.mega-svc-dropdown.mab-open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Industries mega dropdown ─────────────────────────────────────────── */
.has-mega-ind {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}
.mega-ind-dropdown {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  width: min(900px, calc(100vw - 32px));
  display: grid;
  gap: 0;
  z-index: 1100;
  padding-top: 12px;
  transition: opacity 0.15s ease;
}
.mega-ind-dropdown.mab-open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Our Brands mega dropdown ─────────────────────────────────────────── */
.has-mega-brands {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}
.mega-brands-dropdown {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  width: min(900px, calc(100vw - 32px));
  display: block;
  z-index: 1100;
  padding-top: 12px;
  transition: opacity 0.15s ease;
}
.mega-brands-dropdown.mab-open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Brands mega dropdown: 4-tile horizontal grid + navy CTA strip ── */

/* Override mab-inner to use flex-column for 2 rows */
.mab-brands-inner {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  padding: 0 !important;
  overflow: hidden;
}

/* Row 1: 4 equal brand tiles */
.mab-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 20px 20px 16px;
}

/* Individual brand tile */
.mab-brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 16px 14px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  position: relative;
}
.mab-brand-tile:hover {
  background: var(--gray-50);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(232,185,74,0.14);
}
.mab-brand-tile.active {
  background: rgba(232,185,74,0.07);
  border-color: var(--gold);
}

/* Logo area — tall enough for good logo visibility */
.mab-brand-tile-logo {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.mab-brand-tile-logo img {
  max-height: 64px;
  max-width: 90%;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.18s;
}
.mab-brand-tile:hover .mab-brand-tile-logo img {
  transform: scale(1.05);
}

/* Text body */
.mab-brand-tile-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mab-brand-tile-body strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.mab-brand-tile-body small {
  font-size: 0.68rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* Arrow shown on hover */
.mab-brand-tile-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  margin-top: 10px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.15s, transform 0.15s;
}
.mab-brand-tile:hover .mab-brand-tile-arrow {
  opacity: 1;
  transform: scale(1);
}

/* Row 2: Navy CTA strip */
.mab-brands-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: var(--navy);
  flex-wrap: wrap;
}
.mab-brands-cta-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.mab-brands-cta-stats span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
}
.mab-brands-cta-stats strong {
  color: var(--gold);
  font-weight: 800;
}
.mab-strip-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
  vertical-align: middle;
}
.mab-brands-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mab-strip-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
}
.mab-strip-link:hover { color: var(--gold); }
.mab-strip-link i { font-size: 0.65rem; }

/* ── Blog dropdown uses standard .has-dropdown / .nav-dropdown (no custom styles needed) ── */

/* Mobile submenu indent */
.mobile-sub a { padding-left: 28px !important; font-size: 0.88rem !important; color: var(--gray-500) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; gap: 5px; border-radius: 8px; transition: var(--transition); }
.hamburger:hover { background: var(--gray-100); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-bottom: 2px solid var(--gray-100);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  position: relative;
  z-index: 998;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-nav.open {
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  padding: 8px 0 20px;
  display: block;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav ul { padding: 0 16px; list-style: none; }
/* Top-level items */
.mobile-nav > ul > li > a,
.mobile-nav > ul > li > .mobile-parent-row > .mobile-parent-link {
  display: flex;
  align-items: center;
  padding: 13px 10px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.93rem;
  min-height: 48px;
  transition: color 0.18s;
}
.mobile-nav > ul > li > a:hover,
.mobile-nav > ul > li > .mobile-parent-row > .mobile-parent-link:hover,
.mobile-nav > ul > li > a.active,
.mobile-nav > ul > li > .mobile-parent-row > .mobile-parent-link.active { color: var(--gold-dark); }

/* Accordion parent row */
.mobile-parent-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-parent-link {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 13px 10px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.93rem;
  min-height: 48px;
  transition: color 0.18s;
  border-bottom: none !important;
}
.mobile-sub-toggle {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: color 0.18s;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-sub-toggle i { transition: transform 0.28s ease; }
.mobile-has-sub.mobile-sub-open .mobile-sub-toggle i { transform: rotate(180deg); }
.mobile-sub-toggle:hover { color: var(--gold-dark); }

/* Submenu (collapsed by default) */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--gray-50);
  border-radius: 0 0 8px 8px;
  margin: 0 -16px;
  padding: 0 16px;
}
.mobile-submenu.open { max-height: 800px; padding: 4px 16px 8px; }
.mobile-submenu li a {
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  min-height: 42px;
  transition: color 0.15s, background 0.15s;
}
.mobile-submenu li:last-child a { border-bottom: none; }
.mobile-submenu li a:hover, .mobile-submenu li a.active { color: var(--navy); background: rgba(26,58,92,0.04); border-radius: 6px; }
.mobile-submenu li a.active { color: var(--gold-dark); }

/* CTA row */
.mobile-cta-row { padding: 14px 0 4px; border-bottom: none !important; }
.mobile-cta-btn { width: 100%; justify-content: center; border-bottom: none !important; }
.mobile-cta-row a.btn { border-bottom: none !important; min-height: 48px; }

/* Secondary row (careers + vendor) */
.mobile-secondary-row {
  display: flex !important;
  gap: 8px;
  padding: 8px 0 4px;
  border-bottom: none !important;
}
.mobile-secondary-row .mobile-nav-btn {
  flex: 1;
  justify-content: center;
  margin: 0;
  min-height: 44px;
}

/* ============================================ BUTTONS ============================================ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--border-radius); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.3px; transition: var(--transition); cursor: pointer; border: 2px solid transparent; text-decoration: none; }
.btn-sm { padding: 9px 20px; font-size: 0.83rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-primary { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,185,74,0.4); }
.btn-secondary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,58,92,0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.45); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.85); color: #fff; }
/* Aliases used on location/city hero sections */
.btn-gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,185,74,0.45); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.75); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* ============================================ TYPOGRAPHY ============================================ */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text); line-height: 1.75; }

.section-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 12px; display: block; }
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--gray-600); font-size: 1.05rem; max-width: 680px; line-height: 1.75; }

/* ============================================ ANIMATIONS ============================================ */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================ HERO ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1e36 0%, #1a3a5c 50%, #2a5080 100%);
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,185,74,0.15); border: 1px solid rgba(232,185,74,0.4); color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 8px 16px; border-radius: 40px; margin-bottom: 24px; }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-desc { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 580px; margin-bottom: 40px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }
.hero-trust { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 500; }
.hero-trust-item i { color: var(--gold); }

/* Hero visual decoration */
.hero-visual { position: absolute; right: 0; top: 0; bottom: 0; width: 45%; z-index: 1; overflow: hidden; }
.hero-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--navy), transparent); z-index: 1; }
.hero-pattern { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 550px; height: 550px; opacity: 0.06; }

/* ============================================ HERO SLIDER ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
  background: #0a1e36;
}

/* Individual slides */
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hs-slide.hs-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hs-slide.hs-exit {
  opacity: 0;
  z-index: 1;
}

/* Background image layer */
.hs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hs-slide.hs-active .hs-bg {
  transform: scale(1);
}

/* Dark overlay */
.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,54,0.88) 0%, rgba(26,58,92,0.55) 60%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}

/* Content container */
.hs-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px clamp(24px, 8vw, 120px) 130px;
  max-width: 860px;
}

/* Eyebrow */
.hs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,185,74,0.15);
  border: 1px solid rgba(232,185,74,0.45);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
  width: fit-content;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.hs-active .hs-eyebrow { opacity: 1; transform: translateY(0); }

/* Title */
.hs-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}
.hs-active .hs-title { opacity: 1; transform: translateY(0); }
.hs-title em { font-style: normal; color: var(--gold); }
.hs-title h1, .hs-title h2 { margin: 0; }

/* Description */
.hs-desc {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}
.hs-active .hs-desc { opacity: 1; transform: translateY(0); }

/* Action buttons */
.hs-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.75s, transform 0.7s ease 0.75s;
}
.hs-active .hs-actions { opacity: 1; transform: translateY(0); }

/* In-hero recognition cards row */
/* ── Option 3: Inline badge row recognition strip ── */
.hs-recognition {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease 0.95s, transform 0.7s ease 0.95s;
}
.hs-active .hs-recognition { opacity: 1; transform: translateY(0); }

/* "Recognition & Awards" divider line */
.hs-recog-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.38);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hs-recog-divider::before,
.hs-recog-divider::after {
  content: '';
  flex: 1;
  max-width: 56px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* Row of badges — all 4 on one line */
.hs-recog-row {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  align-items: center;
}

/* Individual badge */
.hs-recog-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 7px 12px 7px 9px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
  flex-shrink: 0;
}
.hs-recog-badge:hover {
  background: rgba(232,185,74,0.1);
  border-color: rgba(232,185,74,0.45);
  transform: translateY(-2px);
}

/* Logo — square (circular badges) */
.hs-recog-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Wide logo (Regionals wordmark, NJBIZ) */
.hs-recog-logo-wide {
  width: auto;
  max-width: 64px;
  height: 32px;
}

/* Text block */
.hs-recog-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hs-recog-text strong {
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.hs-recog-text span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
/* keep round class for any legacy usage */
.hs-recog-logo-round { border-radius: 50%; }

/* White pill wrapper for logos with opaque light backgrounds (Regionals, EY, NJBIZ) */
.hs-recog-logo-pill {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  overflow: hidden;
}
.hs-recog-logo-pill-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Division badge (bottom-right corner) */
.hs-division-badge {
  position: absolute;
  bottom: 100px;
  right: 48px;
  z-index: 4;
  background: rgba(232,185,74,0.18);
  border: 1px solid rgba(232,185,74,0.5);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}

/* Prev / Next arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.hs-arrow:hover {
  background: rgba(232,185,74,0.35);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.hs-prev { left: 24px; }
.hs-next { right: 24px; }

/* Dot nav */
.hs-dots {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hs-dot.hs-dot-active {
  background: var(--gold);
  border-color: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* Progress bar */
.hs-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
  z-index: 10;
}
.hs-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
}

/* Trust strip at bottom */
.hs-trust-strip {
  position: absolute;
  bottom: 56px;
  left: clamp(24px, 8vw, 120px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.hs-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.hs-trust-item i { color: var(--gold); font-size: 0.7rem; }
.hs-trust-sep { color: rgba(255,255,255,0.2); font-size: 0.8rem; }

/* Sub-brand panel (Agri-Tek / Invictus) */
.hs-subbrand-panel {
  position: absolute;
  top: 50%;
  right: 56px;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.8s ease 0.9s;
}
.hs-active .hs-subbrand-panel { opacity: 1; }

.hs-subbrand-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

.hs-subbrand-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.25s;
}
.hs-subbrand-logo-link:hover { transform: scale(1.04); }

/* White box for logos with white backgrounds (Agri-Tek) */
.hs-subbrand-logo-box {
  background: white;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
}
/* Dark/transparent box for logos with transparent backgrounds (Invictus) */
.hs-subbrand-logo-dark {
  background: rgba(10,10,30,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hs-subbrand-logo {
  height: 80px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.hs-subbrand-visit {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.hs-subbrand-logo-link:hover .hs-subbrand-visit { color: #f0d080; }

/* Responsive */
@media (max-width: 768px) {
  .hero-slider { height: 80vh; min-height: 500px; }
  .hs-content { padding: 0 24px; }
  .hs-division-badge { display: none; }
  .hs-trust-strip { display: none; }
  .hs-subbrand-panel { display: none; }
  .hs-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
  .hs-prev { left: 12px; }
  .hs-next { right: 12px; }
  .hs-dots { bottom: 44px; }
}

/* ============================================ STATS BAR ============================================ */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
  margin-top: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 36px 32px; text-align: center; border-right: 1px solid var(--gray-100); position: relative; }
.stat-item:last-child { border-right: none; }
.stat-item::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--gold); transition: width 0.4s ease; }
.stat-item:hover::before { width: 60%; }
.stat-number { font-size: 2.6rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-number span { color: var(--gold-dark); }
.stat-label { font-size: 0.82rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================ RECOGNITION CARDS ============================================ */
.recognition-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; padding: 0 0 8px; }
.recognition-card { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px; padding: 18px 20px; text-decoration: none; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s; }
.recognition-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-2px); border-color: var(--gold); }
.recognition-logo-wrap { flex-shrink: 0; width: 64px; height: 44px; display: flex; align-items: center; justify-content: center; }
.recognition-logo { max-width: 64px; max-height: 44px; width: auto; height: auto; object-fit: contain; }
.recognition-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.recognition-text strong { font-size: 0.82rem; font-weight: 700; color: var(--navy); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recognition-text span { font-size: 0.73rem; color: var(--gray-500); line-height: 1.3; }
@media (max-width: 1024px) { .recognition-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .recognition-row { grid-template-columns: 1fr; } }

/* ============================================ SECTIONS ============================================ */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }
.section-white { background: var(--white); }
.section-light { background: var(--gray-50); }
.section-gray { background: var(--gray-50); }
.section-navy { background: var(--navy); }
.section-navy * { color: var(--white); }
.section-navy .section-eyebrow { color: var(--gold); }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ============================================ SERVICE GRID (kept for other pages) ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(232,185,74,0.3); }
.service-card-icon { width: 64px; height: 64px; background: rgba(26,58,92,0.06); border-radius: var(--border-radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: var(--transition); }
.service-card:hover .service-card-icon { background: var(--gold); }
.service-card-icon i { font-size: 1.6rem; color: var(--navy); transition: var(--transition); }
.service-card:hover .service-card-icon i { color: var(--navy-dark); }
.service-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: var(--gray-600); font-size: 0.9rem; flex: 1; margin-bottom: 20px; }
.service-card-features { list-style: none; margin-bottom: 24px; }
.service-card-features li { font-size: 0.85rem; color: var(--gray-600); padding: 3px 0; display: flex; align-items: center; gap: 8px; }
.service-card-features li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; }
.service-card-link { color: var(--navy); font-weight: 700; font-size: 0.88rem; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-card-link:hover { color: var(--gold-dark); gap: 10px; }
.service-card-image { height: 200px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-image img { transform: scale(1.05); }

/* Service icon bg colors */
.service-card-image-placeholder { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }

/* ============================================ INTERACTIVE SERVICES — GDI STYLE ============================================ */
.svc-interactive-section { background: var(--gray-50); padding: 80px 0; }
.svc-interactive {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(10,25,60,0.18), 0 0 0 1px rgba(10,25,60,0.08);
  min-height: 520px;
}

/* --- Tab sidebar --- */
.svc-tab-list {
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.svc-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  position: relative;
}
.svc-tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.18s;
  border-radius: 0 2px 2px 0;
}
.svc-tab:hover,
.svc-tab-active {
  background: rgba(255,255,255,0.07);
  color: #fff;
  padding-left: 28px;
}
.svc-tab-active::before,
.svc-tab:hover::before {
  transform: scaleY(1);
}
.svc-tab-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
}
.svc-tab-active .svc-tab-icon,
.svc-tab:hover .svc-tab-icon {
  background: var(--gold);
  color: var(--navy-dark);
}
.svc-tab-icon i { font-size: 0.88rem; }
.svc-tab-label { flex: 1; }
.svc-tab-arrow {
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity 0.18s, transform 0.18s;
}
.svc-tab:hover .svc-tab-arrow,
.svc-tab-active .svc-tab-arrow {
  opacity: 1;
}
.svc-tab-all {
  margin-top: auto;
  padding: 20px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.svc-tab-all .btn-outline-navy {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 8px 14px;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-tab-all .btn-outline-navy:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

/* --- Right panel --- */
.svc-panel-wrap {
  position: relative;
  overflow: hidden;
  /* stretch to fill the full grid cell height */
  display: flex;
  flex-direction: column;
}
.svc-panel {
  position: absolute;
  inset: 0;
  background: var(--svc-bg, var(--navy));
  background-size: cover !important;
  background-position: center !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
}
.svc-panel.svc-panel-active {
  opacity: 1;
  pointer-events: auto;
  /* keep absolute so it fills the wrap fully */
  position: absolute;
  inset: 0;
}
/* spacer that forces the wrap to match .svc-interactive min-height */
.svc-panel-wrap::after {
  content: '';
  display: block;
  min-height: 520px;
  width: 0;
}
/* Entering animation — brief offset */
.svc-panel.svc-panel-entering {
  opacity: 0;
}
.svc-panel-inner {
  padding: 48px 52px;
  width: 100%;
}
.svc-panel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232,185,74,0.15);
  border: 1px solid rgba(232,185,74,0.35);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.svc-panel-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.svc-panel-title em {
  font-style: normal;
  color: var(--gold);
}
.svc-panel-desc {
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 24px;
}
.svc-panel-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 32px;
}
.svc-panel-features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 7px;
}
.svc-panel-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s, gap 0.18s, box-shadow 0.18s;
}
.svc-panel-cta:hover {
  background: var(--gold-dark);
  gap: 12px;
  box-shadow: 0 6px 20px rgba(232,185,74,0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .svc-interactive { grid-template-columns: 1fr; min-height: auto; }
  .svc-tab-list { flex-direction: row; flex-wrap: wrap; padding: 0; gap: 0; background: var(--navy); }
  .svc-tab { flex-direction: column; gap: 6px; padding: 12px 10px; flex: 1; min-width: 80px; font-size: 0.72rem; text-align: center; }
  .svc-tab::before { top: auto; left: 0; right: 0; bottom: 0; width: auto; height: 3px; transform: scaleX(0); }
  .svc-tab-active::before, .svc-tab:hover::before { transform: scaleX(1); }
  .svc-tab:hover, .svc-tab-active { padding-left: 10px; }
  .svc-tab-arrow { display: none; }
  .svc-tab-all { display: none; }
  .svc-panel-inner { padding: 36px 28px; }
  .svc-panel-features { gap: 8px 16px; }
}
@media (max-width: 600px) {
  .svc-tab { min-width: 60px; font-size: 0; padding: 14px 6px; }
  .svc-tab-icon { width: 30px; height: 30px; }
  .svc-tab-label { display: none; }
  .svc-panel-inner { padding: 28px 20px; }
  .svc-panel-title { font-size: 1.5rem; }
  .svc-panel-desc { font-size: 0.9rem; }
}

/* ============================================ ABOUT / MISSION SECTION (legacy kept for other pages) ============================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-media { position: relative; }
.about-media-main { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 4/3; background: var(--gray-200); }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--navy-dark); padding: 20px 24px; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-lg); text-align: center; font-weight: 800; }
.about-badge .num { font-size: 2.5rem; line-height: 1; display: block; }
.about-badge .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.about-checklist { list-style: none; margin-top: 1.5rem; }
.about-checklist li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.95rem; }
.about-checklist li:last-child { border-bottom: none; }
.about-checklist li i { color: var(--gold-dark); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   ABOUT SECTION — v4 interactive menu
   ══════════════════════════════════════════════ */

.ab-section {
  background: #07111f;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.ab-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 5% 80%, rgba(232,185,74,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 95% 10%, rgba(96,165,250,0.04) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Inner wrapper ── */
.ab-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* ── TOP: full-width video block ── */
.ab-video-block {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  outline: 1px solid rgba(232,185,74,0.15);
}
.ab-video-el {
  width: 100%;
  display: block;
  max-height: 540px;
  object-fit: contain;
  background: #000;
}

/* INC badge overlay on video */
.ab-video-badge {
  position: absolute;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(7,17,31,0.85);
  border: 1px solid rgba(232,185,74,0.4);
  border-radius: 10px;
  padding: 8px 14px 8px 10px;
  backdrop-filter: blur(10px);
  z-index: 5;
  pointer-events: none;
}
.ab-video-badge img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  flex-shrink: 0;
}
.ab-badge-top {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.ab-badge-bot {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ── BOTTOM: interactive menu row ── */
.ab-menu-row {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── LEFT column: intro + tab list ── */
.ab-menu-left .section-eyebrow {
  display: block;
  margin-bottom: 14px;
}
.ab-title {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}
.ab-title em {
  font-style: normal;
  color: var(--gold);
}
.ab-lead {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
  margin: 0 0 28px;
}

/* Tab navigation list */
.ab-tab-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
}
.ab-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px 14px 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.ab-tab:last-child { border-bottom: none; }
.ab-tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.ab-tab:hover,
.ab-tab-active {
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding-left: 22px;
}
.ab-tab:hover::before,
.ab-tab-active::before { opacity: 1; }
.ab-tab-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(232,185,74,0.08);
  border: 1px solid rgba(232,185,74,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.ab-tab:hover .ab-tab-icon,
.ab-tab-active .ab-tab-icon {
  background: rgba(232,185,74,0.18);
  border-color: rgba(232,185,74,0.4);
}
.ab-tab-icon i { font-size: 0.75rem; color: var(--gold); }
.ab-tab-label { flex: 1; }
.ab-tab-arrow {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s, color 0.2s;
}
.ab-tab:hover .ab-tab-arrow,
.ab-tab-active .ab-tab-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}

.ab-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── RIGHT column: panel wrap + stats ── */
.ab-menu-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Panel container */
.ab-panel-wrap {
  position: relative;
}
.ab-panel {
  display: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 40px;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ab-panel.ab-panel-active {
  display: flex;
  opacity: 1;
}
.ab-panel.ab-panel-entering {
  display: flex;
  opacity: 0;
}
.ab-panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(232,185,74,0.12);
  border: 1px solid rgba(232,185,74,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ab-panel-icon i { font-size: 1.2rem; color: var(--gold); }
.ab-panel-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.ab-panel-desc {
  font-size: 0.91rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.78;
  margin: 0;
}
.ab-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ab-panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
}
.ab-panel-list li i {
  color: var(--gold);
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* Stats strip */
.ab-stats-strip {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 24px;
  gap: 0;
}
.ab-stat-item {
  flex: 1;
  text-align: center;
}
.ab-stat-n {
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.5px;
}
.ab-stat-n sup { font-size: 0.85rem; font-weight: 800; vertical-align: super; }
.ab-stat-l {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 5px;
}
.ab-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.ab-stat-gold .ab-stat-n { color: var(--gold); }
.ab-stat-gold .ab-stat-l { color: rgba(232,185,74,0.5); }


/* ============================================ INDUSTRIES GRID (legacy — kept for other pages) ============================================ */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-card { background: var(--white); border-radius: var(--border-radius); padding: 28px 24px; text-align: center; border: 1px solid var(--gray-100); transition: var(--transition); cursor: pointer; }
.industry-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.industry-card i { font-size: 2.2rem; color: var(--navy); margin-bottom: 14px; transition: var(--transition); }
.industry-card:hover i { color: var(--gold-dark); }
.industry-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.industry-card p { font-size: 0.8rem; color: var(--gray-500); line-height: 1.5; }

/* ── Industries Section — Split Showcase ── */
.ind-section {
  background: #07111f;
  padding: 0 0 100px;
  position: relative;
  overflow: hidden;
}
.ind-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 5% 50%, rgba(232,185,74,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 95% 30%, rgba(96,165,250,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.ind-section .section-eyebrow { color: var(--gold); }

/* Header */
.ind-section-header {
  padding: 80px 0 52px;
}
.ind-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 24px;
}
.ind-header-row .section-title { flex: 1; }

/* Showcase layout */
.ind-showcase {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  height: 580px;
  border: 1px solid rgba(255,255,255,0.07);
}

/* ── LEFT: Feature Panel ── */
.ind-feature-panel {
  position: relative;
  background: #0d1e33;
  overflow: hidden;
  height: 100%;
}
/* Background image layer */
.ind-feature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  transition: transform 0.7s ease, opacity 0.5s ease;
  transform: scale(1.06);
  opacity: 0;
}
.ind-feature-slide.ind-feature-active .ind-feature-bg {
  transform: scale(1.0);
  opacity: 0.6;
}
.ind-feature-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  padding: 48px 52px;
  background: transparent;
}
.ind-feature-slide.ind-feature-active {
  opacity: 1;
  pointer-events: auto;
  position: absolute;
}
.ind-feature-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(var(--ind-rgb,232,185,74),0.10) 0%, transparent 60%),
    linear-gradient(160deg, rgba(7,17,31,0.55) 0%, rgba(7,17,31,0.88) 55%, rgba(7,17,31,0.97) 100%);
  pointer-events: none;
}
/* Large decorative number */
.ind-feature-slide::after {
  content: attr(data-ind);
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
}

.ind-feature-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
}
.ind-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(var(--ind-rgb,232,185,74),0.25);
}
.ind-feature-icon i {
  font-size: 1.5rem;
  color: var(--ind-color, #e8b94a);
}
.ind-feature-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ind-color, #e8b94a);
  margin-bottom: 10px;
  opacity: 0.85;
}
.ind-feature-name {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
}
.ind-feature-detail {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 420px;
}
.ind-feature-services {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.ind-feature-services li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.ind-feature-services li i {
  color: var(--ind-color, #e8b94a);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.ind-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ind-color, #e8b94a);
  color: #07111f;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.3px;
}
.ind-feature-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  opacity: 0.92;
  color: #07111f;
  text-decoration: none;
}
.ind-feature-cta i { font-size: 0.75rem; transition: transform 0.2s ease; }
.ind-feature-cta:hover i { transform: translateX(3px); }

/* ── RIGHT: Selector Grid ── */
.ind-selector {
  background: #0a1929;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}
.ind-selector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(6, 1fr);
  gap: 0;
  flex: 1;
  height: 100%;
}
.ind-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 0 16px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  text-align: left;
  transition: background 0.22s ease;
  overflow: hidden;
  min-height: 0;
}
/* Remove right border from 2nd col */
.ind-tile:nth-child(even) { border-right: none; }
/* Remove bottom border from last 2 */
.ind-tile:nth-child(11),
.ind-tile:nth-child(12) { border-bottom: none; }

.ind-tile:hover,
.ind-tile.ind-tile-active {
  background: rgba(255,255,255,0.05);
}
/* Active accent bar */
.ind-tile-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold, #e8b94a);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  border-radius: 0 2px 2px 0;
}
.ind-tile.ind-tile-active .ind-tile-bar { transform: scaleY(1); }
.ind-tile-num {
  font-size: 0.58rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
  line-height: 1;
}
.ind-tile.ind-tile-active .ind-tile-num { color: var(--gold, #e8b94a); }
.ind-tile-icon {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.22s ease, transform 0.22s ease;
  margin: 1px 0;
}
.ind-tile:hover .ind-tile-icon,
.ind-tile.ind-tile-active .ind-tile-icon {
  color: #fff;
  transform: scale(1.1);
}
.ind-tile.ind-tile-active .ind-tile-icon { color: var(--gold, #e8b94a); }
.ind-tile-name {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  line-height: 1.2;
  transition: color 0.22s ease;
}
.ind-tile:hover .ind-tile-name { color: rgba(255,255,255,0.85); }
.ind-tile.ind-tile-active .ind-tile-name { color: #fff; font-weight: 700; }


/* ============================================ TESTIMONIALS ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); border-radius: var(--border-radius-lg); padding: 36px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; left: 28px; font-size: 5rem; color: var(--gold); opacity: 0.2; font-family: Georgia, serif; line-height: 1; }
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-text { color: var(--gray-700); font-style: italic; line-height: 1.8; margin-bottom: 24px; font-size: 0.92rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-title { font-size: 0.78rem; color: var(--gray-500); }

/* ============================================ LEADERSHIP ============================================ */
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.leader-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition); }
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.leader-photo { height: 280px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.leader-photo-initials { font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.15); letter-spacing: -4px; }
.leader-photo-icon { width: 96px; height: 96px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 3px solid rgba(232,185,74,0.5); display: flex; align-items: center; justify-content: center; }
.leader-photo-icon i { font-size: 2.8rem; color: rgba(255,255,255,0.7); }
.leader-badge { position: absolute; bottom: 16px; left: 16px; background: var(--gold); color: var(--navy-dark); padding: 4px 12px; border-radius: 30px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.leader-info { padding: 28px; }
.leader-name { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.leader-title { font-size: 0.82rem; font-weight: 600; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.leader-bio { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.leader-social { margin-top: 16px; display: flex; gap: 8px; }
.leader-social a { width: 32px; height: 32px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 0.78rem; transition: var(--transition); }
.leader-social a:hover { background: var(--navy); color: var(--white); }

/* ============================================ HISTORY TIMELINE ============================================ */
.history-timeline { max-width: 860px; margin: 0 auto; padding-top: 16px; }
.history-era { display: grid; grid-template-columns: 160px 1fr; gap: 0 32px; margin-bottom: 0; }
.history-era-left { display: flex; flex-direction: column; align-items: center; }
.history-year-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 14px 12px; border-radius: 14px; color: white;
  font-weight: 800; font-size: 0.88rem; text-align: center; width: 120px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15); flex-shrink: 0;
}
.history-year-badge i { font-size: 1.3rem; opacity: 0.9; }
.history-connector { flex: 1; width: 2px; background: var(--gray-100); margin: 8px 0; min-height: 24px; }
.history-card {
  background: var(--gray-50); border-radius: 16px; padding: 28px 32px;
  border: 1px solid var(--gray-100); margin-bottom: 24px;
  transition: box-shadow 0.2s ease;
}
.history-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.history-card-header { padding-left: 16px; margin-bottom: 16px; }
.history-card-header h3 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin: 0 0 4px; }
.history-card-header h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 0; }
.history-list { list-style: none; padding: 0; margin: 0; }
.history-list li { display: flex; align-items: flex-start; gap: 12px; padding: 7px 0; font-size: 0.9rem; color: var(--gray-700); line-height: 1.65; border-bottom: 1px solid var(--gray-100); }
.history-list li:last-child { border-bottom: none; }
.history-list li::before { content: '•'; color: var(--gold-dark); font-size: 1.1rem; flex-shrink: 0; line-height: 1.4; }
.history-sublist { list-style: none; padding: 4px 0 4px 20px; margin: 4px 0 0; }
.history-sublist li { font-size: 0.86rem; color: var(--gray-600); padding: 4px 0; display: flex; align-items: center; }
.history-quote {
  margin: 16px 0 0; padding: 12px 16px; background: white; border-radius: 8px;
  font-style: italic; font-size: 0.9rem; color: var(--gray-600); line-height: 1.6;
}

/* ============================================ CTA BANNER ============================================ */
.cta-banner { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-banner-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner-text h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner-text p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 560px; }
.cta-banner-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================ NEWS ============================================ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition); display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(26,58,92,0.07); color: var(--navy); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 30px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.news-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.news-card h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.5; }
.news-card h3 a { color: var(--navy); transition: var(--transition); }
.news-card h3 a:hover { color: var(--gold-dark); }
.news-card-meta { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.news-card p { font-size: 0.87rem; color: var(--gray-600); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.news-card-link { color: var(--navy); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; margin-top: auto; transition: var(--transition); }
.news-card-link:hover { color: var(--gold-dark); gap: 10px; }
.news-thumb { position:relative; height:200px; overflow:hidden; background:var(--navy-dark); }
.news-thumb img { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; transition:transform 0.5s ease; }
.news-card:hover .news-thumb img { transform:scale(1.04); }
.news-thumb-fallback { width:100%; height:100%; background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%); display:flex; align-items:center; justify-content:center; }
.news-thumb-badge { position:absolute; bottom:10px; left:12px; background:rgba(8,24,48,0.82); color:white; font-size:0.68rem; font-weight:800; padding:4px 10px; border-radius:20px; text-transform:uppercase; letter-spacing:0.5px; display:flex; align-items:center; gap:5px; backdrop-filter:blur(4px); }
/* Logo-only card header — fixed height to match news-thumb */
.news-logo-strip { height:200px; overflow:hidden; background:#fff; border-bottom:1px solid var(--gray-100); display:flex; align-items:center; justify-content:center; padding:24px; }
.news-logo-strip img { max-height:130px; max-width:95%; width:auto; object-fit:contain; display:block; }
.news-logo-strip img.wide { max-height:none; height:100%; max-width:100%; object-fit:contain; }
.news-thumb-badge i { color:var(--gold); font-size:0.6rem; }

/* ============================================ PAGE HERO (inner pages) ============================================ */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 80px 0 60px; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 620px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }

/* ============================================ SERVICE DETAIL ============================================ */
.service-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.service-detail-main h2 { margin-bottom: 1rem; }
.service-detail-main p { margin-bottom: 1rem; color: var(--gray-600); font-size: 0.95rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 2rem 0; }
.feature-item { display: flex; gap: 12px; padding: 16px; background: var(--gray-50); border-radius: var(--border-radius); border: 1px solid var(--gray-100); }
.feature-item i { color: var(--gold-dark); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.feature-item-text h5 { font-size: 0.9rem; margin-bottom: 3px; color: var(--navy); }
.feature-item-text p { font-size: 0.82rem; color: var(--gray-500); margin: 0; }
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--white); border-radius: var(--border-radius-lg); padding: 32px; border: 1px solid var(--gray-100); box-shadow: var(--shadow); margin-bottom: 24px; }
.sidebar-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-100); }
.sidebar-services { list-style: none; }
.sidebar-services li a { display: flex; align-items: center; gap: 10px; padding: 10px 0; color: var(--gray-700); font-size: 0.88rem; border-bottom: 1px solid var(--gray-100); transition: var(--transition); }
.sidebar-services li a:hover { color: var(--navy); padding-left: 4px; }
.sidebar-services li a i { color: var(--gold-dark); font-size: 0.75rem; }
.sidebar-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: var(--border-radius-lg); padding: 32px; text-align: center; }
.sidebar-cta h4 { color: var(--white); margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 20px; }
.sidebar-cta .phone { color: var(--gold); font-size: 1.2rem; font-weight: 800; display: block; margin-bottom: 16px; }

/* ============================================ CONTACT FORM ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: start; }
.contact-form { background: var(--white); border-radius: var(--border-radius-lg); padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200); border-radius: var(--border-radius); font-family: var(--font); font-size: 0.92rem; color: var(--text); transition: var(--transition); background: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,58,92,0.08); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info-list { list-style: none; margin-top: 2rem; }
.contact-info-list li { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--gray-100); }
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-icon { width: 48px; height: 48px; background: rgba(26,58,92,0.06); border-radius: var(--border-radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon i { font-size: 1.1rem; color: var(--navy); }
.contact-info-text h5 { font-size: 0.88rem; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-info-text a, .contact-info-text span { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-info-text a:hover { color: var(--gold-dark); }

/* ============================================ AWARDS / RECOGNITION ============================================ */
.awards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
.award-item { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--gray-100); padding: 18px 22px; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); transition: box-shadow 0.2s, border-color 0.2s; }
.award-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: rgba(232,185,74,0.35); }
.award-item i { font-size: 1.6rem; color: var(--gold-dark); flex-shrink: 0; }
.award-item img { height: 44px; width: 44px; object-fit: contain; flex-shrink: 0; }
.award-item-text { line-height: 1.3; min-width: 0; }
.award-item-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.award-item-text span { font-size: 0.76rem; color: var(--gray-500); }
@media (max-width: 768px) { .awards-row { grid-template-columns: 1fr 1fr; gap: 12px; } }
@media (max-width: 480px) { .awards-row { grid-template-columns: 1fr; } }

/* ============================================ TECH / EHUB SECTION ============================================ */
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tech-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--border-radius-lg); padding: 32px; transition: var(--transition); }
.tech-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(232,185,74,0.3); }
.tech-item i { font-size: 2rem; color: var(--gold); margin-bottom: 16px; display: block; }
.tech-item h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.tech-item p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ── eHub Interactive Section ── */
.ehub-section {
  background: #07111f;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.ehub-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(96,165,250,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 70%, rgba(232,185,74,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.ehub-section .section-eyebrow { color: var(--gold); }

/* Header row */
.ehub-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}
.ehub-header .section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* Main panel */
.ehub-panel {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  min-height: 460px;
}

/* LEFT NAV */
.ehub-nav {
  background: #0a1929;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.ehub-nav-intro {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  padding: 28px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}
.ehub-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  text-align: left;
  transition: background 0.22s ease;
  position: relative;
}
.ehub-tab:last-child { border-bottom: none; }
.ehub-tab:hover { background: rgba(255,255,255,0.04); }
.ehub-tab.ehub-tab-active { background: rgba(255,255,255,0.06); }
/* Left accent bar */
.ehub-tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold, #e8b94a);
  border-radius: 0 2px 2px 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.ehub-tab.ehub-tab-active::before { transform: scaleY(1); }

.ehub-tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.ehub-tab-icon i {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.22s ease;
}
.ehub-tab.ehub-tab-active .ehub-tab-icon {
  background: rgba(232,185,74,0.12);
  border-color: rgba(232,185,74,0.3);
}
.ehub-tab.ehub-tab-active .ehub-tab-icon i { color: var(--gold, #e8b94a); }

.ehub-tab-text { flex: 1; min-width: 0; }
.ehub-tab-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: color 0.22s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ehub-tab-sub {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  margin-top: 2px;
  transition: color 0.22s ease;
}
.ehub-tab.ehub-tab-active .ehub-tab-label { color: #fff; }
.ehub-tab.ehub-tab-active .ehub-tab-sub { color: rgba(255,255,255,0.5); }
.ehub-tab:hover .ehub-tab-label { color: rgba(255,255,255,0.8); }

.ehub-tab-arrow {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.15);
  flex-shrink: 0;
  transition: color 0.22s ease, transform 0.22s ease;
}
.ehub-tab.ehub-tab-active .ehub-tab-arrow {
  color: var(--gold, #e8b94a);
  transform: translateX(2px);
}

/* RIGHT DISPLAY */
.ehub-display {
  background: #0d1e33;
  position: relative;
  overflow: hidden;
}
.ehub-feature {
  position: absolute;
  inset: 0;
  padding: 44px 48px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
}
.ehub-feature.ehub-feature-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  position: relative;
}
/* Subtle glow matching feature color */
.ehub-feature::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--ehub-rgb,232,185,74),0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ehub-feature-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.ehub-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(0,0,0,0.2);
}
.ehub-feature-icon i {
  font-size: 1.4rem;
  color: var(--ehub-color, #e8b94a);
}
.ehub-feature-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ehub-color, #e8b94a);
  opacity: 0.8;
  margin-bottom: 4px;
}
.ehub-feature-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.ehub-feature-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 520px;
}
.ehub-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.ehub-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.ehub-feature-list li:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(var(--ehub-rgb,232,185,74),0.2);
}
.ehub-feature-list li i {
  color: var(--ehub-color, #e8b94a);
  font-size: 0.78rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

/* ============================================ FOOTER ============================================ */
.site-footer { background: var(--gray-900); color: var(--white); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; }
.footer-brand .footer-logo { display: flex; align-items: center; margin-bottom: 18px; }
.footer-brand { align-self: start; }
.footer-logo-img { height: 110px; width: auto; display: block; background: white; border-radius: 10px; padding: 8px; }
.footer-brand p { color: var(--gray-400); font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.social-icon-link:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--gray-400); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-400); font-size: 0.88rem; margin-bottom: 12px; }
.footer-contact-list li i { color: var(--gold); margin-top: 2px; width: 14px; flex-shrink: 0; }
.footer-contact-list li a { color: var(--gray-300); }
.footer-contact-list li a:hover { color: var(--gold); }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 20px 0; }

/* ── Credit Card Strip ── */
.footer-brand-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-cards-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.8px; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
  flex-shrink: 0;
}
.footer-cards-label i { color: var(--gold); font-size: 0.7rem; }
.footer-cards-img {
  display: block;
  width: 100%; max-width: 200px; height: auto;
  object-fit: contain; object-position: left center;
  opacity: 0.88;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
  transition: opacity 0.2s;
}
.footer-cards-img:hover { opacity: 1; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: var(--gray-500); font-size: 0.82rem; }
.footer-tagline { color: var(--gold); font-size: 0.78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }

/* ============================================ LEADER PHOTO CARDS ============================================ */
.leader-photo-real {
  height: 320px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.leader-photo-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.leader-card:hover .leader-photo-real img {
  transform: scale(1.04);
}
.leader-photo-real .leader-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
/* CEO featured card */
.leader-ceo-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.leader-ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================ RESPONSIVE ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  /* About responsive */
  .ab-inner { padding: 0 28px; gap: 40px; }
  .ab-section { padding: 72px 0 80px; }
  .ab-menu-row { grid-template-columns: 1fr; gap: 40px; }
  .ab-panel { padding: 28px 28px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .ind-showcase { grid-template-columns: 1fr; height: auto; }
  .ind-selector { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); height: auto; }
  .ind-selector-grid { grid-template-columns: repeat(4, 1fr); }
  .ind-feature-panel { height: 480px; }
  .ind-feature-slide { padding: 36px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .ehub-panel { grid-template-columns: 280px 1fr; }
  .ehub-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero { min-height: 70vh; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .topbar-left span:last-child { display: none; }  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-selector-grid { grid-template-columns: repeat(3, 1fr); }
  .ind-header-row { flex-direction: column; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .tech-grid { grid-template-columns: 1fr; }
  .ehub-panel { grid-template-columns: 1fr; }
  .ehub-nav { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .ehub-feature { padding: 32px 28px; }
  .ehub-feature-list { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  /* About mobile */
  .ab-inner { padding: 0 20px; gap: 32px; }
  .ab-section { padding: 60px 0; }
  .ab-title { font-size: 1.7rem; }
  .ab-stats-strip { flex-wrap: wrap; gap: 12px; padding: 16px 18px; }
  .ab-stat-item { flex: 0 0 calc(50% - 6px); }
  .ab-stat-div { display: none; }
}
@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .ind-selector-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-feature-name { font-size: 1.6rem; }
  .ind-feature-services { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ─── AFFILIATION LOGO BAR ────────────────────────────────────────────────── */
/* ─── AFFILIATION LOGO TICKER (home page) ─────────────────────────────────── */
.affil-ticker-section {
  background: #f8f9fb;
  border-top: 1px solid #e8ecf1;
  border-bottom: 1px solid #e8ecf1;
  padding: 22px 0 20px;
  overflow: hidden;
}
.affil-ticker-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a99aa;
  margin-bottom: 20px;
}
.affil-ticker-label i {
  color: var(--gold, #c9a227);
  margin-right: 6px;
}
.affil-ticker-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.affil-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: affilScroll 48s linear infinite;
}
.affil-ticker-track:hover {
  animation-play-state: paused;
}
@keyframes affilScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.affil-ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 36px;
  border-right: 1px solid #d8dfe8;
  flex-shrink: 0;
  text-decoration: none;
}
.affil-ticker-item img {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(10%) opacity(0.88);
  transition: filter 0.25s ease, transform 0.25s ease;
}
.affil-ticker-item img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}
/* Award cards inside the ticker */
.affil-ticker-award {
  gap: 14px;
  padding: 8px 36px;
  cursor: pointer;
}
.affil-ticker-award:hover {
  background: rgba(26,58,92,0.04);
  border-radius: 10px;
}
.affil-ticker-award-logo {
  height: 52px !important;
  width: auto !important;
  max-width: 52px !important;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: normal !important;
  filter: none !important;
}
.affil-ticker-award-logo-round {
  border-radius: 50%;
}
.affil-ticker-award-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}
.affil-ticker-award-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.affil-ticker-award-text span {
  font-size: 0.72rem;
  color: var(--gray-500);
}
@media (max-width: 900px) {
  .affil-ticker-item { padding: 6px 24px; }
  .affil-ticker-item img { height: 46px; max-width: 110px; }
  .affil-ticker-award { padding: 6px 24px; }
  .affil-ticker-award-logo { height: 42px !important; max-width: 42px !important; }
}
@media (max-width: 600px) {
  .affil-ticker-item { padding: 6px 18px; }
  .affil-ticker-item img { height: 38px; max-width: 90px; }
  .affil-ticker-award { padding: 6px 18px; gap: 10px; }
  .affil-ticker-award-logo { height: 36px !important; max-width: 36px !important; }
  .affil-ticker-award-text strong { font-size: 0.76rem; }
  .affil-ticker-award-text span { font-size: 0.68rem; }
}

/* ─── AFFILIATIONS PAGE LOGO GRID ─────────────────────────────────────────── */
.affil-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.affil-logo-card {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform 0.25s ease;
  cursor: default;
  min-height: 120px;
}
.affil-logo-card:hover {
  transform: translateY(-3px);
}
.affil-logo-card img {
  max-height: 54px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(15%) opacity(0.85);
  transition: filter 0.25s ease;
}
.affil-logo-card:hover img {
  filter: grayscale(0%) opacity(1);
}
.affil-logo-card-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7a8d;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
@media (max-width: 900px) {
  .affil-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .affil-ticker-label { width: 110px; font-size: 0.6rem; }
  .affil-ticker-track { padding-left: 120px; }
}
@media (max-width: 640px) {
  .affil-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .affil-ticker-label { display: none; }
  .affil-ticker-track { padding-left: 16px; }
  .affil-ticker-item { padding: 0 24px; }
  .affil-ticker-item img { height: 36px; max-width: 100px; }
}

/* ============================================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   Breakpoints: 768px (tablet/mobile), 480px (small mobile),
                360px (very small), 1024px (large tablet)
   ============================================================ */

/* ── Touch target minimum sizes ── */
@media (max-width: 768px) {
  a, button, [role="button"] { min-height: 44px; min-width: 44px; }
  .btn { min-height: 48px; justify-content: center; }
  .btn-sm { min-height: 40px; padding: 10px 18px; font-size: 0.85rem; }

  /* ── Top bar ── */
  .topbar { padding: 6px 0; font-size: 0.75rem; }
  .topbar-inner { flex-wrap: wrap; gap: 6px; justify-content: center; }
  .topbar-left { gap: 10px; font-size: 0.75rem; }
  .topbar-left span:last-child { display: none; }
  .topbar-right { gap: 6px; }
  .topbar-btn { padding: 4px 10px !important; font-size: 0.70rem !important; }
  .topbar-divider { display: none; }
  .topbar-right a[aria-label] { width: 26px; height: 26px; }

  /* ── Main header ── */
  .header-inner { height: 64px; }
  .site-logo-img { height: 52px; }

  /* ── Hero slider ── */
  .hero-slider { height: auto; min-height: 100svh; max-height: none; }
  .hs-content {
    padding: 80px 20px 100px;
    justify-content: flex-end;
    max-width: 100%;
  }
  .hs-title { font-size: clamp(1.6rem, 7vw, 2.4rem); letter-spacing: -0.5px; margin-bottom: 14px; }
  .hs-desc { font-size: 0.9rem; line-height: 1.65; margin-bottom: 24px; max-width: 100%; }
  .hs-eyebrow { font-size: 0.65rem; padding: 5px 12px; letter-spacing: 1.5px; margin-bottom: 14px; }
  .hs-actions { gap: 10px; flex-direction: column; align-items: stretch; }
  .hs-actions .btn { width: 100%; justify-content: center; font-size: 0.9rem; padding: 14px 20px; }
  /* recognition badges — stack on mobile */
  .hs-recognition { margin-top: 16px; }
  .hs-recog-row { flex-wrap: wrap; gap: 6px; }
  .hs-recog-badge { flex: 0 0 calc(50% - 3px); padding: 6px 8px; gap: 6px; border-radius: 8px; }
  .hs-recog-logo { width: 32px; height: 32px; }
  .hs-recog-logo-wide { max-width: 48px; height: 24px; }
  .hs-recog-text strong { font-size: 0.66rem; white-space: normal; line-height: 1.2; }
  .hs-recog-text span { font-size: 0.59rem; white-space: normal; }
  .hs-dots { bottom: 36px; }
  .hs-arrow { display: none; }

  /* ── Stats bar ── */
  .stats-bar { border-radius: 0; margin: 0; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px 16px; border-right: 1px solid var(--gray-100); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--gray-100); }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.72rem; }

  /* ── Section padding ── */
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-lg { padding: 72px 0; }
  .section-header { margin-bottom: 36px; }
  .container { padding: 0 16px; }

  /* ── Services grid ── */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card-body { padding: 22px 20px; }

  /* ── Interactive services ── */
  .svc-interactive-section { padding: 48px 0; }
  .svc-interactive { grid-template-columns: 1fr; }
  .svc-tab-list { flex-direction: row; flex-wrap: wrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 4px; gap: 0; }
  .svc-tab { font-size: 0; padding: 10px 8px; flex: 0 0 auto; min-width: 56px; justify-content: center; }
  .svc-tab-icon { width: 28px; height: 28px; }
  .svc-tab-label { display: none; }
  .svc-panel-inner { padding: 24px 18px; }
  .svc-panel-title { font-size: 1.35rem; }

  /* ── About section ── */
  .ab-section { padding: 52px 0 60px; }
  .ab-inner { padding: 0 16px; gap: 28px; }
  .ab-title { font-size: 1.55rem; }
  .ab-stats-strip { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
  .ab-stat-item { flex: 0 0 calc(50% - 5px); }
  .ab-stat-div { display: none; }

  /* ── Industries grid ── */
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ind-showcase { grid-template-columns: 1fr; height: auto; }
  .ind-selector { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .ind-selector-grid { grid-template-columns: repeat(3, 1fr); }
  .ind-feature-panel { height: 420px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }

  /* ── Leadership grid ── */
  .leadership-grid { grid-template-columns: 1fr; gap: 20px; }
  /* CEO profile horizontal → vertical */
  .leader-ceo { flex-direction: column; align-items: center; text-align: center; }
  .leader-ceo-photo { width: 160px; height: 160px; margin-bottom: 4px; }

  /* ── News grid ── */
  .news-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col h4 { font-size: 0.9rem; margin-bottom: 12px; }
  .footer-col ul li { font-size: 0.88rem; }
  .footer-contact-list li { font-size: 0.85rem; }
  .footer-brand-cards { margin-top: 16px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .footer-tagline { font-size: 0.72rem; }

  /* ── Contact form ── */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }

  /* ── CTA banner ── */
  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cta-banner-inner .btn { width: 100%; justify-content: center; }

  /* ── Technology section ── */
  .tech-grid { grid-template-columns: 1fr; }
  .ehub-panel { grid-template-columns: 1fr; }
  .ehub-nav { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); max-height: none; }
  .ehub-feature { padding: 24px 18px; }
  .ehub-feature-list { grid-template-columns: 1fr; }

  /* ── Mobile nav enhancements ── */
  .mobile-nav.open { max-height: calc(100vh - 110px); overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .mobile-nav ul { padding: 0 16px; }
  .mobile-nav li a { padding: 14px 10px; font-size: 0.92rem; min-height: 48px; display: flex; align-items: center; }
  .mobile-sub a { padding-left: 30px !important; font-size: 0.85rem !important; min-height: 44px !important; }
  .mobile-nav-btn { margin: 3px 8px; padding: 12px 16px; font-size: 0.85rem; min-height: 44px; }

  /* ── Section headers centered on mobile ── */
  .section-header:not(.left) .section-subtitle { max-width: 100%; }

  /* ── Page hero (inner pages) ── */
  .hero { min-height: 52vh; padding: 70px 0 50px; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(1.7rem, 6.5vw, 2.5rem); }
  .hero-desc { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 14px; }

  /* ── Recognition cards (standalone section) ── */
  .recognition-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .recognition-card { padding: 12px 14px; gap: 10px; }
  .recognition-logo-wrap { width: 48px; height: 36px; }
  .recognition-logo { max-width: 48px; max-height: 36px; }
  .recognition-text strong { font-size: 0.75rem; white-space: normal; }
  .recognition-text span { font-size: 0.67rem; }

  /* ── Service detail page ── */
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }

  /* ── Feature list ── */
  .feature-list { grid-template-columns: 1fr; gap: 10px; }

  /* ── Blog ── */
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-card-body { padding: 20px 18px; }

  /* ── Projects grid ── */
  .projects-grid { grid-template-columns: 1fr; }

  /* ── Brands / eco page ── */
  .brands-grid { grid-template-columns: 1fr; gap: 20px; }
  .eco-grid { grid-template-columns: 1fr; }

  /* ── Podcast ── */
  .podcast-grid { grid-template-columns: 1fr; }

  /* ── Page inner sections ── */
  h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  h2 { font-size: clamp(1.25rem, 4.5vw, 1.8rem); }
  h3 { font-size: clamp(1.1rem, 3.5vw, 1.35rem); }

  /* ── Prevent horizontal overflow ── */
  body { overflow-x: hidden; }
  .hero-slider, .hs-slide, .hs-bg { max-width: 100vw; }

  /* ── Hamburger larger tap area ── */
  .hamburger { width: 44px; height: 44px; }
}

/* ── Very small phones (≤ 480px) ── */
@media (max-width: 480px) {
  .topbar { display: none; } /* hide entirely on very small screens */
  .header-inner { height: 60px; }
  .site-logo-img { height: 46px; }

  .hero-slider { min-height: 100svh; }
  .hs-content { padding: 70px 16px 90px; }
  .hs-title { font-size: clamp(1.45rem, 8vw, 2rem); }
  .hs-desc { font-size: 0.85rem; }
  .hs-recog-badge { flex: 0 0 calc(50% - 3px); padding: 5px 7px; }
  .hs-recog-text strong { font-size: 0.62rem; }
  .hs-recog-text span { font-size: 0.56rem; }

  .industries-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ind-selector-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-feature-name { font-size: 1.4rem; }

  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 18px 12px; }
  .stat-number { font-size: 1.7rem; }

  .recognition-row { grid-template-columns: 1fr; }

  .btn-lg { padding: 13px 18px; font-size: 0.9rem; }
  .container { padding: 0 14px; }

  .footer-col { padding-bottom: 0; }
  .footer-top { padding: 40px 0 32px; }
  .footer-bottom { padding: 16px 0; }
  .footer-bottom-inner p { font-size: 0.78rem; }

  .mobile-nav ul { padding: 0 12px; }
  .mobile-nav li a { font-size: 0.88rem; }
}

/* ── Landscape orientation on phones ── */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-slider { min-height: 100vw; height: auto; }
  .hs-content { padding: 60px 24px 80px; }
  .hs-title { font-size: clamp(1.3rem, 4vw, 1.8rem); }
  .hs-desc { font-size: 0.82rem; margin-bottom: 16px; }
  .hs-actions { flex-direction: row; }
  .hs-actions .btn { width: auto; }
}

/* ── Large tablet (769-1024px) — partial fixes ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .container { padding: 0 20px; }
  .header-inner { height: 70px; }
  .nav-link { font-size: 0.82rem; padding: 6px 10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-slider { height: 75vh; }
  .hs-content { padding: 60px 40px 110px; }
  .recognition-row { grid-template-columns: repeat(2, 1fr); }
  .hs-recog-row { flex-wrap: wrap; gap: 8px; }
  .hs-recog-badge { flex: 0 0 calc(50% - 4px); }
}

/* ============================================================
   PERFORMANCE & CORE WEB VITALS OPTIMIZATIONS
   ============================================================ */

/* Eliminate layout shift for images by reserving aspect ratios */
img { content-visibility: auto; }

/* Reduce CLS on logo — explicit dimensions */
.site-logo-img { width: auto; height: 54px; }
.footer-logo-img { width: auto; height: 52px; }

/* Lazy-load below-fold sections */
.section, .section-lg, .section-sm { content-visibility: auto; contain-intrinsic-size: 0 600px; }

/* Prevent invisible text during font load */
.site-footer, .main-header, .topbar, .hero-slider { font-display: swap; }

/* Reduce paint area for sticky header */
.main-header { will-change: box-shadow; }

/* ============================================================
   SEMANTIC / ACCESSIBILITY ENHANCEMENTS
   ============================================================ */

/* Skip-to-content link (hidden until focused) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy);
  color: white;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* Focus styles for keyboard navigation */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Screen-reader only utility */
.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;
}

/* ============================================================
   INTERNAL LINK / RELATED-CONTENT CARDS
   ============================================================ */

/* Related services / industries link block */
.related-links-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 40px 0;
}
.related-links-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.related-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: white;
  border: 1px solid var(--gray-300);
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 40px;
  text-decoration: none;
  transition: var(--transition);
}
.related-link-chip:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.related-link-chip i { font-size: 0.75rem; opacity: 0.7; }

/* ============================================================
   LOCAL SEO — SERVICE AREA SECTION
   ============================================================ */

.service-area-section {
  background: var(--white);
  padding: 56px 0 48px;
  border-top: 1px solid var(--gray-200);
}
.service-area-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-area-section p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 640px;
  margin-bottom: 32px;
}
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.service-area-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-area-card:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-1px);
}
.service-area-card i { color: var(--gold); font-size: 0.78rem; flex-shrink: 0; }
.service-area-card:hover i { color: var(--gold-light); }

@media (max-width: 900px) {
  .service-area-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .service-area-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .service-area-card { font-size: 0.78rem; padding: 10px 12px; }
}

/* ============================================================
   TRUST SIGNALS BAR (below hero or CTA sections)
   ============================================================ */

.trust-signals-bar {
  background: var(--navy-dark);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-signals-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-signal-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.trust-signal-item i { color: var(--gold); font-size: 0.85rem; }

@media (max-width: 600px) {
  .trust-signals-inner { gap: 12px; justify-content: flex-start; padding: 0 16px; }
  .trust-signal-item { font-size: 0.75rem; }
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  transition: background 0.18s;
  line-height: 1.45;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question[aria-expanded="true"] { background: var(--gray-50); color: var(--gold-dark); }
.faq-icon {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--gold-dark);
  transition: transform 0.25s ease;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
  padding: 0 24px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 24px 20px;
}

@media (max-width: 640px) {
  .faq-question { padding: 16px 18px; font-size: 0.93rem; }
  .faq-answer { padding: 0 18px; }
  .faq-answer.open { padding: 0 18px 16px; }
}

/* ── Local SEO page utilities ─────────────────────────────────────────────── */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .two-col-grid { grid-template-columns: 1fr; gap: 32px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,185,74,0.12); color: var(--gold);
  border: 1px solid rgba(232,185,74,0.3); border-radius: 100px;
  padding: 6px 14px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}

.btn-large { padding: 16px 32px; font-size: 1rem; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gray-100); padding: 20px 0; }
.faq-item:first-child { border-top: 1px solid var(--gray-100); }
.faq-q { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin: 0 0 10px; line-height: 1.4; }
.faq-a p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

.int-link-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 100px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  font-size: 0.78rem; font-weight: 600; color: var(--navy);
  text-decoration: none; transition: background 0.15s, border-color 0.15s;
}
.int-link-chip:hover { background: #fff; border-color: var(--gold); color: var(--navy); }
.int-link-chip i { color: var(--gold); font-size: 0.7rem; }

.cta-centered { text-align: center; padding: 20px 0; }
.cta-centered h2 { color: #fff; margin-bottom: 14px; }
.cta-centered p { color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
