/* ============================================
   县志家谱网 - 主样式文件
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #8B1A1A;
  --primary-dark: #6B1010;
  --primary-light: #C0392B;
  --accent: #D4A017;
  --accent-light: #F0C040;
  --bg-light: #FBF5EE;
  --bg-card: #FFFDF9;
  --text-main: #2C1810;
  --text-muted: #7A6555;
  --border: #E8D5C0;
  --shadow: 0 2px 12px rgba(139,26,26,0.10);
  --radius: 8px;
}

body {
  font-family: 'Songti SC', 'SimSun', '宋体', 'Georgia', serif;
  background: var(--bg-light);
  color: var(--text-main);
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--accent); }

/* ============ TOP BANNER ============ */
.top-banner {
  background: linear-gradient(135deg, #6B1010 0%, #8B1A1A 50%, #A52020 100%);
  color: #fff;
  padding: 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 24px;
  background: rgba(0,0,0,0.15);
  font-size: 12px;
}

.top-bar a { color: #FFD700; }
.top-bar a:hover { color: #fff; }

/* ============ HEADER ============ */
.site-header {
  background: linear-gradient(135deg, #6B1010 0%, #8B1A1A 60%, #7A1515 100%);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--accent) 0%, #E8C040 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 2px 8px rgba(212,160,23,0.5);
  border: 2px solid rgba(255,215,0,0.6);
}

.logo-text h1 {
  font-size: 26px;
  color: #FFD700;
  letter-spacing: 3px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  font-weight: 900;
}

.logo-text p {
  font-size: 12px;
  color: rgba(255,210,100,0.85);
  letter-spacing: 2px;
  margin-top: 2px;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
}

.header-search input {
  border: none;
  background: transparent;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  width: 260px;
  outline: none;
  font-family: inherit;
}

.header-search input::placeholder { color: rgba(255,255,255,0.6); }

.header-search button {
  background: var(--accent);
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  white-space: nowrap;
}

.header-search button:hover { background: #E8A010; }

.header-contact {
  text-align: right;
  color: rgba(255,220,150,0.9);
  font-size: 13px;
  line-height: 1.8;
}

/* ============ NAV ============ */
.main-nav {
  background: var(--primary-dark);
  border-bottom: 3px solid var(--accent);
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.main-nav a {
  display: inline-block;
  color: #FFE0A0;
  padding: 13px 22px;
  font-size: 15px;
  letter-spacing: 1px;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}

.main-nav a:hover,
.main-nav a.active {
  color: #FFD700;
  background: rgba(212,160,23,0.15);
  border-bottom-color: var(--accent);
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-content {
  display: flex;
  gap: 20px;
  padding: 24px 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.main-col { flex: 1; min-width: 0; }
.side-col { width: 280px; flex-shrink: 0; }

/* ============ HERO SECTION ============ */
.hero-section {
  background: linear-gradient(135deg, #6B1010 0%, #8B1A1A 40%, #5A0E0E 100%);
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content { position: relative; }

.hero-section h2 {
  font-size: 32px;
  color: #FFD700;
  letter-spacing: 4px;
  margin-bottom: 12px;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.4);
}

.hero-section p {
  color: rgba(255,220,160,0.9);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.stat-item { text-align: center; }
.stat-num { font-size: 28px; color: #FFD700; font-weight: bold; display: block; }
.stat-label { font-size: 12px; color: rgba(255,220,160,0.8); letter-spacing: 1px; }

/* ============ SEARCH BOX ============ */
.search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(212,160,23,0.6);
  border-radius: 30px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 24px;
  font-size: 16px;
  color: #fff;
  outline: none;
  font-family: inherit;
}

.search-box input::placeholder { color: rgba(255,255,255,0.5); }

.search-box button {
  background: var(--accent);
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 2px;
  transition: background 0.2s;
}

.search-box button:hover { background: #B8860B; }

/* ============ SECTION TITLE ============ */
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.section-title h3 {
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 2px;
}

.section-title .icon {
  width: 6px;
  height: 20px;
  background: var(--primary);
  border-radius: 3px;
}

.section-title .view-more {
  margin-left: auto;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ REGION NAV GRID ============ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.region-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow);
}

.region-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,26,26,0.15);
}

.region-card .r-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.region-card .r-name { font-size: 15px; color: var(--primary); font-weight: bold; }
.region-card .r-count { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ============ RESOURCE LIST ============ */
.resource-list { list-style: none; }

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px dashed var(--border);
  transition: background 0.15s;
  cursor: pointer;
}

.resource-item:hover { background: rgba(139,26,26,0.04); }

.resource-item:last-child { border-bottom: none; }

.res-tag {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 3px;
  margin-top: 2px;
}

.res-tag.tag-jiapu { background: #1A6B3A; }
.res-tag.tag-wenshi { background: #7B4A1A; }
.res-tag.tag-gudai { background: #6B4A1A; }
.res-tag.tag-zhi { background: var(--primary); }
.res-tag.tag-free { background: #27AE60; }

.res-info { flex: 1; min-width: 0; }
.res-title { font-size: 14px; color: var(--text-main); line-height: 1.5; }
.res-title:hover { color: var(--primary); }
.res-meta { font-size: 12px; color: var(--text-muted); margin-top: 4px; display: flex; gap: 14px; }

/* ============ CARD GRID ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.book-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.book-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139,26,26,0.18);
}

.book-cover {
  height: 120px;
  background: linear-gradient(135deg, #8B1A1A 0%, #6B1010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: rgba(212,160,23,0.8);
  position: relative;
}

.book-cover .year-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 3px;
}

.book-body { padding: 12px; }
.book-title { font-size: 14px; color: var(--text-main); font-weight: bold; line-height: 1.4; }
.book-meta { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.book-region { display: inline-block; background: #FEF3E7; color: var(--primary); font-size: 11px; padding: 2px 7px; border-radius: 3px; margin-top: 6px; }

/* ============ SIDEBAR WIDGETS ============ */
.widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.widget-header {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #FFD700;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.widget-body { padding: 14px 16px; }

.hot-list { list-style: none; }
.hot-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
}
.hot-list li:last-child { border-bottom: none; }

.hot-rank {
  width: 20px;
  height: 20px;
  background: #E0D0C0;
  color: var(--text-muted);
  border-radius: 3px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hot-rank.top { background: var(--primary); color: #fff; }

.notice-list { list-style: none; }
.notice-list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-main);
  cursor: pointer;
}
.notice-list li:hover { color: var(--primary); }
.notice-list li:last-child { border-bottom: none; }
.notice-date { font-size: 11px; color: var(--text-muted); display: block; margin-top: 2px; }

/* ============ TAG CLOUD ============ */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-btn {
  background: #FEF3E7;
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.tag-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============ PROVINCE LIST ============ */
.province-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.province-btn {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
  color: var(--text-main);
  background: #fff;
}
.province-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ============ FILTER BAR ============ */
.filter-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-group { display: flex; align-items: center; gap: 8px; }
.filter-label { font-size: 13px; color: var(--text-muted); white-space: nowrap; }
.filter-options { display: flex; gap: 6px; flex-wrap: wrap; }

.filter-opt {
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 15px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-main);
  background: #fff;
}
.filter-opt:hover, .filter-opt.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============ PAGINATION ============ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 20px 0;
}

.page-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-main);
  background: #fff;
}
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============ DOWNLOAD MODAL ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.show { display: flex; }

.modal-box {
  background: #fff;
  border-radius: var(--radius);
  width: 480px;
  max-width: 90vw;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: #FFD700;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.modal-close {
  cursor: pointer;
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  background: none;
  border: none;
  line-height: 1;
}
.modal-close:hover { color: #fff; }

.modal-body { 
  padding: 24px; 
  overflow-y: auto;
  flex: 1;
}

.modal-book-info {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.modal-book-cover {
  width: 70px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

.modal-book-detail h4 { color: var(--primary); font-size: 15px; margin-bottom: 6px; }
.modal-book-detail p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.service-opt {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.service-opt:hover, .service-opt.selected { border-color: var(--primary); background: #FEF0F0; }
.service-opt .s-icon { font-size: 28px; margin-bottom: 6px; display: block; }
.service-opt .s-name { font-size: 14px; color: var(--text-main); font-weight: bold; }
.service-opt .s-price { font-size: 13px; color: var(--primary-light); margin-top: 3px; }

.contact-info {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: 2px;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

/* ============ ANNOUNCEMENT STRIP ============ */
.announce-strip {
  background: #FEF9F0;
  border-bottom: 1px solid #F0D9B0;
  padding: 8px 0;
}
.announce-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.announce-tag {
  background: var(--accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 12px;
  flex-shrink: 0;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #2C1810;
  color: rgba(255,220,150,0.7);
  padding: 40px 24px 20px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-brand h3 {
  color: #FFD700;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; line-height: 1.8; }

.footer-col h4 {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,215,0,0.2);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,220,150,0.7); font-size: 13px; }
.footer-col ul li a:hover { color: #FFD700; }

.footer-bottom {
  border-top: 1px solid rgba(255,215,0,0.15);
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,220,150,0.4);
}

/* ============ ARTICLE LIST ============ */
.article-list { list-style: none; }
.article-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.article-item:last-child { border-bottom: none; }
.article-date {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 8px 4px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}
.article-date .month { font-size: 11px; display: block; opacity: 0.8; }
.article-content h4 { font-size: 15px; color: var(--text-main); margin-bottom: 6px; }
.article-content h4:hover { color: var(--primary); }
.article-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.article-content .tags { margin-top: 8px; display: flex; gap: 6px; }
.article-tag { font-size: 11px; background: #FEF3E7; color: var(--primary); padding: 2px 8px; border-radius: 3px; }

/* ============ GENEALOGY TREE ============ */
.family-tree {
  padding: 20px;
  text-align: center;
  overflow-x: auto;
}

.tree-node {
  display: inline-block;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 4px;
}
.tree-node:hover { border-color: var(--primary); color: var(--primary); }
.tree-node.root { background: var(--primary); color: #FFD700; border-color: var(--primary); font-size: 16px; font-weight: bold; }

/* ============ ABOUT PAGE ============ */
.about-banner {
  background: linear-gradient(135deg, #6B1010, #8B1A1A);
  padding: 40px;
  text-align: center;
  color: #FFD700;
}
.about-banner h2 { font-size: 28px; letter-spacing: 4px; }
.about-banner p { color: rgba(255,220,150,0.8); margin-top: 10px; font-size: 15px; }

.about-section {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.about-section h3 { color: var(--primary); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.about-section p { font-size: 15px; color: var(--text-main); line-height: 2; margin-bottom: 10px; }

.service-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.service-price-table th {
  background: var(--primary);
  color: #FFD700;
  padding: 12px 16px;
  text-align: left;
  letter-spacing: 1px;
}
.service-price-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
}
.service-price-table tr:hover td { background: var(--bg-light); }

.timeline {
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--accent);
}
.timeline-year { font-size: 14px; color: var(--accent); font-weight: bold; margin-bottom: 4px; }
.timeline-desc { font-size: 14px; color: var(--text-main); line-height: 1.7; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .page-content { flex-direction: column; }
  .side-col { width: 100%; }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-section h2 { font-size: 24px; }
}

@media (max-width: 600px) {
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .site-header { flex-direction: column; gap: 12px; text-align: center; }
  .header-search input { width: 180px; }
  .hero-stats { gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
}
