*, *::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:#0c0b0f; color:#e8e3d7; }

.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section { padding:80px 0; }
.section:nth-child(even) { background:#13121a; }

.site-header { position:fixed; top:0; left:0; width:100%; z-index:1000; background:rgba(12,11,15,0.92); backdrop-filter:blur(14px) saturate(1.8); border-bottom:1px solid rgba(255,215,120,0.15); }
.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:800; font-size:1.3rem; text-decoration:none; color:#f0d78c; letter-spacing:-0.5px; }
.logo-icon { width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.1rem; background:linear-gradient(135deg,#f0d78c,#d4a843); color:#0c0b0f; box-shadow:0 0 20px rgba(240,215,140,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:#a09b8f; transition:0.3s; position:relative; }
.main-nav a:hover { color:#f0d78c; }
.main-nav a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:#f0d78c; transition:0.3s; }
.main-nav a:hover::after { width:100%; }
.nav-cta { padding:8px 22px; border-radius:50px; color:#0c0b0f!important; font-weight:700; background:linear-gradient(135deg,#f0d78c,#d4a843); box-shadow:0 4px 20px rgba(240,215,140,0.25); border:none; }
.nav-cta:hover { transform:scale(1.04); box-shadow:0 6px 28px rgba(240,215,140,0.4); }
.menu-toggle { display:none; color:#f0d78c; font-size:1.4rem; cursor:pointer; background:none; border:none; }

.hero { min-height:80vh; display:flex; align-items:center; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; top:-30%; right:-20%; width:600px; height:600px; background:radial-gradient(circle,rgba(240,215,140,0.08) 0%,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.75rem; font-weight:700; letter-spacing:3px; padding:6px 18px; border-radius:50px; margin-bottom:20px; background:rgba(240,215,140,0.12); color:#f0d78c; border:1px solid rgba(240,215,140,0.2); text-transform:uppercase; }
.hero h1 { font-size:3.2rem; line-height:1.1; margin-bottom:18px; color:#f5efe0; font-weight:800; letter-spacing:-1px; }
.hero h1 span { color:#f0d78c; }
.hero p { font-size:1.1rem; opacity:0.65; max-width:560px; margin-bottom:36px; line-height:1.7; color:#b5ad9b; }
.hero-buttons { display:flex; gap:16px; }
.hero-image { border-radius:16px; overflow:hidden; box-shadow:0 20px 60px rgba(0,0,0,0.5); border:1px solid rgba(240,215,140,0.1); }
.hero-image img { width:100%; height:auto; display:block; }

.btn { display:inline-flex; align-items:center; gap:10px; padding:14px 32px; border-radius:50px; font-weight:700; cursor:pointer; border:none; text-decoration:none; transition:0.3s; font-size:0.95rem; }
.btn-primary { color:#0c0b0f; background:linear-gradient(135deg,#f0d78c,#d4a843); box-shadow:0 4px 24px rgba(240,215,140,0.25); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 32px rgba(240,215,140,0.4); }
.btn-outline { background:transparent; border:1.5px solid rgba(240,215,140,0.4); color:#f0d78c; }
.btn-outline:hover { border-color:#f0d78c; background:rgba(240,215,140,0.06); }

.section-label { display:inline-block; font-size:0.7rem; font-weight:700; letter-spacing:3px; margin-bottom:14px; color:#f0d78c; text-transform:uppercase; }
.section-title { font-size:2.4rem; margin-bottom:14px; font-weight:800; letter-spacing:-0.5px; color:#f5efe0; }
.section-desc { max-width:600px; opacity:0.6; margin-bottom:44px; line-height:1.7; color:#b5ad9b; }

.cards-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:24px; }
.category-card { border-radius:16px; padding:32px; border:1px solid rgba(240,215,140,0.08); background:rgba(255,255,255,0.02); transition:0.3s; backdrop-filter:blur(4px); }
.category-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,0.3); border-color:rgba(240,215,140,0.2); background:rgba(240,215,140,0.04); }
.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:rgba(240,215,140,0.1); color:#f0d78c; }
.card-link { font-weight:700; font-size:0.85rem; text-decoration:none; color:#f0d78c; display:inline-flex; align-items:center; gap:6px; }
.card-link::after { content:'→'; transition:0.3s; }
.card-link:hover::after { transform:translateX(4px); }

.feature-block { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.feature-image { border-radius:16px; overflow:hidden; box-shadow:0 20px 50px rgba(0,0,0,0.4); border:1px solid rgba(240,215,140,0.08); }
.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:1.05rem; color:#c8c0b0; }
.feature-list li::before { content:'✦'; font-weight:700; color:#f0d78c; font-size:0.9rem; }

.stats-bar { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat-item { padding:28px; border-radius:16px; border:1px solid rgba(240,215,140,0.08); background:rgba(255,255,255,0.02); }
.stat-number { font-size:2.6rem; font-weight:800; color:#f0d78c; line-height:1; }
.stat-label { font-size:0.9rem; opacity:0.55; margin-top:8px; color:#b5ad9b; text-transform:uppercase; letter-spacing:1px; }

.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(240,215,140,0.06); background:rgba(255,255,255,0.01); transition:0.3s; }
.content-wall-item:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,0.3); border-color:rgba(240,215,140,0.15); }
.content-wall-item img { width:100%; height:200px; object-fit:cover; }
.content-wall-body { padding:22px; }
.content-wall-body h3 { color:#f5efe0; font-size:1.1rem; margin-bottom:6px; }
.content-wall-body p { color:#a09b8f; font-size:0.9rem; line-height:1.6; }

.faq-list { max-width:800px; margin:0 auto; }
.faq-item { border:1px solid rgba(240,215,140,0.08); border-radius:12px; margin-bottom:10px; overflow:hidden; cursor:pointer; background:rgba(255,255,255,0.01); transition:0.3s; }
.faq-item:hover { border-color:rgba(240,215,140,0.2); }
.faq-item .faq-question { padding:18px 22px; font-weight:600; display:flex; justify-content:space-between; color:#f5efe0; font-size:1rem; }
.faq-item .faq-question::after { content:'+'; font-size:1.2rem; color:#f0d78c; transition:0.3s; }
.faq-item.open .faq-question::after { transform:rotate(45deg); }
.faq-item .faq-answer { padding:0 22px 20px; display:none; opacity:0.7; color:#b5ad9b; line-height:1.7; }
.faq-item.open .faq-answer { display:block; }

.cta-banner { padding:64px 24px; text-align:center; border-radius:20px; color:#0c0b0f; background:linear-gradient(135deg,#f0d78c,#d4a843); box-shadow:0 20px 60px rgba(240,215,140,0.2); position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; top:-50%; left:-30%; width:200%; height:200%; background:radial-gradient(circle,rgba(255,255,255,0.1) 0%,transparent 60%); pointer-events:none; }
.cta-banner h2 { color:#0c0b0f; font-size:2rem; font-weight:800; }
.cta-banner .section-desc { color:rgba(12,11,15,0.7); }
.cta-banner .btn-primary { background:#0c0b0f; color:#f0d78c; box-shadow:0 4px 20px rgba(0,0,0,0.2); }
.cta-banner .btn-primary:hover { box-shadow:0 8px 30px rgba(0,0,0,0.3); }

.site-footer { padding:60px 0 28px; border-top:1px solid rgba(240,215,140,0.06); background:#0c0b0f; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; }
.footer-brand { }
.footer-brand p { color:#8a8478; font-size:0.9rem; line-height:1.7; margin-top:12px; }
.footer-col h4 { color:#f5efe0; font-size:0.95rem; font-weight:700; margin-bottom:16px; }
.footer-col a { display:block; color:#8a8478; text-decoration:none; font-size:0.9rem; padding:4px 0; transition:0.2s; }
.footer-col a:hover { color:#f0d78c; }
.footer-bottom { border-top:1px solid rgba(240,215,140,0.06); margin-top:40px; padding-top:24px; text-align:center; font-size:0.85rem; color:#6a655a; }

.text-accent { color:#f0d78c; }
.text-center { text-align:center; }
.seo-description { max-width:600px; margin:0 auto 48px; opacity:0.6; color:#b5ad9b; }
.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; gap:32px; }
  .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(240,215,140,0.15); }
  .main-nav.open { display:flex; flex-direction:column; position:absolute; top:68px; left:0; width:100%; background:rgba(12,11,15,0.98); padding:24px; gap:16px; border-bottom:1px solid rgba(240,215,140,0.1); }
  .hero h1 { font-size:2.2rem; }
  .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; }
}