﻿:root { --primary: rgb(245, 158, 11); --primary-hover: rgb(217, 119, 6); --primary-light: rgba(245, 158, 11, 0.1); --bg-body: #f8fafc; --bg-surface: #ffffff; --bg-dark: #0f172a; --text-main: #0f172a; --text-muted: #64748b; --border-color: #e2e8f0; --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1); --radius-lg: 16px; }
        * { 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%; display: block; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 44px; width: auto; max-width: 180px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 22px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .header { background: var(--bg-dark); color: #fff; position: sticky; top: 0; z-index: 50; border-bottom: 2px solid var(--primary); }
        .nav-wrapper { display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .header .logo span { color: #fff; }
        .desktop-nav ul { display: flex; gap: 32px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; color: #cbd5e1; }
        .desktop-nav a:hover { color: var(--primary); }
        .header-actions { display: none; }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 99; }
        .drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100vh; background: var(--bg-surface); transition: 0.4s; z-index: 100; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-header { padding: 24px 20px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-color); }
        .drawer-body { padding: 20px; overflow-y: auto; }
        .drawer-nav a { display: block; padding: 16px 0; font-weight: 600; border-bottom: 1px solid #f1f5f9; }
        .menu-btn, .close-btn { background: none; border: none; cursor: pointer; color: inherit; }
        @media (max-width: 768px) { .header-actions { display: block; } .desktop-nav { display: none; } }

        
        .dl-hero { background: var(--bg-dark); color: #fff; padding: 100px 0; overflow: hidden; position: relative; }
        .dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        @media (max-width: 992px) { .dl-grid { grid-template-columns: 1fr; text-align: center; } }
        .dl-content h1 { font-size: 48px; color: var(--primary); margin-bottom: 20px; font-weight: 800; }
        .dl-content p { font-size: 18px; color: #cbd5e1; margin-bottom: 40px; }
        
        .dl-buttons { display: flex; gap: 20px; margin-bottom: 40px; }
        @media (max-width: 992px) { .dl-buttons { justify-content: center; } }
        .btn-dl { display: flex; align-items: center; gap: 12px; padding: 16px 32px; border-radius: var(--radius-lg); font-weight: bold; font-size: 18px; cursor: pointer; border: 2px solid transparent; transition: 0.3s; }
        .btn-ios { background: #fff; color: #000; }
        .btn-ios:hover { background: #f1f5f9; transform: translateY(-3px); }
        .btn-android { background: var(--primary); color: #fff; }
        .btn-android:hover { background: var(--primary-hover); transform: translateY(-3px); }
        
        .qr-code-box { display: inline-block; background: rgba(255,255,255,0.1); padding: 20px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.2); }
        .qr-code-box img { width: 120px; height: 120px; margin: 0 auto 10px; background: #fff; padding: 8px; border-radius: 8px; }
        .qr-code-box p { font-size: 14px; margin: 0; color: #94a3b8; }

        .dl-steps { padding: 80px 0; background: var(--bg-surface); text-align: center; }
        .steps-container { display: flex; justify-content: space-between; position: relative; margin-top: 60px; }
        @media (max-width: 768px) { .steps-container { flex-direction: column; gap: 40px; } }
        .step-item { flex: 1; position: relative; padding: 0 20px; }
        .step-num { width: 60px; height: 60px; background: var(--primary); color: #fff; font-size: 24px; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 10px rgba(245,158,11,0.4); }
        .step-item h3 { font-size: 20px; margin-bottom: 12px; }
        .step-item p { color: var(--text-muted); font-size: 15px; }

        .footer { background: var(--bg-dark); color: #94a3b8; padding: 80px 0 20px; border-top: 4px solid var(--primary); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
        @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
        .footer-brand p { margin-top: 20px; font-size: 14px; }
        .footer-links h3, .footer-contact h3 { color: #fff; margin-bottom: 24px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; }