/* ============================================================
   AERONEX PRIME — MASTER STYLESHEET
   ============================================================ */

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

:root {
  --navy:       #1C2B4A;
  --navy-deep:  #0d1520;
  --navy-mid:   #111826;
  --steel:      #2E5FA3;
  --steel-mid:  #4A7AC8;
  --steel-light:#7AAEE8;
  --silver:     #8E9BAD;
  --mist:       #EDF2FA;
  --cloud:      #F5F8FF;
  --white:      #FFFFFF;
  --text:       #2A3547;
  --sub:        #5A6A80;
  --accent:     #C8A96E;
  --accent-light:#E0C99A;
  --danger:     #E05A4A;
  --success:    #3A9A6A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  /* Start invisible — JS reveals once fonts are ready */
  opacity: 0;
  transition: opacity 0.35s ease;
}
body.fonts-loaded {
  opacity: 1;
}
body.page-exit {
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* ── SELECTION ── */
::selection { background: var(--steel); color: #fff; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  height: 36px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: transform .35s ease, opacity .35s ease;
}
.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.top-bar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 50px;
  display: flex; justify-content: space-between; align-items: center;
  height: 100%;
}
.top-link {
  font-family: 'Barlow'; font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.5); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.3px;
  transition: color .2s;
}
.top-link:hover { color: var(--accent); }
.top-icon { font-size: 11px; }
.top-bar-left { display: flex; gap: 28px; align-items: center; }
.top-bar-right { display: flex; align-items: center; gap: 8px; }
.top-sep { color: rgba(255,255,255,0.2); font-size: 11px; }

/* ── NAV ── */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 199;
  transition: top .35s ease, background .3s, box-shadow .3s;
  background: rgba(13,21,32,0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
nav.scrolled {
  top: 0;
  background: rgba(13,21,32,0.96);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 50px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-mark { flex-shrink: 0; }
.nav-logo-img {
  width: 64px; height: 64px;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.1);
  transition: filter .25s;
}
.nav-logo:hover .nav-logo-img { filter: brightness(1.25); }
.nav-brand-name {
  font-family: 'Barlow Condensed'; font-weight: 700; font-size: 18px;
  color: #fff; letter-spacing: 2.5px; line-height: 1;
}
.nav-brand-sub {
  font-family: 'Barlow'; font-weight: 300; font-size: 10px;
  color: var(--silver); letter-spacing: 3px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links li { position: relative; }
.nav-links a {
  font-family: 'Barlow'; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65); text-decoration: none;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 8px 14px; display: block;
  transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 1px; background: var(--steel-mid);
}
.nav-arrow { font-size: 9px; opacity: 0.7; }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(13,21,32,0.97);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  min-width: 220px; list-style: none; padding: 8px 0;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
  pointer-events: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown li a {
  font-size: 12px; padding: 10px 20px;
  letter-spacing: 1px; color: rgba(255,255,255,0.6);
  text-transform: none; font-weight: 400;
}
.dropdown li a:hover { color: #fff; background: rgba(46,95,163,0.2); }

/* CTA button in nav */
.nav-cta-btn {
  background: linear-gradient(135deg, var(--steel), var(--steel-mid)) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: opacity .25s, transform .2s !important;
}
.nav-cta-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.nav-cta-btn.active::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 80px 100px;
  padding-top: 110px;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,14,24,0.85) 0%,
    rgba(13,21,32,0.78) 40%,
    rgba(13,21,32,0.55) 100%
  );
}
.hero-grid-overlay {
  position: absolute; inset: 0; opacity: 0.07; pointer-events: none;
}
.hero-route-lines {
  position: absolute; inset: 0; pointer-events: none;
}
.route-dash {
  stroke-dashoffset: 0;
  animation: dashMove 12s linear infinite;
}
.route-dash-2 {
  stroke-dashoffset: 0;
  animation: dashMove 18s linear infinite reverse;
}
.route-dot {
  /* motion handled by SVG animateMotion */
}
@keyframes dashMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -200; }
}

