﻿:root { --primary: rgb(67,56,202); --primary-light: rgba(67,56,202, 0.1); --primary-hover: rgb(55,48,163); --text-main: #0f172a; --text-sub: #475569; --text-muted: #94a3b8; --bg-body: #f8fafc; --bg-card: #ffffff; --border-color: #e2e8f0; --radius-md: 12px; --radius-lg: 20px; --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-main); background: var(--bg-body); 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; }
        
        
        .header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(226, 232, 240, 0.5); } .header.scrolled { background: #ffffff; box-shadow: var(--shadow-sm); }
        .nav-wrapper { display: flex; align-items: center; justify-content: space-between; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; } .logo img { display: block; height: 36px; width: auto; max-width: 150px; object-fit: contain; flex-shrink: 0; } .logo span { display: inline-block; font-size: 20px; font-weight: 700; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .desktop-nav ul { display: flex; gap: 30px; } .desktop-nav a { font-size: 15px; font-weight: 500; } .desktop-nav a:hover { color: var(--primary); }
        .header-action { display: flex; align-items: center; gap: 15px; } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 8px; font-weight: 500; cursor: pointer; transition: 0.3s; } .btn-primary { background: var(--primary); color: #fff; } .btn-primary:hover { background: var(--primary-hover); } .btn-outline { border: 1px solid var(--primary); color: var(--primary); } .btn-outline:hover { background: var(--primary-light); }
        .menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; width: 24px; } .menu-toggle span { display: block; height: 2px; background: var(--text-main); }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; z-index: 999; transition: 0.3s; } .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-nav { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 1000; transition: 0.3s; display: flex; flex-direction: column; } .drawer-nav.active { transform: translateX(300px); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; } .drawer-close { font-size: 24px; cursor: pointer; color: var(--text-muted); }
        .drawer-body { padding: 20px; overflow-y: auto; flex: 1; } .drawer-body ul li { margin-bottom: 15px; } .drawer-body ul li a { display: block; font-size: 16px; font-weight: 500; padding: 8px 0; }
        .footer { background: #0f172a; color: #cbd5e1; padding: 80px 0 30px; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 60px; } .footer-brand .logo span { color: #fff; } .footer-brand p { font-size: 14px; margin-top: 20px; color: #94a3b8; } .footer-col h4 { color: #fff; margin-bottom: 20px; } .footer-col ul li { margin-bottom: 12px; } .footer-col ul li a { font-size: 14px; } .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #64748b; } .footer-links a { margin-left: 15px; }

        
        .dl-hero { padding: 150px 0 80px; background: #fff; border-bottom: 1px solid var(--border-color); }
        .dl-wrap { display: flex; align-items: center; gap: 60px; }
        .dl-content { flex: 1; }
        .dl-content h1 { font-size: 42px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
        .dl-content p { font-size: 18px; color: var(--text-sub); margin-bottom: 40px; }
        .dl-buttons { display: flex; gap: 20px; margin-bottom: 30px; }
        .dl-btn { display: flex; align-items: center; gap: 15px; padding: 15px 30px; border-radius: var(--radius-md); font-weight: 600; text-align: left; transition: 0.3s; border: 2px solid transparent; }
        .btn-ios { background: #000; color: #fff; } .btn-ios:hover { background: #333; box-shadow: var(--shadow-md); transform: translateY(-2px); }
        .btn-android { background: var(--primary); color: #fff; } .btn-android:hover { background: var(--primary-hover); box-shadow: var(--shadow-md); transform: translateY(-2px); }
        .btn-icon svg { width: 28px; height: 28px; fill: currentColor; }
        .dl-notes { font-size: 13px; color: var(--text-muted); }
        
        .dl-visual { flex: 1; text-align: right; }
        .dl-visual img { display: inline-block; max-height: 500px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

        .steps-section { padding: 80px 0; background: var(--bg-body); }
        .sec-title { text-align: center; margin-bottom: 50px; font-size: 32px; font-weight: 700; }
        .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .step-card { background: #fff; padding: 40px; border-radius: var(--radius-lg); text-align: center; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
        .step-icon { width: 64px; height: 64px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; margin: 0 auto 20px; }
        .step-card h3 { font-size: 20px; margin-bottom: 15px; }
        .step-card p { color: var(--text-sub); font-size: 14px; }

        @media (max-width: 992px) { .dl-wrap { flex-direction: column; text-align: center; } .dl-buttons { justify-content: center; } .dl-visual { margin-top: 40px; } .steps-grid { grid-template-columns: 1fr; } }
        @media (max-width: 768px) { .desktop-nav, .header-action .btn-outline { display: none; } .menu-toggle { display: flex; } .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; } .dl-buttons { flex-direction: column; align-items: center; } .dl-btn { width: 100%; justify-content: center; max-width: 300px; } }