@charset "UTF-8";

*{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;color:#e8f5e9;background:#0d1f14;line-height:1.6;overflow-x:hidden}
a{text-decoration:none;color:inherit;-webkit-tap-highlight-color:transparent}
ul,ol{list-style:none}
img{max-width:100%;display:block}
button{border:none;background:none;cursor:pointer;font-family:inherit}

:root{
  --primary:#ff8c42;
  --primary-light:#ffa366;
  --primary-dark:#e67634;
  --bg:#0d1f14;
  --bg-2:#132e1e;
  --bg-card:rgba(255,255,255,.05);
  --text:#e8f5e9;
  --text-muted:#8ba899;
  --border:rgba(255,255,255,.08);
  --max-w:1200px;
}

.container{max-width:var(--max-w);margin:0 auto;padding:0 24px}

.site-header{position:fixed;top:0;left:0;right:0;z-index:999;background:rgba(13,31,20,.9);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--border)}
.site-header .container{display:flex;align-items:center;justify-content:space-between;height:68px}
.logo{display:flex;align-items:center;gap:12px}
.logo-img{width:40px;height:40px;border-radius:10px;overflow:hidden;flex-shrink:0}
.logo-img img{width:100%;height:100%;object-fit:cover}
.logo-text{font-size:18px;font-weight:700;color:var(--text)}
.logo-text em{color:var(--primary);font-style:normal}

