:root {
  --navy:    #1a2a47;
  --navy2:   #243357;
  --navy3:   #0f1c30;
  --amber:   #c8820a;
  --amber2:  #e09a1a;
  --amber3:  #f0b030;
  --white:   #ffffff;
  --offwhite:#f4f2ee;
  --gray:    #8a8f99;
  --light:   #e8edf5;
  --text:    #2a2a2a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img, picture, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

body.mobile-menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 18, 32, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--amber);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: all .3s;
}

/* LOGO */
.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-svg { height: 48px; width: auto; }
.logo-img { height: 48px; width: auto; display: block; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color .25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width .3s;
}
.nav-links a:hover { color: var(--amber3); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 9px 22px;
  background: var(--amber);
  color: var(--navy3) !important;
  font-weight: 800 !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .25s !important;
}
.nav-cta:hover { background: var(--amber3) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--amber);
  transition: all .3s;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  margin-top: 72px;
  overflow: hidden;
  background: var(--navy3);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  animation: zoomOut 12s ease forwards;
}
@keyframes zoomOut {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}

/* diagonal accent */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(200,130,10,0.15) 100%);
  pointer-events: none;
}

/* left amber bar */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--amber), var(--amber2));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  max-width: 800px;
  animation: slideUp .9s cubic-bezier(.16,1,.3,1) both;
}
@keyframes slideUp {
  from { opacity:0; transform: translateY(50px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--amber);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 50px; height: 2px;
  background: var(--amber);
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.hero-title .highlight { color: var(--amber); }

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-tagline {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  padding-left: 16px;
  border-left: 3px solid var(--amber);
  font-style: italic;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--amber);
  color: var(--navy3);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--amber3); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .25s, color .25s;
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

/* Stats bar */
.stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: var(--amber);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 18px 24px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--navy3);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy2);
}

/* ══════════════════════════════════
   SECTIONS COMMONS
══════════════════════════════════ */
section { padding: 90px 7%; }

.sec-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.sec-label::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}
.sec-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--navy3);
  margin-bottom: 16px;
}
.sec-title span { color: var(--amber); }
.sec-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: #555;
  max-width: 640px;
}

/* ══════════════════════════════════
   SERVICES TICKER
══════════════════════════════════ */
.ticker {
  background: var(--navy3);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
}
.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.ticker-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.ticker-item.accent { color: var(--amber); }

/* ══════════════════════════════════
   COMPANY OVERVIEW
══════════════════════════════════ */
.overview { background: var(--offwhite); }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.overview-img {
  position: relative;
}
.overview-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.overview-img::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 30px; bottom: 30px;
  border: 3px solid var(--amber);
  z-index: 0;
}
.overview-img img { position: relative; z-index: 1; }
.overview-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: var(--amber);
  padding: 24px 28px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}
.overview-badge .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--navy3);
  line-height: 1;
}
.overview-badge .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--navy3);
  text-transform: uppercase;
}
.overview-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: white;
  border-left: 4px solid var(--amber);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.point-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.point-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.point-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--navy3);
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* ══════════════════════════════════
   VISION & MISSION
══════════════════════════════════ */
.vision-mission {
  background: var(--navy3);
  position: relative;
  overflow: hidden;
}
.vision-mission::before {
  content: 'ZAP';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 300px;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  user-select: none;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.vm-img {
  position: relative;
  overflow: hidden;
}
.vm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  display: block;
}
.vm-content { padding: 60px 60px 60px 70px; position: relative; z-index: 1; }
.vm-block { margin-bottom: 48px; }
.vm-block:last-child { margin-bottom: 0; }
.vm-icon {
  width: 48px; height: 48px;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}
.vm-block-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--amber);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.vm-block-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════ */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-img-wrap { position: relative; }
.why-img-wrap img {
  width: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}
