@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
/* ── Dark theme — brightened ── */
--c-bg:         #050f1c;
--c-surface:    #0a1e32;
--c-surface2:   #102742;
--c-border:     rgba(56,152,255,0.14);
--c-border-hi:  rgba(56,152,255,0.32);
--c-text:       #e8f3ff;
--c-muted:      #8ab4d4;
--c-blue:       #1a8cff;
--c-blue-lt:    #4da8ff;
--c-blue-dk:    #0066cc;
--c-blue-pale:  #102742;
--c-orange:     #ff6030;
--c-green:      #4cd964;
--c-amber:      #ffc040;
--c-accent:     #1a8cff;
--c-accent2:    #ff6030;
--c-gold:       #ffc040;
--c-danger:     #ff4444;
--shadow-sm:    0 2px 8px rgba(0,0,0,0.4);
--shadow-md:    0 8px 32px rgba(0,0,0,0.5);
--shadow-lg:    0 20px 60px rgba(0,0,0,0.6);
--shadow-glow:  0 0 48px rgba(26,140,255,0.38);
--shadow-glow-orange: 0 0 32px rgba(255,96,48,0.35);
--font-display: 'Outfit', sans-serif;
--font-body:    'Plus Jakarta Sans', sans-serif;
--radius-sm:    6px;
--radius-md:    12px;
--radius-lg:    20px;
--radius-full:  999px;
--ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
--header-h:     72px;
--max-w:        1280px;
--gutter:       clamp(20px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased }
body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }
ul { list-style: none }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--c-text) }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem) }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem) }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.75rem) }
h4 { font-size: clamp(1rem, 1.8vw, 1.3rem) }
p  { color: var(--c-muted); line-height: 1.8; font-size: 1rem }

.text-accent { color: var(--c-accent) }

.text-gold { color: var(--c-gold) }

.text-muted { color: var(--c-muted) }

.text-orange { color: var(--c-orange) }

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

.section { padding: clamp(60px, 8vw, 120px) 0 }

.section-sm { padding: clamp(40px, 5vw, 80px) 0 }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px }

@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 768px) { .grid-3, .grid-2 { grid-template-columns: 1fr }
}

@media (max-width: 640px) { .grid-4 { grid-template-columns: 1fr }
}

.btn {
display: inline-flex; align-items: center; gap: 8px;
padding: 13px 28px; border-radius: var(--radius-full);
font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
transition: all 0.25s var(--ease-out); white-space: nowrap }

.btn-primary {
background: var(--c-blue);
color: #fff;
box-shadow: 0 4px 20px rgba(26,140,255,0.4) }

.btn-primary:hover {
background: var(--c-blue-lt);
transform: translateY(-2px);
box-shadow: 0 6px 28px rgba(26,140,255,0.55) }

.btn-outline {
border: 1.5px solid var(--c-border-hi);
color: var(--c-text);
background: rgba(26,140,255,0.08) }

.btn-outline:hover {
border-color: var(--c-blue);
color: var(--c-blue-lt);
background: rgba(26,140,255,0.12) }

.btn-orange {
background: var(--c-orange);
color: #fff;
box-shadow: 0 4px 20px rgba(255,96,48,0.35) }

.btn-orange:hover {
background: #ff6a3d;
transform: translateY(-2px);
box-shadow: 0 6px 28px rgba(255,96,48,0.5) }

.btn-ghost { color: var(--c-blue-lt); padding-left: 0 }

.btn-ghost:hover { gap: 12px }

.btn-ghost::after { content: '→' }

.card {
background: var(--c-surface);
border: 1px solid var(--c-border);
border-radius: var(--radius-lg);
padding: 32px;
transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
position: relative }

.card:hover {
transform: translateY(-5px);
border-color: var(--c-blue);
box-shadow: 0 12px 40px rgba(26,140,255,0.22) }

