/* ============================================================
   style.css - 黄金回收商务风格全局样式
   主题：来点黄金 (lai dian huang jin)
   色调：金色 + 深棕商务风
   断点：1200px(桌面) / 1024px(平板) / 768px(手机) / 480px(小屏)
   ============================================================ */

/* ==========================================================
   1. CSS 变量体系 (Design Tokens)
   ========================================================== */
:root {
  /* --- 主色 --- */
  --primary: #C9A84C;
  --primary-dark: #A8872E;
  --primary-light: #E8D5A0;
  --primary-rgb: 201, 168, 76;

  /* --- 辅助色 --- */
  --secondary: #1A1510;
  --secondary-light: #2D2518;
  --secondary-rgb: 26, 21, 16;

  /* --- 强调色 --- */
  --accent: #D4AF37;
  --accent-dark: #B8942E;

  /* --- 背景 --- */
  --bg: #FFFFFF;
  --bg-light: #F9F7F2;
  --bg-dark: #1A1510;
  --bg-warm: #FDF8EF;

  /* --- 文字 --- */
  --text: #1A1510;
  --text-light: #6B5D4A;
  --text-muted: #9C8E7A;
  --text-inverse: #FFFFFF;

  /* --- 边框 --- */
  --border: #E8DFD0;
  --border-light: #F0EBE3;
  --border-dark: #3D3428;

  /* --- 渐变 --- */
  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8D5A0 50%, #B8942E 100%);
  --gold-gradient-hover: linear-gradient(135deg, #D4AF37 0%, #E8D5A0 50%, #C9A84C 100%);
  --dark-gradient: linear-gradient(135deg, #1A1510 0%, #2D2518 100%);
  --warm-gradient: linear-gradient(180deg, #FDF8EF 0%, #F9F7F2 100%);

  /* --- 间距 --- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* --- 圆角 --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* --- 阴影 --- */
  --shadow-sm: 0 1px 2px rgba(26, 21, 16, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 21, 16, 0.08);
  --shadow-lg: 0 8px 24px rgba(26, 21, 16, 0.1);
  --shadow-xl: 0 16px 48px rgba(26, 21, 16, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);
  --shadow-gold-lg: 0 8px 32px rgba(201, 168, 76, 0.3);
  --shadow-inner: inset 0 2px 4px rgba(26, 21, 16, 0.06);

  /* --- 字号 --- */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
  --text-5xl: 48px;
  --text-6xl: 60px;

  /* --- 行高 --- */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;
  --leading-loose: 2;

  /* --- 字重 --- */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* --- 字体 --- */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  --font-family-heading: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo,
    monospace;

  /* --- 层级 --- */
  --z-header: 1000;
  --z-overlay: 900;
  --z-dropdown: 800;
  --z-sticky: 700;

  /* --- 过渡 --- */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.35s ease;

  /* --- 布局 --- */
  --container-max: 1200px;
  --header-height: 72px;
}

/* ==========================================================
   2. Reset / Normalize
   ========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

/* ==========================================================
   3. 排版系统
   ========================================================== */
h1 {
  font-size: var(--text-5xl);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

h2 {
  font-size: var(--text-4xl);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
}

h3 {
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  color: var(--text);
}

h4 {
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  color: var(--text);
}

h5 {
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
  color: var(--text);
}

h6 {
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
  font-weight: var(--font-semibold);
  color: var(--text);
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-light);
  line-height: var(--leading-relaxed);
}

p:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: var(--font-semibold);
  color: var(--text);
}

em, i {
  font-style: italic;
}

small {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

mark {
  background-color: var(--primary-light);
  color: var(--text);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* 区块标题 */
.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--text);
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--leading-relaxed);
}

.section-label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

/* ==========================================================
   4. 滚动条美化
   ========================================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--bg-light);
}

/* ==========================================================
   5. 通用组件
   ========================================================== */

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Section --- */
.section {
  padding: var(--space-4xl) 0;
}

.section--bg-light {
  background-color: var(--bg-light);
}

.section--bg-warm {
  background-color: var(--bg-warm);
}

.section--bg-dark {
  background-color: var(--bg-dark);
}

.section--bg-dark .section-title {
  color: var(--text-inverse);
}

.section--bg-dark .section-subtitle {
  color: var(--primary-light);
}

/* --- Card --- */
.card {
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card__header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-light);
}

