.home-page {
  background-image: url('../assets/header-bg.webp');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 92px 0 0;
  overflow: hidden;
}

.hero-section {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hero-content {
  width: 60%;
  max-width: 600px;
  z-index: 2;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff 0%, #9cf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.5;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 2.5rem;
  margin-top: 80px;
  width: 100%;
}

.stat-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 10px;
  /* padding: 10px 24px; */
  text-align: center;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #c2baf0 0%, #e3def9 100%);
  box-shadow: inset 0px 4px 4px 0px #ffffff;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-value {
  font-weight: 600;
  font-size: 24px;
  color: #301473;
}

.stat-label {
  font-size: 14px;
  color: #211a33;
}

/* 响应式样式，仅区分 1000px */
@media (max-width: 1000px) {
  .home-page {
    min-height: auto;
    padding-bottom: 50px;
  }

  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px 20px 40px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin-top: 2rem;
  }

  .hero-image {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 15px;
  }

  .stat-item {
    align-items: center;
    width: 100% !important;
    padding: 12px 10px;
    min-height: 90px;
    justify-content: center;
  }

  .stat-value {
    font-size: 1.8rem;
  }
}