.card-icon {
width: 52px; height: 52px;
background: rgba(26,140,255,0.12);
border-radius: var(--radius-md);
display: flex; align-items: center; justify-content: center;
font-size: 1.5rem; margin-bottom: 20px;
color: var(--c-blue-lt) }

.card h3 { margin-bottom: 10px; font-size: 1.15rem; color: var(--c-text) }

.card p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.7 }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px }

.section-eyebrow {
display: inline-block;
font-family: var(--font-display); font-size: 0.72rem;
font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
color: var(--c-amber);
margin-bottom: 14px;
padding: 5px 14px; border-radius: var(--radius-full);
background: rgba(255,192,64,0.1);
border: 1px solid rgba(255,192,64,0.28) }

.section-header h2 { margin-bottom: 16px; color: var(--c-text) }

.section-header p { font-size: 1.05rem; color: var(--c-muted); line-height: 1.8 }

.accent-line {
width: 44px; height: 3px;
background: linear-gradient(90deg, var(--c-blue), var(--c-amber));
border-radius: 2px;
margin-bottom: 20px }

.stat-badge {
text-align: center; padding: 24px;
background: var(--c-surface); border: 1px solid var(--c-border);
border-radius: var(--radius-md) }

.stat-badge .num {
font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
color: var(--c-blue-lt); line-height: 1 }

.stat-badge .label { font-size: 0.875rem; color: var(--c-muted); margin-top: 8px; line-height: 1.5 }

.page-hero {
padding: calc(var(--header-h) + 60px) 0 60px;
background: linear-gradient(135deg, var(--c-surface) 0%, var(--c-bg) 60%);
border-bottom: 1px solid var(--c-border);
position: relative; overflow: hidden }

.page-hero::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(2,113,192,0.09) 0%, transparent 70%) }

.page-hero::after {
content: '';
position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
background: linear-gradient(90deg, transparent, var(--c-blue), var(--c-orange), transparent);
opacity: 0.4 }