.card__body {
  padding: var(--space-lg);
}

.card__footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

/* --- Button --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: 1;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  user-select: none;
}

.btn--primary {
  background: var(--gold-gradient);
  color: var(--secondary);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-1px);
}

.btn--secondary {
  background-color: var(--secondary);
  color: var(--text-inverse);
  border: 1px solid var(--secondary);
}

.btn--secondary:hover {
  background-color: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-1px);
}

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

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

.btn--ghost {
  background-color: transparent;
  color: var(--primary-dark);
}

.btn--ghost:hover {
  background-color: rgba(var(--primary-rgb), 0.08);
}

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

.btn--white:hover {
  background-color: var(--bg-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: var(--text-lg);
  border-radius: var(--radius-lg);
}

.btn--sm {
  padding: 8px 20px;
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- Tag / Badge --- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  border-radius: var(--radius-full);
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-dark);
  line-height: 1.4;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: var(--font-bold);
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: var(--secondary);
  line-height: 1;
}

.badge--dark {
  background-color: var(--secondary);
  color: var(--text-inverse);
}

/* --- Divider --- */
.divider {
  border: none;
  height: 1px;
  background-color: var(--border-light);
  margin: var(--space-xl) 0;
}

.divider--gold {
  height: 2px;
  background: var(--gold-gradient);
  width: 60px;
  margin: var(--space-lg) 0;
}

/* ==========================================================
   6. Header 样式
   ========================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: var(--z-header);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* 滚动后增强 */
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--primary-dark);
  white-space: nowrap;
}

.logo__icon {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
}

.logo__text {
  color: var(--primary-dark);
}

.logo__text span {
  color: var(--text);
}

/* 导航菜单 */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-menu__item {
  position: relative;
}

.nav-menu__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--text-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-menu__link:hover,
.nav-menu__link--active {
  color: var(--primary-dark);
  background-color: rgba(var(--primary-rgb), 0.06);
}

.nav-menu__link--active {
  color: var(--primary);
  font-weight: var(--font-semibold);
}

/* 下拉菜单 */
.nav-menu__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  display: none;
}

.nav-menu__item:hover .nav-menu__dropdown {
  display: block;
}

.nav-menu__dropdown-link {
  display: block;
  padding: 10px var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.nav-menu__dropdown-link:hover {
  color: var(--primary-dark);
  background-color: rgba(var(--primary-rgb), 0.06);
}

/* 汉堡菜单按钮 */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.mobile-menu-btn:hover {
  background-color: rgba(var(--primary-rgb), 0.06);
}

.mobile-menu-btn__bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  border-radius: 1px;
  transition: all var(--transition-normal);
}

/* 移动端菜单激活状态 - 汉堡变叉 */
.mobile-menu-btn.active .mobile-menu-btn__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .mobile-menu-btn__bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .mobile-menu-btn__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__cta .btn {
  font-size: var(--text-sm);
  padding: 8px 20px;
}

.header__cta-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--primary-dark);
}

/* ==========================================================
   7. Hero 区域
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-gradient);
  overflow: hidden;
  padding-top: var(--header-height);
}

/* 金色渐变光晕装饰 */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--primary-rgb), 0.15) 0%,
    rgba(var(--primary-rgb), 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
}

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

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.hero__label {
  display: inline-block;
  padding: 6px 20px;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--primary-light);
  background-color: rgba(var(--primary-rgb), 0.15);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.05em;
}

.hero__title {
  font-size: var(--text-6xl);
  font-weight: var(--font-bold);
  color: var(--text-inverse);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
}

.hero__title span {
  display: inline-block;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--leading-relaxed);
  text-align: center;
}

.hero__coverage {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--leading-relaxed);
  text-align: center;
  letter-spacing: 0.02em;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* 装饰性金色光圈 */
.hero__deco-ring {
  position: absolute;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero__deco-ring--1 {
  width: 500px;
  height: 500px;
  top: 10%;
  right: -10%;
}

.hero__deco-ring--2 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: -5%;
}