.nav-list{display:flex;gap:8px}
.nav-list li a{display:block;padding:8px 18px;border-radius:20px;font-size:14px;color:var(--text-muted);transition:all .3s}
.nav-list li a:hover,.nav-list li a.active{color:#fff;background:rgba(255,255,255,.08)}

.header-actions{display:flex;align-items:center;gap:16px}
.btn-download{display:inline-flex;align-items:center;gap:8px;padding:10px 24px;background:linear-gradient(135deg,var(--primary),var(--primary-light));color:#fff;border-radius:24px;font-size:14px;font-weight:600;box-shadow:0 4px 20px rgba(255,140,66,.3)}
.btn-download:hover{box-shadow:0 6px 24px rgba(255,140,66,.4);transform:translateY(-2px)}
.btn-download i{display:inline-block;width:16px;height:16px;background:url('../icons/android.svg') no-repeat center;background-size:contain}
.btn-download.ios i{background-image:url('../icons/apple.svg')}

.mobile-toggle{display:none;flex-direction:column;gap:5px;width:32px;height:32px;justify-content:center;align-items:center;background:none;border:none}
.mobile-toggle span{display:block;width:22px;height:2px;background:#fff;border-radius:2px;transition:.3s}
.mobile-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.mobile-toggle.active span:nth-child(2){opacity:0}
.mobile-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

.hero{min-height:100vh;padding:120px 0 80px;background:linear-gradient(180deg,#0d1f14 0%,#132e1e 40%,#0d1f14 100%);position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:20%;right:-10%;width:500px;height:500px;background:radial-gradient(circle,rgba(255,140,66,.15),transparent 70%);pointer-events:none}
.hero::after{content:'';position:absolute;bottom:10%;left:-10%;width:400px;height:400px;background:radial-gradient(circle,rgba(102,187,106,.1),transparent 70%);pointer-events:none}
.hero .container{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;position:relative;z-index:1}

.hero-badge{display:inline-flex;align-items:center;gap:6px;padding:6px 14px;background:rgba(255,140,66,.15);border:1px solid rgba(255,140,66,.3);color:var(--primary);border-radius:20px;font-size:12px;margin-bottom:24px}
.hero-badge::before{content:'✨'}
.hero-title{font-size:56px;font-weight:800;line-height:1.15;margin-bottom:20px;background:linear-gradient(135deg,#fff,#c8e6c9);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.hero-title em{background:linear-gradient(135deg,var(--primary),var(--primary-light));-webkit-background-clip:text;-webkit-text-fill-color:transparent;font-style:normal}
.hero-desc{font-size:17px;color:var(--text-muted);margin-bottom:36px;max-width:480px}

.hero-stats{display:flex;gap:40px;margin-bottom:40px}
.hero-stats .item{position:relative}
.hero-stats .num{font-size:32px;font-weight:800;color:var(--primary)}
.hero-stats .num::after{content:'+';font-size:18px}
.hero-stats .label{font-size:12px;color:var(--text-muted);margin-top:4px}
.hero-stats .item::after{content:'';position:absolute;right:-20px;top:50%;transform:translateY(-50%);width:1px;height:32px;background:rgba(255,255,255,.1)}
.hero-stats .item:last-child::after{display:none}

.hero-actions{display:flex;gap:12px;margin-bottom:16px}
.btn-hero{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;border-radius:28px;font-size:15px;font-weight:600;transition:all .3s}
.btn-hero.primary{background:linear-gradient(135deg,var(--primary),var(--primary-light));color:#fff;box-shadow:0 8px 32px rgba(255,140,66,.35)}
.btn-hero.primary:hover{transform:translateY(-3px);box-shadow:0 12px 40px rgba(255,140,66,.5)}
.btn-hero.secondary{background:rgba(255,255,255,.08);color:#fff;border:1px solid rgba(255,255,255,.15)}
.btn-hero.secondary:hover{background:rgba(255,255,255,.12)}
.hero-tips{font-size:12px;color:var(--text-muted);display:flex;gap:20px}
.hero-tips span::before{content:'✓';color:var(--primary);margin-right:4px}

.hero-visual{display:flex;justify-content:center;align-items:center;position:relative;min-height:500px}
.phone-mockup{width:260px;height:500px;border-radius:36px;border:6px solid #2a3a2e;background:linear-gradient(145deg,#1a2e1f,#0d1f14);overflow:hidden;box-shadow:0 30px 80px rgba(0,0,0,.5);position:relative;z-index:2}
.phone-screen{width:100%;height:100%;background:linear-gradient(180deg,#ff8c42,#ffa366 40%,#fff5eb);padding:24px 16px;display:flex;flex-direction:column;align-items:center}
.phone-notch{width:70px;height:18px;background:#0d1f14;border-radius:0 0 12px 12px;margin:-24px -16px 12px}
.phone-logo{width:72px;height:72px;border-radius:18px;overflow:hidden;margin-bottom:10px;box-shadow:0 6px 20px rgba(0,0,0,.2)}
.phone-logo img{width:100%;height:100%;object-fit:cover}
.phone-name{font-size:20px;font-weight:700;color:#333;margin-bottom:4px}
.phone-sub{font-size:11px;color:#666;margin-bottom:12px}
.phone-desc{font-size:12px;color:#555;margin-bottom:16px;text-align:center;line-height:1.5}
.phone-qr{width:110px;height:110px;background:#fff;border-radius:10px;padding:8px;margin-bottom:14px;box-shadow:0 4px 14px rgba(0,0,0,.1);display:flex;align-items:center;justify-content:center}
.phone-qr-inner{width:100%;height:100%;background:repeating-linear-gradient(0deg,#000 0,#000 2px,transparent 2px,transparent 4px),repeating-linear-gradient(90deg,#000 0,#000 2px,transparent 2px,transparent 4px);background-size:8px 8px;border-radius:3px}
.phone-btns{display:flex;flex-direction:column;gap:6px;width:100%}
.phone-btn{display:flex;align-items:center;justify-content:center;gap:6px;padding:9px;background:#fff;border-radius:7px;font-size:12px;font-weight:600}
.phone-btn.android{color:#3ddc84}
.phone-btn.ios{color:#007aff}
.phone-btn i{width:14px;height:14px;background-size:contain;background-repeat:no-repeat;background-position:center}
.phone-btn.android i{background-image:url('../icons/android.svg')}
.phone-btn.ios i{background-image:url('../icons/apple.svg')}

.float-card{position:absolute;background:rgba(255,255,255,.08);backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:12px 16px;display:flex;align-items:center;gap:10px;z-index:3}
.float-card .icon{width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px}
.float-card .icon.orange{background:rgba(255,140,66,.2);color:var(--primary)}
.float-card .icon.green{background:rgba(76,175,80,.2);color:#66bb6a}
.float-card strong{display:block;font-size:13px;color:#fff}
.float-card span{font-size:11px;color:var(--text-muted)}
.float-card.top{top:30px;left:-20px}
.float-card.bottom{bottom:50px;right:-30px}

.section{padding:80px 0}
.section-title{text-align:center;margin-bottom:48px}
.section-label{display:inline-block;font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--text-muted);padding:4px 10px;border:1px solid var(--border);border-radius:14px;margin-bottom:10px}
.section-title h2{font-size:36px;font-weight:800}
.section-title p{font-size:15px;color:var(--text-muted);margin-top:8px}

.preview-row{display:flex;justify-content:center;gap:20px;align-items:flex-end}
.preview-phone{width:160px;height:320px;border-radius:24px;border:3px solid #2a3a2e;overflow:hidden;background:#1a2e1f}
.preview-phone.featured{width:180px;height:360px;border-color:var(--primary);box-shadow:0 16px 50px rgba(255,140,66,.3)}
.preview-screen{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:13px}
.preview-screen.s1{background:linear-gradient(180deg,#1a3a28,#0d1f14);color:var(--text-muted)}
.preview-screen.s2{background:linear-gradient(180deg,#ff8c42,#ffb366);color:#fff}
.preview-screen.s2 .mini-logo{width:44px;height:44px;border-radius:10px;overflow:hidden;margin-bottom:6px}
.preview-screen.s2 .mini-logo img{width:100%;height:100%;object-fit:cover}
.preview-screen.s2 .t1{font-size:14px;font-weight:700}
.preview-screen.s2 .t2{font-size:16px;font-weight:800;margin-top:2px}
.preview-screen.s2 .t3{font-size:11px;margin-top:6px;opacity:.9}
.preview-screen.s3{background:linear-gradient(180deg,#2a1f3d,#1a1530);color:#ccc}
.preview-screen.s4{background:linear-gradient(180deg,#3d2817,#2a1a0f);color:#d4a574}
.preview-screen.s5{background:linear-gradient(180deg,#1a2838,#0f1820);color:#8899aa}

.comic-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.comic-card{background:var(--bg-card);border:1px solid var(--border);border-radius:18px;overflow:hidden;transition:transform .3s,border-color .3s}
.comic-card:hover{transform:translateY(-6px);border-color:rgba(255,140,66,.3)}
.comic-cover{height:200px;position:relative;background-color:#1a2e1f}
.comic-cover.c1{background:linear-gradient(135deg,#1a3a28,#2d5a3d)}
.comic-cover.c2{background:linear-gradient(135deg,#3d1a28,#5a2d3d)}
.comic-cover.c3{background:linear-gradient(135deg,#1a2838,#2d3d5a)}
.comic-tag{position:absolute;top:12px;left:12px;background:var(--primary);color:#fff;font-size:11px;padding:3px 10px;border-radius:10px}
.comic-rank{position:absolute;top:12px;right:12px;background:rgba(0,0,0,.5);backdrop-filter:blur(8px);color:#fff;font-size:11px;padding:3px 8px;border-radius:8px}
.comic-info{padding:18px}
.comic-info h3{font-size:16px;font-weight:700;margin-bottom:6px}
.comic-info p{font-size:12px;color:var(--text-muted);margin-bottom:10px;line-height:1.5}
.comic-meta{display:flex;gap:10px;font-size:11px;color:var(--text-muted)}

.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.feature-card{background:var(--bg-card);border:1px solid var(--border);border-radius:18px;padding:28px;transition:all .3s;position:relative}
.feature-card:hover{background:rgba(255,255,255,.08);border-color:rgba(255,140,66,.2);transform:translateY(-3px)}
.feature-icon{width:48px;height:48px;border-radius:14px;background:linear-gradient(135deg,rgba(255,140,66,.2),rgba(255,163,102,.1));display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:16px}
.feature-card h3{font-size:17px;margin-bottom:8px}
.feature-card p{font-size:13px;color:var(--text-muted);line-height:1.6}

.highlight-wrap{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.highlight-list{display:flex;flex-direction:column;gap:18px}
.highlight-item{display:flex;gap:16px;padding:20px;background:var(--bg-card);border:1px solid var(--border);border-radius:14px}
.highlight-num{width:42px;height:42px;border-radius:10px;background:linear-gradient(135deg,var(--primary),var(--primary-light));color:#fff;display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:800;flex-shrink:0}
.highlight-item h4{font-size:16px;margin-bottom:4px}
.highlight-item p{font-size:12px;color:var(--text-muted)}
.highlight-panel{background:linear-gradient(145deg,rgba(255,140,66,.1),rgba(255,163,102,.05));border:1px solid rgba(255,140,66,.2);border-radius:22px;padding:28px;display:flex;flex-direction:column;gap:16px}
.preview-item{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:16px;display:flex;align-items:center;gap:14px}
.preview-item .p-icon{width:42px;height:42px;border-radius:10px;background:linear-gradient(135deg,var(--primary),var(--primary-light));display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0}
.preview-item strong{display:block;font-size:14px;margin-bottom:2px}
.preview-item span{font-size:12px;color:var(--text-muted)}

.screens-row{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.screen-card{aspect-ratio:9/16;border-radius:16px;overflow:hidden;position:relative;border:1px solid var(--border)}
.screen-bg{width:100%;height:100%}
.screen-bg.orange{background:linear-gradient(180deg,#ff8c42,#ffb366 50%,#fff5eb)}
.screen-bg.dark{background:linear-gradient(180deg,#1a3a28,#0d1f14)}
.screen-bg.warm{background:linear-gradient(180deg,#3d2817,#5a3820)}
.screen-bg.purple{background:linear-gradient(180deg,#2a1f3d,#3d2850)}
.screen-bg.blue{background:linear-gradient(180deg,#1a2838,#2a3850)}
.screen-label{position:absolute;bottom:10px;left:10px;right:10px;background:rgba(0,0,0,.6);backdrop-filter:blur(8px);padding:6px 10px;border-radius:8px;font-size:11px}
.screen-label strong{display:block;color:#fff}
.screen-label span{color:var(--text-muted);font-size:10px}

.guide-row{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:40px}
.guide-step{text-align:center;position:relative}
.guide-icon{width:64px;height:64px;border-radius:18px;background:linear-gradient(135deg,rgba(255,140,66,.2),rgba(255,163,102,.1));border:1px solid rgba(255,140,66,.2);display:flex;align-items:center;justify-content:center;font-size:28px;margin:0 auto 16px}
.guide-num{position:absolute;top:-8px;right:calc(50% - 38px);width:24px;height:24px;border-radius:50%;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:12px}
.guide-step h4{font-size:15px;margin-bottom:6px}
.guide-step p{font-size:12px;color:var(--text-muted)}

.update-list{max-width:680px;margin:0 auto}
.update-item{display:flex;gap:16px;padding:20px 24px;background:var(--bg-card);border-radius:14px;border-left:3px solid var(--primary);margin-bottom:16px}
.update-badge{width:40px;height:40px;border-radius:10px;background:rgba(255,140,66,.15);color:var(--primary);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:13px;flex-shrink:0}
.update-item h4{font-size:15px;margin-bottom:4px}
.update-item p{font-size:12px;color:var(--text-muted);line-height:1.6}
.update-date{font-size:11px;color:var(--text-muted);margin-top:4px}

.faq-list{max-width:720px;margin:0 auto}
.faq-item{background:var(--bg-card);border:1px solid var(--border);border-radius:14px;margin-bottom:12px;overflow:hidden}
.faq-q{padding:18px 22px;display:flex;justify-content:space-between;align-items:center;font-weight:600;font-size:14px;cursor:pointer}
.faq-q::after{content:'+';font-size:20px;color:var(--primary);transition:transform .3s}
.faq-item.open .faq-q::after{content:'-'}
.faq-a{padding:0 22px 18px;font-size:13px;color:var(--text-muted);line-height:1.7;display:none}
.faq-item.open .faq-a{display:block}

.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.review-card{background:var(--bg-card);border:1px solid var(--border);border-radius:18px;padding:24px}
.review-head{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.review-avatar{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:15px;color:#fff}
.review-avatar.a1{background:linear-gradient(135deg,#ff8c42,#ffa366)}
.review-avatar.a2{background:linear-gradient(135deg,#66bb6a,#81c784)}
.review-avatar.a3{background:linear-gradient(135deg,#42a5f5,#64b5f6)}
.review-head strong{display:block;font-size:14px}
.review-head span{font-size:11px;color:var(--text-muted)}
.review-stars{color:var(--primary);font-size:12px;margin-bottom:10px;letter-spacing:2px}
.review-card p{font-size:12px;color:var(--text-muted);line-height:1.6}

.cta-box{background:linear-gradient(135deg,rgba(255,140,66,.15),rgba(255,163,102,.05));border:1px solid rgba(255,140,66,.25);border-radius:28px;padding:64px 24px;text-align:center}
.cta-box h2{font-size:36px;font-weight:800;margin-bottom:12px}
.cta-box p{font-size:16px;color:var(--text-muted);margin-bottom:32px}
.cta-actions{display:flex;justify-content:center;gap:16px;flex-wrap:wrap}

.site-footer{background:rgba(0,0,0,.3);border-top:1px solid var(--border);padding:36px 0 24px}
.footer-row{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px}
.footer-logo{display:flex;align-items:center;gap:12px}
.footer-logo-img{width:32px;height:32px;border-radius:8px;overflow:hidden}
.footer-logo-img img{width:100%;height:100%;object-fit:cover}
.footer-logo strong{display:block;font-size:14px}
.footer-logo span{font-size:11px;color:var(--text-muted)}
.footer-links{display:flex;gap:20px;font-size:12px;color:var(--text-muted)}
.footer-links a:hover{color:var(--primary)}

.download-section{padding:80px 0;background:linear-gradient(180deg,#0d1f14,#132e1e)}
.download-box{background:linear-gradient(145deg,#1a3a28,#0d1f14);border-radius:28px;padding:48px;display:grid;grid-template-columns:260px 1fr;gap:48px;align-items:center;border:1px solid var(--border)}
.download-box-simple{display:block;text-align:center}
.download-box-simple .download-info{max-width:500px;margin:0 auto}
.download-box-simple .download-options{max-width:340px;margin:24px auto 0}
.download-qr{width:240px;height:240px;background:#fff;border-radius:20px;padding:16px;display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:0 16px 50px rgba(0,0,0,.3)}
.download-qr-img{width:180px;height:180px;background:repeating-linear-gradient(0deg,#000 0,#000 3px,transparent 3px,transparent 6px),repeating-linear-gradient(90deg,#000 0,#000 3px,transparent 3px,transparent 6px);background-size:10px 10px;border-radius:6px;margin-bottom:10px}
.download-qr-tip{font-size:12px;color:#666}
.download-info h2{font-size:28px;margin-bottom:12px}
.download-info>p{font-size:15px;color:var(--text-muted);margin-bottom:28px;max-width:420px}
.download-options{display:flex;flex-direction:column;gap:12px;max-width:340px}
.download-opt{display:flex;align-items:center;gap:14px;padding:16px 20px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:14px;transition:all .3s}
.download-opt:hover{background:rgba(255,255,255,.1);border-color:var(--primary)}
.download-opt-icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center}
.download-opt-icon.android{background:rgba(61,220,132,.2);color:#3ddc84}
.download-opt-icon.ios{background:rgba(0,122,255,.2);color:#007aff}
.download-opt-icon i{width:24px;height:24px;background-size:contain;background-repeat:no-repeat;background-position:center}
.download-opt-icon.android i{background-image:url('../icons/android.svg')}
.download-opt-icon.ios i{background-image:url('../icons/apple.svg')}
.download-opt-info strong{display:block;font-size:15px;margin-bottom:3px}
.download-opt-info span{font-size:12px;color:var(--text-muted)}

@media(max-width:1024px){
  .hero-title{font-size:44px}
  .section-title h2{font-size:30px}
  .comic-grid,.feature-grid,.review-grid{grid-template-columns:repeat(2,1fr)}
  .guide-row{grid-template-columns:repeat(2,1fr)}
  .highlight-wrap{grid-template-columns:1fr;gap:30px}
}

@media(max-width:768px){
  .container{padding:0 16px}
  .site-header .container{height:56px}
  .logo-text{font-size:15px}
  .logo-img{width:34px;height:34px}
  .nav-list{position:fixed;top:56px;left:0;right:0;background:rgba(13,31,20,.98);backdrop-filter:blur(16px);flex-direction:column;gap:0;padding:16px 0;max-height:0;overflow:hidden;transition:max-height .3s ease}
  .nav-list.open{max-height:400px}
  .nav-list li{width:100%}
  .nav-list li a{padding:14px 24px;border-radius:0;font-size:15px}
  .nav-list li a.active::after{display:none}
  .header-actions .btn-download{display:none}
  .mobile-toggle{display:flex}
  .hero{padding:80px 0 50px;min-height:auto}
  .hero .container{grid-template-columns:1fr;gap:40px}
  .hero-content{text-align:center}
  .hero-badge{margin:0 auto 20px}
  .hero-title{font-size:34px}
  .hero-desc{font-size:14px;margin:0 auto 28px}
  .hero-stats{justify-content:center;gap:24px;margin:0 auto 28px}
  .hero-stats .num{font-size:26px}
  .hero-stats .item::after{display:none}
  .hero-actions{justify-content:center}
  .hero-tips{justify-content:center;flex-wrap:wrap}
  .hero-visual{min-height:400px}
  .phone-mockup{width:220px;height:420px}
  .float-card.top{left:10px;top:20px}
  .float-card.bottom{right:10px;bottom:30px}
  .section{padding:50px 0}
  .section-title h2{font-size:24px}
  .section-title{margin-bottom:32px}
  .comic-grid,.feature-grid,.review-grid{grid-template-columns:1fr}
  .guide-row{grid-template-columns:repeat(2,1fr);gap:24px}
  .highlight-wrap{grid-template-columns:1fr}
  .preview-row{gap:12px}
  .preview-phone{width:110px;height:220px}
  .preview-phone.featured{width:125px;height:250px}
  .preview-screen{font-size:11px}
  .download-box{padding:24px}
  .download-info h2{font-size:22px}
  .download-opt{padding:14px 16px}
  .cta-box{padding:40px 20px}
  .cta-box h2{font-size:26px}
  .footer-row{flex-direction:text-align:center}
  .footer-links{justify-content:center}
  .hero-tips{font-size:11px;gap:12px}
  .btn-hero{padding:12px 24px;font-size:14px}
}

@media(max-width:480px){
  .hero-title{font-size:28px}
  .section-title h2{font-size:20px}
  .guide-row{grid-template-columns:1fr 1fr}
  .guide-icon{width:56px;height:56px;font-size:24px}
  .hero-stats{gap:16px}
  .hero-stats .num{font-size:22px}
  .hero-stats .label{font-size:11px}
}
