/* ============================================================
   GCA DESIGN SYSTEM — Government Contracting Authority
   Premium aesthetic inspired by Palantir, Booz Allen, Tyto Athene
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --navy: #0B3162;
  --deep-navy: #071E3D;
  --red: #D12936;
  --gold: #C5A44A;
  --blue: #19649C;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --light-gray: #E8EBF0;
  --mid-gray: #8A95A5;
  --dark-gray: #2C3E50;

  /* Typography Scale */
  --fs-hero: clamp(3rem, 6vw, 5.5rem);
  --fs-h1: clamp(2.2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: 1.05rem;
  --fs-small: 0.9rem;
  --fs-stat: clamp(2.5rem, 5vw, 4.5rem);

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --content-max: 1280px;
  --content-wide: 1440px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.4s;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Source Sans Pro', 'Segoe UI', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--deep-navy);
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: var(--fs-h1);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--mid-gray);
  max-width: 640px;
  line-height: 1.8;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide { max-width: var(--content-wide); }
section { padding: var(--section-pad) 0; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--duration) var(--ease);
}

.nav--scrolled {
  background: rgba(7, 30, 61, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo img {
  height: 120px;
  width: auto;
  transition: height var(--duration) var(--ease);
}

.nav--scrolled .nav__logo img { height: 80px; }

.nav__logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.1;
}

.nav__logo-text small {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  display: block;
  color: var(--gold);
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}

.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

/* --- Dropdown --- */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { cursor: pointer; }
.nav__dropdown-toggle { position: relative; }
.nav__dropdown-toggle::before {
  content: '';
  position: absolute;
  right: -18px;
  top: 50%;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--duration) var(--ease);
}
.nav__dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 190px;
  background: rgba(7, 30, 61, 0.97);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 0.5rem 0;
  list-style: none;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease), visibility var(--duration);
  z-index: 1001;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown:hover .nav__dropdown-toggle::before,
.nav__dropdown.open .nav__dropdown-toggle::before {
  transform: translateY(-70%) rotate(-135deg);
}
.nav__dropdown-menu li { padding: 0; }
.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 1.4rem !important;
  font-size: 0.8rem !important;
  white-space: nowrap;
  color: rgba(255,255,255,0.75) !important;
  letter-spacing: 0.12em !important;
}
.nav__dropdown-menu a::after { display: none !important; }
.nav__dropdown-menu a:hover {
  color: var(--white) !important;
  background: rgba(255,255,255,0.06);
}

.nav__cta {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.nav__cta::after { display: none !important; }
.nav__cta:hover { background: #b8222d; transform: translateY(-1px); }

/* Mobile Nav */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(7, 30, 61, 0.88) 0%,
    rgba(11, 49, 98, 0.75) 40%,
    rgba(11, 49, 98, 0.55) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
}

.hero__content {
  max-width: 780px;
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(197, 164, 74, 0.3);
  border-radius: 2px;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero__title {
  font-size: var(--fs-hero);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero__title span { color: var(--gold); }

.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat { text-align: left; }

.hero__stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  background: #b8222d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(209, 41, 54, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--dark {
  background: var(--deep-navy);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 30, 61, 0.35);
}

.btn--gold {
  background: var(--gold);
  color: var(--deep-navy);
}

.btn--gold:hover {
  background: #d4b35a;
  transform: translateY(-2px);
}

.btn svg, .btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  line-height: 1;
  font-size: 1.1em;
  transition: transform var(--duration) var(--ease);
}

.btn:hover .arrow { transform: translateX(4px); }

/* --- About Preview --- */
.about-preview { background: var(--white); }

.about-preview.about-preview--bg { background: var(--deep-navy); }
.about-preview--bg .section-label { color: var(--gold); }
.about-preview--bg .section-title { color: var(--white); }
.about-preview--bg .about-preview__text p { color: var(--white); }
.about-preview--bg .btn--outline { color: var(--white); border-color: var(--white); }
.about-preview--bg .btn--outline:hover { background: var(--white); color: var(--deep-navy); }

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-preview__image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-preview__image::after { display: none; }

.about-preview__text p {
  margin-bottom: 1.25rem;
  color: var(--charcoal, #2A2A2A);
}

.about-preview__text p:last-of-type { margin-bottom: 2rem; }

/* --- Sectors / Track Record --- */
.sectors {
  background: var(--deep-navy);
  position: relative;
  overflow: hidden;
}

.sectors::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(25, 100, 156, 0.08), transparent 70%);
  border-radius: 50%;
}

.sectors .section-title { color: var(--white); }
.sectors .section-subtitle { color: rgba(255,255,255,0.55); }

.sectors__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sectors__total {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sectors__total-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.05em;
}

