/*
 * Element Plus 色系对齐
 * --el-color-primary:        #409EFF
 * --el-bg-color-page:        #F2F3F5
 * --el-text-color-primary:   #303133
 * --el-text-color-regular:   #606266
 * --el-text-color-secondary: #909399
 * --el-border-color:         #DCDFE6
 */

:root {
  /* ── 主色（完全对齐 Element Plus） ── */
  --accent:        #409EFF;
  --accent-dark:   #337ECC;   /* primary-dark-2 */
  --accent-deeper: #2B6CB0;
  --accent-light3: #79BBFF;   /* primary-light-3 */
  --accent-light7: #C6E2FF;   /* primary-light-7，边框用 */
  --accent-light8: #D9ECFF;   /* primary-light-8 */
  --accent-light9: #ECF5FF;   /* primary-light-9，浅底用 */

  /* ── 中性色（对齐 Element Plus） ── */
  --text-primary:   #303133;
  --text-regular:   #606266;
  --text-secondary: #909399;
  --text-placeholder: #C0C4CC;

  --border:         #DCDFE6;
  --border-light:   #E4E7ED;
  --border-lighter: #EBEEF5;

  --fill:       #F0F2F5;
  --fill-light: #F5F7FA;

  --bg-page:  #F2F3F5;   /* el-bg-color-page */
  --bg-card:  #FFFFFF;

  /* ── 基础色 ── */
  --black: #303133;
  --white: #FFFFFF;

  /* ── 语义色 ── */
  --success: #67C23A;
  --warning: #E6A23C;
  --danger:  #F56C6C;
  --info:    #909399;

  /* ── 阴影（对齐 Element Plus） ── */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 2px 12px rgba(0,0,0,.1);    /* el-box-shadow-light */
  --shadow-lg: 0 4px 16px rgba(0,0,0,.12);
  --shadow-xl: 0 8px 32px rgba(0,0,0,.15);
  --shadow-accent: 0 4px 16px rgba(64,158,255,.25);

  /* ── 圆角 ── */
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl:20px;
  --radius-3xl:24px;

  /* ── 布局 ── */
  --max-width:     1200px;
  --header-height: 60px;

  /* ── 动效 ── */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur:    200ms;
  --dur-lg: 300ms;
  --dur-xl: 500ms;
}

/* ── Reset ── */
* { margin:0; padding:0; box-sizing:border-box; }
::selection { background:var(--accent); color:var(--white); }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

body {
  font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow-x: hidden;
}

a { color:var(--accent); text-decoration:none; transition:color var(--dur) ease; }
a:hover { color:var(--accent-dark); }
img { max-width:100%; height:auto; }
.container { max-width:var(--max-width); margin:0 auto; padding:0 20px; }

/* ── Scroll reveal ── */
.reveal {
  opacity:0; transform:translateY(16px);
  transition: opacity var(--dur-xl) var(--ease-out),
              transform var(--dur-xl) var(--ease-out);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay: 60ms; }
.reveal-delay-2 { transition-delay:120ms; }
.reveal-delay-3 { transition-delay:180ms; }
.reveal-delay-4 { transition-delay:240ms; }
.reveal-delay-5 { transition-delay:300ms; }

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
.site-header {
  height: var(--header-height);
  position: sticky; top:0; z-index:100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.site-header .container {
  display:flex; align-items:center; justify-content:space-between; height:100%;
}

/* Logo — 蓝色文字，对齐截图 */
.site-header .logo {
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--accent);
  transition: color var(--dur) ease;
}
.site-header .logo:hover { color: var(--accent-dark); }

/* 导航 */
.site-header nav { display:flex; gap:4px; }
.site-header nav a {
  padding: 6px 14px; border-radius: var(--radius-sm);
  color: var(--text-regular); font-size: 14px;
  transition: all var(--dur) ease;
  position: relative;
}
.site-header nav a::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--dur-lg) var(--ease-out);
}
.site-header nav a:hover { color: var(--accent); background: var(--accent-light9); }
.site-header nav a:hover::after { transform: scaleX(1); }
.site-header nav a.active { color: var(--accent); font-weight: 500; }
.site-header nav a.active::after { transform: scaleX(1); }

