.hero {
  position: relative;
  padding: 120px 40px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  min-height: 750px;
  background-color: #51176a;
  background-size: cover;
  background-position: center;
  background-blend-mode: normal, multiply, normal;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(41, 10, 64, 0.25);
  z-index: 1;
  pointer-events: none;
}

.hero__content,
.hero__features {
  max-width: 1200px;
  width: 100%;
}

.hero > * {
  position: relative;
  z-index: 2;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.hero__image {
  object-fit: contain;
}
.hero__title {
  font-size: 42px;
  font-weight: 800;
}
.hero__subtitle {
  font-size: 20px;
}
.hero__features {
  display: flex;
  gap: 32px;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}
.hero__feature {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  height: 100%;
}
.hero__feature img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.hero__feature h3 {
  font-size: 24px;
  font-weight: 700;
  color: #3efff3;
}
.hero__feature p {
  font-size: 16px;
  color: #fff;
}

@media (max-width: 1023px) {
  .hero {
    padding: 100px 40px 64px;
  }
  .hero__content,
  .hero__features {
    max-width: 100%;
  }
  .hero__features {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
    min-height: auto;
    gap: 1rem;
  }
  .hero__features {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero__content {
    gap: 0.5rem;
  }
  .hero__image {
    width: 150px;
    height: auto;
  }
  .hero__title {
    font-size: 24px;
  }
  .hero__subtitle {
    font-size: 14px;
  }
  .hero .btn--primary {
    font-size: 18px;
    height: 48px;
    padding: 8px 32px;
  }
  .hero__feature {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }
  .hero__feature img {
    width: 60px;
    height: 60px;
  }
  .hero__feature h3 {
    font-size: 18px;
  }
  .hero__feature p {
    font-size: 14px;
  }
}
