/*
Theme Name: FlyXForce
Theme URI: https://flyxforce.com
Author: FlyXForce
Author URI: https://flyxforce.com
Description: FlyXForce Defense UAV - Custom WordPress Theme
Version: 1.0.0
License: Proprietary
Text Domain: flyxforce
*/

/* ===== FLYXFORCE THEME STYLES ===== */

/* ─────────────────────────────────────────────
   DESIGN TOKENS   tarideal.com aesthetic
   Dark navy canvas · gold accents · Eliminator-
   style condensed all-caps display type
───────────────────────────────────────────── */
:root {
  --bg:          #0a0c10;
  --bg2:         #0e1218;
  --bg3:         #111820;
  --bg4:         #141c28;
  --panel:       #0c1019;
  --gold:        #c8952a;
  --gold-lt:     #e8b94a;
  --gold-dim:    rgba(200,149,42,0.12);
  --gold-line:   rgba(200,149,42,0.35);
  --white:       #ffffff;
  --off:         #d8dce4;
  --muted:       #8898aa;
  --faint:       rgba(255,255,255,0.05);
  --border:      rgba(255,255,255,0.07);
  --border2:     rgba(200,149,42,0.25);
  --teal:        #2ec4a0;

  --f-display:   'Bebas Neue', 'Impact', sans-serif;
  --f-head:      'Rajdhani', sans-serif;
  --f-body:      'Exo 2', sans-serif;

  --nav-h:       72px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--off);
  font-family: var(--f-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ─────────────────────────────────────────────
   NAVIGATION   tarideal-style top bar
───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: stretch;
  background: rgba(10,12,16,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
#nav.scrolled { background: rgba(10,12,16,0.99); }

.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; cursor: pointer; }
.nav-logo svg { height: 38px; width: auto; }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  height: var(--nav-h);
  gap: 0;
}
.nav-links > li {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-links > li > a, .nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 18px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b0bac6;
  background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.active > a { color: var(--white); border-color: var(--gold); }

/* Mega/Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #0d1520;
  border: 1px solid rgba(200,149,42,0.25);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 999;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 22px;
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .15s, background .15s, padding-left .15s;
}
.nav-dropdown a:hover {
  color: var(--gold-lt);
  background: rgba(200,149,42,0.06);
  padding-left: 28px;
}
.chevron {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  transition: transform .2s;
}
.nav-links > li:hover .chevron { transform: rotate(225deg) translateY(-2px); }

.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-social { display: flex; gap: 10px; }
.nav-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-family: var(--f-head);
  font-weight: 700;
  transition: border-color .2s, color .2s;
}
.nav-social a:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 22px;
  background: var(--gold);
  color: #000;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-nav:hover { background: var(--gold-lt); transform: translateY(-1px); }

.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--white); }

/* ─────────────────────────────────────────────
   HERO   full-screen, tarideal style
───────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #060810;
}

.hero-media {
  position: absolute; inset: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.7);
}
/* vignette gradient tarideal uses a dark bottom fade */
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,8,16,0.3)   0%,
    rgba(6,8,16,0.1)  30%,
    rgba(6,8,16,0.5)  65%,
    rgba(6,8,16,0.97) 100%
  );
}
/* subtle scan-line texture */
.hero-media::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.06) 2px,
    rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
}

.hero-body {
  position: relative; z-index: 2;
  padding: 0 40px 20px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 40px; height: 2px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(80px, 14vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-tagline {
  font-family: var(--f-display);
  font-size: clamp(22px, 4vw, 40px);
  letter-spacing: 0.15em;
  color: #b0bcc8;
  margin-top: 10px;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.hero-desc {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--gold);
  color: #000;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 32px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-certs {
  display: flex;
  gap: 28px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cert {
  display: flex; align-items: center; gap: 10px;
}
.cert-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--gold);
}
.cert span {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────────────────────────────────────
   STATS   gold bar like tarideal numbers section
───────────────────────────────────────────── */
#stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0;
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-cell {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .25s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--gold-dim); }
.stat-cell::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px; height: 2px;
  background: var(--gold);
  transition: transform .3s var(--ease);
}
.stat-cell:hover::after { transform: translateX(-50%) scaleX(1); }
.stat-val {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.stat-val .gold { color: var(--gold); }
.stat-lbl {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ─────────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────────── */
section { padding: 96px 0; }
.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.sec-label::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--gold);
}
.sec-label span {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.sec-title {
  font-family: var(--f-display);
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
}
.sec-title .muted { color: var(--muted); }
.sec-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 20px;
}
.sec-center { text-align: center; }
.sec-center .sec-label { justify-content: center; }
.sec-center .sec-label::before { display: none; }
.sec-center .sec-body { margin: 20px auto 0; text-align: left; max-width: 620px; }

/* ─────────────────────────────────────────────
   ABOUT   split layout
───────────────────────────────────────────── */
#about { background: var(--bg3); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-body-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
}
.about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--faint);
  border-left: 2px solid var(--gold);
}
.about-feat-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.about-feat-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}
.about-feat-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* 
   SOLUTIONS   4-card grid like tarideal
───────────────────────────────────────────── */
#solutions { background: var(--bg2); padding-bottom: 0; }
.solutions-intro {
  margin-bottom: 60px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #0d1018;
}
.sol-card {
  position: relative;
  overflow: hidden;
  background: var(--bg3);
  cursor: pointer;
}
.sol-card-img {
  height: 320px;
  overflow: hidden;
  position: relative;
}
.sol-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  filter: brightness(0.55) saturate(0.7);
}
.sol-card:hover .sol-card-img img {
  transform: scale(1.06);
  filter: brightness(0.7) saturate(0.9);
}
.sol-card-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--f-display);
  font-size: 64px;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  letter-spacing: 0.02em;
}
.sol-card-body {
  padding: 28px 32px 36px;
  border-top: 2px solid transparent;
  transition: border-color .3s;
}
.sol-card:hover .sol-card-body { border-top-color: var(--gold); }
.sol-card-title {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
}
.sol-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.sol-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s, transform .3s;
}
.sol-card-link::after { content: '→'; font-size: 14px; }
.sol-card:hover .sol-card-link { opacity: 1; transform: translateX(0); }

