:root {
  /* ==================== 色彩系统 ==================== */
  /* 主色调 */
  --primary-50: #eef2ff;
  --primary-100: #e0e7ff;
  --primary-200: #c7d2fe;
  --primary-300: #a5b4fc;
  --primary-400: #818cf8;
  --primary-500: #6366f1;
  --primary-600: #4f46e5;
  --primary-700: #4338ca;
  --primary-800: #3730a3;
  --primary-900: #312e81;
  
  --primary-color: #4f46e5;
  --primary-hover: #4338ca;
  --primary-light: #eef2ff;
  
  /* 辅色 */
  --secondary-color: #7c3aed;
  --secondary-hover: #6d28d9;
  
  /* 强调色 */
  --accent-color: #ec4899;
  --accent-hover: #db2777;
  
  /* 成功/警告/错误 */
  --success-color: #10b981;
  --success-light: #d1fae5;
  --warning-color: #f59e0b;
  --warning-light: #fef3c7;
  --error-color: #ef4444;
  --error-light: #fee2e2;
  
  /* 文字颜色 */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;
  
  /* 背景 */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-hover: #f8fafc;
  
  /* 边框 */
  --border-light: #e2e8f0;
  --border-default: #cbd5e1;
  --border-dark: #94a3b8;
  
  /* 阴影系统 */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  
  /* 彩色阴影 */
  --shadow-primary: 0 10px 40px -10px rgba(79, 70, 229, 0.4);
  --shadow-secondary: 0 10px 40px -10px rgba(124, 58, 237, 0.4);
  
  /* 圆角 */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* 间距 */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  
  /* 过渡 */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slower: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* 字体 */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
  
  /* 字号 */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* 行高 */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* ==================== 基础重置 ==================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  background: var(--bg-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.loaded {
  opacity: 1;
}

/* 选中文字样式 */
::selection {
  background: var(--primary-200);
  color: var(--primary-900);
}

/* 焦点样式 */
:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* 图片默认样式 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 链接默认样式 */
a {
  color: inherit;
  text-decoration: none;
}

/* 按钮默认样式 */
button {
  font-family: inherit;
  cursor: pointer;
}

/* ==================== 布局容器 ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* ==================== 头部导航 ==================== */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  transition: var(--transition-base);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-light);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  min-height: 72px;
}

.logo {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-base);
  letter-spacing: -0.025em;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition-base);
}

.logo:hover {
  color: var(--primary-color);
}

.logo:hover::after {
  width: 100%;
}

.nav-links {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  transition: var(--transition-base);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  position: relative;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-base);
  border-radius: var(--radius-full);
}

.nav-links a:hover {
  color: var(--primary-color);
  background: var(--primary-light);
}

.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a.active::before {
  width: 20px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--text-xl);
  cursor: pointer;
  color: var(--text-primary);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.mobile-toggle:hover {
  background: var(--bg-tertiary);
}

/* ==================== Hero区域 ==================== */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6366f1 100%);
  color: var(--text-inverse);
  padding: var(--space-24) var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 30%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-secondary), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: var(--text-sm);
  opacity: 0.85;
  margin-bottom: var(--space-6);
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  margin-bottom: var(--space-6);
  font-weight: 800;
  line-height: var(--leading-tight);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.025em;
}

.hero-desc {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero-cta {
  margin-top: var(--space-10);
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== 按钮系统 ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  transition: var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-slower);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--bg-primary);
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: var(--bg-primary);
  color: var(--primary-color);
  border-color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-inverse);
  box-shadow: var(--shadow-primary);
}

.btn-text {
  background: transparent;
  color: var(--primary-color);
  padding: var(--space-2) var(--space-4);
  border: none;
}

.btn-text:hover {
  background: var(--primary-light);
}

.btn-large {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
  border-radius: var(--radius-xl);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ==================== 通用区块 ==================== */
.section {
  padding: var(--space-20) 0;
}

.section h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-align: center;
  letter-spacing: -0.025em;
}

.section-intro {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
  line-height: var(--leading-relaxed);
}

/* ==================== 产品展示 ==================== */
.products-section {
  background: var(--bg-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.product-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  border: 1px solid var(--border-light);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-200);
}

.product-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.product-card.featured::before {
  content: '推荐';
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-inverse);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  padding: var(--space-6) var(--space-6) var(--space-2);
  letter-spacing: -0.01em;
}

.product-card p {
  padding: 0 var(--space-6) var(--space-3);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-inverse);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  margin: 0 var(--space-6) var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-actions {
  padding: var(--space-4) var(--space-6) var(--space-6);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.products-cta {
  text-align: center;
  margin-top: var(--space-12);
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

.products-cta a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
}

.products-cta a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==================== 产品对比 ==================== */
.compare-section {
  background: var(--bg-secondary);
}

.compare-table-wrapper {
  overflow-x: auto;
  margin: var(--space-12) 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  -webkit-overflow-scrolling: touch;
}

.compare-table-wrapper.scrollable {
  position: relative;
}

.compare-table-wrapper.scrollable::after {
  content: '← 滑动查看更多 →';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.compare-table {
  width: 100%;
  background: var(--bg-primary);
  border-collapse: collapse;
  min-width: 900px;
}

.compare-table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-inverse);
}

