/* === Homepage Hero === */
.hero {
  position: relative;
  background: linear-gradient(135deg, #EBF3FF 0%, #F5F9FF 50%, #E8F4FD 100%);
  overflow: hidden;
}

.hero__inner {
  height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__inner_1 {
  background: #eaf0ff url(../../images/common/banner/banner-1.png) center center;
}
.hero__inner_2 {
  background: #e2f1ff url(../../images/common/banner/banner-2.png) center center;
}
.hero__inner_3 {
  background: #e2f1ff url(../../images/common/banner/banner-3.png) center center;
}
.hero__content {
  width: 1200px;
  margin: 0 auto;
}

.hero__title {
  font-size: var(--font-size-50);
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-text-base);
  margin-bottom: 15px;
  line-height: 1;
}

.hero__subtitle {
  font-size: var(--font-size-32);
  color: var(--color-text-primary);
  margin-bottom: 10px;
  font-weight: 400;
}
.hero__des {
  font-size: var(--font-size-22);
  font-weight: 400;
  color: var(--color-text-lightblack);
  margin-bottom: 40px;
}

.hero__image {
  flex-shrink: 0;
  width: 480px;
}

.hero__image img {
  width: 100%;
  height: auto;
}

/* Simple page hero (used in about, help, etc.) */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero__title {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-base);
}

.page-hero__en {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
