/* ============================================================
   装修工作室 - 全局样式（啄木鸟风格）
   用于：品牌总站 + 所有区县子域名站
   设计参考：zmn-zx.com 啄木鸟家庭维修
   主色：品牌蓝 #1890FF | 背景 #F5F5F5 | 文字 #333
   ============================================================ */

/* === CSS 变量 === */
:root {
  --color-primary: #1890FF;
  --color-primary-dark: #0d7ae0;
  --color-primary-light: #69b1ff;
  --color-accent: #FAAD14;
  --color-bg: #F5F5F5;
  --color-bg-alt: #fafafa;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-border: #e8e8e8;
  --color-success: #52C41A;
  --color-star: #FAAD14;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-heading: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --max-width: 1200px;
}

/* === Reset === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--color-primary-dark); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* === 排版 === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

/* === 布局 === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 2rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* === 按钮 === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 25px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  justify-content: center;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24,144,255,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: rgba(24,144,255,0.05);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-accent:hover {
  background: #e6a300;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250,173,20,0.35);
}

.btn-lg {
  padding: 16px 48px;
  font-size: 1.15rem;
}

.btn-full {
  width: 100%;
}

/* ============================================
   弹窗 Modal（参照啄木鸟首屏弹窗）
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
  position: relative;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 12px 16px;
  line-height: 1;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}
.modal-close:hover { color: var(--color-text); }

.modal-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.modal-box h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.modal-box .modal-subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.modal-trust-tags {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.modal-trust-tag {
  font-size: 0.82rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.modal-box .btn {
  margin-bottom: 12px;
  display: block;
  width: 100%;
}

.modal-box .btn-outline {
  border-color: var(--color-border);
  color: var(--color-text-light);
  margin-bottom: 0;
}
.modal-box .btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ============================================
   双层顶部导航（参照啄木鸟）
   ============================================ */
.header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* 顶部细条 */
.top-bar {
  background: #1a1a2e;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--color-white); }
.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.top-bar-phone strong {
  color: var(--color-white);
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.top-bar-links a {
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}
.top-bar-links a:hover { background: rgba(255,255,255,0.08); }

/* 城市下拉 */
.city-dropdown {
  position: relative;
}
.city-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: rgba(255,255,255,0.85);
}
.city-dropdown-toggle:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
}
.city-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 280px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 12px;
  display: none;
  z-index: 1001;
}
.city-dropdown.open .city-dropdown-menu { display: block; }
.city-dropdown-group { margin-bottom: 12px; }
.city-dropdown-group:last-child { margin-bottom: 0; }
.city-dropdown-group-title {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 6px 8px;
  font-weight: 600;
}
.city-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.city-dropdown-grid a {
  color: var(--color-text);
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-align: center;
}
.city-dropdown-grid a:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

/* 主导航 */
.main-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo img { height: 40px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-menu a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-primary);
  background: var(--color-bg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--color-primary-dark); }

.nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 22px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}
.nav-cta:hover {
  background: var(--color-primary-dark);
  color: var(--color-white) !important;
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 移动端菜单面板 — 右侧滑出 */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 10000;
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav.open {
  pointer-events: auto;
  visibility: visible;
}

/* 半透明遮罩 */
.mobile-nav-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }

/* 侧滑面板 */
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 85%;
  max-width: 340px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

/* 面板头部 */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  font-weight: 600;
}
.mobile-nav-close {
  width: 36px; height: 36px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 面板内容区 */
.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 1rem;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  font-weight: 500;
}
.mobile-nav-item:hover { color: var(--color-primary); background: #f8fbff; }
.mobile-nav-divider {
  height: 8px;
  background: #f5f5f5;
}

/* 城市分站折叠 */
.mobile-nav-city-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 1rem;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
}
.mobile-nav-arrow { font-size: 0.7rem; margin-left: auto; transition: transform 0.3s; }
.mobile-nav-city-list {
  display: none;
  background: #fafafa;
  padding: 4px 20px 12px;
}
.mobile-nav-city-list.open { display: block; }
.mobile-city-group-title {
  padding: 10px 0 6px;
  font-size: 0.85rem;
  color: #999;
  font-weight: 600;
}
.mobile-nav-city-list a {
  display: inline-block;
  padding: 6px 12px;
  margin: 3px 4px;
  background: #fff;
  border-radius: 14px;
  font-size: 0.82rem;
  color: #555;
  border: 1px solid #eee;
}
.mobile-nav-city-list a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: #f0f7ff;
}