/* ─────────────────────────────────────────────
   CTA BANNER   full width dark with gold text
───────────────────────────────────────────── */
#cta-band {
  background: var(--bg4);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 56px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-text .sup {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cta-band-text h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

/* ─────────────────────────────────────────────
   PROCESS   horizontal 4-step
───────────────────────────────────────────── */
#process { background: var(--bg3); }
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
}
.proc-step {
  background: var(--bg3);
  padding: 40px 32px;
  position: relative;
  transition: background .25s;
}
.proc-step:hover { background: var(--bg4); }
.proc-num {
  font-family: var(--f-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(200,149,42,0.12);
  letter-spacing: 0.02em;
  position: absolute;
  top: 20px; right: 24px;
}
.proc-step:hover .proc-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.proc-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   PARTNERS / CLIENTS
───────────────────────────────────────────── */
#clients {
  background: var(--bg2);
  padding: 80px 0;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}
.client-cell {
  background: var(--bg3);
  padding: 40px 20px;
  text-align: center;
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  transition: all .25s;
  cursor: default;
}
.client-cell:hover {
  color: var(--gold-lt);
  border-color: var(--gold-line);
  background: var(--gold-dim);
}

/* ─────────────────────────────────────────────
   INTELLIGENCE HUB   3-col card grid
───────────────────────────────────────────── */
#intel { background: var(--bg3); }
.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.intel-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s, border-color .25s;
}
.intel-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.15);
}
.intel-img {
  height: 210px;
  overflow: hidden;
}
.intel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  transition: transform .5s, filter .4s;
}
.intel-card:hover .intel-img img {
  transform: scale(1.05);
  filter: brightness(0.85) saturate(1);
}
.intel-body { padding: 24px; }
.intel-cat {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.intel-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}
.intel-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
.intel-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s;
}
.intel-card:hover .intel-read { gap: 14px; }
.intel-read::after { content: '→'; }

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
#faq { background: var(--bg2); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--off);
  text-align: left;
  transition: color .2s;
}
.faq-q:hover, .faq-q.open { color: var(--gold); }
.faq-plus {
  width: 24px; height: 24px;
  border: 1px solid rgba(200,149,42,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-q.open .faq-plus { transform: rotate(45deg); background: var(--gold-dim); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding-bottom .35s;
}
.faq-a.open { max-height: 300px; padding-bottom: 20px; }
.faq-a p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* ─────────────────────────────────────────────
   TEAM
───────────────────────────────────────────── */
#team { background: var(--bg3); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 56px;
}
.team-card {
  background: var(--bg3);
  overflow: hidden;
  border-bottom: 2px solid transparent;
  transition: border-color .25s, background .25s;
}
.team-card:hover {
  border-bottom-color: var(--gold);
  background: var(--bg4);
}
.team-img {
  height: 200px;
  overflow: hidden;
}
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.92);
  transition: filter .4s, transform .5s;
}
.team-card:hover .team-img img {
  filter: brightness(1);
  transform: scale(1.04);
}
.team-body { padding: 22px 24px 28px; }
.team-name {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-bio { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.6; }

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
#contact { background: var(--bg4); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}


.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--off);
  outline: none;
  margin-bottom: 14px;
  transition: border-color .2s;
}
.cf-input::placeholder { color: #4a5568; }
.cf-input:focus { border-color: var(--gold); }
.cf-select {
  appearance: none;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-family: var(--f-body);
  font-size: 14px;
  color: #4a5568;
  outline: none;
  margin-bottom: 14px;
  cursor: pointer;
}
.cf-select:focus { border-color: var(--gold); color: var(--off); }
.cf-select option { background: #0d1520; color: var(--off); }
.cf-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--off);
  outline: none;
  resize: vertical;
  height: 120px;
  margin-bottom: 14px;
  transition: border-color .2s;
}
.cf-textarea:focus { border-color: var(--gold); }
.cf-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #000;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .2s;
}
.cf-submit:hover { background: var(--gold-lt); }
.cf-note {
  font-size: 12px;
  color: #4a5568;
  text-align: center;
  margin-top: 12px;
  font-weight: 300;
}

/* ─────────────────────────────────────────────
   FOOTER   tarideal-style: dark, 4-col
───────────────────────────────────────────── */
#footer {
  background: #060810;
  border-top: 1px solid var(--border);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 0 56px;
}
.footer-brand-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}
.footer-certs {
  display: flex; gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.footer-cert {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 4px 10px;
}
.footer-social {
  display: flex; gap: 10px; margin-top: 24px;
}
.footer-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  transition: color .2s;
}
.footer-col ul a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  font-weight: 300;
  color: #3a4455;
}
.footer-legal {
  display: flex; gap: 28px;
}
.footer-legal a {
  font-size: 13px;
  font-weight: 300;
  color: #3a4455;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--muted); }

/* ─────────────────────────────────────────────
   WHATSAPP WIDGET
───────────────────────────────────────────── */
#wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
#wa:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* ─────────────────────────────────────────────
   MOBILE NAV OVERLAY
───────────────────────────────────────────── */
#mob-nav {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(10,12,16,0.98);
  z-index: 850;
  flex-direction: column;
  overflow-y: auto;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
#mob-nav.open { display: flex; }
#mob-nav a {
  padding: 16px 40px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off);
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
#mob-nav a:hover { color: var(--gold); background: var(--gold-dim); }