/* Stat cluster */
.hero-stat-cluster {
  position: absolute; top: 160px; right: 100px;
  display: flex; flex-direction: column; gap: 24px;
  animation: fadeSlideLeft 1.2s ease 0.6s both;
}
.hero-stat {
  text-align: right;
  border-right: 2px solid var(--steel);
  padding-right: 18px;
}
.hero-stat-num {
  font-family: 'Barlow Condensed'; font-size: 44px; font-weight: 700;
  color: #fff; line-height: 1;
}
.hero-stat-label {
  font-size: 11px; font-weight: 500; color: var(--silver);
  letter-spacing: 2px; text-transform: uppercase; margin-top: 3px;
}

/* Hero content */
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow {
  font-family: 'Barlow Condensed'; font-size: 12px; font-weight: 600;
  color: var(--accent); letter-spacing: 6px; text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeSlideUp 0.9s ease 0.2s both;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--accent);
}
.hero-headline {
  font-family: 'Barlow Condensed'; font-weight: 600;
  font-size: clamp(52px, 6.5vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.5px;
  color: #fff; margin-bottom: 30px;
  animation: fadeSlideUp 1s ease 0.35s both;
}
.hero-headline em { font-style: normal; color: var(--accent); font-weight: 700; }
.hero-sub {
  font-family: 'Barlow'; font-weight: 300; font-size: 17px;
  color: rgba(255,255,255,0.58); line-height: 1.75; max-width: 540px;
  animation: fadeSlideUp 1s ease 0.5s both; margin-bottom: 48px;
}
.hero-cta {
  display: flex; gap: 20px; align-items: center;
  animation: fadeSlideUp 1s ease 0.65s both;
}
.hero-rule {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--steel) 30%, var(--accent) 50%, var(--steel-mid) 70%, transparent 100%);
}

/* Scroll indicator */
.hero-scroll-ind {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fadeSlideUp 1s ease 1s both; z-index: 2;
}
.hero-scroll-ind span {
  font-family: 'Barlow'; font-size: 10px; color: var(--silver);
  letter-spacing: 3px; text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 11px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--accent);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease infinite;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Barlow Condensed'; font-size: 13px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 15px 38px; display: inline-block;
  background: linear-gradient(135deg, var(--steel) 0%, var(--steel-mid) 100%);
  color: #fff; border: none; cursor: pointer; text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: opacity .25s, transform .2s, box-shadow .25s;
}
.btn-primary:hover {
  opacity: 0.88; transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46,95,163,0.4);
}
.btn-ghost {
  font-family: 'Barlow Condensed'; font-size: 13px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 14px 38px; display: inline-block;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer; text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: border-color .25s, color .25s, background .25s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
}
.btn-ghost-light {
  font-family: 'Barlow Condensed'; font-size: 13px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 14px 38px; display: inline-block;
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all .25s;
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}
.btn-outline {
  font-family: 'Barlow Condensed'; font-size: 13px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 14px 38px; display: inline-block;
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--steel);
  cursor: pointer; text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all .25s;
}
.btn-outline:hover {
  background: var(--steel); color: #fff;
  transform: translateY(-2px);
}
.text-link {
  font-family: 'Barlow'; font-size: 14px; font-weight: 500;
  color: var(--accent); text-decoration: none; letter-spacing: 1px;
  transition: letter-spacing .2s;
}
.text-link:hover { letter-spacing: 2px; }
.text-link span { transition: transform .2s; display: inline-block; }
.text-link:hover span { transform: translateX(4px); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--navy);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ticker-inner {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker-inner span {
  font-family: 'Barlow Condensed'; font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.tick-sep { color: var(--accent) !important; font-size: 8px !important; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION BASE ── */
section { padding: 110px 80px; }
.section-eyebrow {
  font-family: 'Barlow Condensed'; font-size: 11px; font-weight: 600;
  color: var(--accent); letter-spacing: 5px; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--accent); flex-shrink: 0;
}
.section-title {
  font-family: 'Barlow Condensed'; font-weight: 600;
  font-size: clamp(34px, 4vw, 54px); line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--navy); margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--steel); font-weight: 700; }
.section-lead {
  font-family: 'Barlow'; font-weight: 300; font-size: 16px;
  color: var(--sub); line-height: 1.85; max-width: 620px;
}
.section-header { margin-bottom: 60px; }

