@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}

:root {
  --font-family: 'Inter', sans-serif;
  --color-black: #000;
  --color-dark: #1b1b19;
  --color-dark-grey: #3c3c34;
  --color-grey: #565659;
  --color-light-grey: #c3c3c3;
  --color-ice-white: #f6f6f6;
  --color-cream: #f9f8f6;
  --color-smokey-white: #fffff6;
  --color-white: #fff;
  --color-accent: #0B2641;

  --fs-h1: clamp(2.2rem, 4vw, 3.75rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.4rem, 2.5vw, 1.875rem);
  --fs-h4: clamp(1.2rem, 2vw, 1.375rem);
  --fs-h5: clamp(1rem, 1.5vw, 1.125rem);
  --fs-h6: clamp(0.9rem, 1.2vw, 1.0625rem);
  --fs-body: 0.9375rem;
  --fs-small: 0.875rem;
  --fs-button: 0.9375rem;
  --fs-counter: clamp(3rem, 6vw, 6.25rem);

  --lh-heading: 1.17;
  --lh-body: 1.625;

  --section-gap: clamp(4rem, 8vw, 8.125rem);
  --container-max: 1400px;
  --gutter: 15px;
}

*, *::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: var(--font-family);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-dark);
  background: var(--color-smokey-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: var(--lh-heading);
  margin: 0;
}

h1 { font-size: var(--fs-h1); letter-spacing: -0.1rem; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.056rem; }
h3 { font-size: var(--fs-h3); letter-spacing: -0.065rem; }
h4 { font-size: var(--fs-h4); letter-spacing: -0.028rem; }
h5 { font-size: var(--fs-h5); letter-spacing: -0.023rem; }
h6 { font-size: var(--fs-h6); letter-spacing: -0.021rem; }

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

