*,
*::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: #f9f6f0;
  color: #2d2a24;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #efeae1;
}

/* 导航 — 固定顶部，杂志风格 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(249, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #d6cebc;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
  color: #2d2a24;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: #c7b89b;
  color: #f9f6f0;
}

.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: 0.2s;
  color: #5a5348;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: #b8a07a;
}

.nav-cta {
  padding: 8px 22px;
  border-radius: 30px;
  color: #f9f6f0 !important;
  font-weight: 600;
  background: #b8a07a;
  border: none;
}

.nav-cta:hover {
  background: #a08963;
  color: #f9f6f0 !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #2d2a24;
}

/* 首页Hero — 杂志封面风格 */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #f9f6f0 0%, #e8dfd1 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(199, 184, 155, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: #c7b89b;
  color: #f9f6f0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #2d2a24;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.75;
  max-width: 560px;
  margin-bottom: 36px;
  color: #5a5348;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(45, 42, 36, 0.08);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 按钮 — 圆润杂志感 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: 0.25s;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.btn-primary {
  color: #f9f6f0;
  background: #b8a07a;
}

.btn-primary:hover {
  background: #a08963;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 160, 122, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #b8a07a;
  color: #5a5348;
}

.btn-outline:hover {
  background: #b8a07a;
  color: #f9f6f0;
  transform: translateY(-2px);
}

/* 标签/标题 — 杂志感 */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #b8a07a;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #2d2a24;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 40px;
  color: #5a5348;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* 卡片网格 — 层叠卡片，杂志感 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 16px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e3dbce;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(45, 42, 36, 0.04);
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #c7b89b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.category-card:hover::after {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 42, 36, 0.08);
}

.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: #f0ebe2;
  color: #b8a07a;
}

.card-link {
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: #b8a07a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.card-link:hover {
  color: #a08963;
  gap: 10px;
}

/* 特性块 — 不对称布局 */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 42, 36, 0.06);
}

.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: 1rem;
  color: #5a5348;
}

.feature-list li::before {
  content: '✦';
  font-weight: 700;
  color: #c7b89b;
  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;
  background: #ffffff;
  border: 1px solid #e3dbce;
  transition: 0.3s;
}

.stat-item:hover {
  background: #efeae1;
  transform: translateY(-2px);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: #2d2a24;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 6px;
  color: #5a5348;
}

/* 内容墙 — 杂志网格 */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e3dbce;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(45, 42, 36, 0.04);
}

.content-wall-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 42, 36, 0.08);
}

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #2d2a24;
}

.content-wall-body p {
  font-size: 0.9rem;
  opacity: 0.7;
  color: #5a5348;
}

/* FAQ — 简约杂志风格 */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e3dbce;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  transition: 0.2s;
}

.faq-item:hover {
  border-color: #c7b89b;
}

.faq-item .faq-question {
  padding: 18px 24px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  color: #2d2a24;
  font-size: 1rem;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: #c7b89b;
  transition: 0.3s;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-item .faq-answer {
  padding: 0 24px 18px;
  display: none;
  opacity: 0.75;
  color: #5a5348;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA横幅 — 暖色调 */
.cta-banner {
  padding: 64px 32px;
  text-align: center;
  border-radius: 16px;
  color: #f9f6f0;
  background: linear-gradient(135deg, #b8a07a, #a08963);
  box-shadow: 0 8px 32px rgba(184, 160, 122, 0.3);
}

.cta-banner h2 {
  color: #f9f6f0;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 28px;
  color: #f9f6f0;
}

.cta-banner .btn-primary {
  background: #f9f6f0;
  color: #2d2a24;
}

.cta-banner .btn-primary:hover {
  background: #efeae1;
  box-shadow: 0 6px 20px rgba(249, 246, 240, 0.3);
}

/* 页脚 — 浅色 */
.site-footer {
  padding: 60px 0 28px;
  background: #efeae1;
  border-top: 1px solid #d6cebc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  opacity: 0.7;
  color: #5a5348;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2d2a24;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #5a5348;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #b8a07a;
}

.footer-bottom {
  border-top: 1px solid #d6cebc;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #5a5348;
  opacity: 0.7;
}

/* 工具类 */
.text-accent {
  color: #b8a07a;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  color: #5a5348;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(249, 246, 240, 0.98);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid #d6cebc;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@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;
  }

  .stat-number {
    font-size: 2rem;
  }
}