*, *::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:#faf7f2; color:#2d2a24; }

/* 核心布局 */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section { padding:80px 0; }
.section:nth-child(even) { background:#f5f0e8; }

/* 导航 — 固定顶部，奶油白+陶土色系 */
.site-header { position:fixed; top:0; left:0; width:100%; z-index:1000; background:rgba(250,247,242,0.92); backdrop-filter:blur(12px); border-bottom:1px solid #e0d6c8; }
.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:#2d2a24; letter-spacing:1px; }
.logo-icon { width:38px; height:38px; border-radius:50%; background:#c1663c; color:#faf7f2; display:flex; align-items:center; justify-content:center; font-size:1.1rem; box-shadow:0 2px 8px rgba(193,102,60,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:#4a443b; transition:color 0.2s; letter-spacing:0.3px; }
.main-nav a:hover { color:#c1663c; }
.nav-cta { padding:8px 22px; border-radius:30px; background:#c1663c; color:#faf7f2!important; font-weight:600; box-shadow:0 2px 10px rgba(193,102,60,0.3); }
.nav-cta:hover { background:#a8552e; color:#faf7f2!important; }
.menu-toggle { display:none; background:none; border:none; font-size:1.4rem; cursor:pointer; color:#2d2a24; }

/* 首页Hero — 柔和渐变+斜切布局 */
.hero { min-height:75vh; display:flex; align-items:center; background:linear-gradient(135deg, #faf7f2 0%, #f0e6d6 50%, #e8d8c0 100%); position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; top:-20%; right:-10%; width:500px; height:500px; background:radial-gradient(circle, rgba(193,102,60,0.15), transparent 70%); border-radius:50%; pointer-events:none; }
.hero-content { max-width:720px; position:relative; z-index:2; }
.hero-eyebrow { display:inline-block; font-size:0.8rem; font-weight:600; padding:4px 16px; border-radius:30px; background:#c1663c; color:#faf7f2; margin-bottom:16px; letter-spacing:1px; }
.hero h1 { font-size:3.2rem; line-height:1.15; margin-bottom:20px; color:#2d2a24; font-weight:800; letter-spacing:-0.5px; }
.hero p { font-size:1.1rem; opacity:0.75; max-width:560px; margin-bottom:32px; color:#4a443b; line-height:1.6; }
.hero-buttons { display:flex; gap:14px; }
.hero-image { border-radius:16px; overflow:hidden; box-shadow:0 8px 30px rgba(0,0,0,0.08); transform:rotate(1deg); }
.hero-image img { width:100%; height:auto; display:block; }

/* 按钮 — 陶土+米色系 */
.btn { display:inline-flex; align-items:center; gap:8px; padding:12px 30px; border-radius:30px; font-weight:600; cursor:pointer; border:none; text-decoration:none; transition:all 0.3s; font-size:0.95rem; }
.btn-primary { background:#c1663c; color:#faf7f2; box-shadow:0 3px 12px rgba(193,102,60,0.3); }
.btn-primary:hover { background:#a8552e; transform:translateY(-2px); box-shadow:0 6px 20px rgba(193,102,60,0.4); }
.btn-outline { background:transparent; border:1.5px solid #c1663c; color:#c1663c; }
.btn-outline:hover { background:#c1663c; color:#faf7f2; }

/* 标签/标题 */
.section-label { display:inline-block; font-size:0.75rem; font-weight:600; letter-spacing:3px; text-transform:uppercase; color:#c1663c; margin-bottom:12px; }
.section-title { font-size:2.2rem; margin-bottom:14px; color:#2d2a24; font-weight:700; letter-spacing:-0.3px; }
.section-desc { max-width:600px; opacity:0.7; margin-bottom:40px; color:#4a443b; line-height:1.6; }

/* 卡片网格 — 圆润卡片+阴影+微纹理 */
.cards-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:28px; }
.category-card { border-radius:16px; padding:32px; background:#ffffff; border:1px solid #e8ddd0; transition:all 0.3s; position:relative; overflow:hidden; }
.category-card::after { content:''; position:absolute; bottom:0; left:0; width:100%; height:4px; background:linear-gradient(90deg, #c1663c, #d99b7a); opacity:0; transition:opacity 0.3s; }
.category-card:hover { transform:translateY(-5px); box-shadow:0 8px 30px rgba(193,102,60,0.12); border-color:#c1663c; }
.category-card:hover::after { opacity:1; }
.card-icon { width:52px; height:52px; border-radius:14px; background:#f0e6d6; color:#c1663c; display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:1.5rem; }
.card-link { font-weight:600; font-size:0.85rem; text-decoration:none; color:#c1663c; display:inline-flex; align-items:center; gap:6px; }
.card-link::after { content:'→'; transition:transform 0.2s; }
.card-link:hover::after { transform:translateX(4px); }

/* 特性块 — 左右分栏+错落布局 */
.feature-block { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.feature-image { border-radius:16px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,0.06); transform:rotate(-1deg); }
.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:#4a443b; font-size:0.95rem; }
.feature-list li::before { content:'✦'; font-weight:700; color:#c1663c; 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 #e8ddd0; transition:all 0.3s; }
.stat-item:hover { border-color:#c1663c; box-shadow:0 4px 16px rgba(193,102,60,0.1); }
.stat-number { font-size:2.6rem; font-weight:800; color:#c1663c; line-height:1; }
.stat-label { font-size:0.9rem; opacity:0.6; margin-top:8px; color:#4a443b; }

/* 内容墙 — 杂志风格+图片悬浮 */
.content-wall { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:28px; }
.content-wall-item { border-radius:16px; overflow:hidden; background:#ffffff; border:1px solid #e8ddd0; transition:all 0.3s; }
.content-wall-item:hover { transform:translateY(-5px); box-shadow:0 8px 30px rgba(193,102,60,0.12); border-color:#c1663c; }
.content-wall-item img { width:100%; height:200px; object-fit:cover; transition:transform 0.4s; }
.content-wall-item:hover img { transform:scale(1.05); }
.content-wall-body { padding:22px; }
.content-wall-body h3 { font-size:1.1rem; margin-bottom:6px; color:#2d2a24; }
.content-wall-body p { font-size:0.9rem; color:#6b6258; }

/* FAQ — 折叠卡片+温和过渡 */
.faq-list { max-width:800px; margin:0 auto; }
.faq-item { border:1px solid #e8ddd0; border-radius:12px; margin-bottom:10px; overflow:hidden; cursor:pointer; background:#ffffff; transition:all 0.3s; }
.faq-item:hover { border-color:#c1663c; }
.faq-item .faq-question { padding:18px 22px; font-weight:600; display:flex; justify-content:space-between; align-items:center; color:#2d2a24; font-size:1rem; }
.faq-item .faq-question::after { content:'+'; font-size:1.4rem; color:#c1663c; transition:transform 0.3s; }
.faq-item.open .faq-question::after { transform:rotate(45deg); }
.faq-item .faq-answer { padding:0 22px 18px; display:none; opacity:0.75; color:#4a443b; line-height:1.6; }
.faq-item.open .faq-answer { display:block; }

/* CTA横幅 — 陶土渐变+白色文字 */
.cta-banner { padding:60px 24px; text-align:center; border-radius:16px; background:linear-gradient(135deg, #c1663c, #d99b7a); color:#faf7f2; box-shadow:0 6px 30px rgba(193,102,60,0.3); }
.cta-banner h2 { color:#faf7f2; font-size:2rem; margin-bottom:12px; }
.cta-banner p { color:rgba(250,247,242,0.85); margin-bottom:24px; }
.cta-banner .btn-primary { background:#faf7f2; color:#c1663c; box-shadow:0 2px 12px rgba(0,0,0,0.1); }
.cta-banner .btn-primary:hover { background:#ffffff; }

/* 页脚 — 深米色+陶土细节 */
.site-footer { padding:60px 0 28px; background:#2d2a24; color:#e8ddd0; }
.site-footer .container { }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; }
.footer-brand h3 { color:#faf7f2; margin-bottom:12px; font-size:1.2rem; }
.footer-brand p { opacity:0.6; font-size:0.9rem; line-height:1.5; }
.footer-col h4 { color:#faf7f2; margin-bottom:16px; font-size:0.95rem; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a { color:#c9bca8; text-decoration:none; font-size:0.9rem; transition:color 0.2s; }
.footer-col ul li a:hover { color:#c1663c; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); margin-top:40px; padding-top:24px; text-align:center; font-size:0.85rem; color:rgba(255,255,255,0.4); }

/* 工具类 */
.text-accent { color:#c1663c; }
.text-center { text-align:center; }
.seo-description { max-width:600px; margin:0 auto 48px; opacity:0.7; color:#4a443b; 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; }
  .main-nav.open { display:flex; flex-direction:column; position:absolute; top:68px; left:0; width:100%; background:#faf7f2; padding:24px; gap:16px; box-shadow:0 4px 20px rgba(0,0,0,0.05); }
  .hero h1 { font-size:2.4rem; }
  .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; gap:32px; }
  .hero-buttons { flex-direction:column; gap:12px; }
  .hero h1 { font-size:2rem; }
  .section-title { font-size:1.5rem; }
  .stat-number { font-size:2rem; }
}