.header-right { display:flex; align-items:center; gap:12px; }
.header-right .btn {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 8px;
}
.header-right .lang-switch {
  padding: 6px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--white); color: var(--text-regular); font-size: 13px;
  cursor: pointer; transition: all var(--dur) ease;
}
.header-right .lang-switch:hover { border-color: var(--accent); color: var(--accent); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sm-lang-label { margin: 0; }
.header-right .sm-lang-select,
.mobile-nav .sm-lang-select {
  padding: 6px 10px;
  max-width: 160px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-regular);
  font-size: 13px;
  cursor: pointer;
  transition: border-color var(--dur) ease, color var(--dur) ease;
}
.header-right .sm-lang-select:hover,
.mobile-nav .sm-lang-select:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.mobile-nav .sm-lang-label {
  display: block;
  padding: 8px 16px;
}
.mobile-nav .sm-lang-select {
  width: 100%;
  max-width: none;
}

/* ═══════════════════════════════════
   BUTTONS（对齐 Element Plus el-button）
═══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 400; cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--dur) ease;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: scale(.98); }

/* primary：蓝底白字 */
.btn-primary {
  background: var(--accent); color: var(--white); border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark); color: var(--white); border-color: var(--accent-dark);
}

/* outline：白底蓝边蓝字 */
.btn-outline {
  background: var(--white); color: var(--accent); border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-light9); color: var(--accent-dark); border-color: var(--accent-dark);
}

.btn-lg { padding: 12px 28px; font-size: 15px; }
.btn-sm { padding:  6px 14px; font-size: 13px; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  padding: 64px 0 40px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-page) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero h1 {
  font-size: 46px; font-weight: 700;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px;
  color: var(--text-primary);
}
/* 品牌名用蓝色 */
.hero h1 .brand { color: var(--accent); }
.hero .subtitle { font-size: 16px; color: var(--text-regular); margin-bottom: 10px; }
.hero .description { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.8; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 32px; }