.form-lbl {
  display: block;
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.animated { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr 1.6fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .solutions-grid { grid-template-columns: 1fr 1.6fr; }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .intel-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-burger { display: flex; }
  .wrap { padding: 0 20px; }
  section { padding: 72px 0; }
}
@media (max-width: 600px) {
  .intel-grid { grid-template-columns: 1fr 1.6fr; }
  .team-grid { grid-template-columns: 1fr 1.6fr; }
  .footer-main { grid-template-columns: 1fr 1.6fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: 1fr 1.6fr; }
  .cf-row { grid-template-columns: 1fr 1.6fr; }
  .hero-body { padding: 0 20px 20px; }
}

/* ─── DIVISION FLIP CARDS ─────────────────────────────────────── */
/* ── Division Cards (About section) ── */
.div-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #000;
  height: 640px;
}

.div-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* BG image always visible, zooms on hover */
.div-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.div-card:hover .div-card-bg {
  transform: scale(1.06);
}

/* Color tint overlay */
.div-card-tint {
  position: absolute;
  inset: 0;
  transition: opacity .5s ease;
}
.div-tint-blue {
  background: linear-gradient(
    180deg,
    rgba(8,18,40,0.15) 0%,
    rgba(8,18,40,0.45) 50%,
    rgba(8,18,40,0.82) 100%
  );
}
.div-card:hover .div-tint-blue {
  background: linear-gradient(
    180deg,
    rgba(8,18,40,0.35) 0%,
    rgba(8,18,40,0.62) 50%,
    rgba(8,18,40,0.92) 100%
  );
}
.div-tint-gold {
  background: linear-gradient(
    180deg,
    rgba(30,15,3,0.15) 0%,
    rgba(30,15,3,0.45) 50%,
    rgba(30,15,3,0.82) 100%
  );
}
.div-card:hover .div-tint-gold {
  background: linear-gradient(
    180deg,
    rgba(30,15,3,0.35) 0%,
    rgba(30,15,3,0.62) 50%,
    rgba(30,15,3,0.92) 100%
  );
}

/* Inner content stacked at bottom */
.div-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 44px;
  z-index: 3;
}

