/* ========================================
   女王AI获客工作室 - Hero样式
   首页Hero Banner + 各页面Page Hero
   ======================================== */

/* === 首页Hero === */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-hero);
  padding: var(--sp-xl) 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: var(--z-base);
  max-width: 800px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  color: var(--color-white);
  line-height: var(--lh-heading);
  margin-bottom: var(--sp-md);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-lg);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
}

/* === 页面Hero（其他页面顶部） === */
.page-hero {
  background: var(--gradient-hero);
  padding: calc(var(--sp-xl) + 60px) 0 var(--sp-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  color: var(--color-white);
  margin-bottom: var(--sp-sm);
}

.page-hero__subtitle {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 页面Hero底部装饰线 */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero-reverse);
}