/* 面板底部 CTA */
.mobile-nav-footer {
  padding: 16px 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-footer .mobile-nav-phone {
  display: block;
  text-align: center;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}
.mobile-nav-footer .mobile-nav-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================
   Hero 首屏（参照啄木鸟）
   ============================================ */
.hero {
  background: linear-gradient(135deg, #0d7ae0 0%, #1890FF 60%, #40a9ff 100%);
  color: var(--color-white);
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--color-white);
  margin-bottom: 12px;
  position: relative;
  letter-spacing: 2px;
}

.hero h1 .highlight {
  color: var(--color-accent);
}

.hero .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  position: relative;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.hero .btn-primary {
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 1.1rem;
  padding: 16px 40px;
}
.hero .btn-primary:hover {
  background: #f0f0f0;
  color: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.hero .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
  font-size: 1.1rem;
  padding: 16px 40px;
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
}

/* === Hero 数字看板 === */
.hero-numbers {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 52px;
  position: relative;
  flex-wrap: wrap;
}

.hero-number {
  text-align: center;
}

.hero-number .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
}

.hero-number .num-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ============================================
   服务表单区
   ============================================ */
.quick-form-section {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.quick-form-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 0 auto;
}

.quick-form-card h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quick-form .full-width {
  grid-column: 1 / -1;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: var(--color-bg-alt);
  transition: border-color 0.2s;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(24,144,255,0.1);
}

.quick-form textarea {
  min-height: 80px;
  resize: vertical;
}

.quick-form button {
  grid-column: 1 / -1;
}

.quick-form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}

/* ============================================
   服务项目卡片（2列xN行 图标网格）
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--color-white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.service-card .service-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(24,144,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .service-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.service-card .service-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ============================================
   内容文章列表（列表式，带标签+阅读量）
   ============================================ */
.article-list {
  max-width: 900px;
  margin: 0 auto;
}

.article-list-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid var(--color-border);
  transition: all 0.2s;
  gap: 12px;
}
.article-list-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.article-tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(24,144,255,0.1);
  color: var(--color-primary);
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

.article-list-item a {
  flex: 1;
  color: var(--color-text);
  font-size: 0.98rem;
  font-weight: 500;
}
.article-list-item a:hover { color: var(--color-primary); }

.article-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* ============================================
   用户评价（卡片+星级+头像+城市）
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.review-card .stars {
  color: var(--color-star);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card .review-text {
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.review-card .review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.review-card .review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   优势特色区（4列 emoji图标）
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--color-white);
  padding: 36px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-card .feature-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ============================================
   区县选择器
   ============================================ */
.districts-section {
  background: var(--color-white);
}

.districts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.district-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.25s;
  cursor: pointer;
}
.district-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  background: var(--color-white);
}

.district-card .district-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text);
}