.hero__deco-ring--3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 15%;
  border-color: rgba(var(--primary-rgb), 0.08);
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  margin-top: var(--space-4xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================
   7.5 Hero 服务时间
   ========================================================== */
.hero__service-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-sm);
  color: #ffffff;
  font-weight: var(--font-bold);
  flex-wrap: wrap;
}

.hero__service-time-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary-light);
  font-weight: var(--font-semibold);
}

.hero__service-time-label svg {
  color: var(--primary);
}

.hero__service-time-sep {
  color: rgba(201, 168, 76, 0.3);
}

.hero__service-time strong {
  color: #fff;
  font-weight: var(--font-semibold);
}

@media (max-width: 768px) {
  .hero__service-time {
    gap: var(--space-sm) var(--space-md);
    font-size: var(--text-xs);
  }
  .hero__service-time-sep {
    display: none;
  }
}

/* ==========================================================
   8. 服务项目卡片网格
   ========================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  font-size: 24px;
  color: var(--primary);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--text);
  margin-bottom: var(--space-md);
}

.service-card__desc {
  font-size: var(--text-base);
  color: var(--text-light);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--primary-dark);
  transition: gap var(--transition-fast);
}

.service-card__link:hover {
  gap: var(--space-md);
  color: var(--primary);
}

.service-card__link::after {
  content: "\2192";
}

/* ==========================================================
   9. 数据统计区域
   ========================================================== */
.stats-section {
  background: var(--dark-gradient);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--primary-rgb), 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
}

.stat-item__number {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-variant-numeric: tabular-nums;
}

.stat-item__label {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--leading-normal);
}

.stat-item__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
  margin-top: var(--space-xs);
}

/* ==========================================================
   10. 特性/优势区域 (Bento Grid)
   ========================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: var(--space-lg);
}

/* 大卡片占两列 */
.feature-card--wide {
  grid-column: span 2;
}

/* 大卡片占两行 */
.feature-card--tall {
  grid-row: span 2;
}

.feature-card {
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-normal);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-card--dark {
  background: var(--dark-gradient);
  border-color: var(--border-dark);
}

.feature-card--dark .feature-card__title {
  color: var(--text-inverse);
}

.feature-card--dark .feature-card__desc {
  color: rgba(255, 255, 255, 0.65);
}

.feature-card--dark .feature-card__icon {
  background-color: rgba(var(--primary-rgb), 0.15);
  color: var(--primary-light);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  font-size: 22px;
  color: var(--primary);
}

.feature-card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--text);
  margin-bottom: var(--space-md);
}

.feature-card__desc {
  font-size: var(--text-base);
  color: var(--text-light);
  line-height: var(--leading-relaxed);
  flex: 1;
}

/* ==========================================================
   11. 列表页样式
   ========================================================== */

/* --- Page Hero (分类页顶部横幅) --- */
.page-hero {
  position: relative;
  background: var(--dark-gradient);
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--primary-rgb), 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

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

.page-hero__title {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--text-inverse);
  margin-bottom: var(--space-md);
}

.page-hero__desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.breadcrumb__link {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.breadcrumb__current {
  color: var(--text-light);
  font-weight: var(--font-medium);
}

.breadcrumb__sep {
  color: var(--border);
  font-size: var(--text-sm);
}

/* --- Article Grid --- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.article-grid--two-col {
  grid-template-columns: repeat(2, 1fr);
}

/* --- Article Card --- */
.article-card {
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.article-card__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--bg-light);
}

.article-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.article-card__cover-tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
}

.article-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.article-card__category {
  color: var(--primary-dark);
  font-weight: var(--font-medium);
}

.article-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-snug);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__title a:hover {
  color: var(--primary-dark);
}

.article-card__desc {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: var(--leading-relaxed);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.article-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-dark);
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  transition: gap var(--transition-fast);
}

.article-card__read-more:hover {
  gap: var(--space-sm);
}

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-2xl) 0;
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.pagination__item:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background-color: rgba(var(--primary-rgb), 0.04);
}

.pagination__item--active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--secondary);
  font-weight: var(--font-semibold);
}

.pagination__item--active:hover {
  background: var(--gold-gradient-hover);
  color: var(--secondary);
}