.page-hero .container { position: relative; z-index: 1 }
.page-hero h1, .page-hero h2, .page-hero h3 { color: #ffffff }
.page-hero p { color: rgba(221,234,248,0.9) }
.page-hero .breadcrumb { color: rgba(221,234,248,0.7) }
.page-hero .breadcrumb a { color: rgba(221,234,248,0.9) }
.page-hero .section-eyebrow { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); color: #ffffff }
.page-hero .tag { color: rgba(221,234,248,0.75); border-color: rgba(221,234,248,0.2) }


.breadcrumb { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 16px }

.breadcrumb a { color: var(--c-blue-lt) }

.breadcrumb span::before { content: ' / ' }

.tag {
display: inline-flex; align-items: center; gap: 6px;
font-size: 0.8rem; font-weight: 500; color: var(--c-muted);
padding: 4px 12px; border: 1px solid var(--c-border);
border-radius: var(--radius-full) }

/* ══════════════════════════════════════════════════════
   HEADER & NAVIGATION
══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   HEADER — desktop
═══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
   HEADER & NAVIGATION
══════════════════════════════════════════════════════ */

/* iOS scroll lock — applied to body when nav is open */
/* Scroll lock handled via nav-scroll-locked class injected by components.js */

/* ═══════════════════════════════════════
   HEADER  (desktop + tablet + mobile)
═══════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(5,15,28,0.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(26,140,255,0.2);
  transition: background 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: rgba(5,15,28,0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
#site-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-amber), var(--c-green), var(--c-orange));
}

.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
  height: 100%;
  display: flex; align-items: center; gap: 24px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; display: block; }

/* Desktop nav — centered in remaining space */
.desk-nav { flex: 1; display: flex; justify-content: center; }
.nav-list  { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600; color: var(--c-text);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.nav-link:hover, .nav-link.active { color: var(--c-blue-lt); background: rgba(26,140,255,0.1); }

.chevron { font-size: 0.6rem; transition: transform 0.2s; margin-left: 2px; flex-shrink: 0; }
.has-dropdown.dd-open > .nav-link .chevron { transform: rotate(180deg); }
.has-dropdown { position: relative; }

/* Desktop dropdown panels */
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 220px;
  background: var(--c-surface2); border: 1px solid var(--c-border-hi);
  border-radius: var(--radius-md); padding: 8px; box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 100;
}
.dropdown::before { content:''; position:absolute; top:-10px; left:0; right:0; height:10px; }
.has-dropdown.dd-open > .dropdown { opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0); }
.drop-link {
  display: block; padding: 9px 14px;
  font-size: 0.875rem; color: var(--c-muted); border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.drop-link:hover,.drop-link.active { color: var(--c-text); background: rgba(26,140,255,0.12); }

.mega-menu {
  position: absolute; top: calc(100% + 4px);
  left: 50%; transform: translateX(-50%) translateY(6px);
  width: 700px;
  background: var(--c-surface2); border: 1px solid var(--c-border-hi);
  border-radius: var(--radius-md); padding: 28px; box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 100;
}
.mega-menu::before { content:''; position:absolute; top:-10px; left:0; right:0; height:10px; }
.has-dropdown.dd-open > .mega-menu {
  opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);
}
.mega-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mega-group { display: flex; flex-direction: column; gap: 2px; }
.mega-heading {
  display: block;
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-orange);
  margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid var(--c-border);
}
.mega-link {
  display: block; padding: 7px 10px;
  font-size: 0.875rem; color: var(--c-muted); border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.mega-link:hover,.mega-link.active { color: var(--c-text); background: rgba(26,140,255,0.12); }

/* Right-side actions */
.header-right {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: auto;
}
.header-phone { font-size: 0.82rem; color: var(--c-muted); white-space: nowrap; transition: color 0.2s; }
.header-phone:hover { color: var(--c-blue-lt); }

.btn-header-cta {
  display: inline-flex; align-items: center;
  padding: 9px 20px; border-radius: var(--radius-full);
  background: var(--c-orange); color: #fff;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(255,96,48,0.35);
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.btn-header-cta:hover { background: #ff6a3d; transform: translateY(-1px); color: #fff; }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  width: 44px; height: 44px; gap: 6px;
  cursor: pointer; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease, width 0.2s ease;
  pointer-events: none;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ═══════════════════════════════════════
   MOBILE OVERLAY
═══════════════════════════════════════ */
.mob-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1001;
  background: rgba(4,16,29,0.75);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.mob-overlay.visible { display: block; }

/* ═══════════════════════════════════════
   MOBILE NAV PANEL
   Uses display:none/flex — NEVER transform
   on iOS fixed elements (known Safari bug)
═══════════════════════════════════════ */
.mob-nav-panel {
  display: none;                  /* hidden by default */
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 88vw;
  z-index: 1002;
  flex-direction: column;
  background: var(--c-surface);
  border-left: 1px solid var(--c-border-hi);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-nav-panel[aria-expanded="true"] { display: flex; }  /* toggled by JS */

.mob-nav-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: var(--c-surface2);
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}
.mob-nav-top img { height: 28px; width: auto; display: block; }

.mob-close-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  font-size: 1.15rem; color: var(--c-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: color 0.2s, background 0.2s;
}
.mob-close-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* Nav items list in panel */
.mob-nav-list { list-style: none; flex: 1; }
.mob-nav-list > li { border-bottom: 1px solid var(--c-border); }

/* Override desktop nav-link styles inside panel */
.mob-nav-panel .nav-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 16px 18px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--c-text) !important;
  border-radius: 0 !important;
  white-space: normal !important;
  background: transparent !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mob-nav-panel .nav-link:active { background: rgba(26,140,255,0.1) !important; }
.mob-nav-panel .nav-link.active { color: var(--c-blue-lt) !important; }

.mob-nav-panel .chevron { font-size: 0.65rem !important; transition: transform 0.25s; }
.mob-nav-panel .has-dropdown.mob-acc-open > .nav-link .chevron { transform: rotate(180deg); }

/* Accordion: dropdown/mega shown via class, not hover */
.mob-nav-panel .dropdown,
.mob-nav-panel .mega-menu {
  position: static !important;
  transform: none !important;
  width: 100% !important;
  min-width: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  background: rgba(5,15,28,0.5) !important;
  padding: 4px 0 !important;
  display: none !important;        /* hidden until acc open */
}
.mob-nav-panel .has-dropdown.mob-acc-open > .dropdown,
.mob-nav-panel .has-dropdown.mob-acc-open > .mega-menu {
  display: block !important;
}

.mob-nav-panel .dropdown::before,
.mob-nav-panel .mega-menu::before { display: none !important; }

.mob-nav-panel .drop-link {
  display: block !important;
  padding: 13px 18px 13px 32px !important;
  font-size: 0.9rem !important;
  color: var(--c-text) !important;
  border-top: 1px solid var(--c-border) !important;
  border-radius: 0 !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mob-nav-panel .drop-link:active,
.mob-nav-panel .drop-link.active { color: var(--c-blue-lt) !important; }

.mob-nav-panel .mega-inner  { display: block !important; }
.mob-nav-panel .mega-group  { border-top: 1px solid var(--c-border-hi); padding: 2px 0; }
.mob-nav-panel .mega-heading {
  display: block !important;
  padding: 10px 18px 6px !important;
  font-size: 0.68rem !important; letter-spacing: 0.14em;
  color: var(--c-amber) !important;
  border-bottom: none !important; margin-bottom: 0 !important;
}
.mob-nav-panel .mega-link {
  padding: 12px 18px 12px 32px !important;
  font-size: 0.9rem !important;
  border-radius: 0 !important;
  color: var(--c-text) !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mob-nav-panel .mega-link:active,
.mob-nav-panel .mega-link.active { color: var(--c-blue-lt) !important; }

/* CTA strip pinned at bottom of panel */
.mob-cta-strip {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 16px 28px;
  border-top: 1px solid var(--c-border-hi);
  background: var(--c-surface); flex-shrink: 0;
}
.mob-cta-primary {
  display: block; text-align: center;
  padding: 14px; border-radius: var(--radius-full);
  background: var(--c-orange); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.mob-cta-primary:active { background: #d94e24; }
.mob-cta-secondary {
  display: block; text-align: center;
  padding: 12px; border-radius: var(--radius-full);
  border: 1.5px solid var(--c-border-hi); color: var(--c-text);
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.mob-cta-secondary:active { border-color: var(--c-blue); color: var(--c-blue-lt); }

/* ═══════════════════════════════════════
   BREAKPOINTS
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hamburger  { display: flex; }    /* show burger */
  .desk-nav   { display: none; }    /* hide desktop nav */
  .header-phone { display: none; }  /* hide phone text */
  /* btn-header-cta stays visible — it IS the Contact Us on tablet */
}

@media (max-width: 520px) {
  /* On small phones hide the CTA next to burger — panel has its own */
  .btn-header-cta { display: none; }
}

/* ═══════════════════════════════════════
   READABILITY REINFORCEMENT
   Ensure text is always legible on dark surfaces
═══════════════════════════════════════ */

/* Sections on dark bg */
.section h2, .section h3, .section h4 { color: var(--c-text) }
.section p  { color: var(--c-muted) }

/* Named section headings */
.section-header h2, .section-header h3 { color: var(--c-text) }

/* List items */
li { color: var(--c-muted) }

/* Cards - always readable */
.card h3, .card h4 { color: var(--c-text) }
.card p             { color: var(--c-muted) }
.card li            { color: var(--c-muted) }

/* Page hero — always white on the blue/dark gradient */
.page-hero h1, .page-hero h2, .page-hero h3,
.page-hero .hero-h1, .page-hero em { color: #ffffff !important }
.page-hero p, .page-hero .hero-sub { color: rgba(221,234,248,0.92) !important }
.page-hero .breadcrumb, .page-hero .breadcrumb * { color: rgba(255,255,255,0.72) !important }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.92) !important }
.page-hero .tag { color: rgba(255,255,255,0.8) !important; border-color: rgba(255,255,255,0.22) !important }

/* Sub-label sticky card */
.sub-label h3, .sub-label h4 { color: var(--c-text) }
.sub-label p { color: var(--c-muted) }

/* Footer — dark surface */
#site-footer p { color: var(--c-muted) }

/* Ensure --c-muted is bright enough — override anywhere it might be too faint */
.footer-col h4 { color: var(--c-text) }


#site-footer {
background: var(--c-surface);
border-top: 1px solid var(--c-border);
margin-top: auto;
position: relative }

#site-footer::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 2px;
background: linear-gradient(90deg, var(--c-blue), var(--c-amber), var(--c-green), var(--c-orange)) }

.footer-top {
max-width: var(--max-w); margin: 0 auto; padding: 64px var(--gutter);
display: grid; grid-template-columns: 340px 1fr; gap: 60px; color: var(--c-text) }

.footer-brand .footer-logo {
display: flex; align-items: center; margin-bottom: 18px }

.footer-logo-img {
height: 32px; width: auto;
display: block;
opacity: 0.92;
transition: opacity 0.2s }

.footer-logo:hover .footer-logo-img { opacity: 1 }

.footer-tagline {
font-size: 0.95rem; color: var(--c-muted); margin-bottom: 24px; line-height: 1.6 }

.footer-contact-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px }

.footer-contact-item {
display: flex; align-items: flex-start; gap: 10px;
font-size: 0.85rem; color: var(--c-muted); transition: color 0.2s }

.footer-contact-item:hover { color: var(--c-blue-lt) }

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px }

.footer-socials { display: flex; gap: 12px }

.footer-socials a {
width: 38px; height: 38px; border-radius: var(--radius-md);
background: var(--c-surface2); border: 1px solid var(--c-border);
display: flex; align-items: center; justify-content: center;
color: var(--c-muted); transition: color 0.2s, border-color 0.2s, background 0.2s }

.footer-socials a:hover {
color: var(--c-blue-lt);
border-color: var(--c-blue);
background: rgba(26,140,255,0.1) }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px }