.why-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, var(--navy3) 0%, transparent 60%);
}
.why-overlay {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.why-tag {
  display: inline-block;
  background: var(--amber);
  color: var(--navy3);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  width: fit-content;
}
.reasons { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.reason {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #e8e4dd;
  transition: all .3s;
  cursor: default;
}
.reason:hover {
  border-color: var(--amber);
  background: rgba(200,130,10,0.04);
  transform: translateX(6px);
}
.reason-arrow {
  width: 0; height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid var(--amber);
  flex-shrink: 0;
  margin-top: 4px;
  transition: border-left-color .3s;
}
.reason:hover .reason-arrow { border-left-color: var(--amber2); }
.reason-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy2);
  transition: color .3s;
}
.reason:hover .reason-text { color: var(--amber); }

/* ══════════════════════════════════
   SERVICES GRID
══════════════════════════════════ */
.services { background: var(--navy3); }

/* ══════════════════════════════════
   ORGANIZATION / LEADERSHIP TEAM
══════════════════════════════════ */
/* ══════════════════════════════════
   CLIENTS LOGO GRID
══════════════════════════════════ */
 .clients-logo-marquee {
   overflow: hidden;
   position: relative;
   margin: 0 auto 30px auto;
   max-width: 100%;
   -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
   mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
 }
 .clients-logo-track {
   display: flex;
   width: max-content;
   animation: clients-marquee 26s linear infinite;
   will-change: transform;
 }
 .clients-logo-group {
   display: flex;
   align-items: center;
   gap: 32px;
   flex-shrink: 0;
   padding-right: 32px;
 }
 .clients-logo-marquee:hover .clients-logo-track {
   animation-play-state: paused;
 }
 .client-logo {
   flex: 0 0 auto;
   width: clamp(120px, 16vw, 180px);
   max-height: 90px;
   height: auto;
   object-fit: contain;
   background: #fff;
   border-radius: 8px;
   box-shadow: 0 2px 12px rgba(0,0,0,0.04);
   padding: 12px 18px;
   transition: box-shadow .2s, transform .2s;
 }
 .client-logo:hover {
   box-shadow: 0 6px 24px rgba(200,130,10,0.10);
   transform: scale(1.04);
 }
 @keyframes clients-marquee {
   from {
     transform: translateX(0);
   }
   to {
     transform: translateX(-50%);
   }
 }
 @media (max-width: 900px) {
   .clients-logo-group {
     gap: 24px;
     padding-right: 24px;
   }
   .client-logo {
     width: clamp(110px, 24vw, 150px);
   }
 }
 @media (max-width: 600px) {
   .clients-logo-group {
     gap: 18px;
     padding-right: 18px;
   }
   .client-logo {
     width: clamp(100px, 34vw, 140px);
     padding: 10px 14px;
   }
 }
 @media (prefers-reduced-motion: reduce) {
   .clients-logo-track {
     animation: none;
   }
 }
.organization-sec {
  background: var(--offwhite);
  padding: 90px 7%;
}
.organization-intro {
  text-align: center;
  margin-bottom: 40px;
}
.organization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}
.org-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .3s, transform .3s;
  max-width: 340px;
  width: 100%;
}
.org-card:hover {
  box-shadow: 0 8px 32px rgba(200,130,10,0.13);
  transform: translateY(-6px) scale(1.03);
}
.org-photo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 4px solid var(--amber);
}
.org-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy3);
  margin-bottom: 6px;
  text-align: center;
}
.org-role {
  font-size: 15px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 10px;
  text-align: center;
}
.org-bio {
  font-size: 14px;
  color: #555;
  text-align: center;
  line-height: 1.7;
}
@media (max-width: 1000px) {
  .organization-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ══════════════════════════════════
   LEADERSHIP SECTION
══════════════════════════════════ */
.leadership-section {
  background: var(--offwhite);
  padding: 90px 7%;
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.leadership-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leadership-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.leadership-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
  color: #444;
  max-width: 600px;
  margin-bottom: 0;
}
.leadership-image-wrap {
  display: flex;
  justify-content: flex-end;
}
.leadership-image {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}
@media (max-width: 900px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .leadership-image-wrap {
    justify-content: center;
  }
}
.services .sec-title { color: white; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
}
.svc-card {
  position: relative;
  overflow: hidden;
  background: var(--navy2);
  min-height: 280px;
  cursor: pointer;
  transition: transform .3s;
}
.svc-card:hover { transform: translateY(-4px); }
.svc-card-img {
  position: absolute;
  inset: 0;
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  transition: opacity .5s, transform .5s;
}
.svc-card:hover .svc-card-img img { opacity: 0.4; transform: scale(1.06); }
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,32,0.95) 0%, rgba(10,18,32,0.3) 100%);
}
.svc-body {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.svc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--amber);
  margin-bottom: 8px;
}
.svc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 1.1;
  margin-bottom: 10px;
}
.svc-line {
  width: 32px; height: 2px;
  background: var(--amber);
  margin-bottom: 12px;
  transition: width .4s;
}
.svc-card:hover .svc-line { width: 64px; }
.svc-list {
  list-style: none;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 2;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, opacity .4s;
  opacity: 0;
}
.svc-card:hover .svc-list { max-height: 200px; opacity: 1; }
.svc-list li::before {
  content: '▶ ';
  color: var(--amber);
  font-size: 9px;
}

