.hero.hero-banner {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: 590px;
  margin: 0 0 72px;
  padding: 72px max(28px, calc((100% - 1184px) / 2));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1328;
  box-shadow: 0 28px 70px rgba(11, 23, 54, 0.2);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 10, 24, 0.95) 0%, rgba(6, 16, 38, 0.86) 36%, rgba(7, 20, 46, 0.58) 58%, rgba(7, 16, 35, 0.25) 80%, rgba(7, 15, 31, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 10, 22, 0.5) 0%, rgba(4, 10, 22, 0) 48%);
}

.hero-banner-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 565px;
}

.hero-banner .kicker {
  color: #aec6ff;
}

.hero-banner h1 {
  color: #fff;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.28);
}

.hero-banner .hero-description {
  color: #e2e9f5;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-banner .button.primary {
  background: #fff;
  color: #124bc9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-banner .button.primary:hover {
  background: #edf3ff;
  color: #0d3fae;
}

.hero-banner .button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(9, 22, 49, 0.42);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero-banner .button.secondary:hover {
  border-color: #fff;
  background: rgba(9, 22, 49, 0.68);
}

.hero-banner .trust-row {
  color: #eef3fb;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

@media (max-width: 980px) {
  .hero.hero-banner {
    min-height: 580px;
    padding: 64px 48px;
  }
}

@media (max-width: 700px) {
  .hero.hero-banner {
    min-height: 650px;
    margin: 0 0 54px;
    padding: 46px 24px;
    align-items: flex-end;
  }

  .hero-banner::before {
    background:
      linear-gradient(0deg, rgba(4, 10, 24, 0.97) 0%, rgba(5, 13, 31, 0.9) 42%, rgba(6, 16, 37, 0.5) 72%, rgba(7, 17, 37, 0.3) 100%),
      linear-gradient(90deg, rgba(4, 10, 24, 0.4), rgba(4, 10, 24, 0.08));
  }

  .hero-banner-image {
    object-position: 66% center;
  }

  .hero-banner h1 {
    font-size: 44px;
  }
}

@media (max-width: 380px) {
  .hero-banner h1 {
    font-size: 40px;
  }
}