.footer-col h4 {
font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
letter-spacing: 0.12em; text-transform: uppercase;
color: var(--c-text); margin-bottom: 16px }

.footer-col a {
display: block; font-size: 0.88rem; color: var(--c-muted);
padding: 5px 0; transition: color 0.2s }

.footer-col a:hover { color: var(--c-blue-lt) }

.footer-bottom {
max-width: var(--max-w); margin: 0 auto; padding: 20px var(--gutter);
border-top: 1px solid var(--c-border);
display: flex; align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 12px }

.footer-bottom p { font-size: 0.8rem; color: var(--c-muted); margin: 0 }

.footer-bottom a { color: var(--c-muted); margin: 0 4px; transition: color 0.2s }

.footer-bottom a:hover { color: var(--c-blue-lt) }

@media (max-width: 1024px) {
.footer-top { grid-template-columns: 1fr; gap: 40px }

.footer-links { grid-template-columns: repeat(2, 1fr) }

}

@media (max-width: 480px) {
.footer-links { grid-template-columns: 1fr }

.footer-bottom { flex-direction: column; text-align: center }

}

.page-wrapper { padding-top: var(--header-h); min-height: 100vh; display: flex; flex-direction: column }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px) }
to { opacity: 1; transform: translateY(0) }
}

@keyframes fadeIn { from { opacity: 0 }
to { opacity: 1 }
}