.sectors__total-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
}

.sectors__total-monthly {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-top: 1.5rem;
  padding: 0.8rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.sectors__total-cta {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-top: 1.2rem;
}

/* removed old grid */
/* removed old card */
/* removed old card */
/* removed old card */
/* removed old card */
/* removed old card */
/* removed old card */
/* removed old card */
/* removed old card */
/* removed old card */

/* Rotating contract display */
/* removed old card */

.contract-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}

.contract-item.active { opacity: 1; }

.contract-item__name {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.contract-item__meta {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}

/* --- Differentiators --- */
.differentiators { background: var(--off-white); }

.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.diff-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 1px solid var(--light-gray);
  transition: all var(--duration) var(--ease);
}

.diff-card:hover {
  box-shadow: 0 12px 40px rgba(7, 30, 61, 0.08);
  transform: translateY(-4px);
  border-color: rgba(197, 164, 74, 0.3);
}

.diff-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.2rem;
}

.diff-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--deep-navy);
  margin-bottom: 0.75rem;
}

.diff-card__text {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);
  text-align: center;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197,164,74,0.06), transparent 70%);
}

.cta-banner .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* --- Footer --- */
.footer {
  background: #050E1A;
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer__heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.5rem; }

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* --- Page Headers (About, Services) --- */
.page-header {
  position: relative;
  padding: 10rem 0 5rem;
  background: url('https://res.cloudinary.com/wsgc-gca/image/upload/v1772886317/Blog03_cih0zo.png') top center / cover no-repeat;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(7, 30, 61, 0.88) 0%,
    rgba(11, 49, 98, 0.75) 40%,
    rgba(11, 49, 98, 0.55) 100%
  );
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header .section-title {
  color: var(--white);
  font-size: var(--fs-h1);
}

.page-header .section-subtitle { color: rgba(255,255,255,0.6); }

/* --- Leadership Cards --- */
.leadership__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.leader-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.leader-card:hover {
  box-shadow: 0 12px 40px rgba(7, 30, 61, 0.08);
}

.leader-card__photo {
  height: 100%;
  min-height: 300px;
}

.leader-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card__info {
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--deep-navy);
  margin-bottom: 0.25rem;
}

.leader-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.leader-card__bio {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* --- Values Grid --- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  background: var(--off-white);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  transition: all var(--duration) var(--ease);
}

.value-card:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(7,30,61,0.06);
}

.value-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-navy);
  margin-bottom: 0.75rem;
}

.value-card__text {
  font-size: 0.92rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* --- Services Page --- */
.workstream {
  padding: var(--section-pad) 0;
}

.workstream:nth-child(even) { background: var(--off-white); }

.workstream__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.workstream:nth-child(even) .workstream__grid { direction: rtl; }
.workstream:nth-child(even) .workstream__grid > * { direction: ltr; }

.workstream__image {
  border-radius: 4px;
  overflow: hidden;
}

.workstream__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.workstream__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(197, 164, 74, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.workstream__list {
  list-style: none;
  margin-top: 1.5rem;
}

.workstream__list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.workstream__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* --- Guarantee Section --- */
.guarantee {
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
  text-align: center;
}

.guarantee .section-title { color: var(--gold); }

.guarantee__text {
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  /* removed old grid */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .leadership__grid { grid-template-columns: 1fr; }
  .leader-card { grid-template-columns: 200px 1fr; }
  .workstream__grid { grid-template-columns: 1fr; gap: 2rem; }
  .workstream:nth-child(even) .workstream__grid { direction: ltr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 30, 61, 0.98);
    padding: 2rem;
    gap: 1.5rem;
  }
  .nav__dropdown-menu {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0.3rem 0 0 1rem !important;
    min-width: auto !important;
  }
  .nav__dropdown-toggle::before { display: none !important; }
  .hero__stats { flex-direction: column; gap: 1.5rem; }
  .about-preview__grid { grid-template-columns: 1fr; }
  /* removed old grid */
  .diff__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-card__photo { min-height: 250px; }
  .leader-card__info { padding: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

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

/* --- Hero Split Layout --- */
.hero__content--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: none;
}

.hero__text {
  flex: 1;
  max-width: 640px;
}

.hero__stats--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  flex-shrink: 0;
}

.hero__stats--grid .hero__stat { text-align: left; }

/* removed old imgs */
/* removed old img */
/* removed old img */
/* removed old img */

@media (max-width: 768px) {
  .hero__content--split {
    flex-direction: column;
    gap: 2.5rem;
  }
  .hero__stats--grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* About Preview - Background Image */
.about-preview--bg {
  position: relative;
  overflow: hidden;
}

.about-preview__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.55;
}

.about-preview__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview--bg > .container {
  position: relative;
  z-index: 1;
}

/* Capitol Image - Inline with Hover */
/* removed old wrap */

.about-preview__capitol {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-preview__capitol:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

/* ---- About Preview: Grid Layout (Capitol Left, Text Right) ---- */
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-preview__image-col { position: relative; }

.about-preview__capitol {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease, box-shadow 0.5s ease;
}

.about-preview__capitol:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

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

/* ---- Differentiators: Video Background ---- */
.differentiators--video {
  position: relative;
  overflow: hidden;
}

.differentiators__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.5;
}

.differentiators__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.differentiators--video > .container {
  position: relative;
  z-index: 1;
}

/* ---- Sectors: Single Row Verticals ---- */
.sectors__verticals {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.vertical-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
}

.vertical-card__img {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 8px 8px 0 0;
}

.vertical-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
}

