* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Microsoft YaHei',sans-serif; background:#2C3E50; color:#fff; line-height:1.75; }
.header { background:linear-gradient(135deg,#F39C12,#D35400); padding:24px; position:sticky; top:0; z-index:1000; box-shadow:0 4px 20px rgba(243,156,18,0.3); }
.header-inner { max-width:1280px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; }
.logo { font-size:34px; font-weight:900; color:white; text-shadow:2px 2px 4px rgba(0,0,0,0.3); }
.nav { display:flex; gap:35px; list-style:none; }
.nav a { color:white; text-decoration:none; padding:12px 24px; border-radius:8px; font-weight:600; transition:all 0.3s; }
.nav a:hover,.nav a.active { background:rgba(255,255,255,0.25); }
.hero { padding:120px 20px; text-align:center; background:linear-gradient(180deg,#2C3E50 0%,#1A252F 100%); }
.hero h1 { font-size:58px; margin-bottom:28px; background:linear-gradient(135deg,#F39C12,#D35400); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero p { font-size:22px; max-width:800px; margin:0 auto 45px; color:rgba(255,255,255,0.85); }
.hero-btn { display:inline-block; background:linear-gradient(135deg,#F39C12,#D35400); color:white; padding:20px 55px; border-radius:50px; text-decoration:none; font-weight:bold; font-size:18px; transition:all 0.3s; }
.hero-btn:hover { transform:scale(1.05); box-shadow:0 12px 40px rgba(243,156,18,0.4); }
.section { padding:95px 20px; }
.section-alt { background:#233140; }
.section-title { text-align:center; font-size:44px; margin-bottom:65px; color:#F39C12; }
.cards { max-width:1300px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:35px; }
.card { background:linear-gradient(145deg,#34495E,#2C3E50); padding:48px; border-radius:16px; text-align:center; border:2px solid rgba(243,156,18,0.2); transition:all 0.35s; }
.card:hover { transform:translateY(-12px); border-color:#F39C12; box-shadow:0 20px 60px rgba(243,156,18,0.25); }
.card-icon { font-size:68px; margin-bottom:25px; }
.card h3 { font-size:25px; margin-bottom:20px; color:#F39C12; }
.card p { color:rgba(255,255,255,0.7); line-height:1.8; }
.footer { background:linear-gradient(135deg,#F39C12,#D35400); color:white; padding:65px 20px 35px; margin-top:85px; }
.footer-inner { max-width:1300px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:50px; margin-bottom:40px; }
.footer-col h4 { font-size:22px; margin-bottom:25px; }
.footer-col a { color:rgba(255,255,255,0.85); text-decoration:none; display:block; margin-bottom:12px; }
.footer-col a:hover { color:white; }
.copyright { text-align:center; padding-top:30px; border-top:1px solid rgba(255,255,255,0.25); }