.district-card .district-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.city-heading {
  margin-top: 32px;
  color: var(--color-primary);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.city-heading:first-child {
  margin-top: 0;
}

/* ============================================
   价格表
   ============================================ */
.pricing-table {
  overflow-x: auto;
  max-width: 800px;
  margin: 24px auto 0;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pricing-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
}

.pricing-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.pricing-table tbody tr:hover {
  background: var(--color-bg-alt);
}

.pricing-table tbody tr td:first-child {
  font-weight: 600;
  color: var(--color-text);
}

.pricing-table tbody tr td:nth-child(2) { color: #FAAD14; }
.pricing-table tbody tr td:nth-child(3) { color: var(--color-primary); }
.pricing-table tbody tr td:nth-child(4) { color: #52C41A; }

.pricing-table tbody tr td a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

/* ============================================
   详情页通用样式
   ============================================ */
.detail-page {
  max-width: 860px;
}
.detail-page h1 {
  font-size: 1.8rem;
  line-height: 1.4;
}
.detail-page h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}
.detail-page h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--color-text);
}
.detail-page .detail-meta {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.detail-page .lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.detail-page .detail-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 36px;
}
.detail-page .summary-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
}
.detail-page .summary-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.detail-page .summary-item strong {
  display: block;
  font-size: 1.25rem;
  color: var(--color-primary);
}
.detail-page .detail-image {
  border-radius: var(--radius-md);
  margin: 24px 0 32px;
}
.detail-page .detail-cta {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}
.detail-page .detail-cta p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.detail-page ul {
  line-height: 1.9;
  margin-bottom: 24px;
}
.detail-page blockquote {
  background: #e6f7ff;
  border-left: 4px solid var(--color-primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}
.detail-page blockquote p {
  margin: 0;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .detail-page .detail-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .detail-page .detail-summary {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FAQ 折叠
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--color-text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--color-primary);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ============================================
   底部转化区
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #0d7ae0, #1890FF);
  padding: 60px 0;
  text-align: center;
  color: var(--color-white);
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.cta-section .btn {
  margin: 0 8px;
}

/* ============================================
   关于我们
   ============================================ */
.about-section {
  background: var(--color-white);
  text-align: center;
}

.about-section .container {
  max-width: 700px;
}

.about-section p {
  font-size: 1.02rem;
  line-height: 2;
}

.about-section blockquote {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-top: 24px;
  border-left: 3px solid var(--color-primary);
  text-align: left;
}
.about-section blockquote p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ============================================
   底部悬浮操作栏（参照啄木鸟）
   ============================================ */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
  z-index: 1000;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
}

.bottom-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  font-size: 0.85rem;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
  max-width: 200px;
}
.bottom-bar a:hover {
  color: var(--color-primary);
  background: var(--color-bg);
}

.bottom-bar .bar-icon {
  font-size: 1.3rem;
}

.bottom-bar .bar-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: 0.9rem;
}
.bottom-bar .bar-cta:hover {
  background: var(--color-primary-dark);
  color: var(--color-white) !important;
}

/* 给 body 底部留出空间防止被底部栏遮挡 */
body.has-bottom-bar {
  padding-bottom: 70px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.65);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.footer-col a {
  color: rgba(255,255,255,0.55);
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--color-white); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}

/* ============================================
   内容页通用
   ============================================ */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.content-page h1 { margin-bottom: 24px; font-size: 2rem; }
.content-page h2 { margin: 36px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--color-border); }
.content-page h3 { margin: 24px 0 12px; }
.content-page ul, .content-page ol { margin: 12px 0 20px 20px; }
.content-page li { padding: 4px 0; color: var(--color-text-light); }
.content-page table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.95rem; }
.content-page th { background: var(--color-bg-alt); padding: 12px 16px; text-align: left; font-weight: 600; border-bottom: 2px solid var(--color-border); }
.content-page td { padding: 12px 16px; border-bottom: 1px solid var(--color-border); }
.content-page blockquote { border-left: 3px solid var(--color-primary); padding: 12px 20px; margin: 20px 0; background: var(--color-bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--color-text-light); }

/* === 面包屑 === */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span { margin: 0 8px; }

/* ============================================
   响应式（移动端）
   ============================================ */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-numbers { gap: 28px; }
  .hero-number .num { font-size: 1.8rem; }

  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .quick-form { grid-template-columns: 1fr; }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-menu,
  .nav-actions .nav-phone,
  .top-bar-links { display: none; }

  .mobile-menu-toggle { display: flex; }

  .main-nav { padding: 10px 16px; }
  .logo { font-size: 1.1rem; }

  .bottom-bar a { font-size: 0.78rem; padding: 10px 6px; }
  .bottom-bar .bar-icon { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .features-grid,
  .districts-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 80%; }

  .main-nav { flex-wrap: wrap; gap: 8px; }
  .logo { font-size: 1rem; }

  .modal-box { padding: 32px 24px; }
}