/* ── INTRO BAND ── */
.intro-band {
  background: var(--navy);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 70px;
  align-items: center;
}
.intro-divider { background: rgba(255,255,255,0.08); }
.intro-left { text-align: right; }
.intro-quote {
  font-family: 'Barlow Condensed'; font-weight: 600; font-style: normal;
  font-size: 34px; line-height: 1.4; color: rgba(255,255,255,0.92);
  max-width: 440px; margin-left: auto;
}
.intro-quote-mark {
  font-size: 80px; line-height: 0.5; color: var(--steel-mid);
  opacity: 0.35; display: block; margin-bottom: -8px;
}
.intro-right p {
  font-family: 'Barlow'; font-weight: 300; font-size: 15.5px;
  color: rgba(255,255,255,0.52); line-height: 1.95; margin-bottom: 22px;
}
.intro-right p:last-of-type { margin-bottom: 28px; }

/* ── SERVICES HOME ── */
.services-home {
  background: var(--cloud);
  padding-bottom: 80px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative; overflow: hidden;
  padding: 52px 40px;
  cursor: pointer; text-decoration: none;
  min-height: 320px;
  display: flex; flex-direction: column;
  background: var(--navy-mid);
  transition: transform .35s, box-shadow .35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); z-index: 2; }
.service-card-bg {
  position: absolute; inset: 0; transition: opacity .4s;
  opacity: 0.7;
}
.service-card:hover .service-card-bg { opacity: 1; }
.service-card-icon {
  font-size: 32px; position: relative; z-index: 1; margin-bottom: 12px;
}
.service-card-num {
  font-family: 'Barlow Condensed'; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.25); letter-spacing: 2px;
  position: absolute; top: 24px; right: 28px; z-index: 1;
}
.service-card-title {
  font-family: 'Barlow Condensed'; font-size: 22px; font-weight: 700;
  color: #fff; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.service-card-body {
  font-family: 'Barlow'; font-weight: 300; font-size: 14px;
  color: rgba(255,255,255,0.58); line-height: 1.7;
  flex: 1; position: relative; z-index: 1;
}
.service-card-arrow {
  font-size: 18px; color: var(--accent);
  margin-top: 24px; position: relative; z-index: 1;
  transition: transform .25s;
}
.service-card:hover .service-card-arrow { transform: translateX(8px); }
.service-card-hover-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--steel-mid));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover .service-card-hover-line { transform: scaleX(1); }
.services-home-cta { text-align: center; margin-top: 50px; }

