.hero {
  padding: 0 0 50px;
}

.hero-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url("../images/bg-hero.png");
  background-size: cover;
  background-position: top;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 34px;
  max-width: 60%;
}

.hero-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-black);
  font-size: 66px;
  color: var(--color-text-primary);
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-description {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: 24px;
  color: var(--color-text-secondary);
  line-height: 1.3;
  margin-bottom: 25px;
}

.hero-stats {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}

.hero-stat {
  width: 120px;
  text-align: center;
  color: var(--color-white);
}

.hero-stat-number {
  font-family: var(--font-primary);
  font-weight: var(--fw-black);
  font-size: 38px;
  letter-spacing: -0.38px;
}

.hero-stat-label {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: 16px;
  letter-spacing: -0.16px;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 50px;
  }

  .hero-description {
    font-size: 20px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    justify-content: center;
    gap: 10px;
  }
  .hero-content {
    padding: 40px 20px;
    max-width: 100%;
    text-align: center;
  }

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

  .hero-description {
    font-size: 16px;
  }

  .hero-stat-number {
    font-size: 28px;
  }

  .hero-stat-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-stats {
    justify-content: center;
  }
}