.compare-table th {
  padding: var(--space-5) var(--space-4);
  text-align: left;
  font-weight: 600;
  font-size: var(--text-sm);
  white-space: nowrap;
}

.compare-table th:first-child {
  width: 180px;
  border-radius: var(--radius-xl) 0 0 0;
}

.compare-table th:last-child {
  border-radius: 0 var(--radius-xl) 0 0;
}

.compare-table td {
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  transition: var(--transition-fast);
}

.compare-table tbody tr {
  transition: var(--transition-fast);
}

.compare-table tbody tr:hover {
  background: var(--primary-50);
}

.compare-table tbody tr:hover td {
  color: var(--text-primary);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin: var(--space-12) 0;
}

.compare-card {
  background: var(--bg-primary);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.compare-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: var(--transition-base);
}

.compare-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.compare-card:hover::before {
  transform: scaleX(1);
}

.compare-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}

.compare-card ul {
  list-style: none;
  margin-bottom: var(--space-6);
}

.compare-card li {
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  position: relative;
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.compare-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
}

.compare-summary {
  background: var(--bg-primary);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-12);
}

.compare-summary h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.compare-summary p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.compare-summary strong {
  color: var(--text-primary);
  font-weight: 600;
}

.compare-summary a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
}

.compare-summary a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==================== 使用教程 ==================== */
.guide-section {
  background: var(--bg-primary);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.guide-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-slow);
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.guide-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.guide-card:hover img {
  transform: scale(1.03);
}

.guide-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  padding: var(--space-6) var(--space-6) var(--space-3);
}

.guide-card p {
  padding: 0 var(--space-6) var(--space-3);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.guide-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

.guide-actions {
  padding: var(--space-4) var(--space-6) var(--space-6);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.guide-summary {
  margin-top: var(--space-16);
  background: linear-gradient(135deg, var(--primary-50), rgba(124, 58, 237, 0.05));
  padding: var(--space-12);
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary-200);
  position: relative;
  overflow: hidden;
}

.guide-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.guide-summary h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-8);
  text-align: center;
}

.best-practices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.practice-item {
  background: var(--bg-primary);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 1px solid var(--border-light);
}

.practice-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.practice-item h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-3);
}

.practice-item p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.guide-cta {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-top: var(--space-6);
}

.guide-cta a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
}

.guide-cta a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==================== 新闻资讯 ==================== */
.news-section {
  background: var(--bg-secondary);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.news-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-slow);
  opacity: 0;
  transform: translateY(20px);
}

.news-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.news-card time {
  display: block;
  padding: var(--space-4) var(--space-6) var(--space-2);
  color: var(--primary-color);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.news-card:hover img {
  transform: scale(1.03);
}

.news-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  padding: var(--space-5) var(--space-6) var(--space-3);
  line-height: var(--leading-snug);
}

.news-card p {
  padding: 0 var(--space-6) var(--space-3);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.news-actions {
  padding: var(--space-4) var(--space-6) var(--space-6);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.news-more {
  text-align: center;
  margin-top: var(--space-12);
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

.news-more a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
}

.news-more a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==================== FAQ手风琴 ==================== */
.faq-section {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: var(--space-12) auto 0;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  user-select: none;
  transition: var(--transition-base);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  gap: var(--space-4);
}

.faq-question span:first-child {
  flex: 1;
}

.faq-question:hover {
  color: var(--primary-color);
  background: var(--primary-50);
}

.faq-icon {
  font-size: var(--text-xl);
  color: var(--primary-color);
  transition: var(--transition-base);
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  background: var(--bg-secondary);
}

.faq-answer p {
  padding: 0 var(--space-6) var(--space-3);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.faq-answer p:first-child {
  padding-top: var(--space-5);
}

.faq-answer p:last-child {
  padding-bottom: var(--space-6);
}

.faq-answer ul {
  padding: 0 var(--space-6) var(--space-3) var(--space-12);
}

.faq-answer li {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.faq-answer strong {
  color: var(--text-primary);
  font-weight: 600;
}

.faq-answer a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
}

.faq-answer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-12);
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

.faq-cta a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
}

.faq-cta a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==================== 关于我们 ==================== */
.about-section {
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-12);
  align-items: start;
  margin-top: var(--space-12);
}