/* ══════════════════════════════════
   INDUSTRIES WE SERVE
══════════════════════════════════ */
.industries { background: var(--offwhite); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.ind-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ind-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.ind-card:hover img { transform: scale(1.06); }
.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy3) 0%, rgba(10,18,32,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
}
.ind-tag {
  display: inline-block;
  width: fit-content;
  background: var(--amber);
  color: var(--navy3);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 8px;
}
.ind-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 1.1;
}

/* ══════════════════════════════════
   METHODOLOGY
══════════════════════════════════ */
.methodology { background: var(--white); }
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.method-img {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f7f7f7; */
}
.method-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  display: block;
}
.method-steps { margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e8e4dd;
  transition: all .3s;
}
.step:last-child { border-bottom: none; }
.step:hover { padding-left: 10px; }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: rgba(200,130,10,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
  transition: color .3s;
}
.step:hover .step-num { color: var(--amber); }
.step-content {}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy2);
  margin-bottom: 4px;
}
.step-desc { font-size: 13px; color: #777; line-height: 1.6; }

/* ══════════════════════════════════
   HSE / QUALITY
══════════════════════════════════ */
.hse {
  background: var(--navy2);
  position: relative;
  overflow: hidden;
}
.hse-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 0fr;
  gap: 2px;
}
.hse-img-col {
  grid-column: 1;
  position: relative;
}
.hse-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
.hse-content {
  grid-column: 2 / 4;
  padding: 60px 50px;
}
.hse-content .sec-title { color: white; }
.hse-content .sec-text { color: rgba(255,255,255,0.65); max-width: 100%; margin-bottom: 40px; }
.hse-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hse-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,130,10,0.3);
  padding: 28px 22px;
  text-align: center;
  transition: all .3s;
}
.hse-card:hover { background: rgba(200,130,10,0.12); border-color: var(--amber); }
.hse-card-icon { font-size: 36px; margin-bottom: 14px;color: var(--amber); }
.hse-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 8px;
}
.hse-card-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ══════════════════════════════════
   INDUSTRY EXPOSURE / CLIENTS
