/* 基础重置 */
*, *::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: #f5f0eb;
  color: #2d2b28;
}

/* 核心布局 — 必须居中 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: #ede8e2;
}

/* 导航 — 固定顶部 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #d9d0c5;
}

.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.3rem;
  text-decoration: none;
  color: #2d2b28;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: #c7a87b;
  color: #f5f0eb;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.2s;
  color: #4a4540;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: #c7a87b;
}

.nav-cta {
  padding: 8px 22px;
  border-radius: 30px;
  color: #f5f0eb !important;
  font-weight: 700;
  background: #c7a87b;
  border: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2d2b28;
  cursor: pointer;
}

/* 首页Hero */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,168,123,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: #c7a87b;
  color: #f5f0eb;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #2d2b28;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 560px;
  margin-bottom: 36px;
  color: #5a5550;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(45,43,40,0.08);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: 0.2s;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.btn-primary {
  color: #f5f0eb;
  background: #c7a87b;
}

.btn-primary:hover {
  background: #b89464;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199,168,123,0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid #c7a87b;
  color: #2d2b28;
}

.btn-outline:hover {
  background: #c7a87b;
  color: #f5f0eb;
  transform: translateY(-2px);
}

/* 标签/标题 */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 14px;
  color: #c7a87b;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #2d2b28;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 44px;
  color: #5a5550;
  line-height: 1.6;
}

/* 卡片网格 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #d9d0c5;
  transition: 0.3s;
  background: #faf8f5;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(45,43,40,0.06);
  border-color: #c7a87b;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  background: #ede8e2;
  color: #c7a87b;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #c7a87b;
  transition: 0.2s;
}

.card-link:hover {
  gap: 8px;
}

/* 特性块 */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(45,43,40,0.06);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a4540;
}

.feature-list li::before {
  content: '✦';
  font-weight: 700;
  color: #c7a87b;
}

/* 数据条 */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid #d9d0c5;
  background: #faf8f5;
  transition: 0.3s;
}

.stat-item:hover {
  border-color: #c7a87b;
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2d2b28;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 6px;
  color: #5a5550;
}

/* 内容墙 */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d9d0c5;
  transition: 0.3s;
  background: #faf8f5;
}

.content-wall-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(45,43,40,0.06);
  border-color: #c7a87b;
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #2d2b28;
}

.content-wall-body p {
  color: #5a5550;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #d9d0c5;
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #faf8f5;
  transition: 0.2s;
}

.faq-item:hover {
  border-color: #c7a87b;
}

.faq-item .faq-question {
  padding: 18px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  color: #2d2b28;
  font-size: 1rem;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: #c7a87b;
  transition: 0.3s;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.7;
  color: #5a5550;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA横幅 */
.cta-banner {
  padding: 64px 24px;
  text-align: center;
  border-radius: 24px;
  color: #f5f0eb;
  background: linear-gradient(135deg, #c7a87b 0%, #b89464 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245,240,235,0.1);
  pointer-events: none;
}

.cta-banner h2 {
  color: #f5f0eb;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(245,240,235,0.8);
  margin-bottom: 28px;
}

.cta-banner .btn-primary {
  background: #f5f0eb;
  color: #c7a87b;
  border: none;
}

.cta-banner .btn-primary:hover {
  background: #ede8e2;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* 页脚 */
.site-footer {
  padding: 64px 0 28px;
  background: #2d2b28;
  color: #d9d0c5;
}

.site-footer .container {
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
}

.footer-brand p {
  margin-top: 12px;
  opacity: 0.7;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-col {
}

.footer-col h4 {
  color: #f5f0eb;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #d9d0c5;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.7;
  transition: 0.2s;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: #c7a87b;
}

.footer-bottom {
  border-top: 1px solid rgba(217,208,197,0.15);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* 工具类 */
.text-accent {
  color: #c7a87b;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  color: #5a5550;
  line-height: 1.6;
}

.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.7rem;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #f5f0eb;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid #d9d0c5;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.4rem;
  }
}