.about-text p {
  margin-bottom: var(--space-5);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.about-text ul {
  margin: var(--space-6) 0 var(--space-6) var(--space-6);
}

.about-text li {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.about-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.about-text a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
}

.about-text a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-image {
  position: sticky;
  top: 100px;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  transition: var(--transition-slow);
}

.about-image img:hover {
  transform: scale(1.02);
}

/* ==================== 风险提示 ==================== */
.risk-section {
  background: var(--bg-primary);
}

.risk-content {
  max-width: 800px;
  margin: var(--space-12) auto 0;
}

.risk-warning {
  background: var(--error-light);
  border-left: 4px solid var(--error-color);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
}

.risk-warning h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--error-color);
  margin-bottom: var(--space-3);
}

.risk-warning p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.risk-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.risk-item:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
}

.risk-item h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.risk-item p {
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.risk-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

.disclaimer {
  background: linear-gradient(135deg, var(--primary-50), rgba(124, 58, 237, 0.05));
  border: 2px solid var(--primary-200);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  margin-top: var(--space-8);
}

.disclaimer h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.disclaimer p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.disclaimer strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==================== 联系我们 ==================== */
.contact-section {
  background: var(--bg-secondary);
}

.contact-content {
  max-width: 800px;
  margin: var(--space-12) auto 0;
}

.contact-info {
  background: var(--bg-primary);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-8);
}

.contact-info p {
  margin-bottom: var(--space-5);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.contact-info ul {
  margin: var(--space-6) 0 var(--space-6) var(--space-6);
}

.contact-info li {
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.contact-note {
  background: var(--primary-50);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  margin-top: var(--space-6);
}

.contact-note strong {
  color: var(--primary-color);
}

.contact-action {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-inverse);
  padding: var(--space-12);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-2xl);
  margin-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
}

.contact-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-action h3 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  position: relative;
}

.contact-action p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  opacity: 0.95;
  position: relative;
}

.contact-action .btn {
  position: relative;
}

.contact-hours {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  opacity: 0.9;
  position: relative;
}

.contact-tip {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  opacity: 0.9;
  position: relative;
}

.contact-tip a {
  color: var(--text-inverse);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-resources {
  background: var(--bg-primary);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-resources h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-5);
}

.resource-item {
  padding: var(--space-5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.resource-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.resource-item h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.resource-item p {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.resource-item a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-base);
}

.resource-item a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==================== 页脚 ==================== */
.footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-16) 0 var(--space-6);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-section h4 {
  color: var(--text-inverse);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.footer-section p {
  margin-bottom: var(--space-3);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

.footer-note {
  font-size: var(--text-xs);
  opacity: 0.6;
  margin-top: var(--space-3);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition-base);
  font-size: var(--text-sm);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--text-inverse);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  opacity: 0.6;
}

.footer-disclaimer {
  font-size: var(--text-xs);
  opacity: 0.5;
}

/* ==================== 返回顶部按钮 ==================== */
.back-to-top {
  position: fixed;
  bottom: var(--space-10);
  right: var(--space-10);
  background: var(--primary-color);
  color: var(--text-inverse);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: none;
  font-size: var(--text-xl);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* ==================== 动画 ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* 骨架屏加载效果 */
.skeleton {
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .about-image {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
    gap: var(--space-1);
    border-top: 1px solid var(--border-light);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: var(--space-16) var(--space-5);
  }

  .hero h1 {
    font-size: var(--text-3xl);
  }

  .hero-desc {
    font-size: var(--text-base);
  }

  .section {
    padding: var(--space-16) 0;
  }

  .section h2 {
    font-size: var(--text-2xl);
  }

  .section-intro {
    font-size: var(--text-base);
  }

  .products-grid,
  .guide-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .compare-cards,
  .best-practices,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .back-to-top {
    bottom: var(--space-5);
    right: var(--space-5);
    width: 44px;
    height: 44px;
    font-size: var(--text-lg);
  }

  .guide-summary {
    padding: var(--space-8);
  }

  .contact-action {
    padding: var(--space-8);
  }

  .contact-action h3 {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: var(--text-2xl);
  }

  .hero-desc {
    font-size: var(--text-sm);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .section h2 {
    font-size: var(--text-xl);
  }

  .product-card h3,
  .guide-card h3,
  .news-card h3 {
    font-size: var(--text-base);
  }

  .product-card img,
  .guide-card img,
  .news-card img {
    height: 180px;
  }

  .contact-action {
    padding: var(--space-6);
  }

  .contact-action h3 {
    font-size: var(--text-xl);
  }

  .btn {
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
  }

  .btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
  }
}

/* ==================== 打印样式 ==================== */
@media print {
  header,
  .back-to-top,
  .hero-cta,
  .product-actions,
  .guide-actions,
  .news-actions {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .section {
    padding: 20pt 0;
    page-break-inside: avoid;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

/* ==================== 无障碍优化 ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* 高对比度模式 */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0000ff;
    --text-primary: #000000;
    --text-secondary: #000000;
    --bg-primary: #ffffff;
    --border-light: #000000;
  }
}