/* 基础重置 */
*, *::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:#fefcf5; color:#2d2a1a; }

/* 核心布局 — 必须居中 */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section { padding:80px 0; }
.section:nth-child(even) { background:#f8f4eb; }

/* 导航 — 固定顶部 */
.site-header { position:fixed; top:0; left:0; width:100%; z-index:1000; background:rgba(254,252,245,0.92); backdrop-filter:blur(12px); border-bottom:1px solid #e8e0d0; }
.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:8px; font-weight:700; font-size:1.3rem; text-decoration:none; color:#2d2a1a; letter-spacing:-0.5px; }
.logo-icon { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.1rem; background:#f5a623; color:#fff; }
.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:#5a5540; }
.main-nav a:hover { color:#f5a623; }
.nav-cta { padding:8px 22px; border-radius:30px; color:#fff!important; font-weight:600; background:#f5a623; border:1px solid #f5a623; }
.nav-cta:hover { background:#e0941f; border-color:#e0941f; }
.menu-toggle { display:none; }

/* 首页Hero */
.hero { min-height:70vh; display:flex; align-items:center; position:relative; background: linear-gradient(135deg, #fefcf5 0%, #fdf6e8 100%); }
.hero::before { content:''; position:absolute; top:-120px; right:-80px; width:400px; height:400px; background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%); border-radius:50%; pointer-events:none; }
.hero-content { max-width:680px; position:relative; z-index:1; }
.hero-eyebrow { display:inline-block; font-size:0.75rem; font-weight:600; letter-spacing:3px; padding:6px 18px; border-radius:30px; margin-bottom:20px; background:#f5a623; color:#fff; text-transform:uppercase; }
.hero h1 { font-size:3.2rem; line-height:1.15; margin-bottom:16px; color:#2d2a1a; font-weight:800; letter-spacing:-1px; }
.hero h1 span { color:#f5a623; }
.hero p { font-size:1.1rem; opacity:0.65; max-width:520px; margin-bottom:36px; line-height:1.6; }
.hero-buttons { display:flex; gap:16px; }
.hero-image { border-radius:20px; overflow:hidden; box-shadow:0 20px 40px -12px rgba(0,0,0,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:40px; font-weight:600; cursor:pointer; border:none; text-decoration:none; transition:0.3s; font-size:0.95rem; }
.btn-primary { color:#fff; background:#f5a623; box-shadow:0 4px 12px rgba(245,166,35,0.3); }
.btn-primary:hover { background:#e0941f; transform:translateY(-2px); box-shadow:0 8px 20px rgba(245,166,35,0.35); }
.btn-outline { background:transparent; border:1.5px solid #2d2a1a; color:#2d2a1a; }
.btn-outline:hover { background:#2d2a1a; color:#fff; }

/* 标签/标题 */
.section-label { display:inline-block; font-size:0.7rem; font-weight:700; letter-spacing:3px; margin-bottom:12px; color:#f5a623; text-transform:uppercase; }
.section-title { font-size:2.4rem; margin-bottom:16px; font-weight:700; letter-spacing:-0.5px; color:#2d2a1a; }
.section-desc { max-width:600px; opacity:0.6; margin-bottom:48px; font-size:1.05rem; line-height:1.6; }

/* 卡片网格 */
.cards-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:28px; }
.category-card { border-radius:20px; padding:32px; background:#fff; border:1px solid #ece6d8; transition:0.3s; }
.category-card:hover { transform:translateY(-5px); box-shadow:0 12px 32px -8px rgba(0,0,0,0.06); border-color:#f5a623; }
.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:#fdf6e8; color:#f5a623; }
.card-link { font-weight:600; font-size:0.85rem; text-decoration:none; color:#f5a623; display:inline-flex; align-items:center; gap:6px; }

/* 特性块 */
.feature-block { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.feature-image { border-radius:20px; overflow:hidden; box-shadow:0 16px 40px -12px rgba(0,0,0,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; font-size:1rem; color:#3d3828; }
.feature-list li::before { content:'✦'; font-weight:700; color:#f5a623; 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:20px; background:#fff; border:1px solid #ece6d8; transition:0.3s; }
.stat-item:hover { border-color:#f5a623; transform:translateY(-2px); }
.stat-number { font-size:2.6rem; font-weight:800; color:#2d2a1a; letter-spacing:-1px; }
.stat-number span { color:#f5a623; }
.stat-label { font-size:0.9rem; opacity:0.55; margin-top:6px; }

/* 内容墙 */
.content-wall { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:28px; }
.content-wall-item { border-radius:20px; overflow:hidden; background:#fff; border:1px solid #ece6d8; transition:0.3s; }
.content-wall-item:hover { transform:translateY(-4px); box-shadow:0 12px 32px -8px rgba(0,0,0,0.06); border-color:#f5a623; }
.content-wall-item img { width:100%; height:200px; object-fit:cover; }
.content-wall-body { padding:24px; }
.content-wall-body h3 { font-size:1.2rem; margin-bottom:8px; color:#2d2a1a; }
.content-wall-body p { font-size:0.9rem; opacity:0.6; line-height:1.5; }

/* FAQ */
.faq-list { max-width:800px; margin:0 auto; }
.faq-item { border:1px solid #ece6d8; border-radius:16px; margin-bottom:10px; overflow:hidden; cursor:pointer; background:#fff; transition:0.2s; }
.faq-item:hover { border-color:#f5a623; }
.faq-item .faq-question { padding:20px 24px; font-weight:600; display:flex; justify-content:space-between; align-items:center; color:#2d2a1a; font-size:1rem; }
.faq-item .faq-question::after { content:'+'; font-size:1.4rem; font-weight:300; color:#f5a623; transition:0.3s; }
.faq-item.open .faq-question::after { content:'−'; }
.faq-item .faq-answer { padding:0 24px 20px; display:none; opacity:0.65; line-height:1.6; }
.faq-item.open .faq-answer { display:block; }

/* CTA横幅 */
.cta-banner { padding:64px 32px; text-align:center; border-radius:24px; color:#fff; background: linear-gradient(135deg, #f5a623 0%, #e0941f 100%); }
.cta-banner h2 { color:#fff; font-size:2rem; margin-bottom:12px; }
.cta-banner p { opacity:0.85; margin-bottom:28px; font-size:1.05rem; }
.cta-banner .btn-primary { background:#fff; color:#2d2a1a; box-shadow:0 4px 16px rgba(0,0,0,0.1); }
.cta-banner .btn-primary:hover { background:#f0ece0; }

/* 页脚 */
.site-footer { padding:64px 0 32px; background:#2d2a1a; color:#e8e0d0; }
.site-footer .container { }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; }
.footer-brand { }
.footer-brand .logo { color:#e8e0d0; }
.footer-brand p { opacity:0.6; margin-top:12px; font-size:0.9rem; line-height:1.6; }
.footer-col { }
.footer-col h4 { font-size:0.9rem; font-weight:600; margin-bottom:16px; color:#fff; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a { text-decoration:none; color:#b0a890; font-size:0.9rem; transition:0.2s; }
.footer-col ul li a:hover { color:#f5a623; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); margin-top:48px; padding-top:24px; text-align:center; font-size:0.85rem; color:#8a8060; }

/* 工具类 */
.text-accent { color:#f5a623; }
.text-center { text-align:center; }
.seo-description { max-width:600px; margin:0 auto 48px; opacity:0.6; line-height:1.6; }
.mt-0 { margin-top:0; }
.mb-0 { margin-bottom:0; }

/* ⚠️ 响应式 */
@media (max-width: 768px) {
  .feature-block { grid-template-columns:1fr; gap:40px; }
  .stats-bar { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .main-nav { display:none; }
  .menu-toggle { display:flex; background:none; border:none; font-size:1.5rem; cursor:pointer; color:#2d2a1a; }
  .main-nav.open { display:flex; flex-direction:column; position:absolute; top:68px; left:0; width:100%; background:#fefcf5; padding:24px; border-bottom:1px solid #ece6d8; gap:16px; }
  .hero h1 { font-size:2.2rem; }
  .hero { min-height:60vh; }
  .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; }
}