/* ── WHY BAND ── */
.why-band {
  background: var(--navy-deep);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px; overflow: hidden;
}
.why-band-left {
  position: relative; overflow: hidden;
}
.why-band-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  filter: brightness(0.6) saturate(0.8);
}
.why-band-overlay-stat {
  position: absolute; bottom: 40px; left: 40px;
  background: rgba(13,21,32,0.85);
  border: 1px solid rgba(46,95,163,0.4);
  padding: 28px 36px;
  backdrop-filter: blur(8px);
}
.why-stat-big {
  font-family: 'Barlow Condensed'; font-size: 64px; font-weight: 700;
  color: #fff; line-height: 1;
}
.why-stat-big sup { font-size: 28px; }
.why-stat-label {
  font-family: 'Barlow'; font-size: 11px; font-weight: 500;
  color: var(--silver); letter-spacing: 2px; text-transform: uppercase;
}
.why-band-right {
  padding: 80px 70px;
  display: flex; flex-direction: column; justify-content: center;
}
.why-band-right .section-eyebrow::before { background: var(--accent); }
.why-band-right .section-title { color: #fff; }
.why-items { margin: 36px 0 40px; display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.why-item-icon {
  color: var(--steel-mid); font-size: 18px; flex-shrink: 0; padding-top: 2px;
}
.why-item-content h4 {
  font-family: 'Barlow'; font-weight: 600; font-size: 15px;
  color: #fff; margin-bottom: 5px;
}
.why-item-content p {
  font-family: 'Barlow'; font-weight: 300; font-size: 13.5px;
  color: rgba(255,255,255,0.48); line-height: 1.7;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--navy);
  padding: 70px 80px;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: 0;
}
.stat-block { text-align: center; padding: 20px; }
.stat-number {
  font-family: 'Barlow Condensed'; font-size: 56px; font-weight: 300;
  color: #fff; line-height: 1;
}
.stat-label {
  font-family: 'Barlow'; font-size: 11px; font-weight: 500;
  color: var(--silver); letter-spacing: 2px; text-transform: uppercase;
  margin-top: 8px;
}
.stat-divider {
  width: 1px; height: 80px; background: rgba(255,255,255,0.1);
}

/* ── NOBLE GROUP ── */
.noble-group {
  background: var(--cloud); padding: 110px 80px;
}
.noble-cards-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.noble-card {
  background: #fff;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}
.noble-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(28,43,74,0.15); }
.noble-card-top {
  height: 140px; display: flex; align-items: center; justify-content: center;
}
.noble-card-icon { font-size: 42px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
.noble-card-body { padding: 28px 26px; }
.noble-card-body h3 {
  font-family: 'Barlow'; font-weight: 600; font-size: 15px;
  color: var(--navy); margin-bottom: 10px; line-height: 1.3;
}
.noble-card-body p {
  font-family: 'Barlow'; font-weight: 300; font-size: 13px;
  color: var(--sub); line-height: 1.7; margin-bottom: 14px;
}
.noble-card-tag {
  font-family: 'Barlow Condensed'; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; background: var(--mist); color: var(--steel);
}
.noble-card-featured { border: 2px solid var(--steel-mid); }
.featured-tag { background: var(--steel); color: #fff !important; }

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  background: var(--navy-deep);
  padding: 110px 80px;
  text-align: center; overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(46,95,163,0.2) 0%, transparent 70%);
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band-content h2 {
  font-family: 'Barlow Condensed'; font-weight: 600;
  font-size: clamp(44px, 5.5vw, 72px); line-height: 1.05;
  color: #fff; margin-bottom: 20px;
}
.cta-band-content h2 em { font-style: normal; color: var(--accent); font-weight: 700; }
.cta-band-content p {
  font-family: 'Barlow'; font-weight: 300; font-size: 16px;
  color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto 44px; line-height: 1.8;
}
.cta-band-btns { display: flex; gap: 20px; justify-content: center; }

/* ── FOOTER ── */
footer { background: var(--navy-deep); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px; padding: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-tagline {
  font-family: 'Barlow'; font-weight: 300; font-size: 13.5px;
  color: rgba(255,255,255,0.35); line-height: 1.8;
}
.footer-brand .nav-logo-img {
  width: 72px; height: 72px;
}
.footer-nav-col h4, .footer-contact-col h4 {
  font-family: 'Barlow Condensed'; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.3); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col ul a {
  font-family: 'Barlow'; font-size: 13.5px; font-weight: 300;
  color: rgba(255,255,255,0.45); text-decoration: none; letter-spacing: 0.3px;
  transition: color .2s;
}
.footer-nav-col ul a:hover { color: var(--accent); }
.footer-contact-col { display: flex; flex-direction: column; gap: 16px; padding-top: 4px; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  text-decoration: none; color: rgba(255,255,255,0.45);
  font-family: 'Barlow'; font-size: 13.5px; font-weight: 300; line-height: 1.6;
  transition: color .2s;
}
.footer-contact-item:hover { color: rgba(255,255,255,0.75); }
.fc-icon { flex-shrink: 0; font-size: 14px; padding-top: 2px; }
.footer-bottom {
  padding: 28px 80px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-family: 'Barlow'; font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.25); letter-spacing: 0.5px;
}
.footer-noble {
  font-family: 'Barlow Condensed'; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.18); letter-spacing: 3.5px; text-transform: uppercase;
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════ */
.page-hero {
  min-height: 55vh;
  background: var(--navy-deep);
  display: flex; align-items: flex-end;
  padding: 130px 80px 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0a0f1a 0%, #111826 50%, #0d1520 100%);
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
}
.page-hero-strip {
  position: absolute; right: -100px; top: 0; bottom: 0; width: 450px;
  background: linear-gradient(180deg, rgba(46,95,163,0.14) 0%, transparent 100%);
  transform: skewX(-8deg);
  border-left: 1px solid rgba(74,122,200,0.15);
}
.page-hero-content { position: relative; z-index: 2; }
.page-breadcrumb {
  font-family: 'Barlow'; font-size: 12px; font-weight: 400;
  color: var(--silver); letter-spacing: 1px; margin-bottom: 20px;
}
.page-breadcrumb a { color: var(--silver); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--accent); }
.page-breadcrumb span { color: rgba(255,255,255,0.3); padding: 0 6px; }
.page-hero-title {
  font-family: 'Barlow Condensed'; font-weight: 600;
  font-size: clamp(52px, 6vw, 84px); line-height: 0.95;
  color: #fff; margin-bottom: 20px;
}
.page-hero-title em { font-style: normal; color: var(--steel-light); font-weight: 700; }
.page-hero-lead {
  font-family: 'Barlow'; font-weight: 300; font-size: 16px;
  color: rgba(255,255,255,0.5); max-width: 520px; line-height: 1.8;
}

/* Service detail sections */
.service-section {
  padding: 110px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.service-section:nth-child(even) { background: var(--cloud); }
.service-section-reverse { direction: rtl; }
.service-section-reverse > * { direction: ltr; }
.service-section-text {}
.service-section-number {
  font-family: 'Barlow Condensed'; font-size: 80px; font-weight: 300;
  color: var(--mist); line-height: 1; margin-bottom: -30px;
}
.service-section-title {
  font-family: 'Barlow Condensed'; font-weight: 600; font-size: 44px;
  color: var(--navy); line-height: 1.1; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.service-section-title em { font-style: normal; color: var(--steel); font-weight: 700; }
.service-section-body {
  font-family: 'Barlow'; font-weight: 300; font-size: 15px;
  color: var(--sub); line-height: 1.9; margin-bottom: 30px;
}
.service-features { display: flex; flex-direction: column; gap: 12px; }
.service-feature {
  display: flex; gap: 14px; align-items: flex-start;
}
.service-feature-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--steel);
  margin-top: 7px; flex-shrink: 0;
}
.service-feature-text {
  font-family: 'Barlow'; font-size: 14px; font-weight: 400; color: var(--text);
}
.service-visual {
  background: linear-gradient(160deg, var(--navy) 0%, var(--steel) 100%);
  min-height: 420px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 40px;
  position: relative; overflow: hidden;
}
.service-visual-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
}
.service-visual-icon {
  font-size: 80px;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: 0.25;
}
.service-visual-label {
  position: relative; z-index: 1;
  font-family: 'Barlow Condensed'; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.4); letter-spacing: 4px; text-transform: uppercase;
}
.service-visual-title {
  position: relative; z-index: 1;
  font-family: 'Barlow Condensed'; font-size: 36px; font-weight: 300;
  color: #fff; line-height: 1.15;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */
.story-section {
  padding: 110px 80px;
  background: var(--cloud);
}
.story-section-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: start; margin-top: 60px;
}
.story-text p {
  font-family: 'Barlow'; font-weight: 300; font-size: 15.5px;
  color: var(--sub); line-height: 1.95; margin-bottom: 24px;
}
.story-text p strong { font-weight: 600; color: var(--navy); }
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 6px; bottom: 0;
  width: 1px; background: linear-gradient(180deg, var(--steel) 0%, transparent 100%);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: ''; position: absolute; left: -40px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--steel);
  box-shadow: 0 0 0 3px rgba(46,95,163,0.15);
}
.timeline-year {
  font-family: 'Barlow Condensed'; font-size: 12px; font-weight: 700;
  color: var(--steel); letter-spacing: 2px; margin-bottom: 4px;
}
.timeline-title {
  font-family: 'Barlow'; font-weight: 600; font-size: 15px;
  color: var(--navy); margin-bottom: 6px;
}
.timeline-body {
  font-family: 'Barlow'; font-weight: 300; font-size: 13.5px;
  color: var(--sub); line-height: 1.7;
}