.pagination__item--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination__ellipsis {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* ==========================================================
   12. 侧边栏
   ========================================================== */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-2xl);
  align-items: start;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-xl));
}

.sidebar-widget {
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.sidebar-widget__header {
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.sidebar-widget__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text);
}

.sidebar-widget__body {
  padding: var(--space-md) 0;
}

/* 排行列表 */
.sidebar-list {
  padding: var(--space-sm) 0;
}

.sidebar-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-lg);
  transition: background-color var(--transition-fast);
  cursor: pointer;
}

.sidebar-list__item:hover {
  background-color: rgba(var(--primary-rgb), 0.04);
}

.sidebar-list__rank {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--text-muted);
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-top: 2px;
}

.sidebar-list__item:nth-child(1) .sidebar-list__rank {
  background: var(--gold-gradient);
  color: var(--secondary);
}

.sidebar-list__item:nth-child(2) .sidebar-list__rank {
  background-color: #C0C0C0;
  color: var(--secondary);
}

.sidebar-list__item:nth-child(3) .sidebar-list__rank {
  background-color: #CD7F32;
  color: var(--secondary);
}

.sidebar-list__content {
  flex: 1;
  min-width: 0;
}

.sidebar-list__title {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text);
  line-height: var(--leading-snug);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.sidebar-list__item:hover .sidebar-list__title {
  color: var(--primary-dark);
}

.sidebar-list__meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 4px;
}

/* 标签云 */
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-lg);
}

.sidebar-tags__item {
  font-size: var(--text-sm);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background-color: var(--bg-light);
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.sidebar-tags__item:hover {
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-dark);
}

/* ==========================================================
   13. 详情页样式
   ========================================================== */
.detail-page {
  padding-top: calc(var(--header-height) + var(--space-xl));
}

.detail-content {
  max-width: 780px;
}

/* --- Detail Header --- */
.detail-header {
  margin-bottom: var(--space-2xl);
}

.detail-header__category {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
}

.detail-header__title {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--text);
  line-height: 1.25;
  margin-bottom: var(--space-lg);
}

.detail-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
}

.detail-header__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* --- Article Body (正文排版) --- */
.article-body {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-light);
}

.article-body h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--text);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.article-body h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--text);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.article-body h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.article-body p {
  margin-bottom: var(--space-lg);
  color: var(--text-light);
}

.article-body strong, .article-body b {
  color: var(--text);
  font-weight: var(--font-semibold);
}

.article-body a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-decoration-color: rgba(var(--primary-rgb), 0.3);
  text-underline-offset: 2px;
  transition: all var(--transition-fast);
}

.article-body a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.article-body img {
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.article-body ul,
.article-body ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-2xl);
}

.article-body ul {
  list-style-type: disc;
}

.article-body ol {
  list-style-type: decimal;
}

.article-body li {
  margin-bottom: var(--space-sm);
  line-height: var(--leading-relaxed);
}

.article-body blockquote {
  margin: var(--space-xl) 0;
  padding: var(--space-lg) var(--space-2xl);
  border-left: 4px solid var(--primary);
  background-color: var(--bg-warm);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text);
  font-style: italic;
}

.article-body blockquote p {
  margin-bottom: var(--space-sm);
}

.article-body blockquote p:last-child {
  margin-bottom: 0;
}

.article-body code {
  font-family: var(--font-family-mono);
  font-size: 0.9em;
  padding: 2px 8px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--primary-dark);
}

.article-body pre {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background-color: var(--secondary);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  font-family: var(--font-family-mono);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

.article-body pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.article-body table {
  width: 100%;
  margin: var(--space-xl) 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: var(--text-base);
}

.article-body thead {
  background-color: var(--bg-light);
}

.article-body th {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-weight: var(--font-semibold);
  color: var(--text);
  border-bottom: 2px solid var(--border);
  font-size: var(--text-sm);
}

.article-body td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
}

.article-body tbody tr:last-child td {
  border-bottom: none;
}

.article-body tbody tr:hover {
  background-color: var(--bg-warm);
}

.article-body hr {
  border: none;
  height: 1px;
  background-color: var(--border);
  margin: var(--space-2xl) 0;
}

