.hero-section {
  isolation: isolate;
}

.bwa-hero {
  --bwa-hero-primary: #0b2541;
  --bwa-hero-accent: #0b73da;
  --bwa-hero-text: #ffffff;
  --bwa-hero-text-muted: rgba(248, 250, 252, 0.92);
  --bwa-hero-radius: 5px;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--bwa-hero-text);
  background: var(--bwa-hero-primary);
}

.bwa-hero,
.bwa-hero__surtitle,
.bwa-hero__title,
.bwa-hero__description,
.bwa-hero__btn,
.bwa-hero__btn span {
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
}

@media (min-width: 1024px) {
  .bwa-hero {
    min-height: 100vh;
  }
}

.bwa-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bwa-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bwa-hero__overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 1;
  transform: none;
  transition: none;
  background: linear-gradient(
    to bottom,
    rgba(11, 37, 65, 0.6) 0%,
    rgba(11, 37, 65, 0.7) 50%,
    rgba(11, 37, 65, 0.9) 100%
  );
}

.bwa-hero__content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .bwa-hero__content-wrap {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .bwa-hero__content-wrap {
    padding: 0 2rem;
  }
}

.bwa-hero__content {
  max-width: 56rem;
}

.bwa-hero__surtitle {
  margin: 0 0 1.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--bwa-hero-text-muted);
}

@media (min-width: 640px) {
  .bwa-hero__surtitle {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.bwa-hero__title {
  margin: 0 0 1.5rem;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--bwa-hero-text);
}

@media (min-width: 768px) {
  .bwa-hero__title {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .bwa-hero__title {
    font-size: 3.75rem;
    line-height: 1;
  }
}

.bwa-hero__title-line {
  display: block;
}

.bwa-hero__title-line--top {
  font-weight: 500;
}

.bwa-hero__description {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--bwa-hero-text-muted);
}

@media (min-width: 640px) {
  .bwa-hero__description {
    font-size: 1.125rem;
  }
}

.bwa-hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .bwa-hero__actions {
    flex-direction: row;
  }
}

.bwa-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding: 0 2.5rem;
  border-radius: var(--bwa-hero-radius);
  border: 2px solid transparent;
  text-decoration: none;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.bwa-hero__btn img {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  filter: invert(1);
}

.bwa-hero__btn--primary {
  background: var(--bwa-hero-accent);
  color: #ffffff!important;
  box-shadow: 0 10px 30px -10px rgba(11, 115, 218, 0.4);
}

.bwa-hero__btn--primary:hover {
  background: #0a66c2;
  transform: translateY(-2px);
}

.bwa-hero__btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.95);
}

.bwa-hero__btn--secondary:hover {
  background: #ffffff;
  color: var(--bwa-hero-primary);
}

.bwa-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 3;
  transform: translateX(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  animation: bwaHeroBounce 1.5s ease-in-out infinite;
  transition: color 0.2s ease;
}

.bwa-hero__scroll:hover {
  color: #ffffff;
}

.bwa-hero__scroll img {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  display: block;
  filter: invert(1);
}

@keyframes bwaHeroBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.bwa-hero [data-anim] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.bwa-hero [data-anim="up"] {
  transform: translate3d(0, 24px, 0);
}

.bwa-hero.is-inview [data-anim] {
  opacity: 1;
  transform: none;
}

.bwa-hero__anim--delay-1 {
  transition-delay: 0.1s;
}

.bwa-hero__anim--delay-2 {
  transition-delay: 0.2s;
}