.text-white { color: var(--color-white); }
.text-light-white { color: var(--color-ice-white); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: var(--fs-button);
  font-weight: 500;
  padding: 8px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.btn:hover { background: #222; }
.btn-arrow {
  width: 48px;
  height: 48px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn .btn-arrow img {
  width: 14px;
  height: 11px;
  max-width: 14px;
  max-height: 11px;
  filter: invert(1);
  object-fit: contain;
  display: block;
}
.btn-text {
  padding: 12px 24px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: background 0.3s;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.navbar-logo img {
  max-height: 62px;
  width: auto;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-links a {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  transition: opacity 0.2s;
}
.navbar-links a:hover { opacity: 0.8; }
.navbar-cta {
  display: flex;
  align-items: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 10001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 500;
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  z-index: 6;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  padding-bottom: 100px;
}
.hero-slide-content {
  position: absolute;
  bottom: 100px;
  left: 0;
  max-width: 750px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.hero-slide-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  bottom: auto;
}
.hero-text {
  max-width: 750px;
}
.hero-subtext {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  line-height: 2.35;
}
.hero-text h1 {
  color: var(--color-white);
  margin-bottom: 20px;
}
.hero-text p {
  color: var(--color-white);
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-progress {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-progress-bar {
  width: 80px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
}
.hero-progress-fill {
  height: 100%;
  background: var(--color-white);
  width: 0%;
  transition: width 0.1s linear;
}

/* ===== CAPABILITIES ===== */
.capabilities {
  padding: var(--section-gap) 0;
  background: var(--color-smokey-white);
}
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.capabilities-left .subtext {
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  margin-bottom: 24px;
  line-height: 2.35;
}
.capabilities-left .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.capabilities-left .image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.capabilities-left .image-wrapper:hover img {
  transform: scale(1.03);
}
.capabilities-right h2 {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-light-grey);
}
.capabilities-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.capability-card {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}
.capability-card + .capability-card {
  border-top: none;
}
.capability-icon {
  width: 56px;
  height: 56px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.capability-icon img {
  width: 28px;
  height: 28px;
}
.capability-text h5 {
  margin-bottom: 8px;
  color: var(--color-dark);
}
.capability-text p {
  color: var(--color-grey);
  font-size: var(--fs-body);
}

/* ===== ABOUT ===== */
.about {
  padding-bottom: var(--section-gap);
  background: var(--color-smokey-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-image {
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.about-image:hover img {
  transform: scale(1.03);
}
.about-content h2 {
  margin-bottom: 24px;
}
.about-content > p {
  color: var(--color-grey);
  margin-bottom: 28px;
}
.about-content .btn {
  margin-bottom: 40px;
}
.about-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
  padding-top: 30px;
}
.about-bottom-text {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-bottom-text .star-icon {
  flex-shrink: 0;
  width: 34px;
  height: 37px;
}
.about-bottom-text h6 {
  margin-bottom: 8px;
  color: var(--color-dark);
}
.about-bottom-text p {
  color: var(--color-grey);
  font-size: var(--fs-body);
}
.about-bottom-image {
  width: 132px;
  overflow: hidden;
}
.about-bottom-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.about-bottom-image:hover img { transform: scale(1.03); }

/* ===== COUNTERS ===== */
.counters {
  padding-bottom: var(--section-gap);
  background: var(--color-smokey-white);
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.counter-card {
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--color-white);
}
.counter-value {
  font-family: var(--font-family);
  font-size: var(--fs-counter);
  font-weight: 600;
  line-height: 0.9;
  color: var(--color-dark);
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}
.counter-card h6 {
  margin-bottom: 8px;
  color: var(--color-dark);
}
.counter-card p {
  color: var(--color-grey);
}

/* ===== MARKETS ===== */
.markets {
  padding: var(--section-gap) 0;
  background: var(--color-black);
}
.markets-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}
.markets-header h2 {
  max-width: 600px;
}
.markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.market-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 793/900;
}
.market-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.market-card:hover img { transform: scale(1.05); }
.market-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.market-card-content h3 {
  color: var(--color-white);
  margin-bottom: 16px;
}
.market-card-content p {
  color: var(--color-ice-white);
  margin-bottom: 0;
}
.market-card-content .btn {
  display: none;
}

/* ===== WHY HETAIROI ===== */
.why-section {
  padding-bottom: var(--section-gap);
  background: var(--color-black);
  margin-top: -2px;
}
.why-section > .container > h2 {
  text-align: center;
  margin-bottom: 60px;
}
.solution-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.solution-card {
  display: grid;
  grid-template-columns: 380px 1fr auto;
  align-items: center;
  gap: 0;
  background: #1a1a1a;
  border-radius: 0;
  overflow: hidden;
}
.solution-card:nth-child(2) {
  grid-template-columns: 380px 1fr auto;
}
.solution-card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.solution-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
  transition: transform 0.6s ease;
}
.solution-card:hover .solution-card-image img { transform: scale(1.05); }
.solution-card-text {
  padding: 40px 48px;
}
.solution-card-text h4 {
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.solution-card-text p {
  color: var(--color-ice-white);
}
.solution-card-arrow {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.solution-card-arrow:hover {
  background: rgba(255,255,255,0.1);
}
.solution-card-arrow img {
  width: 20px;
  height: 20px;
}

/* ===== LEADERSHIP ===== */
.leadership {
  padding: 80px 0;
  background: var(--color-cream);
}
.leadership-heading {
  text-align: center;
  margin-bottom: 60px;
}
.leadership-heading h2 {
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.056rem;
  color: var(--color-dark);
}
.leadership-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.leadership-photo {
  flex: 0 0 380px;
  max-width: 380px;
}
.leadership-photo img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
}
.leadership-name {
  margin-top: 20px;
}
.leadership-name h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.leadership-name p {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin: 0;
}
.leadership-bio {
  flex: 1;
  min-width: 0;
}
.leadership-bio > p {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin: 0 0 18px;
}
.leadership-bio strong {
  font-weight: 700;
}
.leadership-credentials {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  flex-wrap: wrap;
}
.credential-col {
  flex: 1;
  min-width: 200px;
}
.credential-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.credential-col ul {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.credential-col li {
  margin-bottom: 2px;
}
.career-logos {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}
.career-logos-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  margin: 0 0 16px;
}
.career-logos-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.career-logos-row img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
}
.career-logos-row img.army-logo {
  height: 38px;
  border-radius: 4px;
}
.video-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  cursor: pointer;
}
.video-trigger-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.video-trigger:hover .video-trigger-icon { background: #333; }
.video-trigger span {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
}
.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}
.video-modal video {
  width: 100%;
  border-radius: 8px;
  background: #000;
}

/* ===== LEADERSHIP ALT (2-Column) ===== */
.leadership-alt {
  padding: 80px 0;
  background: var(--color-smokey-white);
}
.leadership-alt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.leadership-alt-card {
  text-align: center;
}
.leadership-alt-photo {
  max-width: 380px;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 8px;
}
.leadership-alt-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
}
.leadership-alt-card h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-dark);
  margin: 0 0 4px;
}
.leadership-alt-title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin: 0 0 20px;
}
.leadership-alt-bio {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 20px;
  text-align: left;
}
.leadership-alt-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.leadership-alt-credentials span {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-cream);
  color: var(--color-dark);
  border-radius: 4px;
}

/* ===== BRAND STORY ===== */
.brand-story {
  padding: 80px 0;
  background: var(--color-black);
}
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.brand-story-image img {
  width: 100%;
  height: auto;
  display: block;
}
.brand-story h2 {
  color: var(--color-white);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.brand-story-content p {
  color: var(--color-ice-white);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px;
}
.brand-story-content p:last-child {
  margin-bottom: 0;
}
.brand-story-content em {
  font-style: italic;
  color: var(--color-gold);
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
  background: var(--color-smokey-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
}
.contact-image {
  overflow: hidden;
}
.contact-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.contact-image:hover img { transform: scale(1.03); }
.contact-content h2 {
  margin-bottom: 20px;
}
.contact-content p {
  color: var(--color-grey);
  margin-bottom: 28px;
  max-width: 520px;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: var(--section-gap) 0;
  background: var(--color-smokey-white);
}
.contact-form-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-form-subtext {
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  margin-bottom: 16px;
}
.contact-form-header h2 {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.contact-form-desc {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--color-grey);
  font-size: 16px;
  line-height: 1.7;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 48px;
}
.contact-info-card {
  background: var(--color-black);
  color: var(--color-white);
  padding: 40px 32px;
  text-align: center;
}
.contact-info-card + .contact-info-card {
  border-left: 1px solid rgba(255,255,255,0.15);
}
.contact-info-card h5 {
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.contact-info-card a,
.contact-info-card p {
  color: var(--color-ice-white);
  font-size: var(--fs-body);
  transition: opacity 0.2s;
}
.contact-info-card a:hover { opacity: 0.7; }

.contact-form {
  max-width: 960px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--color-light-grey);
  background: var(--color-white);
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 0;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-grey);
  font-weight: 500;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-dark);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  height: 54px;
}
.contact-form > input {
  margin-bottom: 20px;
}
.contact-form textarea {
  resize: vertical;
  margin-bottom: 24px;
  min-height: 180px;
}
.form-submit-row {
  display: flex;
  justify-content: flex-end;
}

/* ===== FOOTER ===== */
.footer {
  padding-top: var(--section-gap);
  background: var(--color-black);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-top h3 {
  color: var(--color-white);
  max-width: 700px;
}
.footer-cta-circle {
  position: relative;
  flex-shrink: 0;
}
.footer-cta-circle img {
  width: 103px;
  height: 104px;
}
.footer-cta-arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-cta-arrow img {
  width: 35px;
  height: 35px;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
}
.footer-logo img {
  max-height: 100px;
  width: auto;
  margin-bottom: 20px;
}
.footer-desc {
  color: var(--color-ice-white);
  margin-bottom: 28px;
  font-size: var(--fs-body);
}
.footer-col h5 {
  color: var(--color-white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--color-ice-white);
  margin-bottom: 8px;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 0.7; }
.footer-col .address {
  color: var(--color-ice-white);
}
.footer-links a {
  display: block;
  color: var(--color-ice-white);
  margin-bottom: 8px;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 0.7; }
.footer-copyright {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: var(--color-ice-white);
  font-size: var(--fs-small);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .navbar-links { display: none; }
  .navbar-cta .btn { display: none; }
  .hamburger { display: flex; }

  .capabilities-grid,
  .capabilities-2col,
  .about-grid,
  .about-2col,
  .leadership-alt-grid,
  .brand-story-grid {
    grid-template-columns: 1fr;
  }
  .counters-grid {
    grid-template-columns: 1fr;
  }
  .markets-header {
    flex-direction: column;
  }
  .markets-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    grid-template-columns: 1fr;
  }
  .solution-card:nth-child(2) {
    grid-template-columns: 1fr;
  }
  .solution-card-arrow {
    margin: 0 0 24px 40px;
  }
  .leadership-grid {
    flex-direction: column;
  }
  .leadership-photo {
    flex: none;
    max-width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  .contact-info-card + .contact-info-card {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top { flex-direction: column; }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .hero-content {
    padding-bottom: 60px;
  }
  .hero-text h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .hero-progress {
    bottom: 20px;
  }
  .about-bottom {
    grid-template-columns: 1fr;
  }
  .about-bottom-image {
    width: 100%;
  }
  .market-card {
    aspect-ratio: auto;
    min-height: 400px;
  }
  .leadership-credentials {
    flex-direction: column;
    gap: 24px;
  }
  .career-logos-row {
    gap: 16px;
  }
  .career-logos-row img { height: 32px; }
  .career-logos-row img.army-logo { height: 40px; }
}

@media (max-width: 479px) {
  :root {
    --gutter: 12px;
  }
  .counter-card {
    padding: 24px 20px;
  }
  .solution-card-text {
    padding: 24px;
  }
  .market-card-content {
    padding: 24px;
  }
}
