/* ============================================================
   ZEUS AERO GROUP — Light Theme Stylesheet
   ============================================================ */

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

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:          #f2f4f8;
  --bg-2:        #e8ebf2;
  --bg-card:     #ffffff;
  --bg-card-2:   #f7f8fc;
  --bg-dark:     #1B2355;
  --bg-dark-2:   #111840;

  /* Brand */
  --gold:        #F5B800;
  --gold-lt:     #FFD050;
  --gold-dk:     #C49200;
  --gold-dim:    rgba(245,184,0,0.12);
  --gold-glow:   rgba(245,184,0,0.30);
  --navy:        #2B3990;
  --navy-lt:     #3D4FA8;
  --navy-dk:     #1B2355;

  /* Text */
  --text:        #111827;
  --text-2:      #374151;
  --text-3:      #6b7280;
  --white:       #ffffff;

  /* Borders */
  --border:      rgba(43,57,144,0.16);
  --border-sub:  rgba(0,0,0,0.08);
  --border-gold: rgba(245,184,0,0.40);

  --font-display: 'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;

  --nav-h:    72px;
  --max-w:    1200px;
  --shadow:   0 2px 16px rgba(0,0,0,0.07);
  --shadow-md:0 4px 32px rgba(0,0,0,0.10);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--navy-dk);
}

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.gold  { color: var(--gold); }
.navy  { color: var(--navy); }
.mono  { font-family: var(--font-mono); }
.upper { text-transform: uppercase; letter-spacing: 0.12em; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-2); }
.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

/* ── Section Label ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-label.light { color: var(--gold); }
.section-label.light::before,
.section-label.light::after { background: rgba(245,184,0,0.6); }

/* ── Section Heads ─────────────────────────────────────────── */
.section-head { margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
}
.section-head p {
  font-size: 17px;
  color: var(--text-3);
  max-width: 540px;
  margin-top: 14px;
  line-height: 1.8;
}
.section-dark .section-head p { color: rgba(255,255,255,0.6); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--navy-dk);
  color: var(--navy-dk);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy-dk);
  transform: translateX(-101%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { color: var(--white); }
.btn span, .btn svg { position: relative; z-index: 1; }

.btn-solid {
  background: var(--navy-dk);
  color: var(--white);
  border-color: var(--navy-dk);
}
.btn-solid::before { background: var(--navy); }
.btn-solid:hover { color: var(--white); }

.btn-gold {
  border-color: var(--gold);
  color: var(--gold-dk);
  background: transparent;
}
.btn-gold::before { background: var(--gold); }
.btn-gold:hover { color: var(--navy-dk); box-shadow: 0 0 20px var(--gold-glow); }

/* On dark backgrounds */
.btn-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-light::before { background: rgba(255,255,255,0.12); }
.btn-light:hover { color: var(--white); box-shadow: none; }

.btn-gold-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dk);
}
.btn-gold-solid::before { background: var(--gold-lt); }
.btn-gold-solid:hover { color: var(--navy-dk); box-shadow: 0 0 24px var(--gold-glow); }

/* ── Gold Rule ─────────────────────────────────────────────── */
.gold-rule {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid var(--border-sub);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav.scrolled {
  box-shadow: 0 2px 28px rgba(0,0,0,0.12);
  border-bottom-color: rgba(43,57,144,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 52px; width: auto; display: block; transition: opacity var(--transition); }
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

/* Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 6px 14px;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--navy-dk); }

.nav-cta {
  margin-left: 16px;
  padding: 10px 22px;
  font-size: 12px;
  border-color: var(--navy-dk) !important;
  color: var(--navy-dk) !important;
  background: transparent !important;
}
.nav-cta::before { background: var(--navy-dk) !important; }
.nav-cta:hover { color: var(--white) !important; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  border-bottom: 2px solid var(--gold);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 24px 32px 32px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
}
.nav-mobile.open { transform: translateY(0); opacity: 1; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-sub);
  display: block;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--navy-dk); }
.nav-mobile a.active { color: var(--navy-dk); }
.nav-mobile .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ============================================================
   HERO — VIDEO BACKGROUND
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark-2);
}

/* Video */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

/* Overlay gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(17,24,64,0.72) 0%, rgba(17,24,64,0.40) 60%, rgba(17,24,64,0.60) 100%),
    linear-gradient(to bottom, rgba(17,24,64,0.20) 0%, rgba(17,24,64,0.10) 50%, rgba(17,24,64,0.70) 100%);
}

/* Gold top stripe */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(245,184,0,0.2));
  z-index: 3;
}

/* HUD corner brackets */
.hero-frame {
  position: absolute;
  inset: 20px;
  z-index: 2;
  pointer-events: none;
}
.hero-frame-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.6;
}
.hero-frame-corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.hero-frame-corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.hero-frame-corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.hero-frame-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: var(--nav-h);
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8.5vw, 112px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title .line-gold { color: var(--gold); display: block; }

