/* 基础重置 */
*, *::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:#fef9f0; }

/* 核心布局 — 必须居中 */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section { padding:80px 0; }
.section:nth-child(even) { background:#f8f3ea; }

/* 导航 — 固定顶部 */
.site-header { position:fixed; top:0; left:0; width:100%; z-index:1000; background:rgba(254,249,240,0.92); backdrop-filter:blur(12px); border-bottom:1px solid #e8dcc8; }
.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.3rem; text-decoration:none; color:#4a3728; letter-spacing:-0.5px; }
.logo-icon { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,#f7c948,#e8a838); display:flex; align-items:center; justify-content:center; font-size:1rem; color:#4a3728; box-shadow:0 2px 8px rgba(232,168,56,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:#6b5b4a; transition:0.2s; position:relative; }
.main-nav a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:#e8a838; transition:0.3s; }
.main-nav a:hover::after { width:100%; }
.main-nav a:hover { color:#4a3728; }
.nav-cta { padding:8px 22px; border-radius:50px; background:linear-gradient(135deg,#f7c948,#e8a838); color:#4a3728!important; font-weight:600; box-shadow:0 2px 12px rgba(232,168,56,0.35); }
.nav-cta:hover { transform:translateY(-1px); box-shadow:0 4px 16px rgba(232,168,56,0.45); }
.menu-toggle { display:none; background:none; border:none; font-size:1.5rem; cursor:pointer; color:#4a3728; }

/* 首页Hero */
.hero { min-height:70vh; display:flex; align-items:center; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; top:-30%; right:-20%; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(247,201,72,0.15),transparent 70%); pointer-events:none; }
.hero-content { max-width:720px; position:relative; z-index:1; }
.hero-eyebrow { display:inline-block; font-size:0.8rem; font-weight:600; padding:5px 16px; border-radius:50px; background:rgba(232,168,56,0.15); color:#b87a28; margin-bottom:16px; letter-spacing:1px; }
.hero h1 { font-size:2.8rem; line-height:1.15; margin-bottom:20px; color:#3d2c1e; font-weight:800; letter-spacing:-1px; }
.hero h1 span { color:#e8a838; background:linear-gradient(135deg,#f7c948,#d4912a); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.hero p { font-size:1.1rem; opacity:0.7; max-width:560px; margin-bottom:32px; color:#6b5b4a; }
.hero-buttons { display:flex; gap:14px; }
.hero-image { border-radius:16px; overflow:hidden; box-shadow:0 8px 32px rgba(232,168,56,0.15); }
.hero-image img { width:100%; height:auto; display:block; }

/* 按钮 */
.btn { display:inline-flex; align-items:center; gap:8px; padding:12px 28px; border-radius:50px; font-weight:600; cursor:pointer; border:none; text-decoration:none; transition:0.2s; }
.btn-primary { color:#4a3728; background:linear-gradient(135deg,#f7c948,#e8a838); box-shadow:0 2px 12px rgba(232,168,56,0.3); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 4px 20px rgba(232,168,56,0.4); }
.btn-outline { background:transparent; border:1.5px solid #e8a838; color:#b87a28; }
.btn-outline:hover { background:rgba(232,168,56,0.08); transform:translateY(-2px); }

/* 标签/标题 */
.section-label { display:inline-block; font-size:0.75rem; font-weight:600; letter-spacing:3px; margin-bottom:12px; color:#b87a28; text-transform:uppercase; }
.section-title { font-size:2rem; margin-bottom:14px; color:#3d2c1e; font-weight:800; letter-spacing:-0.5px; }
.section-desc { max-width:600px; opacity:0.7; margin-bottom:40px; color:#6b5b4a; }

/* 卡片网格 */
.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 #e8dcc8; background:#fff; transition:0.25s; position:relative; overflow:hidden; }
.category-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:4px; background:linear-gradient(90deg,#f7c948,#e8a838); opacity:0; transition:0.3s; }
.category-card:hover { transform:translateY(-4px); box-shadow:0 8px 28px rgba(232,168,56,0.12); border-color:#e8a838; }
.category-card:hover::before { opacity:1; }
.card-icon { width:48px; height:48px; border-radius:12px; background:linear-gradient(135deg,#fef3d6,#fce5b8); display:flex; align-items:center; justify-content:center; margin-bottom:16px; font-size:1.3rem; color:#b87a28; }
.card-link { font-weight:600; font-size:0.85rem; text-decoration:none; color:#e8a838; display:inline-flex; align-items:center; gap:4px; }
.card-link:hover { gap:8px; }

/* 特性块 */
.feature-block { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.feature-image { border-radius:16px; overflow:hidden; box-shadow:0 4px 20px rgba(232,168,56,0.1); }
.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:#4a3728; }
.feature-list li::before { content:'✦'; font-weight:700; color:#e8a838; font-size:1.1rem; }

/* 数据条 */
.stats-bar { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat-item { padding:28px 24px; border-radius:16px; border:1px solid #e8dcc8; background:#fff; transition:0.2s; }
.stat-item:hover { border-color:#e8a838; box-shadow:0 4px 16px rgba(232,168,56,0.08); }
.stat-number { font-size:2.2rem; font-weight:800; color:#3d2c1e; background:linear-gradient(135deg,#f7c948,#d4912a); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.stat-label { font-size:0.9rem; opacity:0.6; margin-top:6px; color:#6b5b4a; }

/* 内容墙 */
.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 #e8dcc8; background:#fff; transition:0.25s; }
.content-wall-item:hover { transform:translateY(-4px); box-shadow:0 8px 28px rgba(232,168,56,0.12); border-color:#e8a838; }
.content-wall-item img { width:100%; height:200px; object-fit:cover; }
.content-wall-body { padding:20px; }
.content-wall-body h3 { color:#3d2c1e; margin-bottom:8px; }
.content-wall-body p { color:#6b5b4a; font-size:0.9rem; }

/* FAQ */
.faq-list { max-width:800px; margin:0 auto; }
.faq-item { border:1px solid #e8dcc8; border-radius:12px; margin-bottom:8px; overflow:hidden; background:#fff; transition:0.2s; }
.faq-item:hover { border-color:#e8a838; }
.faq-item .faq-question { padding:16px 20px; font-weight:600; display:flex; justify-content:space-between; color:#3d2c1e; cursor:pointer; }
.faq-item .faq-question::after { content:'+'; font-size:1.2rem; color:#e8a838; transition:0.3s; }
.faq-item.open .faq-question::after { content:'−'; }
.faq-item .faq-answer { padding:0 20px 16px; display:none; opacity:0.7; color:#6b5b4a; }
.faq-item.open .faq-answer { display:block; }

/* CTA横幅 */
.cta-banner { padding:56px 24px; text-align:center; border-radius:16px; background:linear-gradient(135deg,#f7c948,#e8a838,#d4912a); color:#4a3728; position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; top:-50%; right:-30%; width:400px; height:400px; border-radius:50%; background:rgba(255,255,255,0.1); pointer-events:none; }
.cta-banner h2 { color:#4a3728; font-size:2rem; margin-bottom:12px; }
.cta-banner p { color:#6b5b4a; margin-bottom:24px; }
.cta-banner .btn-primary { background:#4a3728; color:#fef9f0; box-shadow:0 2px 12px rgba(74,55,40,0.3); }
.cta-banner .btn-primary:hover { background:#3d2c1e; }

/* 页脚 */
.site-footer { padding:56px 0 28px; background:#3d2c1e; color:#e8dcc8; }
.site-footer .container { }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; }
.footer-brand { }
.footer-brand .logo { color:#f7c948; }
.footer-col { }
.footer-col h4 { color:#f7c948; margin-bottom:16px; font-weight:600; }
.footer-col a { display:block; color:#c4b5a0; text-decoration:none; padding:4px 0; font-size:0.9rem; transition:0.2s; }
.footer-col a:hover { color:#f7c948; }
.footer-bottom { border-top:1px solid rgba(247,201,72,0.15); margin-top:40px; padding-top:20px; text-align:center; font-size:0.85rem; color:#a0907a; }

/* 工具类 */
.text-accent { color:#e8a838; }
.text-center { text-align:center; }
.seo-description { max-width:600px; margin:0 auto 48px; opacity:0.7; color:#6b5b4a; }
.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; }
  .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:#fef9f0; padding:20px; border-bottom:1px solid #e8dcc8; gap:16px; }
  .main-nav.open a::after { display:none; }
  .hero h1 { font-size:2rem; }
}
@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.6rem; }
}