.noble-section { padding: 110px 80px; background: var(--white); }
.noble-section-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: center; margin-top: 60px;
}
.noble-big-year {
  font-family: 'Barlow Condensed'; font-weight: 600; font-size: 80px;
  color: var(--mist); line-height: 1; margin-bottom: -30px;
}
.noble-section-heading {
  font-family: 'Barlow Condensed'; font-weight: 600; font-size: 40px;
  color: var(--navy); line-height: 1.2; margin-bottom: 22px; position: relative; z-index: 1;
}
.noble-section-heading em { font-style: normal; color: var(--steel); font-weight: 700; }
.noble-section-body {
  font-family: 'Barlow'; font-weight: 300; font-size: 15px;
  color: var(--sub); line-height: 1.9; margin-bottom: 18px;
}

.mv-section { background: var(--navy-deep); padding: 110px 80px; }
.mv-section .section-title { color: #fff; }
.mv-section .section-eyebrow { color: var(--accent); }
.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 60px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mv-card {
  padding: 60px 50px;
  background: rgba(255,255,255,0.02);
  transition: background .3s;
  position: relative; overflow: hidden;
}
.mv-card:hover { background: rgba(46,95,163,0.1); }
.mv-card-icon { font-size: 30px; margin-bottom: 24px; display: block; }
.mv-card-label {
  font-family: 'Barlow Condensed'; font-size: 11px; font-weight: 600;
  color: var(--accent); letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 16px; display: block;
}
.mv-card-heading {
  font-family: 'Barlow Condensed'; font-weight: 600; font-size: 36px;
  color: #fff; line-height: 1.15; margin-bottom: 22px;
}
.mv-card-heading em { font-style: normal; color: var(--steel); font-weight: 700; }
.mv-card-body {
  font-family: 'Barlow'; font-weight: 300; font-size: 15px;
  color: rgba(255,255,255,0.48); line-height: 1.9;
}
.mv-card-corner {
  position: absolute; bottom: -10px; right: 10px;
  font-family: 'Barlow Condensed'; font-size: 90px; font-weight: 300;
  color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none;
}

.pillars-section { background: var(--cloud); padding: 110px 80px; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin-top: 60px; border: 1px solid var(--mist);
}
.pillar {
  padding: 48px 28px;
  border-right: 1px solid var(--mist);
  position: relative; cursor: default;
  transition: background .3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--white); }
