﻿:root { --primary: rgb(26,115,232); --bg-body: #f8fafc; --text-main: #1e293b; --border: #e2e8f0; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--primary); white-space: nowrap; }

        .header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .desktop-nav { display: flex; gap: 28px; align-items: center; }
        .desktop-nav a:hover { color: var(--primary); }
        .mobile-btn { display: none; cursor: pointer; color: #333; }

        .drawer-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer-mask.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: #fff; z-index: 999; transition: 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; }
        .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 4px; }
        .drawer-nav a { padding: 12px 0; border-bottom: 1px dashed var(--border); }

        .dl-hero { padding: 80px 0; overflow: hidden; }
        .dl-inner { display: flex; align-items: center; gap: 60px; background: #fff; border-radius: 24px; padding: 60px; box-shadow: 0 20px 40px rgba(0,0,0,0.04); }
        .dl-text { flex: 1; }
        .dl-text h1 { font-size: 40px; margin-bottom: 20px; color: #0f172a; line-height: 1.2; }
        .dl-text p { font-size: 18px; color: #64748b; margin-bottom: 40px; }
        .dl-actions { display: flex; gap: 30px; align-items: center; }
        .qr-box { padding: 15px; background: #fff; border: 1px solid var(--border); border-radius: 12px; text-align: center; }
        .qr-box img { width: 120px; height: 120px; margin-bottom: 10px; }
        .qr-box span { font-size: 14px; color: #64748b; }
        .btn-group { display: flex; flex-direction: column; gap: 15px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 30px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: 0.3s; width: 220px; }
        .btn-ios { background: #1e293b; color: #fff; }
        .btn-ios:hover { background: #0f172a; }
        .btn-and { background: var(--primary); color: #fff; }
        .btn-and:hover { background: rgb(22,98,200); }

        .dl-img { flex: 1; display: flex; justify-content: center; }
        .dl-img img { max-height: 500px; border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

        .dl-features { padding: 60px 0; }
        .feat-title { text-align: center; margin-bottom: 40px; font-size: 28px; }
        .dl-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
        .step-item { background: #fff; padding: 40px 20px; border-radius: 16px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
        .step-icon { width: 50px; height: 50px; border-radius: 50%; background: rgba(26,115,232,0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: bold; margin: 0 auto 20px; }

        .footer { background: #0f172a; color: #94a3b8; padding: 70px 0 20px; }
        .footer .logo span { color: #fff; }
        .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
        .footer-col h3 { color: #fff; font-size: 16px; margin-bottom: 25px; }
        .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; text-align: center; font-size: 14px; }

        @media(max-width: 992px) { .dl-inner { flex-direction: column; text-align: center; } .dl-actions { justify-content: center; flex-wrap: wrap; } .dl-steps { grid-template-columns: 1fr; } }
        @media(max-width: 768px) { .desktop-nav { display: none; } .mobile-btn { display: block; } .footer-inner { grid-template-columns: 1fr; } }