.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
  padding: 144px 0 76px;
  background: var(--navy);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 15, 34, 0.98), rgba(33, 0, 93, 0.74), rgba(237, 28, 36, 0.36)),
    url("../../assets/images/hero-airplane.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 120px;
  background: linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 46px;
  align-items: center;
}

.hero-title {
  display: grid;
  max-width: 680px;
  margin-bottom: 20px;
  font-family: "Barlow Condensed", "Inter Tight", Inter, sans-serif;
  font-weight: 500;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  color: var(--gold);
}

.hero-title span:nth-child(3) {
  color: #fff;
}

.hero-title span:nth-child(4) {
  color: #fff;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-company-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(112px, 1fr));
  gap: 8px;
  max-width: 720px;
  margin-top: 24px;
}

.hero-company-rail a {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0;
  padding: 10px 11px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.hero-company-rail a:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.hero-company-rail strong {
  font-size: 0.86rem;
  line-height: 1.1;
}

.hero-company-rail span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 400;
}

.hero-company-rail a:hover span {
  color: var(--muted);
}

.hero-card {
  display: grid;
  gap: 18px;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-video-panel {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 31, 63, 0.12);
  border-radius: 0;
  background: var(--navy);
}

.hero-video-panel video,
.hero-video-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-panel video {
  z-index: 1;
}

.hero-video-panel img {
  opacity: 0.88;
}

.hero-video-panel::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(18, 31, 63, 0.04), rgba(18, 31, 63, 0.82)),
    linear-gradient(90deg, rgba(237, 28, 36, 0.12), transparent);
  content: "";
}

.hero-video-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: grid;
  gap: 6px;
  color: #fff;
}

.hero-video-caption span {
  width: max-content;
  border-radius: 0;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-video-caption strong {
  max-width: 340px;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-status span {
  display: grid;
  min-height: 64px;
  place-items: center;
  border-radius: 0;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
}

.hero-status strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}

.hero-mini {
  display: grid;
  gap: 4px;
  margin-top: 0;
  border: 1px solid rgba(237, 28, 36, 0.18);
  border-left: 4px solid var(--red);
  border-radius: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-mini p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    padding: 128px 0 58px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding: 96px 0 42px;
  }

  .hero-title {
    margin-bottom: 16px;
  }

  .hero-copy {
    font-size: 0.94rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-company-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .hero-card {
    gap: 14px;
    padding: 14px;
    box-shadow: none;
  }

  .hero-card-head {
    display: grid;
    gap: 8px;
  }

  .hero-status {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }

  .hero-status span {
    min-height: 56px;
    padding: 8px 6px;
    font-size: 0.74rem;
  }

  .hero-status strong {
    font-size: 0.9rem;
  }

  .hero-video-panel {
    min-height: 210px;
  }

  .hero-mini {
    padding: 11px 12px;
  }
}

@media (max-width: 380px) {
  .hero-status {
    grid-template-columns: 1fr;
  }

  .hero-video-panel {
    min-height: 190px;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 118px 0 42px;
  }

  .hero-video-panel {
    min-height: 190px;
  }
}