.pillar:hover .pillar-num { color: var(--steel); }
.pillar-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--steel), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.pillar:hover .pillar-bar { transform: scaleX(1); }
.pillar-num {
  font-family: 'Barlow Condensed'; font-size: 54px; font-weight: 300;
  color: var(--mist); line-height: 1; margin-bottom: 20px;
  transition: color .3s;
}
.pillar-icon { font-size: 26px; margin-bottom: 16px; display: block; }
.pillar-title {
  font-family: 'Barlow'; font-weight: 600; font-size: 14px;
  color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.pillar-body {
  font-family: 'Barlow'; font-weight: 300; font-size: 13px;
  color: var(--sub); line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   NETWORK PAGE
   ═══════════════════════════════════════════════ */
.network-section { padding: 110px 80px; background: var(--white); }
.network-map-wrap {
  margin-top: 60px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 60px;
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.network-map-title {
  font-family: 'Barlow Condensed'; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.25); letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 40px;
}
.world-map-svg {
  width: 100%; opacity: 0.12; position: absolute;
  left: 0; top: 0; right: 0; bottom: 0; width: 100%; height: 100%;
}
.network-locations {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.network-loc {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background .3s, border-color .3s;
}
.network-loc:hover { background: rgba(46,95,163,0.12); border-color: rgba(74,122,200,0.3); }
.network-loc-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  margin-top: 5px; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(200,169,110,0.2);
  animation: locPulse 2.5s ease-in-out infinite;
}
@keyframes locPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200,169,110,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(200,169,110,0.05); }
}
.network-loc-content h4 {
  font-family: 'Barlow'; font-weight: 600; font-size: 15px; color: #fff; margin-bottom: 4px;
}
.network-loc-content p {
  font-family: 'Barlow'; font-weight: 300; font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6;
}
.network-loc-tag {
  font-family: 'Barlow Condensed'; font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 8px; background: rgba(46,95,163,0.3); color: var(--steel-light);
  display: inline-block; margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.contact-section {
  padding: 110px 80px;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-info-block { position: sticky; top: 130px; }
.contact-info-block .section-eyebrow { margin-bottom: 16px; }
.contact-heading {
  font-family: 'Barlow Condensed'; font-weight: 600; font-size: 48px;
  color: var(--navy); line-height: 1.05; margin-bottom: 18px;
}
.contact-heading em { font-style: normal; color: var(--steel); font-weight: 700; }
.contact-subtext {
  font-family: 'Barlow'; font-weight: 300; font-size: 15px;
  color: var(--sub); line-height: 1.85; margin-bottom: 44px; max-width: 400px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex; gap: 18px; align-items: flex-start;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--mist); border: 1px solid rgba(46,95,163,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.contact-detail-label {
  font-family: 'Barlow Condensed'; font-size: 10px; font-weight: 700;
  color: var(--silver); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px;
}
.contact-detail-value {
  font-family: 'Barlow'; font-size: 14.5px; font-weight: 400; color: var(--text);
}
.contact-detail a { color: var(--text); text-decoration: none; }
.contact-detail a:hover { color: var(--steel); }

/* Contact Form */
.contact-form-wrap {
  background: var(--cloud);
  padding: 52px;
  border: 1px solid var(--mist);
}
.form-title {
  font-family: 'Barlow Condensed'; font-size: 20px; font-weight: 700;
  color: var(--navy); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mist);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  font-family: 'Barlow'; font-size: 11px; font-weight: 600;
  color: var(--silver); letter-spacing: 2px; text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  font-family: 'Barlow'; font-size: 14px; font-weight: 300;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(142,155,173,0.3);
  padding: 14px 18px;
  outline: none;
  transition: border-color .25s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(46,95,163,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238E9BAD' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.form-submit {
  margin-top: 10px;
  width: 100%;
  font-family: 'Barlow Condensed'; font-size: 14px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--steel), var(--steel-mid));
  color: #fff; border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: opacity .25s, transform .2s, box-shadow .25s;
}
.form-submit:hover {
  opacity: 0.88; transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46,95,163,0.4);
}
.form-success {
  display: none; padding: 20px 24px;
  background: rgba(58,154,106,0.1); border: 1px solid rgba(58,154,106,0.3);
  margin-top: 16px;
  font-family: 'Barlow'; font-size: 14px; color: var(--success);
}
.form-success.show { display: block; }

