*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: #fef9f0;
  color: #2d2a24;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: #f5ede4;
}

/* 导航 — 固定顶部 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(254, 249, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8ddd0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: #2d2a24;
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c8512a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fef9f0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
  color: #4a443e;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: #c8512a;
  border-bottom-color: #c8512a;
}

.nav-cta {
  padding: 8px 22px;
  border-radius: 50px;
  color: #fef9f0 !important;
  font-weight: 700;
  background: #c8512a;
  border-bottom: none !important;
}

.nav-cta:hover {
  background: #b04420 !important;
  color: #fef9f0 !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #2d2a24;
}

/* 首页Hero */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,81,42,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  background: #c8512a;
  color: #fef9f0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #1f1c18;
}

.hero h1 span {
  color: #c8512a;
  text-decoration: underline wavy rgba(200,81,42,0.3);
  text-underline-offset: 8px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.75;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.6;
  color: #4a443e;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-primary {
  color: #fef9f0;
  background: #c8512a;
}

.btn-primary:hover {
  background: #b04420;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,81,42,0.25);
}

.btn-outline {
  background: transparent;
  border: 2px solid #c8512a;
  color: #c8512a;
}

.btn-outline:hover {
  background: #c8512a;
  color: #fef9f0;
  transform: translateY(-2px);
}

/* 标签/标题 */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
  color: #c8512a;
  text-transform: uppercase;
  position: relative;
}

.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: #c8512a;
  margin-top: 6px;
  border-radius: 2px;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1f1c18;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 40px;
  line-height: 1.7;
  color: #4a443e;
}

/* 卡片网格 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #e8ddd0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  background: #fffcf7;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(200,81,42,0.12);
  border-color: #c8512a;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: #f5ede4;
  color: #c8512a;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #c8512a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* 特性块 */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px -10px rgba(0,0,0,0.08);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  position: relative;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #4a443e;
}

.feature-list li::before {
  content: '✦';
  font-weight: 700;
  color: #c8512a;
  font-size: 1.1rem;
}

/* 数据条 */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  border-radius: 16px;
  border: 1px solid #e8ddd0;
  background: #fffcf7;
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: #c8512a;
  transform: scale(1.02);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: #c8512a;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 8px;
  color: #4a443e;
}

/* 内容墙 */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8ddd0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  background: #fffcf7;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -8px rgba(200,81,42,0.12);
  border-color: #c8512a;
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.content-wall-body {
  padding: 20px 22px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1f1c18;
}

.content-wall-body p {
  font-size: 0.85rem;
  opacity: 0.7;
  color: #4a443e;
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e8ddd0;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fffcf7;
}

.faq-item:hover {
  border-color: #c8512a;
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #1f1c18;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: #c8512a;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  display: none;
  opacity: 0.75;
  line-height: 1.6;
  color: #4a443e;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA横幅 */
.cta-banner {
  padding: 64px 24px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #c8512a 0%, #a83e1e 100%);
  color: #fef9f0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #fef9f0;
  font-size: 2rem;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 24px;
  position: relative;
}

.cta-banner .btn-primary {
  background: #fef9f0;
  color: #c8512a;
  position: relative;
}

.cta-banner .btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* 页脚 */
.site-footer {
  padding: 56px 0 28px;
  background: #2d2a24;
  color: #d4cdc4;
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  color: #fef9f0;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-brand p {
  opacity: 0.6;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #fef9f0;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #d4cdc4;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: #c8512a;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* 工具类 */
.text-accent {
  color: #c8512a;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  line-height: 1.7;
  color: #4a443e;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ⚠️ 响应式 */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #fef9f0;
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 1px solid #e8ddd0;
  }
  .main-nav.open a {
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .stat-number {
    font-size: 2rem;
  }
}