@keyframes pulse { 0%,100% { opacity: 1 }
50% { opacity: 0.4 }
}

@keyframes shimmer { from { transform: translateX(-100%) }
to { transform: translateX(100%) }
}

@keyframes float { 0%,100% { transform: translateY(0) }
50% { transform: translateY(-12px) }
}

.fade-up { animation: fadeUp 0.7s var(--ease-out) both }

.fade-in { animation: fadeIn 0.6s var(--ease-out) both }

.delay-1 { animation-delay: 0.1s }

.delay-2 { animation-delay: 0.2s }

.delay-3 { animation-delay: 0.35s }

.delay-4 { animation-delay: 0.5s }

.delay-5 { animation-delay: 0.65s }

.cta-band {
background: linear-gradient(135deg,
rgba(26,140,255,0.12) 0%,
rgba(240, 88, 41, 0.08) 100%);
border-top: 1px solid rgba(26,140,255,0.2);
border-bottom: 1px solid rgba(26,140,255,0.2);
padding: 72px 0;
text-align: center;
position: relative; overflow: hidden }

.cta-band::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse 60% 80% at 50% 100%,
rgba(2, 113, 192, 0.07), transparent 70%);
pointer-events: none }

.cta-band .container { position: relative; z-index: 1 }

.cta-band h2 { margin-bottom: 16px; color: var(--c-text) }

