/* =========================================================
   HERO (home)
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  background: none;
  z-index: -2;
  transform: scale(1.06);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 26, 46, 0.55) 0%,
    rgba(9, 26, 46, 0.72) 55%,
    rgba(8, 22, 38, 0.95) 100%
  );
  z-index: -1;
}
.hero-content {
  max-width: 720px;
  padding: 160px 0 110px;
}
.hero .eyebrow {
  color: var(--lime);
}
.hero .eyebrow::before {
  background: linear-gradient(90deg, var(--lime), transparent);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 6.4vw, 4.6rem);
  margin-bottom: 0.3em;
}
.hero h1 em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 2.2em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-hexes {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-hexes svg {
  position: absolute;
  opacity: 0.5;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-cue svg {
  width: 16px;
  height: 16px;
}
@keyframes bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

/* =========================================================
   STAT STRIP
   ========================================================= */
.stat-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 34px 24px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat-item:first-child {
  border-left: none;
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.stat-item .num span {
  color: var(--leaf);
}
.stat-item .label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
  display: block;
}
@media (max-width: 780px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(3) {
    border-left: none;
  }
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 780px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card .thumb {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(11, 32, 56, 0.05);
}
.service-card .thumb .media-fill {
  width: 100%;
  height: 100%;
}
.service-card .body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.service-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: -44px;
  box-shadow: var(--shadow-sm);
  border: 5px solid #fff;
  outline: 1px solid var(--line);
}
.service-card .icon svg {
  width: 22px;
  height: 22px;
}
.service-card h3 {
  font-size: 1.3rem;
  margin: 0;
}
.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
  flex: 1;
}
.service-card .link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--leaf);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.service-card .link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease);
}
.service-card:hover .link svg {
  transform: translateX(4px);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-band {
  background: var(--bg-alt);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.why-item {
  background: #fff;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf);
}
.why-item .icon svg {
  width: 24px;
  height: 24px;
}
.why-item h3 {
  font-size: 1.15rem;
}
.why-item p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}
@media (max-width: 860px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MISSION / VISION SPLIT
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 6/5;
  box-shadow: var(--shadow-md);
  background: var(--bg-alt);
}
.split-media .media-fill {
  width: 100%;
  height: 100%;
}
.split-media .badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 260px;
}
.split-media .badge .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.split-media .badge .icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.split-media .badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}
.split-media .badge span {
  font-size: 0.78rem;
  color: var(--muted);
}

.split-text .lede {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.4em;
}
.mv-cards {
  display: grid;
  gap: 16px;
}
.mv-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}
.mv-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.mv-card .icon svg {
  width: 22px;
  height: 22px;
}
.mv-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.mv-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

/* =========================================================
   PROJECT / PRODUCT TEASER STRIP
   ========================================================= */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .teaser-grid {
    grid-template-columns: 1fr;
  }
}
.teaser-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.teaser-card .thumb {
  position: absolute;
  inset: 0;
}
.teaser-card .thumb .media-fill {
  width: 100%;
  height: 100%;
}
.teaser-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 32, 56, 0) 30%,
    rgba(8, 20, 35, 0.92) 100%
  );
}
.teaser-card .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  z-index: 2;
  color: #fff;
}
.teaser-card .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
  display: block;
}
.teaser-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.teaser-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin: 0;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(
    135deg,
    rgba(11, 32, 56, 0.98) 0%,
    rgba(14, 40, 67, 0.96) 48%,
    rgba(18, 74, 70, 0.97) 100%
  );
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(140, 174, 51, 0.15);
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  max-width: 520px;
  margin: 0;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin: 10px 0 0;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Logo strip (optional trust row) */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: scroll-x 28s linear infinite;
}
@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