.article-body .highlight-block {
  background: var(--gold-gradient);
  color: var(--secondary);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-lg);
  font-weight: var(--font-medium);
  margin: var(--space-xl) 0;
}

/* --- Related Articles --- */
.related-articles {
  margin-top: var(--space-4xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border-light);
}

.related-articles__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text);
  margin-bottom: var(--space-xl);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.related-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.related-item:hover {
  background-color: var(--bg-warm);
}

.related-item__cover {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: var(--bg-light);
}

.related-item__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-item__content {
  flex: 1;
  min-width: 0;
}

.related-item__title {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text);
  line-height: var(--leading-snug);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-xs);
  transition: color var(--transition-fast);
}

.related-item:hover .related-item__title {
  color: var(--primary-dark);
}

.related-item__meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ==========================================================
   14. Footer 样式
   ========================================================== */
.footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding-top: var(--space-4xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section {
  padding: 0;
}

.footer-section__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text-inverse);
  margin-bottom: var(--space-lg);
}

.footer-section__desc {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--primary-light);
  margin-bottom: var(--space-lg);
}

.footer-logo__icon {
  width: 32px;
  height: 32px;
  background: var(--gold-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
}

/* Footer 链接列表 */
.footer-links {
  padding: 0;
}

.footer-links__item {
  margin-bottom: var(--space-sm);
}

.footer-links__link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-links__link:hover {
  color: var(--primary-light);
}

/* Footer 联系信息 */
.footer-contact {
  padding: 0;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact__icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--primary-light);
}

/* Footer 社交图标 */
.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social__link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
}

.footer-social__link:hover {
  background-color: rgba(var(--primary-rgb), 0.2);
  color: var(--primary-light);
}

/* Footer 底部 */
.footer-bottom {
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.footer-bottom__link {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-fast);
}

.footer-bottom__link:hover {
  color: var(--primary-light);
}

/* ==========================================================
   15. 响应式断点
   ========================================================== */