.vertical-card__name {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
}

.vertical-card__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent, #c8a84e);
  margin-top: 0.2rem;
}

.vertical-card__contract {
  background: var(--card-bg, #2a3a5c);
  padding: 1rem;
  min-height: 80px;
  border-radius: 0 0 8px 8px;
  display: flex;
  align-items: center;
}

.contract-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.contract-item__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.contract-item__meta {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

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

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

/* ===== SECTORS / PROVEN RESULTS GRID ===== */
.sectors {
  background: var(--deep-navy);
  padding: 100px 0 80px;
}

.sectors__header {
  text-align: center;
  margin-bottom: 10px;
}

.sectors__header .section-label { color: var(--gold); }
.sectors__header .section-title { color: var(--white); }

.sectors__total {
  text-align: center;
  margin-bottom: 50px;
}

.sectors__total-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.sectors__total-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--mid-gray);
  margin-top: 5px;
}

.sectors__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

/* Vertical Column - min-width:0 prevents grid blowout from long text */
.vertical-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

/* ---- Header Card ---- */
.vertical-col__header {
  border-radius: 6px;
  overflow: hidden;
  background: var(--deep-navy);
}

.vertical-col__header-img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  transition: transform 0.5s ease;
}

.vertical-col__header:hover .vertical-col__header-img {
  transform: scale(1.04);
}

.vertical-col__header-info {
  padding: 8px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.vertical-col__name {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vertical-col__amount {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
}

/* ---- Showcase / Rotating Card ---- */
.vertical-col__showcase {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0a1628;
}

/* Gold bar at TOP - SOLID gold, dark blue text, Anton font */
.vertical-col__showcase-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 10px;
  background: var(--gold);
  min-height: 38px;
}

.vertical-col__project-name {
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--deep-navy);
  line-height: 1.25;
  flex: 1;
  text-transform: uppercase;
}

.vertical-col__project-value {
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--deep-navy);
  white-space: nowrap;
  text-transform: uppercase;
}

/* Image area - fixed height for equal sizing */
.vertical-col__showcase-images {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.vertical-col__showcase-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 0.15s ease-out;
}

.vertical-col__showcase-img.is-active { opacity: 1; }

/* Responsive */
@media (max-width: 1100px) {
  .sectors__grid { grid-template-columns: repeat(3, 1fr); }
  .vertical-col__showcase-images { height: 320px; }
}

@media (max-width: 700px) {
  .sectors__grid { grid-template-columns: repeat(2, 1fr); }
  .sectors__total-value { font-size: 2.5rem; }
  .vertical-col__showcase-images { height: 300px; }
}

@media (max-width: 480px) {
  .sectors__grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .vertical-col__showcase-images { height: 400px; }
}

/* Principles Section Background */
.principles-section {
  position: relative;
  overflow: hidden;
}

.principles-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://res.cloudinary.com/wsgc-gca/image/upload/US_Flag_sytuwk') center/cover no-repeat;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}

.principles-section .container {
  position: relative;
  z-index: 1;
}

/* Value Card Number */
.value-card__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #C5A44A;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
  opacity: 0.7;
}

/* --- Blog Post Overrides --- */
/* Push blog post content below the fixed nav (logo ~120px + padding) */
.post-hero {
  padding-top: 11rem !important;
}
@media (max-width: 768px) {
  .post-hero {
    padding-top: 8rem !important;
  }
}

/* Red action button (global; mirrors services.css) */
.btn--red{background:var(--red);color:#fff;border:none;font-family:'Oswald',sans-serif;font-weight:600;letter-spacing:1px;text-transform:uppercase;padding:.85rem 1.8rem;border-radius:4px;display:inline-block;transition:all .3s ease}
.btn--red:hover{background:#A81F2B;transform:translateY(-2px);box-shadow:0 8px 22px rgba(209,41,54,.3)}
