/* 微歇 产品介绍页独立样式（低饱和鼠尾草绿配色） */

:root {
  --wx-primary: #5A9680;
  --wx-primary-dark: #3E6F5E;
  --wx-accent: #89BFA8;
  --wx-ink: #2B493D;
  --wx-muted: #6B7F76;
  --wx-bg-soft: #F1F6F3;
  --wx-line: #D6E4DC;
  --wx-radius: 16px;
  --wx-shadow: 0 10px 28px rgba(90, 150, 128, 0.12);
  --wx-shadow-hover: 0 18px 44px rgba(62, 111, 94, 0.18);
}

/* Hero */
.wx-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 24px 120px;
  text-align: center;
  color: #fff;
  background: radial-gradient(1200px 500px at 50% -10%, rgba(137, 191, 168, 0.55), transparent 60%),
              linear-gradient(135deg, #2B493D 0%, #4A7C68 55%, #89BFA8 100%);
}
.wx-hero::before,
.wx-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.wx-hero::before {
  width: 360px; height: 360px;
  background: #A8C5B5;
  top: -80px; left: -60px;
}
.wx-hero::after {
  width: 300px; height: 300px;
  background: #C8DFD0;
  bottom: -100px; right: -40px;
}
.wx-badge {
  position: relative;
  display: inline-block;
  padding: 8px 18px;
  margin-bottom: 28px;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #E0EEE6;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.wx-hero h1 {
  position: relative;
  font-size: 68px;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.wx-hero h1 small {
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 400;
  color: #DCE9E0;
  margin-top: 8px;
  opacity: 0.9;
}
.wx-hero .wx-sub {
  position: relative;
  font-size: 22px;
  color: #E0EEE6;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.wx-hero .wx-sub b { color: #fff; font-weight: 600; }

.wx-cta-row {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.wx-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.wx-btn-primary {
  color: #3E6F5E;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.wx-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}
.wx-btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.wx-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.wx-hero .wx-tip {
  position: relative;
  margin-top: 22px;
  font-size: 14px;
  color: #C8DFD0;
}

/* 区块通用 */
.wx-section { padding: 84px 24px; }
.wx-section-soft { background: var(--wx-bg-soft); }
.wx-section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: var(--wx-ink);
  margin-bottom: 12px;
}
.wx-section-desc {
  text-align: center;
  font-size: 17px;
  color: var(--wx-muted);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* 特色卡片网格 */
.wx-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wx-card {
  background: #fff;
  border: 1px solid var(--wx-line);
  border-radius: var(--wx-radius);
  padding: 36px 30px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.wx-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wx-shadow-hover);
  border-color: transparent;
}
.wx-card .wx-ico {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8F1EC, #F1F6F3);
}
.wx-card .wx-ico img { width: 38px; height: 38px; }
.wx-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--wx-ink);
  margin-bottom: 12px;
}
.wx-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--wx-muted);
}

/* 使用流程 */
.wx-steps {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wx-step {
  text-align: center;
  padding: 36px 26px;
  background: #fff;
  border-radius: var(--wx-radius);
  border: 1px solid var(--wx-line);
  box-shadow: var(--wx-shadow);
}
.wx-step .wx-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--wx-primary), var(--wx-accent));
}
.wx-step h3 {
  font-size: 19px;
  color: var(--wx-ink);
  margin-bottom: 10px;
}
.wx-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--wx-muted);
}

/* 倒计时小卡片（装饰性展示） */
.wx-countdown-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.wx-countdown-intro h3 {
  font-size: 26px;
  color: var(--wx-ink);
  margin-bottom: 14px;
}
.wx-countdown-intro p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--wx-muted);
  margin-bottom: 10px;
}
.wx-countdown-box {
  background: linear-gradient(135deg, #2B493D, #4A7C68);
  color: #fff;
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 20px 40px rgba(74, 124, 104, 0.22);
}
.wx-countdown-box .wx-tip-top {
  font-size: 14px;
  color: #DCE9E0;
  letter-spacing: 1px;
  text-align: center;
}
.wx-countdown {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  padding: 24px 0 10px;
}
.wx-countdown .wx-num-big {
  font-size: 54px;
  font-weight: 800;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.wx-countdown .wx-unit {
  font-size: 18px;
  color: #DCE9E0;
  margin-right: 10px;
}
.wx-countdown-box .wx-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 10px;
}
.wx-countdown-box .wx-mb {
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.wx-countdown-box .wx-mb-solid {
  background: #fff;
  color: #3E6F5E;
}
.wx-countdown-box .wx-mb-line {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* CTA 区 */
.wx-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 90px 24px 110px;
  background: linear-gradient(135deg, #3E6F5E 0%, #5A9680 100%);
}
.wx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 300px at 50% 120%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.wx-cta h2 {
  position: relative;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}
.wx-cta p {
  position: relative;
  font-size: 18px;
  color: #DCE9E0;
  margin-bottom: 36px;
}
.wx-cta .wx-btn-primary { color: #3E6F5E; }

/* 响应式 */
@media (max-width: 900px) {
  .wx-grid { grid-template-columns: repeat(2, 1fr); }
  .wx-steps { grid-template-columns: 1fr; }
  .wx-countdown-wrap { grid-template-columns: 1fr; }
  .wx-hero h1 { font-size: 48px; }
  .wx-hero .wx-sub { font-size: 18px; }
}
@media (max-width: 560px) {
  .wx-grid { grid-template-columns: 1fr; }
  .wx-hero { padding: 80px 20px 90px; }
  .wx-hero h1 { font-size: 38px; letter-spacing: 2px; }
  .wx-section { padding: 60px 18px; }
  .wx-section-title { font-size: 28px; }
  .wx-cta h2 { font-size: 28px; }
  .wx-countdown .wx-num-big { font-size: 40px; }
}