.feature-tags { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.feature-tag {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border: 1px solid var(--border-light); border-radius: var(--radius);
  font-size: 13px; color: var(--text-regular);
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: all var(--dur-lg) ease;
}
.feature-tag:hover {
  border-color: var(--accent-light7);
  background: var(--accent-light9);
  color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-tag .icon { font-size: 14px; color: var(--accent); }

/* ── Visual card（模拟 webapp 卡片） ── */
.visual-card {
  width: 300px; margin: 0 auto;
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--dur-xl) var(--ease-out), box-shadow var(--dur-xl) ease;
}
.visual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.visual-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--border-lighter);
  background: var(--fill-light);
}
.dots { display: flex; gap: 6px; }
.dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background var(--dur); }
.visual-card:hover .dots span:nth-child(1) { background: #ff5f57; }
.visual-card:hover .dots span:nth-child(2) { background: #febc2e; }
.visual-card:hover .dots span:nth-child(3) { background: #28c840; }
.visual-card-header small { font-size: 12px; color: var(--text-secondary); }
.visual-card-body { padding: 24px 16px; }

.waveform { display: flex; align-items: end; justify-content: center; gap: 3px; height: 56px; margin-bottom: 18px; }
.wave-bar {
  width: 3px; border-radius: 2px;
  background: var(--accent);
  animation: wave 1.8s ease-in-out infinite; opacity: .7;
}
.wave-bar:nth-child(1)  { animation-delay: 0s; }
.wave-bar:nth-child(2)  { animation-delay: .08s; }
.wave-bar:nth-child(3)  { animation-delay: .16s; }
.wave-bar:nth-child(4)  { animation-delay: .24s; }
.wave-bar:nth-child(5)  { animation-delay: .32s; }
.wave-bar:nth-child(6)  { animation-delay: .40s; }
.wave-bar:nth-child(7)  { animation-delay: .48s; }
.wave-bar:nth-child(8)  { animation-delay: .56s; }
.wave-bar:nth-child(9)  { animation-delay: .64s; }
.wave-bar:nth-child(10) { animation-delay: .72s; }
.wave-bar:nth-child(11) { animation-delay: .80s; }
.wave-bar:nth-child(12) { animation-delay: .88s; }
.wave-bar:nth-child(13) { animation-delay: .96s; }
.wave-bar:nth-child(14) { animation-delay:1.04s; }
.wave-bar:nth-child(15) { animation-delay:1.12s; }
@keyframes wave {
  0%,100% { transform: scaleY(.3); opacity: .4; }
  50%      { transform: scaleY(1);  opacity: .85; }
}
.subtitle-preview { text-align: center; }
.subtitle-line {
  background: var(--accent); color: var(--white);
  padding: 5px 12px; border-radius: var(--radius-sm);
  font-size: 12px; display: inline-block; margin: 3px 0;
}
.subtitle-line:last-child { background: var(--text-primary); }

/* ═══════════════════════════════════
   STATS
═══════════════════════════════════ */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 32px 0; }
.stat-card {
  text-align: center; padding: 24px 16px;
  border: 1px solid var(--border-light); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: all var(--dur-lg) ease;
}
.stat-card:hover {
  border-color: var(--accent-light7);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.stat-card:hover .number { color: var(--accent); }
.stat-card .number { font-size: 28px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; transition: color var(--dur) ease; }
.stat-card .label  { font-size: 13px; color: var(--text-secondary); }

/* ═══════════════════════════════════
   CARDS
═══════════════════════════════════ */
.cards-grid { display: grid; gap: 12px; margin: 24px 0; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 24px; background: var(--white); box-shadow: var(--shadow-sm);
  transition: all var(--dur-lg) ease;
}
.card:hover {
  border-color: var(--accent-light7);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card .card-icon { font-size: 28px; margin-bottom: 14px; display: block; transition: transform var(--dur-lg) var(--ease-spring); }
.card:hover .card-icon { transform: scale(1.12); }
.card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.card p  { font-size: 13px; color: var(--text-regular); line-height: 1.7; }

/* ═══════════════════════════════════
   SECTIONS
═══════════════════════════════════ */
.section { padding: 48px 0; }
.section-title { font-size: 28px; font-weight: 700; text-align: center; margin-bottom: 10px; color: var(--text-primary); }
.section-desc  { font-size: 14px; color: var(--text-secondary); text-align: center; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }

.page-header { text-align: center; padding: 40px 0 28px; }
.page-header h1 { font-size: 32px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.page-header p  { font-size: 14px; color: var(--text-secondary); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ═══════════════════════════════════
   SUB NAV（对齐 Element Plus el-tabs 风格）
═══════════════════════════════════ */
.sub-nav {
  display: flex; gap: 0; margin-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}
.sub-nav a {
  padding: 10px 20px; color: var(--text-regular); font-size: 14px;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--dur) ease;
}
.sub-nav a:hover  { color: var(--accent); }
.sub-nav a.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 500; }

/* ═══════════════════════════════════
   CTA SECTION
═══════════════════════════════════ */
.cta-section {
  text-align: center; padding: 56px 32px;
  border: 1px solid var(--accent-light7); border-radius: var(--radius-xl);
  margin: 40px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light9) 100%);
  box-shadow: var(--shadow-sm);
}
.cta-section .cta-icon { font-size: 36px; margin-bottom: 16px; }
.cta-section h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
.cta-section p  { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-section .cta-actions { display: flex; gap: 12px; justify-content: center; }

/* ═══════════════════════════════════
   CONTENT PAGE
═══════════════════════════════════ */
.content-page { max-width: 800px; margin: 0 auto; padding: 20px; }
.content-page h2 { font-size: 20px; font-weight: 600; margin: 36px 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border-lighter); color: var(--text-primary); }
.content-page h3 { font-size: 16px; font-weight: 600; margin: 24px 0 8px; color: var(--text-primary); }
.content-page p,
.content-page li { font-size: 14px; color: var(--text-regular); line-height: 1.85; margin-bottom: 8px; }
.content-page ul,
.content-page ol { padding-left: 24px; margin-bottom: 16px; }
.content-page strong { color: var(--text-primary); font-weight: 600; }
.content-page a { color: var(--accent); border-bottom: 1px solid var(--accent-light7); transition: all var(--dur) ease; }
.content-page a:hover { color: var(--accent-dark); border-bottom-color: var(--accent); }

/* ═══════════════════════════════════
   DOWNLOAD CARDS
═══════════════════════════════════ */
.download-card {
  border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 28px; text-align: center; background: var(--white); box-shadow: var(--shadow-sm);
  transition: all var(--dur-lg) ease;
}
.download-card:hover {
  border-color: var(--accent-light7);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.download-card .card-icon { font-size: 36px; margin-bottom: 14px; display: block; transition: transform var(--dur-lg) var(--ease-spring); }
.download-card:hover .card-icon { transform: scale(1.15) rotate(-3deg); }
.download-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.download-card p  { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.6; }

.extract-code {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px;
  background: var(--accent-light9); border: 1px solid var(--accent-light7); border-radius: var(--radius-sm);
  margin-bottom: 14px; font-size: 13px; color: var(--text-regular);
}
.extract-code .code {
  font-weight: 600; color: var(--accent); cursor: pointer;
  padding: 2px 8px; background: var(--white); border: 1px solid var(--accent-light7); border-radius: var(--radius-sm);
  font-family: ui-monospace, SFMono-Regular, monospace;
  transition: all var(--dur) ease;
}
.extract-code .code:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ═══════════════════════════════════
   STEPS
═══════════════════════════════════ */
.steps { display: flex; justify-content: space-between; margin: 32px 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 19px; left: 55px; right: 55px; height: 1px;
  background: var(--border-light);
}
.step { text-align: center; flex: 1; position: relative; }
.step .step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; margin-bottom: 12px;
  position: relative; z-index: 1;
  box-shadow: 0 2px 8px rgba(64,158,255,.3);
  transition: transform var(--dur-lg) var(--ease-spring), box-shadow var(--dur-lg) ease;
}
.step:hover .step-num { transform: scale(1.1); box-shadow: 0 4px 16px rgba(64,158,255,.4); }
.step h4 { font-size: 13px; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
.step p  { font-size: 12px; color: var(--text-secondary); padding: 0 6px; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-item {
  border: 1px solid var(--border-light); border-radius: var(--radius);
  margin-bottom: 8px; overflow: hidden;
  transition: all var(--dur-lg) ease;
}
.faq-item:hover { border-color: var(--accent-light7); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; cursor: pointer; font-size: 14px; font-weight: 500;
  color: var(--text-primary); background: var(--white);
  transition: background var(--dur) ease; user-select: none;
}
.faq-question:hover { background: var(--fill-light); }
.faq-question .arrow { transition: transform var(--dur-lg) ease; font-size: 11px; color: var(--text-secondary); }
.faq-item.open { border-color: var(--accent-light7); box-shadow: 0 0 0 1px var(--accent-light7); }
.faq-item.open .faq-question { background: var(--accent-light9); color: var(--accent); }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height var(--dur-lg) ease, padding var(--dur-lg) ease;
  color: var(--text-regular); font-size: 14px; line-height: 1.8;
}
.faq-item.open .faq-answer { padding: 14px 20px; max-height: 500px; }

/* ═══════════════════════════════════
   TAGS
═══════════════════════════════════ */
.tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 12px; background: var(--accent-light9); border: 1px solid var(--accent-light7);
  color: var(--accent); margin: 2px 4px 2px 0;
  transition: all var(--dur) ease;
}
.tag:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ═══════════════════════════════════
   TIMELINE
═══════════════════════════════════ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px;
  background: var(--border-light);
}
.timeline-item {
  position: relative; margin-bottom: 24px; padding: 18px;
  border: 1px solid var(--border-light); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: all var(--dur-lg) ease;
}
.timeline-item:hover { border-color: var(--accent-light7); box-shadow: var(--shadow); transform: translateX(3px); }
.timeline-item::before {
  content: ''; position: absolute; left: -28px; top: 22px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--bg-page), 0 0 0 4px var(--accent-light7);
}
.timeline-item:hover::before { box-shadow: 0 0 0 3px var(--bg-page), 0 0 0 5px var(--accent); }
.timeline-item h3 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
.timeline-item .date { font-size: 12px; color: var(--accent); font-weight: 500; margin-bottom: 6px; }
.timeline-item p { font-size: 13px; color: var(--text-regular); line-height: 1.6; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer { background: var(--white); border-top: 1px solid var(--border-light); padding: 48px 0 20px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 28px; }
.footer-section h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--text-primary); }
.footer-section p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin: 4px 0; }
.footer-section .footer-logo { font-size: 18px; font-weight: 700; color: var(--accent); margin-bottom: 10px; display: inline-block; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin: 8px 0; }
.footer-section ul a { font-size: 13px; color: var(--text-regular); transition: color var(--dur) ease; }
.footer-section ul a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border-lighter); padding-top: 16px; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--text-secondary); margin: 3px 0; }
.footer-bottom a { color: var(--text-secondary); }
.footer-bottom a:hover { color: var(--accent); }

