.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--topbar-h) - var(--nav-h));
  overflow: hidden;
  background-color: var(--blue-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/hero-img.webp");
  background-position: center;
  background-size: cover;
  transform-origin: center;
  will-change: transform, background-position;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 28, 64, 0.93) 0%,
    rgba(27, 58, 107, 0.78) 55%,
    rgba(232, 104, 10, 0.25) 100%
  );
}

.hero__lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.06;
  pointer-events: none;
}

.hero__lines::before,
.hero__lines::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__lines::before {
  top: 35%;
  left: -100%;
  transform: rotate(-14deg);
}

.hero__lines::after {
  top: 62%;
  left: -100%;
  transform: rotate(-14deg);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--orange);
}

.hero__title {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}

.hero__title-accent {
  color: var(--orange);
}

.hero__text {
  max-width: 560px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}

.about__lead {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--blue);
}

.about__text {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about__pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-size: 0.875rem;
}

.about__pillar-title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
}

.about__pillar-text {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--gray-500);
}

.about__video {
  position: relative;
}

.about__video-main {
  width: 100%;
  height: fit-content;
}

.about__badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.about__badge-value {
  display: block;
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about__badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services {
  position: relative;
  background-color: var(--blue-dark);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

.services .section__eyebrow {
  color: var(--gold);
}

.services .section__title {
  color: var(--white);
}

.services .section__subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.services__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  cursor: default;
}

.service-card__media {
  overflow: hidden;
  height: 180px;
}

.service-card__image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  border-top: 3px solid var(--orange);
}

.service-card__title {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--blue);
}

.clients {
  background: var(--white);
}

.clients__track-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  padding: 1rem 0;
}

.clients__track-wrap::before,
.clients__track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 80px;
  height: 100%;
  pointer-events: none;
}

.clients__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.clients__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.clients__track {
  display: flex;
  width: max-content;
}

.clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 90px;
  flex-shrink: 0;
  margin: 0 2.5rem;
}

.clients__logo-img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.clients__logo:hover .clients__logo-img {
  transform: scale(1.06);
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 3.25rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about__badge {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
