.hero {
  position: relative;
  background-color: #0d0d0d;
  background-image:
    linear-gradient(
      to right,
      rgba(13, 13, 13, 1) 20%,
      rgba(13, 13, 13, 0.9) 36%,
      rgba(13, 13, 13, 0.4) 58%,
      rgba(0, 0, 0, 0) 72%
    ),
    url("./../images/ironwolves-hero-bg.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 100px 120px;
  max-width: 1200px;
}

.hero-title {
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 28px;
  color: #fff;
}

.hero-title .gradient-text {
  display: inline;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  max-width: 690px;
  margin-bottom: 48px;
  line-height: 1.5;
}

.hero-features {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-top: 64px;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.hero-feature-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.hero-feature-icon img {
  object-fit: contain;
}

.hero-feature-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 6px;
  color: #fff;
}

.hero-feature-desc {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

@media (max-width: 1280px) {
  .hero-content {
    padding: 80px 60px;
    max-width: 800px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-features {
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .hero-features {
    gap: 24px;
  }

  .hero-feature-title {
    font-size: 15px;
  }

  .hero-feature-desc {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hero::before {
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background-position: 70% center;
  }

  .hero::after {
    background: linear-gradient(
      to bottom,
      rgba(13, 13, 13, 0.65) 0%,
      rgba(13, 13, 13, 0.88) 55%,
      rgba(13, 13, 13, 1) 100%
    );
  }

  .hero-content {
    padding: 60px 20px 60px;
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .hero-features {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
  }

  .hero-feature {
    flex: none;
    width: 100%;
  }
}