/* ═══════════════════════════════════
   MOBILE NAV
═══════════════════════════════════ */
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm);
  width: 36px; height: 36px; font-size: 16px; cursor: pointer; color: var(--text-regular);
  transition: all var(--dur) ease;
}
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }
.mobile-nav {
  display: none; position: fixed; top: var(--header-height); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border-light); padding: 8px; z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 16px; color: var(--text-regular); border-radius: var(--radius-sm); font-size: 14px; transition: all var(--dur) ease; }
.mobile-nav a:hover { background: var(--accent-light9); color: var(--accent); }

/* ═══════════════════════════════════
   TABS（对齐 el-tabs）
═══════════════════════════════════ */
.tabs { display: flex; gap: 0; margin-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.tab-btn {
  padding: 10px 20px; border: none; background: transparent; cursor: pointer;
  font-size: 14px; color: var(--text-regular);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--dur) ease;
}
.tab-btn:hover  { color: var(--accent); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 500; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ═══════════════════════════════════
   ALERTS（对齐 el-alert）
═══════════════════════════════════ */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); margin: 14px 0; font-size: 14px; line-height: 1.7; }
.alert-warning { background: #FDF6EC; border: 1px solid #FAECD8; color: #E6A23C; }
.alert-info    { background: var(--accent-light9); border: 1px solid var(--accent-light7); color: var(--accent-dark); }

/* ═══════════════════════════════════
   UTILITIES
═══════════════════════════════════ */
main { flex: 1; background: var(--bg-page); padding-bottom: 20px; }

.divider { height: 1px; margin: 40px 0; background: var(--border-light); }

.stats-row-3 { grid-template-columns: repeat(3, 1fr); }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 768px) {
  .hero { padding: 40px 0 28px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 30px; }
  .hero-actions { justify-content: center; }
  .feature-tags { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-2, .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps { flex-direction: column; gap: 16px; }
  .steps::before { display: none; }
  .site-header nav { display: none; }
  .nav-toggle { display: block; }
  .sub-nav { flex-wrap: wrap; }
  .visual-card { width: 260px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row, .stats-row-3 { grid-template-columns: 1fr; }
  .feature-tags { grid-template-columns: 1fr; }
}