.hero-subtitle {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.08em;
  margin: 24px auto 0;
  max-width: 500px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.hero-metric {
  padding: 0 40px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.hero-metric:first-child { border-left: none; }
.hero-metric .val {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-metric .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-top: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s forwards;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   PAGE HERO — Interior pages (dark navy)
   ============================================================ */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  overflow: hidden;
  background: var(--bg-dark);
  border-bottom: 3px solid var(--gold);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.03) 59px, rgba(255,255,255,0.03) 60px),
    repeating-linear-gradient(0deg,  transparent, transparent 59px, rgba(255,255,255,0.03) 59px, rgba(255,255,255,0.03) 60px);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,24,64,0.8) 0%, transparent 50%, rgba(17,24,64,0.6) 100%);
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 540px;
  margin-top: 14px;
  line-height: 1.8;
}

/* ============================================================
   CERT LOGOS BAR
   ============================================================ */
.cert-logos-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  padding: 24px 0;
  box-shadow: var(--shadow);
}
.cert-logos-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cert-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.80;
  transition: opacity var(--transition);
}
.cert-logo-item:hover { opacity: 1; }
.cert-logo-item img { height: 60px; width: auto; object-fit: contain; }
.cert-logo-item .cert-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.cert-divider { width: 1px; height: 52px; background: var(--border-sub); flex-shrink: 0; }

/* ============================================================
   SERVICES PREVIEW GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border-sub);
  border: 1px solid var(--border-sub);
  box-shadow: var(--shadow-md);
}
.service-card {
  background: var(--bg-card);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--bg-card-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--navy);
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  border-color: var(--navy);
  background: rgba(43,57,144,0.06);
}
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: var(--navy-dk);
}
.service-card p { font-size: 14px; color: var(--text-3); line-height: 1.8; }
.service-card-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--border-sub);
  letter-spacing: 0.1em;
  transition: color var(--transition);
}
.service-card:hover .service-card-num { color: var(--gold); }

/* ============================================================
   WHY ZEUS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-sub);
}
.why-point:last-child { border-bottom: none; }
.why-point-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-dk);
  letter-spacing: 0.1em;
  margin-top: 3px;
  flex-shrink: 0;
}
.why-point h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--navy-dk);
}
.why-point p { font-size: 14px; color: var(--text-3); line-height: 1.8; }

.why-visual { display: flex; align-items: center; justify-content: center; }
.why-emblem {
  width: 340px;
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-emblem-ring {
  position: absolute;
  border-style: solid;
  border-radius: 50%;
}
.why-emblem-ring.r1 { inset: 0; border-width: 1px; border-color: var(--border); animation: spin 40s linear infinite; }
.why-emblem-ring.r2 { inset: 30px; border-width: 1px; border-style: dashed; border-color: rgba(245,184,0,0.3); animation: spin 30s linear infinite reverse; }
.why-emblem-ring.r3 { inset: 60px; border-width: 1px; border-color: var(--border); animation: spin 50s linear infinite; }
.why-emblem-ring.r1::before, .why-emblem-ring.r1::after {
  content: ''; position: absolute; width: 8px; height: 2px;
  background: var(--gold); top: 50%; left: -4px;
}
.why-emblem-ring.r1::after { left: auto; right: -4px; }
.why-emblem-center {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--bg);
  padding: 28px;
  border: 1px solid var(--border);
}
.why-emblem-center .tagline {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
}
.why-emblem-center .company {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-dk);
  margin-top: 6px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--bg-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.025) 59px, rgba(255,255,255,0.025) 60px);
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}
.cta-banner h2 span { color: var(--gold); }
.cta-banner p { color: rgba(255,255,255,0.55); margin-top: 8px; font-size: 15px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-intro-text p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-intro-text p:last-of-type { margin-bottom: 0; }
.about-intro-text strong { color: var(--navy-dk); font-weight: 600; }
.cert-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(43,57,144,0.06);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 28px;
}

/* Credentials Bar */
.creds-bar {
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.creds-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 40px;
  border-left: 1px solid var(--border-sub);
  text-align: center;
  flex: 1;
  position: relative;
  transition: background var(--transition);
}
.cred-item:first-child { border-left: none; }
.cred-item:hover { background: var(--bg); }
.cred-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.cred-item:hover::after { width: 40px; }
.cred-item svg { color: var(--navy); }
.cred-item .cred-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dk);
}
.cred-item .cred-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* About visual */
.about-visual { position: relative; }
.about-visual-box {
  border: 1px solid var(--border);
  padding: 36px;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-visual-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.data-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-sub);
}
.data-point:last-child { border-bottom: none; padding-bottom: 0; }
.data-point-val {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  min-width: 80px;
}
.data-point-info .lbl {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-dk);
}
.data-point-info .desc {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
  line-height: 1.6;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 28px 24px;
  border: 1px solid var(--border-sub);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--border); }