══════════════════════════════════ */
.clients-sec {
  background:
    radial-gradient(circle at top center, rgba(200,130,10,0.08), transparent 34%),
    linear-gradient(180deg, #faf7f0 0%, var(--offwhite) 100%);
}
.clients-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.clients-subtitle {
  font-size: 15px;
  color: #777;
  max-width: 400px;
}
.clients-grid.clients-tree {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
  padding-top: 22px;
}
.clients-grid.clients-tree::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(200,130,10,0.06) 0%,
    rgba(200,130,10,0.5) 18%,
    rgba(200,130,10,0.35) 58%,
    rgba(200,130,10,0.05) 100%
  );
  opacity: 0.7;
  pointer-events: none;
}
.clients-grid.clients-tree::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200,130,10,0.14) 0%, rgba(200,130,10,0.04) 34%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
.clients-grid.clients-tree .client-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
  padding: 26px 20px;
  overflow: visible;
  border-radius: 18px;
  border: 1px solid rgba(20, 44, 68, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,247,240,0.96)),
    white;
  box-shadow: 0 12px 28px rgba(16, 33, 54, 0.05);
  opacity: 0;
  transform: translateY(26px) scale(0.96);
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.2,.8,.2,1),
    box-shadow .3s ease,
    border-color .3s ease;
}
.clients-grid.clients-tree.visible .client-item {
  opacity: 1;
  transform: none;
}
.clients-grid.clients-tree .client-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -34px;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,130,10,0.55), rgba(200,130,10,0));
  opacity: 0.65;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform .6s ease .15s, opacity .3s ease;
  pointer-events: none;
}
.clients-grid.clients-tree .client-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,130,10,0), rgba(200,130,10,0.55));
  opacity: 0.65;
  transform: translateY(-50%) scaleX(0);
  transform-origin: right center;
  transition: transform .6s ease .15s, opacity .3s ease;
  pointer-events: none;
}
.clients-grid.clients-tree.visible .client-item::before {
  transform: translateY(-50%) scaleX(1);
}
.clients-grid.clients-tree.visible .client-item::after {
  transform: translateY(-50%) scaleX(1);
}
.clients-grid.clients-tree .client-item:nth-child(3n+1)::before {
  display: none;
}
.clients-grid.clients-tree .client-item:nth-child(3n)::after {
  display: none;
}
.clients-grid.clients-tree .client-item:nth-child(3n+1) {
  z-index: 1;
}
.clients-grid.clients-tree .client-item:hover {
  border-color: rgba(200,130,10,0.38);
  box-shadow: 0 16px 34px rgba(200,130,10,0.14);
}
.clients-grid.clients-tree .client-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy2);
  text-align: center;
  line-height: 1.3;
  transition: color .3s, transform .3s;
}
.clients-grid.clients-tree .client-item:hover span {
  color: var(--amber);
  transform: translateY(-1px);
}
.clients-grid.clients-tree .client-item:nth-child(1) { transition-delay: .05s; }
.clients-grid.clients-tree .client-item:nth-child(2) { transition-delay: .14s; }
.clients-grid.clients-tree .client-item:nth-child(3) { transition-delay: .23s; }
.clients-grid.clients-tree .client-item:nth-child(4) { transition-delay: .32s; }
.clients-grid.clients-tree .client-item:nth-child(5) { transition-delay: .41s; }
.clients-grid.clients-tree .client-item:nth-child(6) { transition-delay: .5s; }
.clients-grid.clients-tree .client-item:nth-child(7) { transition-delay: .59s; }
.clients-grid.clients-tree .client-item:nth-child(8) { transition-delay: .68s; }
.clients-grid.clients-tree .client-item:nth-child(9) { transition-delay: .77s; }

/* ══════════════════════════════════
   CERTIFICATIONS
══════════════════════════════════ */
.certifications { background: var(--navy3); }
.certifications .sec-title { color: white; }
.cert-text { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.8; max-width: 600px; margin-bottom: 50px; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cert-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,130,10,0.25);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.cert-card:hover { border-color: var(--amber); background: rgba(200,130,10,0.08); }
.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--amber);
}
.cert-icon { font-size: 42px; margin-bottom: 16px;color: var(--amber); }
.cert-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 8px;
}
.cert-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ══════════════════════════════════
   CONTACT / FOOTER
