/* 基础重置 */
*,
*::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: #fef9f3;
  color: #3b3028;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 核心布局 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
  position: relative;
}
.section:nth-child(even) {
  background: #fef5ec;
}
.section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212, 128, 109, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.section:nth-child(odd)::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* 导航 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(254, 249, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
  transition: all 0.3s ease;
}
.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: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: #3b3028;
  letter-spacing: -0.3px;
  transition: opacity 0.2s;
}
.logo:hover {
  opacity: 0.8;
}
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, #d4806d 0%, #c9a96e 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(212, 128, 109, 0.3);
}
.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;
  color: #5c4f44;
  transition: all 0.25s;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4806d;
  border-radius: 1px;
  transition: width 0.3s ease;
}
.main-nav a:hover {
  color: #d4806d;
}
.main-nav a:hover::after {
  width: 100%;
}
.nav-cta {
  padding: 9px 22px !important;
  border-radius: 24px !important;
  color: #fff !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, #d4806d 0%, #c96552 100%);
  box-shadow: 0 3px 12px rgba(212, 128, 109, 0.35);
  transition: all 0.3s !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 128, 109, 0.45);
  color: #fff !important;
}
.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 128, 109, 0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  background: rgba(212, 128, 109, 0.1);
  color: #c96552;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #2a211c;
}
.hero h1 span {
  background: linear-gradient(135deg, #d4806d 0%, #c9a96e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 560px;
  margin-bottom: 32px;
  color: #5c4f44;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 14px;
}
.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(59, 48, 40, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.15);
  position: relative;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: -0.2px;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #d4806d 0%, #c96552 100%);
  box-shadow: 0 4px 16px rgba(212, 128, 109, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 128, 109, 0.5);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid #c9a96e;
  color: #5c4f44;
}
.btn-outline:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: #b8935a;
  transform: translateY(-2px);
}

/* 标签/标题 */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #c96552;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: #d4806d;
  border-radius: 1px;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #2a211c;
}
.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 40px;
  color: #5c4f44;
  line-height: 1.7;
}

/* 卡片网格 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.category-card {
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  background: #fff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #d4806d 0%, #c9a96e 100%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 0 0 2px 2px;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59, 48, 40, 0.1);
  border-color: rgba(201, 169, 110, 0.3);
}
.category-card:hover::before {
  opacity: 1;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(212, 128, 109, 0.12) 0%, rgba(201, 169, 110, 0.12) 100%);
  color: #d4806d;
}
.card-link {
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: #d4806d;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.card-link:hover {
  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 16px 40px rgba(59, 48, 40, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.12);
  position: relative;
}
.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, transparent 60%, rgba(212, 128, 109, 0.04) 100%);
  pointer-events: none;
}
.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}
.feature-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2a211c;
}
.feature-text p {
  opacity: 0.7;
  color: #5c4f44;
  line-height: 1.7;
}
.feature-list {
  list-style: none;
  margin-top: 16px;
}
.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #5c4f44;
}
.feature-list li::before {
  content: '✓';
  font-weight: 700;
  color: #d4806d;
  font-size: 1rem;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 128, 109, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

/* 数据条 */
.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 rgba(201, 169, 110, 0.12);
  background: #fff;
  transition: all 0.3s;
  position: relative;
}
.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 48, 40, 0.08);
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d4806d 0%, #c9a96e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 8px;
  color: #5c4f44;
  letter-spacing: 0.5px;
}

/* 内容墙 */
.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 rgba(201, 169, 110, 0.12);
  background: #fff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-wall-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59, 48, 40, 0.1);
}
.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.content-wall-body {
  padding: 20px;
}
.content-wall-body h4 {
  font-weight: 600;
  margin-bottom: 6px;
  color: #2a211c;
}
.content-wall-body p {
  font-size: 0.9rem;
  opacity: 0.6;
  color: #5c4f44;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: all 0.25s;
}
.faq-item:hover {
  border-color: rgba(201, 169, 110, 0.25);
}
.faq-item .faq-question {
  padding: 16px 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2a211c;
  user-select: none;
}
.faq-item .faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: #d4806d;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-item .faq-answer {
  padding: 0 20px 16px;
  display: none;
  opacity: 0.7;
  color: #5c4f44;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  display: block;
}

/* CTA横幅 */
.cta-banner {
  padding: 56px 24px;
  text-align: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #d4806d 0%, #c96552 50%, #c9a96e 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  position: relative;
  z-index: 1;
  opacity: 0.9;
  margin-bottom: 24px;
}
.cta-banner .btn-primary {
  background: #fff;
  color: #c96552;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}
.cta-banner .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* 页脚 */
.site-footer {
  padding: 56px 0 28px;
  background: #fef5ec;
  color: #5c4f44;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #2a211c;
}
.footer-brand p {
  opacity: 0.6;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-col h5 {
  font-weight: 600;
  margin-bottom: 14px;
  color: #2a211c;
  font-size: 0.95rem;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: #5c4f44;
  opacity: 0.7;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.footer-col a:hover {
  opacity: 1;
  color: #d4806d;
}
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
  color: #5c4f44;
}

/* 工具类 */
.text-accent {
  color: #d4806d;
}
.text-center {
  text-align: center;
}
.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  color: #5c4f44;
  line-height: 1.7;
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    background: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    color: #3b3028;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #fef9f3;
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    box-shadow: 0 8px 24px rgba(59, 48, 40, 0.08);
  }
  .main-nav.open a {
    padding: 10px 16px;
    border-radius: 10px;
    display: block;
  }
  .main-nav.open a:hover {
    background: rgba(212, 128, 109, 0.06);
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .section {
    padding: 56px 0;
  }
  .section-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-eyebrow {
    font-size: 0.75rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .cta-banner {
    padding: 36px 16px;
  }
  .cta-banner h2 {
    font-size: 1.4rem;
  }
  .container {
    padding: 0 16px;
  }
  .header-inner {
    padding: 0 16px;
  }
  .section-label {
    letter-spacing: 2px;
    font-size: 0.7rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}