/* Name + label always visible */
.div-name-wrap {
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.div-card:hover .div-name-wrap {
  transform: translateY(-8px);
}

.div-name {
  font-family: var(--f-display);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.div-label {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Description hidden by default, slides up on hover */
.div-text-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: max-height .5s cubic-bezier(.25,.46,.45,.94),
              opacity .4s ease .05s,
              transform .45s ease .05s;
}
.div-card:hover .div-text-wrap {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
}

.div-text {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin: 16px 0 0;
  max-width: 480px;
}

/* Mobile */
@media (max-width: 640px) {
  .div-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
  .div-card { height: 420px; }
  .div-name { font-size: clamp(48px, 14vw, 72px); }
  .div-card-inner { padding: 28px 24px; }
}

/* Hide old flip classes if any remain */
.division-flip, .flip-front, .flip-back,
.flip-bg, .flip-default, .flip-hover-content,
.division-strip { display: none !important; }
.div-strip { display: grid !important; }



.sol-feat-row {
  transition: background .25s;
  border-radius: 2px;
}
.sol-feat-row:hover {
  background: rgba(255,255,255,0.03);
  padding-left: 12px;
}

@media (max-width: 900px) {
  #solutions .wrap > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

  /* ── Solutions blocks ── */
  .sol-block {
    position: relative;
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .sol-block-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
  }
  .sol-block:hover .sol-block-bg { transform: scale(1.04); }

  .sol-block-tint {
    position: absolute;
    inset: 0;
  }
  .sol-tint-flyx {
    background: linear-gradient(
      105deg,
      rgba(4,10,24,0.94) 0%,
      rgba(8,20,48,0.88) 45%,
      rgba(8,20,48,0.40) 100%
    );
  }
  .sol-tint-xforce {
    background: linear-gradient(
      105deg,
      rgba(10,7,2,0.94) 0%,
      rgba(22,13,3,0.88) 45%,
      rgba(22,13,3,0.40) 100%
    );
  }

  .sol-block-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 64px;
  }

  .sol-block-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .sol-block-eyebrow {
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .sol-block-title {
    font-family: var(--f-display);
    font-size: clamp(64px, 8vw, 108px);
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    margin-bottom: 24px;
  }

    /* Sol combined heading */
  .sol-block-heading {
    display: flex;
    align-items: baseline;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    line-height: 1;
  }
  .sol-envelope {
    font-family: var(--f-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .sol-divider {
    font-family: var(--f-head);
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
  }
  .sol-block-title-inline {
    font-family: var(--f-display);
    font-size: clamp(56px, 7vw, 100px);
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
  }

  @media (max-width: 768px) {
    .sol-block-heading { flex-direction: column; gap: 6px; }
    .sol-divider { display: none; }
    .sol-block-title-inline { font-size: clamp(48px, 13vw, 72px); }
  }

  .sol-block-btn {
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid;
    padding: 11px 24px;
    display: inline-block;
    transition: background .25s, color .25s, transform .25s;
    white-space: nowrap;
  }
  .sol-block-btn:hover { transform: translateX(4px); }

  .sol-btn-flyx {
    color: #7BB8E8;
    border-color: rgba(91,155,213,0.5);
  }
  .sol-btn-flyx:hover {
    background: rgba(91,155,213,0.12);
    border-color: #7BB8E8;
  }
  .sol-btn-xforce {
    color: #E8C96A;
    border-color: rgba(200,149,42,0.5);
  }
  .sol-btn-xforce:hover {
    background: rgba(200,149,42,0.12);
    border-color: #E8C96A;
  }

  /* Divider line between blocks */
  .sol-block-flyx { border-bottom: 1px solid rgba(91,155,213,0.12); }

  .sol-block-right {
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 52px;
  }

  .sol-block-text {
    font-family: var(--f-body);
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.82;
    max-width: 560px;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .sol-block { height: auto; padding: 48px 0; }
    .sol-block-content { flex-direction: column; gap: 28px; padding: 0 24px; }
    .sol-block-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 24px; }
    .sol-block-title { font-size: clamp(52px, 14vw, 80px); }
    .sol-tint-flyx, .sol-tint-xforce { background: rgba(5,10,20,0.88) !important; }
  }

  /* ─── keep old sol-readmore for any strays ─── */
  .sol-readmore {
    font-family: var(--f-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid;
    padding: 10px 20px;
    display: inline-block;
    transition: background .2s;
  }
  .sol-readmore:hover { background: rgba(255,255,255,0.07); }



  /* ═══════════════════════════════════════
     MOBILE RESPONSIVE  ≤ 768px
  ═══════════════════════════════════════ */
  @media (max-width:768px) {

    /* ── Nav ── */
    #nav { height:60px; }
    .nav-logo img { height:34px; }
    .mob-btn { display:flex; }

    /* ── Hero ── */
    #hero { min-height:100svh; margin-bottom:0; padding-bottom:0; }
    .hero-content { padding:0 20px; padding-top:80px; }
    h1.hero-title { font-size:clamp(52px,14vw,100px); }
    h2.hero-tagline { font-size:clamp(18px,5vw,28px); }
    .hero-desc { font-size:14px; }
    .hero-certs { flex-wrap:wrap; gap:8px; font-size:10px; }
    .hero-cta-row { flex-direction:column; gap:12px; align-items:flex-start; }

    /* ── Stats ── */
    #stats .stats-grid { grid-template-columns:1fr 1fr; gap:0; }
    .stat-cell { padding:20px 16px; }
    .stat-val { font-size:clamp(24px,8vw,40px); }

    /* ── About flip cards ── */
    #about .flip-cards-strip,
    div[style*="grid-template-columns:1fr 1fr"][style*="background:#000"] { 
      grid-template-columns:1fr !important; 
    }
    .division-flip { min-height:320px !important; }

    /* ── Solutions ── */
    .sol-row { grid-template-columns:1fr; gap:32px; padding:40px 20px; }
    .sol-num { font-size:24px; width:36px; }

    /* ── Process ── */
    #process .wrap > div[style*="grid"] { grid-template-columns:1fr 1fr !important; gap:20px !important; }
    .proc-num { font-size:32px !important; }

    /* ── Clients ── */
    #clients .wrap > div[style*="grid"] { grid-template-columns:1fr 1fr !important; }

    /* ── Intel ── */
    .intel-grid { grid-template-columns:1fr !important; }

    /* ── FAQ ── */
    .faq-layout { grid-template-columns:1fr !important; gap:32px !important; }
    .faq-q { font-size:14px; }

    /* ── Team ── */
    .team-grid { grid-template-columns:1fr 1fr !important; gap:16px !important; }
    .team-card { height:auto !important; }
        /* ── Contact form ── */
    #contact .wrap > div[style*="max-width"] > div[style*="grid-template-columns:1fr 1fr"] { 
      grid-template-columns:1fr !important; 
    }

    /* ── Footer ── */
    .footer-main { grid-template-columns:1fr !important; gap:32px; }
    .footer-bottom { flex-direction:column; gap:12px; text-align:center; }
    .footer-legal { justify-content:center; }

    /* ── General spacing ── */
    .wrap { padding-left:20px !important; padding-right:20px !important; }
    section { padding-top:60px !important; padding-bottom:60px !important; }
    .sec-title { font-size:clamp(36px,11vw,64px) !important; }

    /* ── CTA band ── */
    #cta-band .wrap { flex-direction:column !important; gap:20px !important; text-align:center; }
  }

  /* ≤ 480px small phones */
  @media (max-width:480px) {
    .team-grid { grid-template-columns:1fr !important; }
    .team-img { height:260px !important; }
    #process .wrap > div[style*="grid"] { grid-template-columns:1fr !important; }
    #clients .wrap > div[style*="grid"] { grid-template-columns:1fr !important; }
    .sol-row { padding:32px 16px; }
    .hero-cta-row a { width:100%; text-align:center; }
    h1.hero-title { font-size:clamp(44px,13vw,72px); }
  }


  /* ── X with yellow tactical corners ── */
  .x-corner-wrap {
    position: relative;
    display: inline-block;
    color: #888;
    line-height: 1;
  }
  .x-inner {
    display: block;
    position: relative;
    z-index: 1;
  }
  .x-corner {
    position: absolute;
    width: 0.18em;
    height: 0.18em;
    border-color: #c8952a;
    border-style: solid;
    z-index: 2;
  }
  .x-tl { top: 0.04em;    left: 0.04em;  border-width: 2px 0 0 2px; }
  .x-tr { top: 0.04em;    right: 0.04em; border-width: 2px 2px 0 0; }
  .x-bl { bottom: 0.04em; left: 0.04em;  border-width: 0 0 2px 2px; }
  .x-br { bottom: 0.04em; right: 0.04em; border-width: 0 2px 2px 0; }


  .sol-block-heading { flex-direction: column; gap: 6px; margin-bottom: 24px; }
  .sol-name-above {
    font-family: var(--f-display);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
  }
  .sol-envelope {
    font-family: var(--f-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }


  .sol-talk-btn {
    font-family: var(--f-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    background: var(--gold);
    border: none;
    padding: 14px 36px;
    display: inline-block;
    cursor: pointer;
    transition: background .2s, transform .15s;
  }
  .sol-talk-btn:hover {
    background: var(--gold-lt);
    transform: translateX(4px);
  }


/* ── Video section ── */
#video-section {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #000;
  margin: 0;
  padding: 0;
  display: block;
}
#video-section video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  #video-section video { height: 260px; }
}


  /* ── Partners grid ── */
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .partner-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    background: var(--bg2);
    transition: background .3s, border-color .3s;
    cursor: default;
  }
  .partner-tile:hover {
    background: rgba(200,149,42,0.06);
    border-color: rgba(200,149,42,0.2);
  }
  .partner-acronym {
    font-family: var(--f-display);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .partner-name {
    font-family: var(--f-head);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  @media (max-width: 640px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
  }


/* ── Solutions redesign: side by side contrasting ── */
.sol-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.sol-col {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.sol-col-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.sol-col:hover .sol-col-bg { transform: scale(1.04); }
.sol-col-overlay { position: absolute; inset: 0; }
.sol-col-content {
  position: relative;
  z-index: 2;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 480px;
}
.sol-col-tag {
  font-family: var(--f-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid;
  padding: 5px 12px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.sol-col-name {
  font-family: var(--f-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}
.sol-col-subtitle {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.sol-col-text {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.82;
  max-width: 380px;
  flex: 1;
  margin-bottom: 32px;
}
.sol-col-btn {
  font-family: var(--f-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid;
  padding: 12px 28px;
  display: inline-block;
  transition: background .25s, transform .25s;
  align-self: flex-start;
}
.sol-col-btn:hover { transform: translateX(4px); }
/* FLYX — deep navy/blue theme */
.sol-col-flyx .sol-col-overlay {
  background: linear-gradient(135deg, rgba(2,8,24,0.96) 0%, rgba(6,20,50,0.88) 60%, rgba(6,20,50,0.55) 100%);
}
.sol-col-flyx .sol-col-tag  { color: #7BB8E8; border-color: rgba(91,155,213,0.5); }
.sol-col-flyx .sol-col-name em { font-style:normal; color: #5B9BD5; }
.sol-col-flyx .sol-col-subtitle { color: #7BB8E8; }
.sol-col-flyx .sol-col-btn  { color: #7BB8E8; border-color: rgba(91,155,213,0.5); }
.sol-col-flyx .sol-col-btn:hover { background: rgba(91,155,213,0.15); border-color: #7BB8E8; }
.sol-col-flyx { border-right: 1px solid rgba(91,155,213,0.15); }
/* XFORCE — rich gold/dark theme */
.sol-col-xforce .sol-col-overlay {
  background: linear-gradient(135deg, rgba(18,10,2,0.97) 0%, rgba(35,20,4,0.90) 60%, rgba(35,20,4,0.55) 100%);
}
.sol-col-xforce .sol-col-tag  { color: var(--gold-lt); border-color: rgba(200,149,42,0.5); }
.sol-col-xforce .sol-col-name em { font-style:normal; color: var(--gold); }
.sol-col-xforce .sol-col-subtitle { color: var(--gold-lt); }
.sol-col-xforce .sol-col-btn  { color: var(--gold-lt); border-color: rgba(200,149,42,0.5); }
.sol-col-xforce .sol-col-btn:hover { background: rgba(200,149,42,0.12); border-color: var(--gold-lt); }
@media(max-width:768px){
  .sol-two-col { grid-template-columns: 1fr; }
  .sol-col-content { padding: 40px 24px; min-height: 380px; }
  .sol-col-name { font-size: clamp(64px, 16vw, 90px); }
  .sol-col-flyx { border-right: none; border-bottom: 1px solid rgba(91,155,213,0.15); }
}


/* Solutions diagram section */
.sol-diagram-wrap { padding: 96px 0 80px; }
.sol-diagram-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  margin-top: 56px;
  position: relative;
}
.sol-diagram-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}
.sol-dc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.sol-diagram-card:hover .sol-dc-bg { transform: scale(1.04); }
.sol-dc-overlay { position: absolute; inset: 0; }
.sol-dc-content {
  position: relative;
  z-index: 2;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* centre divider line */
.sol-diagram-grid::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
@media(max-width:768px){
  .sol-diagram-grid { grid-template-columns:1fr; }
  .sol-diagram-grid::after { display:none; }
  .sol-diagram-card { min-height:400px; }
  .sol-dc-content { padding:32px 24px; }
}


/* ── Sol-div styles from solutions page ── */
.sol-divider {
    font-family: var(--f-head);
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
  }
.sol-divider { display: none; }
.sol-divisions{padding:80px 0;}
.sol-div-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:rgba(255,255,255,0.05);margin-top:48px;}
.sol-div-card{background:var(--bg2);padding:0;}
.sol-div-card-flyx{border-top:3px solid #5B9BD5;}
.sol-div-card-xforce{border-top:3px solid var(--gold);}
.sol-div-img{height:200px;overflow:hidden;position:relative;}
.sol-div-img img{width:100%;height:100%;object-fit:cover;filter:brightness(0.6);transition:transform .6s;}
.sol-div-card:hover .sol-div-img img{transform:scale(1.04);}
.sol-div-img-tag{position:absolute;bottom:12px;left:20px;font-family:var(--f-head);font-size:10px;font-weight:700;letter-spacing:0.2em;text-transform:uppercase;padding:5px 10px;backdrop-filter:blur(6px);}
.sol-div-inner{padding:32px 40px 40px;}
.sol-div-name{font-family:var(--f-display);font-size:clamp(56px,8vw,96px);font-weight:900;letter-spacing:0.03em;text-transform:uppercase;line-height:1;color:#fff;margin-bottom:8px;}
.sol-div-goal{font-family:var(--f-head);font-size:12px;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;margin-bottom:14px;}
.sol-div-body{font-family:var(--f-body);font-size:14px;color:var(--muted);line-height:1.8;margin-bottom:24px;}
.sol-div-grid{grid-template-columns:1fr;}
.sol-div-inner{padding:24px 24px 32px;}
.sol-div-img img{transform:scale(1.04);}

@media(max-width:768px){
  div[style*="grid-template-columns:1fr 1fr"][style*="min-height:520px"]{
    display:flex!important;flex-direction:column!important;
  }
}
.div-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #000;
  height: 640px;
}
.div-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.div-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.div-card:hover .div-card-bg {
  transform: scale(1.06);
}
.div-card-tint {
  position: absolute;
  inset: 0;
  transition: opacity .5s ease;
}
.div-tint-blue {
  background: linear-gradient(
    180deg,
    rgba(8,18,40,0.15) 0%,
    rgba(8,18,40,0.45) 50%,
    rgba(8,18,40,0.82) 100%
  );
}
.div-card:hover .div-tint-blue {
  background: linear-gradient(
    180deg,
    rgba(8,18,40,0.35) 0%,
    rgba(8,18,40,0.62) 50%,
    rgba(8,18,40,0.92) 100%
  );
}
.div-tint-gold {
  background: linear-gradient(
    180deg,
    rgba(30,15,3,0.15) 0%,
    rgba(30,15,3,0.45) 50%,
    rgba(30,15,3,0.82) 100%
  );
}
.div-card:hover .div-tint-gold {
  background: linear-gradient(
    180deg,
    rgba(30,15,3,0.35) 0%,
    rgba(30,15,3,0.62) 50%,
    rgba(30,15,3,0.92) 100%
  );
}
.div-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 44px;
  z-index: 3;
}
.div-name-wrap {
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.div-card:hover .div-name-wrap {
  transform: translateY(-8px);
}
.div-name {
  font-family: var(--f-display);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.div-label {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 8px;
}
.div-text-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: max-height .5s cubic-bezier(.25,.46,.45,.94),
              opacity .4s ease .05s,
              transform .45s ease .05s;
}
.div-card:hover .div-text-wrap {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
}
.div-text {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin: 16px 0 0;
  max-width: 480px;
}
.div-strip {
    grid-template-columns: 1fr;
    height: auto;
  }
.div-card { height: 420px; }
.div-name { font-size: clamp(48px, 14vw, 72px); }
.div-card-inner { padding: 28px 24px; }
.div-strip { display: grid !important; }

/* ── Division Cards (under Solutions) ──────────────────────── */
@media(max-width:768px){
  }


/* ── Image Hover Cards (Tarideal style) ──────────────────────────── */
.div-strip2{display:grid;grid-template-columns:1fr 1fr;gap:3px;background:#000;height:600px;}
.div-card2{position:relative;overflow:hidden;cursor:pointer;}
.div-card2-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .8s cubic-bezier(.25,.46,.45,.94);will-change:transform;}
.div-card2:hover .div-card2-bg{transform:scale(1.07);}
.div-card2-tint{position:absolute;inset:0;background:linear-gradient(to top,rgba(6,8,16,0.92) 0%,rgba(6,8,16,0.45) 60%,rgba(6,8,16,0.2) 100%);transition:background .5s;}
.div-card2:hover .div-card2-tint{background:linear-gradient(to top,rgba(6,8,16,0.97) 0%,rgba(6,8,16,0.78) 55%,rgba(6,8,16,0.5) 100%);}
.div-card2-default{position:absolute;bottom:40px;left:40px;right:40px;z-index:3;transition:opacity .35s,transform .35s;}
.div-card2:hover .div-card2-default{opacity:0;transform:translateY(-12px);pointer-events:none;}
.div-card2-name{font-family:var(--f-display);font-size:clamp(64px,9vw,110px);line-height:.9;text-transform:uppercase;letter-spacing:.03em;color:#fff;}
.div-card2-label{font-family:var(--f-head);font-size:12px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;margin-top:10px;opacity:.75;}
.div-card2-hover{position:absolute;inset:0;z-index:4;display:flex;flex-direction:column;justify-content:flex-end;padding:40px;opacity:0;transform:translateY(16px);transition:opacity .45s,transform .45s;pointer-events:none;}
.div-card2:hover .div-card2-hover{opacity:1;transform:translateY(0);pointer-events:auto;}
.div-card2-hname{font-family:var(--f-display);font-size:clamp(48px,6vw,80px);line-height:.9;text-transform:uppercase;letter-spacing:.03em;color:#fff;margin-bottom:6px;}
.div-card2-hsub{font-family:var(--f-head);font-size:11px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;opacity:.7;margin-bottom:18px;}
.div-card2-hbody{font-family:var(--f-body);font-size:14px;color:rgba(255,255,255,.82);line-height:1.75;max-width:440px;margin-bottom:24px;}
.div-card2-hcta{display:inline-flex;align-items:center;gap:8px;font-family:var(--f-head);font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;border:1px solid;padding:10px 22px;transition:background .2s;align-self:flex-start;text-decoration:none;color:inherit;}
.div-card2-hcta:hover{background:rgba(255,255,255,.1);}
@media(max-width:640px){.div-strip2{grid-template-columns:1fr;height:auto;}.div-card2{height:420px;}}
/* About read more */
.about-readmore{display:inline-flex;align-items:center;gap:8px;font-family:var(--f-head);font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);border-bottom:1px solid rgba(200,149,42,0.4);padding-bottom:3px;margin-top:20px;transition:border-color .2s,color .2s;text-decoration:none;}
.about-readmore:hover{color:var(--gold-lt);border-color:var(--gold);}

/* ── Defense Partners ───────────────────────────── */
.dp-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  border-top:1px solid rgba(255,255,255,0.08);
  border-left:1px solid rgba(255,255,255,0.08);
}
.dp-cell{
  background:var(--bg2);
  padding:56px 40px 48px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition:background .25s;
  cursor:default;
}
.dp-cell:hover{ background:#111620; }
.dp-abbr{
  font-family:var(--f-display);
  font-size:clamp(22px,3vw,34px);
  font-weight:900;
  letter-spacing:.1em;
  color:#fff;
  line-height:1.15;
  text-transform:uppercase;
  margin-bottom:10px;
}
.dp-name{
  font-family:var(--f-head);
  font-size:10px;
  font-weight:700;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--muted);
}
@media(max-width:700px){
  .dp-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:440px){
  .dp-grid{grid-template-columns:1fr;}
}

/* ═══════════════════════════════════════════
   GLOBAL MOBILE RESPONSIVE — ALL PAGES
   Applied to homepage, about, solutions, courses
═══════════════════════════════════════════ */

/* ── Tablet 900px ── */
@media (max-width: 900px) {
  .wrap { padding: 0 24px; }

  /* About page */
  .about-section-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .about-num { font-size: clamp(80px,18vw,140px); }
    /* Solutions 2-col grids */
  .sol-who-grid { grid-template-columns: repeat(2,1fr) !important; }
  .sol-process-grid { grid-template-columns: 1fr 1fr !important; }

  /* Defense partners */
  .dp-grid { grid-template-columns: repeat(3,1fr) !important; }

  /* Mil flow */
  .mil-flow { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
  .mil-connector { padding: 0 28px !important; }
  .mil-connector-line { width: 1px !important; height: 24px !important; }
}

/* ── Mobile 640px ── */
@media (max-width: 640px) {
  /* Nav */
  .nav-mob-btn { display: flex !important; }
  .nav-inner { padding: 0 20px !important; }

  /* General */
  .wrap { padding: 0 16px !important; }
  .sec-title { font-size: clamp(40px,12vw,72px) !important; }
  .hero-title { font-size: clamp(52px,14vw,80px) !important; }
  .hero-body { padding: 0 16px 20px !important; }
  .hero-tagline { font-size: clamp(16px,5vw,24px) !important; }
  .hero-desc { font-size: 14px !important; }
  .hero-certs { gap: 12px !important; }
  .hero-cta-row { flex-direction: column !important; gap: 12px !important; align-items: flex-start !important; }
  .btn-primary, .btn-outline { width: 100% !important; text-align: center !important; box-sizing: border-box !important; }

  /* Stats */
  #stats .stats-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .stat-cell { border-right: none !important; border-bottom: 1px solid var(--border) !important; }

  /* About */
  .about-block { padding: 56px 0 !important; }
  .team-grid { grid-template-columns: 1fr !important; }
  .team-card-img { aspect-ratio: 16/9 !important; }
  .about-bullets li { flex-direction: column !important; gap: 8px !important; }

  /* Solutions div cards */
  .div-strip2 { grid-template-columns: 1fr !important; height: auto !important; }
  .div-card2 { height: 360px !important; }

  /* Defense partners */
  .dp-grid { grid-template-columns: 1fr 1fr !important; }
  .dp-cell { padding: 28px 16px !important; }
  .dp-abbr { font-size: clamp(18px,5vw,28px) !important; }

  /* Mil flow diagram */
  .mil-flow { grid-template-columns: 1fr !important; }
  .mil-phase { padding: 28px 20px !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-cols { grid-template-columns: 1fr 1fr !important; }
  footer .wrap > div { flex-direction: column !important; gap: 24px !important; }

  /* Contact popup */
  #contact-popup > div { padding: 28px 20px !important; margin: 16px !important; }

  /* FAQ */
  .faq-q { font-size: 14px !important; }
}

/* ── Small mobile 420px ── */
@media (max-width: 420px) {
  .hero-title { font-size: clamp(44px,13vw,64px) !important; }
  .sec-title { font-size: clamp(36px,11vw,56px) !important; }
  .dp-grid { grid-template-columns: 1fr !important; }
  .dp-cell { padding: 24px 16px !important; }
  .hero-certs { flex-wrap: wrap !important; }
}

/* ── Solutions page mobile ── */
@media (max-width: 900px) {
  #flyx .wrap > div[style*="grid-template-columns:1fr 1fr"],
  #xforce .wrap > div[style*="grid-template-columns:1fr 1fr"] {
    display: block !important;
  }
}
@media (max-width: 640px) {
  /* Solutions hero */
  section[style*="height:82vh"] { height: auto !important; min-height: 70vh !important; }
  section[style*="height:80vh"] { height: auto !important; min-height: 65vh !important; }
  section[style*="height:70vh"] { height: auto !important; min-height: 60vh !important; }

  /* 2-col grids to 1-col */
  div[style*="grid-template-columns:1fr 1fr"]:not(.div-strip2) { 
    display: block !important; 
  }
  div[style*="grid-template-columns:300px 1fr"],
  div[style*="grid-template-columns:320px 1fr"],
  div[style*="grid-template-columns:1fr 1.1fr"],
  div[style*="grid-template-columns:1fr 1.6fr"] {
    display: block !important;
  }

  /* Courses list */
  a[style*="grid-template-columns:140px 1fr auto"],
  a[style*="grid-template-columns:120px 1fr auto"] {
    grid-template-columns: 80px 1fr !important;
  }
  a[style*="grid-template-columns:140px 1fr auto"] > div:last-child,
  a[style*="grid-template-columns:120px 1fr auto"] > div:last-child { display: none !important; }

  /* Process grid */
  div[style*="grid-template-columns:repeat(4,1fr)"] { 
    grid-template-columns: 1fr 1fr !important; 
  }
  /* Who is it for grid 4 cols */
  .sol-who-grid { grid-template-columns: 1fr 1fr !important; }

  /* Contact form grid */
  div[style*="grid-template-columns:1fr 1.1fr"] { display: block !important; }
  div[style*="grid-template-columns:1fr 1.1fr"] > form { margin-top: 32px !important; }

  /* Course related links */
  a[style*="grid-template-columns:140px 1fr auto"] { 
    grid-template-columns: 72px 1fr !important;
  }

  /* Wrap padding */
  .wrap { padding: 0 16px !important; }

  /* Section padding */
  section[style*="padding:96px 0"] { padding: 56px 0 !important; }
  section[style*="padding:80px 0"] { padding: 48px 0 !important; }
  section[style*="padding:72px 0"] { padding: 40px 0 !important; }

  /* Hero content */
  div[style*="padding:0 40px 80px"],
  div[style*="padding:0 40px 72px"],
  div[style*="padding:0 40px 60px"] { padding: 0 16px 48px !important; }

  /* Buttons full width */
  .btn-primary, .btn-outline { 
    display: block !important; 
    text-align: center !important; 
    width: 100% !important; 
    box-sizing: border-box !important; 
  }

  /* 3-col process/module grids */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 420px) {
  div[style*="grid-template-columns:repeat(4,1fr)"] { 
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:1fr 1fr"]:not(.div-strip2) { 
    grid-template-columns: 1fr !important;
  }
}


/* ── Force nav visible on desktop ── */
@media (min-width: 641px) {
  .nav-links { display: flex !important; }
  .nav-right { display: flex !important; }
  .nav-social { display: flex !important; }
  .nav-mob-btn { display: none !important; }
}



/* 2-col dropdown overrides */
  color: #fff !important;
  padding-left: 0 !important;
  background: transparent !important;
}

/* Solutions 2-col dropdown */
.nav-dropdown[style*="grid-template-columns"] {
  padding: 28px 32px !important;
}
.nav-dropdown[style*="grid-template-columns"] a {
  display: block !important;
  padding: 7px 0 !important;
  font-family: var(--f-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: rgba(216,220,228,0.85) !important;
  background: transparent !important;
}
.nav-dropdown[style*="grid-template-columns"] a:hover {
  color: #fff !important;
  background: transparent !important;
  padding-left: 0 !important;
}

/* Nav dropdown FLYX/XFORCE header overrides */
.nav-dropdown a[href="/flyx/"] { color: #e8b94a !important; font-family: var(--f-body) !important; font-size: 13px !important; font-weight: 600 !important; letter-spacing: normal !important; text-transform: none !important; padding-left: 0 !important; background: transparent !important; }
.nav-dropdown a[href="/flyx/"]:hover { color: #fff !important; background: transparent !important; padding-left: 0 !important; }
.nav-dropdown a[href="/xforce/"] { color: #afbcc8 !important; font-family: var(--f-body) !important; font-size: 13px !important; font-weight: 600 !important; letter-spacing: normal !important; text-transform: none !important; padding-left: 0 !important; background: transparent !important; }
.nav-dropdown a[href="/xforce/"]:hover { color: #fff !important; background: transparent !important; padding-left: 0 !important; }

#hero { padding-bottom: 0 !important; }
.hero-body { padding-bottom: 16px !important; }

/* FAQ fix */
.faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.35s ease, opacity 0.3s ease; }
.faq-a.open { max-height: 600px; opacity: 1; }

/* Team expand */
.team-card { position:relative; overflow:hidden; }
.team-img { position:relative; overflow:hidden; }
.team-img img { transition:transform .5s ease; }
.team-card:hover .team-img img { transform:scale(1.04); }
.team-expand-btn {
  display:inline-flex; align-items:center; justify-content:center;
  width:22px; height:22px; border-radius:50%;
  background:transparent; border:1px solid rgba(200,149,42,0.5);
  cursor:pointer; color:#c8952a; font-size:14px; font-weight:400; line-height:1;
  transition:background .2s, transform .3s; padding:0;
  vertical-align:middle; margin-left:6px; flex-shrink:0;
}
.team-expand-btn:hover { background:#c8952a; color:#000; border-color:#c8952a; }
.team-expand-btn.open { transform:rotate(45deg); background:#c8952a; color:#000; border-color:#c8952a; }
.team-bio-wrap { display:flex; align-items:flex-end; gap:0; flex-wrap:wrap; }
.team-extra {
  max-height:0; overflow:hidden; opacity:0;
  transition:max-height .45s ease, opacity .35s ease;
  background:#111820; border-top:1px solid rgba(255,255,255,0.07);
}
.team-extra.open { max-height:600px; opacity:1; }
.team-extra-inner { padding:18px 24px 22px; }
.team-extra-section { margin-bottom:14px; }
.team-extra-section:last-child { margin-bottom:0; }
.team-extra-label {
  font-family:var(--f-head); font-size:10px; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase; color:#c8952a; margin-bottom:7px;
}
.team-extra-list { list-style:none; display:flex; flex-direction:column; gap:4px; }
.team-extra-list li {
  font-family:var(--f-body); font-size:12px; color:#8898aa;
  line-height:1.6; padding-left:14px; position:relative;
}
.team-extra-list li::before { content:'▹'; position:absolute; left:0; color:#c8952a; font-size:10px; }
.team-extra-text { font-family:var(--f-body); font-size:12px; color:#8898aa; line-height:1.7; }

/* ── Tactical Drone Training nav link ── */
.nav-dropdown a[href="/tactical-drone-training/"] {
  color: rgba(216,220,228,0.85) !important;
  font-family: var(--f-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  padding-left: 0 !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(175,188,200,0.12);
  margin-bottom: 6px;
  padding-bottom: 8px;
}
.nav-dropdown a[href="/tactical-drone-training/"]:hover {
  color: #fff !important;
  background: transparent !important;
  padding-left: 0 !important;
}
