.hero {
  background: radial-gradient(
    36.7% 32.9% at 48.67% 55.25%,
    #0d1c33 0%,
    #14294a 100%
  );

  padding: 100px 0;
}

.hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__card {
  background-color: #35f0ec;
  border: 5px solid #9efffd;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(158, 255, 253, 0.25);
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: stretch;
}

.hero__content {
  padding: 64px;
  display: flex;
  align-items: flex-end;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__left {
  flex: 0 0 60%;
  max-width: 60%;
}

.hero__title {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  text-transform: uppercase;
  color: #0d1c33;
  margin: 0 0 20px;
}

.hero__subtitle {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.33;
  color: #122543;
  margin: 0 0 32px;
}

.btn {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
}

.btn:hover {
  opacity: 0.9;
}

.btn--dark {
  background-color: #0d1c33;
  border-bottom: 2px solid #3260a6;
  border-left: 2px solid #3260a6;
  color: #35f0ec;
  font-size: 20px;
  padding: 12px;
}

.btn--cyan {
  background-color: #35f0ec;
  border-bottom: 2px solid #9efffd;
  border-left: 2px solid #9efffd;
  color: #0d1c33;
  font-size: 20px;
  padding: 12px;
}

.hero__cta {
  margin-bottom: 40px;
}

.hero__features {
  display: flex;
  gap: 20px;
}

.hero__feature {
  align-items: flex-start;
  gap: 10px;
}

.hero__feature-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
	margin-bottom: 10px;
}

.hero__feature-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.hero__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__feature-text strong {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0d1c33;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__feature-text span {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(13, 28, 51, 0.8);
  line-height: 1.4;
}

.hero__right {
  position: absolute;
  right: -80px;
  bottom: 0;
  width: 56%;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (max-width: 1200px) {
  .hero__title {
    font-size: 56px;
  }
}

@media (max-width: 900px) {
  .hero__content {
    padding: 48px 40px;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__left {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .hero__feature-text strong {
    font-size: 15px;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .hero__content {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__left {
    flex: none;
    max-width: 100%;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__subtitle {
    font-size: 17px;
  }

  .hero__right {
    display: none;
  }

  .hero__features {
    flex-direction: column;
    gap: 16px;
  }
}