/* Map embed */
.map-section { background: var(--navy-deep); padding: 0; height: 400px; position: relative; }
.map-section iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }
.map-overlay {
  position: absolute; top: 40px; left: 80px;
  background: rgba(13,21,32,0.92);
  border: 1px solid rgba(46,95,163,0.3);
  padding: 28px 34px; backdrop-filter: blur(12px);
}
.map-overlay h4 {
  font-family: 'Barlow Condensed'; font-size: 14px; font-weight: 700;
  color: #fff; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.map-overlay p {
  font-family: 'Barlow'; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  section { padding: 90px 50px; }
  .hero { padding: 0 50px 80px; }
  .intro-band { padding: 60px 50px; }
  .stats-band { padding: 60px 50px; }
  .footer-top { padding: 60px 50px; }
  .footer-bottom { padding: 24px 50px; }
  .why-band-right { padding: 60px 50px; }
  .noble-cards-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-band { grid-template-columns: 1fr; min-height: auto; }
  .why-band-left { height: 400px; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-divider { display: none; }
  .stat-block { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 30px; }
  .service-section { grid-template-columns: 1fr; gap: 50px; }
  .service-section-reverse { direction: ltr; }
  .story-section-grid { grid-template-columns: 1fr; }
  .noble-section-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-section { grid-template-columns: 1fr; }
  .contact-info-block { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  nav { top: 0; }
  .hero { padding: 100px 30px 80px; }
  .hero-stat-cluster { display: none; }
  section { padding: 70px 30px; }
  .intro-band { grid-template-columns: 1fr; gap: 40px; padding: 60px 30px; }
  .intro-divider { display: none; }
  .intro-left { text-align: left; }
  .intro-quote { margin-left: 0; font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 50px 30px; }
  .noble-cards-row { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 50px 30px; gap: 40px; }
  .footer-bottom { padding: 24px 30px; flex-direction: column; gap: 10px; text-align: center; }
  .nav-inner { padding: 0 24px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(13,21,32,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 24px; opacity: 0; visibility: hidden; transition: .3s;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 16px; text-align: center; }
  .nav-cta-btn { clip-path: none !important; }
  .dropdown { position: static; transform: none !important; opacity: 1 !important;
    visibility: visible !important; pointer-events: all; background: none;
    border: none; padding: 0; }
  .has-dropdown:hover .dropdown { transform: none; }
}