.value-card:hover::before { width: 100%; }
.value-card .icon { color: var(--navy); margin-bottom: 18px; }
.value-card h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--navy-dk);
}
.value-card p { font-size: 13px; color: var(--text-3); line-height: 1.8; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-sub);
  box-shadow: var(--shadow-md);
}
.service-main-card {
  background: var(--bg-card);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-main-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.service-main-card:hover { background: var(--bg-card-2); }
.service-main-card:hover::after { height: 100%; }
.service-main-card .icon-wrap {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-main-card:hover .icon-wrap {
  border-color: var(--navy);
  background: rgba(43,57,144,0.06);
}
.service-main-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--navy-dk);
}
.service-main-card p { font-size: 15px; color: var(--text-2); line-height: 1.9; margin-bottom: 22px; }
.service-detail-list { display: flex; flex-direction: column; gap: 8px; }
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-3);
}
.service-detail-list li::before {
  content: '→';
  color: var(--gold-dk);
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* AOG Banner */
.aog-banner {
  background: var(--bg-dark);
  border-left: 4px solid var(--gold);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.aog-banner::before {
  content: 'AOG';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 130px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.aog-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.aog-label span { width: 8px; height: 8px; background: #22c55e; animation: blink 1.5s step-end infinite; }
.aog-banner h3 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}
.aog-banner p { color: rgba(255,255,255,0.60); font-size: 15px; margin-top: 8px; max-width: 480px; }

/* Industries */
.industries-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-tag {
  padding: 9px 18px;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--bg-card);
  transition: var(--transition);
}
.industry-tag:hover {
  border-color: var(--navy);
  color: var(--navy-dk);
  background: rgba(43,57,144,0.06);
}

/* Process steps */
.process-step {
  background: var(--bg-card);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-sub);
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-md); }
.process-step-num {
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1;
}
.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--navy-dk);
}
.process-step p { font-size: 13px; color: var(--text-3); line-height: 1.8; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.rfq-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.rfq-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(245,184,0,0.2) 100%);
}
.rfq-panel-header {
  padding: 36px 40px 24px;
  border-bottom: 1px solid var(--border-sub);
}
.rfq-panel-header .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.rfq-panel-header h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-dk);
}
.rfq-panel-header p {
  color: var(--text-3);
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.7;
}
.rfq-panel-body { padding: 32px 40px 40px; }

#ghl-rfq-frame {
  width: 100%;
  border: none;
  display: block;
  min-height: 680px;
}
.ghl-form-note {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-3);
  text-align: center;
  text-transform: uppercase;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.3s ease;
}
.contact-card:hover::before { height: 100%; }
.contact-card .cc-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-card a, .contact-card span {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-dk);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  word-break: break-all;
}
.contact-card a:hover { color: var(--navy); }
.contact-card .cc-sub {
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-3);
  margin-top: 4px;
  letter-spacing: 0;
}

.response-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}
.rb-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
  animation: blink 2.5s ease-in-out infinite;
}
.rb-text .rb-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-dk);
}
.rb-text .rb-sub { font-size: 12px; color: var(--text-3); margin-top: 2px; }

.cred-mini {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.cred-mini .cm-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.cred-mini-list { display: flex; flex-direction: column; gap: 10px; }
.cred-mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-2);
}
.cred-mini-item::before { content: ''; width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }

.location-card { background: var(--bg-card); border: 1px solid var(--border-sub); padding: 22px; box-shadow: var(--shadow); }
.location-card .lc-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.location-visual {
  width: 100%; height: 90px;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 19px, var(--border-sub) 19px, var(--border-sub) 20px),
    repeating-linear-gradient(0deg, transparent, transparent 19px, var(--border-sub) 19px, var(--border-sub) 20px),
    var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.location-pin { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.location-pin svg { color: var(--navy); }
.location-pin span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}
.location-card p { font-size: 13px; color: var(--text-3); line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-2);
  border-top: 3px solid var(--gold);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-sub);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.8;
  max-width: 220px;
  margin-top: 14px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--text-3);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--navy); }
.footer-col .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 10px;
}
.footer-col .contact-line svg { color: var(--gold-dk); flex-shrink: 0; margin-top: 1px; }
.footer-col .contact-line a:hover { color: var(--navy); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-3);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-dk); }

/* ── Contact layout ────────────────────────────────────────── */
.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.rfq-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: flex-start;
}
.rfq-section { padding: 72px 0 96px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid, .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-main-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .rfq-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }
  .hero-metrics { flex-wrap: wrap; }
  .hero-metric { padding: 0 20px; }
  .creds-inner { flex-direction: column; }
  .cred-item { border-left: none; border-top: 1px solid var(--border-sub); padding: 24px; }
  .cred-item:first-child { border-top: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .aog-banner { padding: 36px 28px; }
  .rfq-panel-header, .rfq-panel-body { padding: 24px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cert-logos-inner { gap: 24px; }
}