/* --- 平板 (max-width: 1024px) --- */
@media (max-width: 1024px) {
  :root {
    --text-6xl: 48px;
    --text-5xl: 36px;
    --text-4xl: 30px;
    --text-3xl: 24px;
  }

  .container {
    padding: 0 var(--space-lg);
  }

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

  /* 服务卡片 2列 */
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  /* 统计 2x2 */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  /* 特性网格 2列 */
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--wide {
    grid-column: span 2;
  }

  /* 文章卡片 2列 */
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 侧边栏布局 */
  .layout-with-sidebar {
    grid-template-columns: 1fr 280px;
    gap: var(--space-xl);
  }

  /* Footer 2列 */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  /* Hero 统计 */
  .hero__stats {
    gap: var(--space-2xl);
  }

  /* 相关文章 2列 */
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- 手机 (max-width: 768px) --- */
@media (max-width: 768px) {
  :root {
    --text-6xl: 36px;
    --text-5xl: 28px;
    --text-4xl: 24px;
    --text-3xl: 20px;
    --text-2xl: 20px;
    --header-height: 60px;
  }

  .container {
    padding: 0 var(--space-md);
  }

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

  /* Header: 移动端取消 fixed */
  .header {
    position: relative;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header.scrolled {
    box-shadow: var(--shadow-sm);
  }

  /* 汉堡菜单显示 */
  .mobile-menu-btn {
    display: flex;
  }

  /* 导航菜单隐藏 */
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-lg);
    gap: var(--space-xs);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-overlay);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu__link {
    padding: var(--space-md) var(--space-md);
    font-size: var(--text-lg);
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
  }

  .nav-menu__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding-left: var(--space-lg);
    background-color: var(--bg-light);
  }

  .nav-menu__item:hover .nav-menu__dropdown {
    display: none;
  }

  .nav-menu__item.is-open .nav-menu__dropdown {
    display: block;
  }

  /* Header CTA 隐藏 */
  .header__cta .btn {
    display: none;
  }

  .header__cta-phone {
    font-size: var(--text-sm);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    padding-top: var(--space-2xl);
  }

  .hero__title {
    font-size: var(--text-4xl);
    text-align: center;
  }

  .hero__subtitle {
    font-size: var(--text-base);
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
  }

  .hero__stat {
    width: calc(50% - var(--space-lg));
  }

  /* 装饰隐藏 */
  .hero__deco-ring {
    display: none;
  }

  /* 服务卡片 1列 */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* 统计 2x2 */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item__number {
    font-size: var(--text-3xl);
  }

  /* 特性网格 1列 */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    grid-column: span 1;
  }

  .feature-card--tall {
    grid-row: span 1;
  }

  /* Page Hero */
  .page-hero {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }

  .page-hero__title {
    font-size: var(--text-2xl);
  }

  .page-hero__desc {
    font-size: var(--text-base);
  }

  /* 文章卡片 1列 */
  .article-grid {
    grid-template-columns: 1fr;
  }

  /* 侧边栏布局变为单列 */
  .layout-with-sidebar {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .sidebar {
    position: static;
  }

  /* 详情页 */
  .detail-page {
    padding-top: var(--space-lg);
  }

  .detail-header__title {
    font-size: var(--text-2xl);
  }

  .article-body {
    font-size: var(--text-base);
  }

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

  .article-body h3 {
    font-size: var(--text-lg);
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  /* Footer 1列 */
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-bottom__links {
    justify-content: center;
  }

  /* Section 标题 */
  .section-title {
    font-size: var(--text-2xl);
  }

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

/* --- 小屏 (max-width: 480px) --- */
@media (max-width: 480px) {
  :root {
    --text-6xl: 28px;
    --text-5xl: 24px;
    --text-4xl: 20px;
    --text-3xl: 18px;
    --space-4xl: 64px;
    --space-3xl: 48px;
    --space-2xl: 32px;
  }

  .container {
    padding: 0 var(--space-md);
  }

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

  /* Hero */
  .hero__title {
    font-size: var(--text-3xl);
  }

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

  .hero__coverage {
    font-size: var(--text-xs);
    line-height: var(--leading-normal);
    max-width: 100%;
  }

  .hero__label {
    font-size: var(--text-xs);
    padding: 4px 14px;
  }

  /* 按钮 */
  .btn {
    padding: 10px 20px;
    font-size: var(--text-sm);
  }

  .btn--lg {
    padding: 12px 24px;
    font-size: var(--text-base);
  }

  /* 服务卡片 */
  .service-card {
    padding: var(--space-lg);
  }

  /* 统计 */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stat-item {
    padding: var(--space-md);
  }

  .stat-item__number {
    font-size: var(--text-2xl);
  }

  .stat-item__label {
    font-size: var(--text-sm);
  }

  .stat-item__desc {
    display: none;
  }

  /* Page Hero */
  .page-hero__title {
    font-size: var(--text-xl);
  }

  /* 文章卡片 */
  .article-card__body {
    padding: var(--space-md);
  }

  .article-card__title {
    font-size: var(--text-base);
  }

  /* 分页 */
  .pagination {
    gap: 4px;
  }

  .pagination__item {
    min-width: 36px;
    height: 36px;
    font-size: var(--text-xs);
    padding: 0 6px;
  }

  /* 详情页 */
  .detail-header__title {
    font-size: var(--text-xl);
  }

  .detail-header__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .article-body pre {
    padding: var(--space-md);
    font-size: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .article-body table {
    font-size: var(--text-sm);
  }

  .article-body th,
  .article-body td {
    padding: var(--space-sm) var(--space-md);
  }

  .article-body img {
    margin: var(--space-lg) 0;
  }

  /* Hero统计 2列 */
  .hero__stats {
    gap: var(--space-md);
  }

  .hero__stat {
    width: calc(50% - var(--space-md));
  }

  .hero__stat-value {
    font-size: var(--text-xl);
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: var(--text-xs);
  }
}

/* ==========================================================
   配套服务 / 全城覆盖 / 商圈覆盖 样式
   ========================================================== */

/* --- 配套服务网格 --- */
.support-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.support-service-card {
  background-color: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-normal);
}

.support-service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.support-service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--text-inverse);
}

.support-service-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.support-service-card__desc {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: var(--leading-relaxed);
}

/* --- 高亮条 --- */
.highlight-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--dark-gradient);
  border-radius: var(--radius-lg);
}

.highlight-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--primary-light);
}

.highlight-bar__item strong {
  color: #fff;
  font-weight: var(--font-bold);
}