.cta-band p {
margin-bottom: 32px; font-size: 1.05rem;
max-width: 540px; margin-left: auto; margin-right: auto; color: var(--c-muted) }

.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap }

.bi { display: inline-flex; align-items: center; justify-content: center; line-height: 1; vertical-align: middle }

.card-icon .bi { font-size: 1.5rem }

.section-eyebrow .bi { font-size: 0.85em }

.ss-icon .bi,
.ind-emoji .bi,
.mv-icon .bi,
.edge-icon .bi,
.perk-icon .bi,
.tl-icon .bi,
.wi-icon .bi,
.why-item .bi,
.diff-item .di-icon .bi,
.facility-item .fi-icon .bi,
.reason-card .rc-icon .bi,
.topic-pill .tp-icon .bi,
.lt-icon .bi,
.vp-icon .bi,
.value-pill .vp-icon .bi { font-size: 2rem; color: var(--c-blue-lt) }

.ss-icon,
.ind-emoji,
.mv-icon,
.edge-icon,
.perk-icon,
.wi-icon { display: block; margin-bottom: 16px }

.footer-contact-item .bi,
.ci-item .ci-icon .bi { font-size: 1rem; color: var(--c-muted) }

.cert-badge .cb-icon .bi { font-size: 1.4rem }

.svc-arrow .bi,
.ind-arrow .bi,
.article-read .bi { font-size: 0.9rem }

.job-tag.hot .bi { font-size: 0.85rem }

.leader-avatar .bi,
.advisor-avatar .bi { display: none }

.quick-link .bi { font-size: 1rem }

.ihs-item .bi { font-size: 1.2rem }

.impact-icon .bi,
.proof-icon .bi { font-size: 2rem; color: var(--c-orange) }

.svc-icon .bi { font-size: 1.6rem; color: var(--c-blue-lt) }

.loc-icon .bi { font-size: 2.5rem; color: var(--c-blue-lt) }

.advisor-avatar .bi { font-size: 1.1rem }

.cta-band .bi { font-size: 1.2rem }

p .bi, li .bi { font-size: 1em; vertical-align: -0.1em; margin-right: 2px }

.ind-hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 40px }

@media(max-width: 900px) { .ind-hero-stats { grid-template-columns: 1fr 1fr }
}

.ihs-item { background: rgba(0,119,212,0.09); border: 1px solid rgba(0,119,212,0.25); border-radius: var(--radius-md); padding: 24px; text-align: center }

.ihs-num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--c-blue-lt); margin-bottom: 4px }

.ihs-label { font-size: 0.82rem; color: var(--c-muted); margin-top: 4px; line-height: 1.5 }

.challenges-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 60px }

@media(max-width: 768px) { .challenges-grid { grid-template-columns: 1fr }
}

.challenge-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 24px }

.challenge-card .cc-icon { font-size: 1.6rem; margin-bottom: 10px }

