.hero {
  padding: 40px 0 0;
  overflow: hidden;
  position: relative;
  background: #0b1120;
}

.hero .container {
  display: flex;
  align-items: flex-start;
  position: relative;
  min-height: 520px;
}

.hero__content {
  flex: 0 0 50%;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title span {
  color: var(--color-green);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-gray);
  margin-bottom: 32px;
}

.hero__cta {
  margin-bottom: 60px;
}

.hero__cta .btn {
  animation: cta-pulse 2s ease-in-out infinite;
}

.hero__cta .btn:hover {
  animation: none;
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 223, 104, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 8px rgba(0, 223, 104, 0.15);
  }
}

.hero__features {
  display: flex;
  gap: 2rem;
}

.hero__feature {
  max-width: 215px;
}

.hero__feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.hero__feature-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-white);
}

.hero__feature-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray);
  line-height: 1.4;
}

.hero__image {
  position: absolute;
  right: -60px;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: end;
}

.hero__image img {
  width: 100%;
  object-position: right center;
}

@media (max-width: 1023px) {
  .hero .container {
    flex-direction: column;
    min-height: auto;
    text-align: center;
  }

  .hero__content {
    flex: 1;
    width: 100%;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__cta {
    margin-bottom: 40px;
  }

  /* 
  .hero__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
  } */

  .hero__feature {
    max-width: 100%;
    gap: 2rem;
  }
  .hero__feature-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__image {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 40px;
  }

  .hero__image img {
    object-position: center center;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .hero__features {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }
}
