*, *::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: #FDF6F0;
  color: #3B2820;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* 核心布局 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #F7EDE3;
}

.section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(232,115,74,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(253,246,240,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #E8D5C4;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(59,40,32,0.06);
}

.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: #3B2820;
  letter-spacing: -0.3px;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #E8734A 0%, #F4A87C 100%);
  color: #fff;
  font-weight: 800;
}

.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: #5C3D2E;
  transition: color 0.2s, transform 0.2s;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E8734A;
  border-radius: 1px;
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: #E8734A;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 24px;
  color: #fff !important;
  font-weight: 600;
  background: linear-gradient(135deg, #E8734A 0%, #D9603B 100%);
  box-shadow: 0 4px 14px rgba(232,115,74,0.3);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,115,74,0.4);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #3B2820;
  border-radius: 2px;
  transition: 0.25s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,167,138,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(125,155,118,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  background: #F4C7A8;
  color: #8B3A1F;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
  color: #3B2820;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #E8734A 0%, #F4A87C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 560px;
  margin-bottom: 32px;
  color: #5C3D2E;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  max-width: 480px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(59,40,32,0.1);
  border: 6px solid #fff;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 26px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #E8734A 0%, #D9603B 100%);
  box-shadow: 0 6px 20px rgba(232,115,74,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,115,74,0.45);
}

.btn-outline {
  background: transparent;
  border: 1.8px solid #E8734A;
  color: #E8734A;
}

.btn-outline:hover {
  background: #E8734A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,115,74,0.25);
}

/* 标签/标题 */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: #7D9B76;
  text-transform: uppercase;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: #7D9B76;
  border-radius: 1px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 14px;
  font-weight: 700;
  color: #3B2820;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 40px;
  color: #5C3D2E;
  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: 30px 28px;
  border: 1px solid #E8D5C4;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E8734A 0%, #F4C7A8 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(59,40,32,0.1);
  border-color: #F4C7A8;
}

.category-card:hover::before {
  opacity: 1;
}

.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: #FDF0E8;
  color: #E8734A;
  transition: transform 0.3s, background 0.3s;
}

.category-card:hover .card-icon {
  transform: scale(1.05);
  background: #FCE8DB;
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #3B2820;
}

.category-card p {
  font-size: 0.9rem;
  color: #5C3D2E;
  opacity: 0.7;
  margin-bottom: 14px;
  line-height: 1.6;
}

.card-link {
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: #7D9B76;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}

.card-link:hover {
  color: #E8734A;
  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 48px rgba(59,40,32,0.08);
  border: 5px solid #fff;
  position: relative;
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 11px;
  box-shadow: inset 0 0 0 1px rgba(59,40,32,0.04);
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #3B2820;
  letter-spacing: -0.3px;
}

.feature-text p {
  opacity: 0.7;
  margin-bottom: 20px;
  color: #5C3D2E;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3B2820;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  font-weight: 700;
  color: #E8734A;
  font-size: 0.9rem;
  background: #FDF0E8;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  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 #E8D5C4;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(59,40,32,0.08);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #E8734A;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 8px;
  color: #5C3D2E;
}

/* 内容墙 */
.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 #E8D5C4;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}

.content-wall-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(59,40,32,0.1);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.content-wall-body {
  padding: 22px;
}

.content-wall-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3B2820;
  margin-bottom: 6px;
}

.content-wall-body p {
  font-size: 0.9rem;
  opacity: 0.7;
  color: #5C3D2E;
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #E8D5C4;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: #F4C7A8;
}

.faq-item.open {
  border-color: #E8734A;
  box-shadow: 0 4px 20px rgba(232,115,74,0.1);
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3B2820;
  font-size: 1rem;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: #E8734A;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  display: none;
  opacity: 0.7;
  color: #5C3D2E;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA横幅 */
.cta-banner {
  padding: 60px 24px;
  text-align: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #E8734A 0%, #D96A45 30%, #C75732 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin: 12px 0 24px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #E8734A;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
  color: #D9603B;
}

/* 页脚 */
.site-footer {
  padding: 60px 0 28px;
  background: #F0E4D8;
  color: #3B2820;
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #3B2820;
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.9rem;
  color: #5C3D2E;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #3B2820;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #5C3D2E;
  font-size: 0.9rem;
  padding: 4px 0;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: #E8734A;
}

.footer-bottom {
  border-top: 1px solid #E0D0C0;
  margin-top: 44px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: #5C3D2E;
  opacity: 0.7;
}

/* 工具类 */
.text-accent {
  color: #E8734A;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  color: #5C3D2E;
  line-height: 1.7;
  font-size: 0.95rem;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image {
    max-width: 380px;
    margin: 0 auto;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-image {
    order: -1;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .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: #FDF6F0;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid #E8D5C4;
    box-shadow: 0 8px 24px rgba(59,40,32,0.08);
  }
  .main-nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid #F0E4D8;
    width: 100%;
    font-size: 1rem;
  }
  .main-nav.open .nav-cta {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    border-bottom: none;
  }
  .section {
    padding: 56px 0;
  }
  .cta-banner {
    padding: 44px 20px;
  }
  .cta-banner h2 {
    font-size: 1.5rem;
  }
}

@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;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-eyebrow {
    font-size: 0.78rem;
    padding: 4px 12px;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .hero-image {
    max-width: 100%;
  }
  .container {
    padding: 0 16px;
  }
  .header-inner {
    padding: 0 16px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .category-card {
    padding: 22px 20px;
  }
  .faq-item .faq-question {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  .faq-item .faq-answer {
    padding: 0 16px 14px;
  }
}