.challenge-card h4 { margin-bottom: 6px; font-size: 0.95rem; color: var(--c-text) }

.challenge-card p { font-size: 0.855rem; color: var(--c-muted); line-height: 1.65 }

.svc-list { display: flex; flex-direction: column; gap: 12px }

.svc-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-md); transition: border-color 0.2s, box-shadow 0.2s }

.svc-item:hover { border-color: var(--c-blue); box-shadow: 0 4px 20px rgba(26,140,255,0.12) }

.svc-item .si-icon { font-size: 1.4rem; flex-shrink: 0 }

.svc-item h4 { margin-bottom: 4px; font-size: 0.95rem; color: var(--c-text) }

.svc-item p { font-size: 0.855rem; color: var(--c-muted); line-height: 1.65 }

.result-bar { margin-bottom: 20px }

.rb-label { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--c-muted); margin-bottom: 8px }

.rb-label span:last-child { color: var(--c-blue-lt); font-weight: 600 }

.rb-track { background: var(--c-surface2); border-radius: var(--radius-full); height: 8px; overflow: hidden }

.rb-fill { height: 100%; border-radius: var(--radius-full); background: linear-gradient(90deg, var(--c-blue), var(--c-amber)) }

.ind-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start }

@media(max-width: 768px) { .ind-split { grid-template-columns: 1fr }
}

.sub-services { display: flex; flex-direction: column; gap: 60px }

.sub-service { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start }

.sub-service:nth-child(even) { direction: rtl }

.sub-service:nth-child(even) > * { direction: ltr }

@media(max-width: 768px) { .sub-service, .sub-service:nth-child(even) { grid-template-columns: 1fr; direction: ltr }
}

.sub-label {
background: var(--c-surface); border: 1px solid var(--c-border);
border-radius: var(--radius-lg); padding: 32px;
position: sticky; top: calc(var(--header-h) + 24px) }

.sub-label .ss-icon { font-size: 2.5rem; margin-bottom: 16px }

.sub-label h3 { margin-bottom: 12px }

.cap-list { list-style: none; margin-top: 20px }

.cap-list li {
padding: 9px 0; border-bottom: 1px solid var(--c-border);
font-size: 0.9rem; color: var(--c-muted);
display: flex; align-items: center; gap: 8px }

.cap-list li::before { content: '→'; color: var(--c-blue-lt); flex-shrink: 0 }

.sub-body h4 { margin-bottom: 10px; margin-top: 28px; font-size: 1.05rem; color: var(--c-text) }

.sub-body h4:first-child { margin-top: 0 }

.sub-body p { font-size: 0.95rem; color: var(--c-muted); margin-bottom: 14px; line-height: 1.8 }

.outcome-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px }

.outcome-chip {
background: rgba(26,140,255,0.1); border: 1px solid rgba(26,140,255,0.25);
border-radius: var(--radius-full); padding: 4px 14px;
font-size: 0.78rem; color: var(--c-blue-lt) }

.divider-sec { border-top: 1px solid var(--c-border); padding-top: 60px }

.flex-1-center { flex: 1; text-align: center }

.highlight { color: var(--c-blue-lt); font-style: normal }

.mb-6 { margin-bottom: 6px }

.mb-12 { margin-bottom: 12px }

.mb-16 { margin-bottom: 16px }

.mb-20 { margin-bottom: 20px }

.mb-28 { margin-bottom: 28px }

.mb-32 { margin-bottom: 32px }

.mt-12 { margin-top: 12px }

.mt-32 { margin-top: 32px }

.text-sm { font-size: 0.875rem }

.text-blue { color: var(--c-blue-lt) }

.flex-shrink-0 { flex-shrink: 0 }

.hero-h1 { margin: 16px 0 20px; max-width: 700px }

.hero-sub { max-width: 590px; font-size: 1.05rem }

.surface-top-border { background: var(--c-surface); border-top: 1px solid var(--c-border) }

.tag-row { display: flex; gap: 12px; flex-wrap: wrap }