/* --- 区域覆盖 --- */
.district-section {
  background-color: var(--bg-light);
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.district-card {
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.district-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.district-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.district-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  flex-shrink: 0;
}

.district-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--text);
}

.district-card__spots {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.district-card__spot {
  display: inline-block;
  padding: 4px 10px;
  background-color: var(--bg-light);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--text-light);
  border: 1px solid var(--border-light);
}

/* --- 商圈覆盖 --- */
.biz-area-section {
  background-color: var(--bg-dark);
}

.biz-area-section .section-title {
  color: var(--text-inverse);
}

.biz-area-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.biz-area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.biz-area-tag {
  display: inline-block;
  padding: 8px 18px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--primary-light);
  transition: all var(--transition-normal);
}

.biz-area-tag:hover {
  background-color: rgba(201, 168, 76, 0.15);
  border-color: var(--primary);
  color: #fff;
}

/* 移动端底部固定电话条 */
.mobile-call-bar {
  display: none;
}

/* ==========================================================
   回收流程 + FAQ 样式
   ========================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.process-step {
  position: relative;
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.process-step__number {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--primary-light);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.process-step__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(var(--primary-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.process-step__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: var(--leading-relaxed);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.faq-item {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

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

.faq-item__question {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--text);
  margin-bottom: var(--space-md);
  line-height: var(--leading-snug);
}

.faq-item__question svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-item__answer {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: var(--leading-relaxed);
  padding-left: 36px;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border-light);
}

.faq-cta p {
  font-size: var(--text-lg);
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .process-step {
    padding: var(--space-lg) var(--space-md);
  }
  .process-step__number {
    font-size: var(--text-3xl);
  }
  .process-step__icon {
    width: 48px;
    height: 48px;
  }
  .process-step__title {
    font-size: var(--text-base);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-item__answer {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark-gradient);
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    padding: var(--space-sm) var(--space-md);
  }

  .mobile-call-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md);
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    color: var(--text-inverse);
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .mobile-call-bar__btn:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold-lg);
  }

  .mobile-call-bar__btn svg {
    flex-shrink: 0;
  }

  /* 防止底部内容被固定条遮挡 */
  body {
    padding-bottom: 70px;
  }
}

/* ==========================================================
   文章横向列表
   ========================================================== */

.article-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.article-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background-color: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.article-list__item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.article-list__rank {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--text-inverse);
  line-height: 1;
}

.article-list__cover {
  flex-shrink: 0;
  width: 160px;
  height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-light);
}

.article-list__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.article-list__item:hover .article-list__cover img {
  transform: scale(1.03);
}

.article-list__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.article-list__title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-snug);
  margin: 0;
}

.article-list__title a {
  color: var(--text);
  transition: color var(--transition-fast);
}

.article-list__title a:hover {
  color: var(--primary-dark);
}

.article-list__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--text-xs);
  color: var(--text-muted);
  flex-wrap: wrap;
}

.article-list__category {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(var(--primary-rgb), 0.08);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--primary-dark);
  font-weight: var(--font-medium);
}

.article-list__desc {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: var(--leading-relaxed);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-list__more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: var(--text-sm);
  color: var(--primary-dark);
  font-weight: var(--font-medium);
  transition: color var(--transition-fast);
  margin-top: var(--space-xs);
}

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

/* 响应式 */
@media (max-width: 1024px) {
  .support-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .district-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .support-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  .support-service-card {
    padding: var(--space-lg);
  }
  .district-grid {
    grid-template-columns: 1fr;
  }
  .highlight-bar {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  .biz-area-tag {
    font-size: var(--text-xs);
    padding: 6px 12px;
  }

  /* 文章横向列表 - 移动端 */
  .article-list__item {
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .article-list__rank {
    width: 24px;
    height: 24px;
    font-size: var(--text-xs);
  }

  .article-list__cover {
    width: 100px;
    height: 72px;
  }

  .article-list__title {
    font-size: var(--text-base);
  }

  .article-list__meta {
    gap: var(--space-sm);
    font-size: 11px;
  }

  .article-list__desc {
    -webkit-line-clamp: 1;
    font-size: var(--text-xs);
  }
}