══════════════════════════════════ */
.contact-section {
  background:
    radial-gradient(circle at top left, rgba(200,130,10,0.08), transparent 30%),
    linear-gradient(180deg, #f8f5ef 0%, var(--offwhite) 100%);
}
.contact-section-header {
  max-width: 760px;
  margin-bottom: 30px;
}
.contact-section-header .sec-text {
  max-width: 680px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.contact-panel,
.contact-form {
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 22px 50px rgba(16, 33, 54, 0.08);
}
.contact-panel {
  background: linear-gradient(180deg, var(--navy3), #13233a);
  color: white;
  border: 1px solid rgba(200,130,10,0.16);
}
.contact-panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 12px;
}
.contact-panel-copy {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.contact-detail-list {
  display: grid;
  gap: 14px;
}
.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(200,130,10,0.16);
  color: var(--amber);
}
.contact-detail-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 4px;
}
.contact-detail-item a,
.contact-detail-item div {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}
.contact-detail-item a {
  text-decoration: none;
  transition: color .2s;
}
.contact-detail-item a:hover {
  color: var(--amber);
}
.contact-form {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(20, 44, 68, 0.08);
  backdrop-filter: blur(12px);
}
.contact-map {
  background: linear-gradient(180deg, #13233a, #0f1c30);
  border: 1px solid rgba(200,130,10,0.16);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 22px 50px rgba(16, 33, 54, 0.08);
}
.contact-map-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-map-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.contact-map-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  color: white;
}
.contact-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(200,130,10,0.14);
  border: 1px solid rgba(200,130,10,0.24);
  color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, color .2s, transform .2s;
}
.contact-map-link:hover {
  background: rgba(200,130,10,0.22);
  color: white;
  transform: translateY(-1px);
}
.contact-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}
.contact-map-caption {
  margin-top: 14px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-field span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy2);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(20, 44, 68, 0.12);
  background: rgba(255,255,255,0.92);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--navy3);
  outline: none;
  transition: border-color .2s, box-shadow .2s, transform .2s, background .2s;
}
.form-field textarea {
  resize: vertical;
  min-height: 150px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(200,130,10,0.6);
  box-shadow: 0 0 0 4px rgba(200,130,10,0.12);
  background: white;
}
.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: #c95a3c;
  box-shadow: 0 0 0 4px rgba(201,90,60,0.12);
}
.field-error {
  min-height: 16px;
  font-size: 12px;
  color: #c95a3c;
}
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-note {
  font-size: 13px;
  line-height: 1.6;
  color: #667;
  max-width: 320px;
}
.contact-submit {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-submit[disabled] {
  opacity: 0.7;
  cursor: progress;
}
.form-status {
  margin-top: 14px;
  min-height: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy2);
}
.form-status.is-success { color: #12693e; }
.form-status.is-error { color: #b34b2a; }
footer {
  background: var(--navy3);
  border-top: 3px solid var(--amber);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 70px 7% 50px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 240px;
}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,130,10,0.3);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color .2s;
  font-weight: 400;
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.fc-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px;color: var(--amber); }
.fc-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.fc-text a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
.fc-text a:hover { color: var(--amber); }
.footer-bottom {
  padding: 24px 7%;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--amber); }

/* ══════════════════════════════════
   MOBILE NAV
══════════════════════════════════ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy3);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: white;
  text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-close {
  position: absolute;
  top: 26px; right: 30px;
  background: none; border: none;
  color: var(--amber);
  font-size: 30px;
  cursor: pointer;
}

/* ══════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .overview-grid, .why-grid, .method-grid, .vm-grid { grid-template-columns: 1fr; }
  .overview-img, .why-img-wrap, .method-img, .vm-img { max-height: 350px; overflow: hidden; }
  .vm-content { padding: 40px 6%; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .hse-grid { grid-template-columns: 1fr; }
  .hse-img-col { display: none; }
  .hse-content { grid-column: 1; padding: 50px 5%; }
  .hse-cards { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .clients-grid.clients-tree { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  section { padding: 60px 5%; }
  nav { padding: 0 4%; }
  .hero { min-height: calc(100vh - 72px); }
  .hero-content { padding: 0 5%; }
  .stats-bar { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hse-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-panel, .contact-form { padding: 24px 18px; border-radius: 20px; }
  .contact-panel-title { font-size: 24px; }
  .contact-map { padding: 18px; border-radius: 20px; }
  .contact-map-head { flex-direction: column; }
  .contact-map-title { font-size: 24px; }
  .contact-map-frame,
  .contact-map-frame iframe { min-height: 320px; }
  .mobile-menu { padding: 60px 5%; }
  .mobile-menu a { font-size: clamp(22px, 6vw, 30px); }
  .mobile-close { top: 20px; right: 20px; }
  .clients-grid.clients-tree {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 12px;
  }
  .clients-grid.clients-tree::before,
  .clients-grid.clients-tree::after,
  .clients-grid.clients-tree .client-item::before,
  .clients-grid.clients-tree .client-item::after {
    display: none;
  }
}
