.hero {
  padding: 64px var(--container-padding);
  background-color: var(--color-bg);

  position: relative;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
  z-index: 3;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero__title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 80px;
  line-height: 1.1;
  color: var(--color-white);
  text-transform: uppercase;
}

.hero__description {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-white);
  max-width: 690px;
  line-height: 1.5;
}

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

.hero__feature {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__feature-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__feature-icon {
  flex-shrink: 0;
}

.hero__feature-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__feature-text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  color: var(--color-white-60);
}

.hero__image {
  position: absolute;
  right: 15%;
  top: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 2300px) {
  .hero__image {
    opacity: 0.3;
  }
}

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

  .hero__description {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__feature {
    width: 240px;
  }

  .hero__description {
    max-width: 100%;
  }

  .hero__text {
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px var(--container-padding);
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__description {
    font-size: 15px;
  }

  .hero__features {
    flex-direction: column;
    align-items: center;
  }

  .hero__feature {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero__feature-title {
    font-size: 16px;
  }

  .hero__feature-text {
    font-size: 14px;
  }

  .hero__image {
    left: 0;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero__content {
    align-items: center;
    gap: 2rem;
  }
}

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

  .hero__description {
    font-size: 14px;
  }

  .hero__feature-title {
    font-size: 14px;
  }

  .hero__feature-text {
    font-size: 13px;
  }
}
