.hero-section {
  position: relative;
  width: 100%;
  min-height: 820px;
  background: var(--dark-bg);
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    var(--gradient-start),
    var(--gradient-mid),
    var(--gradient-end)
  );
  border-bottom-right-radius: 500px;
  z-index: 1;
}

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

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  display: flex;
  flex-direction: column;
}

.hero-title-light {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 48px;
  letter-spacing: 6px;
  color: var(--white);
  line-height: 1.2;
}

.hero-title-bold {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 72px;
  color: var(--white);
  line-height: 0.85;
  margin-top: 5px;
}

.page-template-template-home .hero-title-light {
  font-size: 72px;
}

.page-template-template-home .hero-title-bold {
  font-size: 180px;
}

.hero-description {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
  max-width: 410px;
  margin-top: 40px;
}

.hero-stats {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 40px;
}

.hero-stat {
  width: 140px;
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-secondary);
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.4px;
  color: var(--white);
}

.hero-stat-label {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.2px;
  color: var(--white);
}

.hero-cta {
  margin-top: 40px;
}

.hero-image {
  position: absolute;
  top: 120px;
  right: 15%;
  width: 45%;
  max-width: 650px;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .page-template-template-home .hero-title-bold {
    font-size: 140px;
  }

  .hero-image {
    width: 45%;
  }
}

@media (max-width: 1024px) {
  .hero-gradient {
    width: 100%;
    border-bottom-right-radius: 200px;
  }

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

  .hero-title-bold {
    font-size: 56px;
  }

  .page-template-template-home .hero-title-light {
    font-size: 50px;
  }

  .page-template-template-home .hero-title-bold {
    font-size: 110px;
  }

  .hero-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 500px;
    margin: 40px auto 0;
  }

  .hero-content {
    padding: 120px 40px 40px;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero-cta {
    margin-top: 20px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-title-light {
    font-size: 28px;
    letter-spacing: 3px;
  }
  .hero-description {
    margin: 10px auto 0 auto;
  }
  .hero-title-bold {
    font-size: 42px;
  }
  .hero-stats {
    margin-top: 20px;
  }
  .page-template-template-home .hero-title-light {
    font-size: 36px;
  }

  .page-template-template-home .hero-title-bold {
    font-size: 80px;
  }

  .hero-content {
    padding: 100px 20px 30px;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stat {
    width: auto;
    flex: 1;
  }

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

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

@media (max-width: 480px) {
  .hero-title-light {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .hero-title-bold {
    font-size: 32px;
  }

  .page-template-template-home .hero-title-light {
    font-size: 28px;
  }

  .page-template-template-home .hero-title-bold {
    font-size: 60px;
  }

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

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