﻿:root {
            --primary: rgb(48,209,88);
            --primary-dark: rgb(38,180,75);
            --bg-color: #f8f9fc;
            --text-main: #2c3e50;
            --text-light: #64748b;
            --white: #ffffff;
            --border-color: #e2e8f0;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
        body { background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .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: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 22px; font-weight: 800; line-height: 1; color: #111; white-space: nowrap; }
        
        .header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-weight: 500; font-size: 16px; transition: color 0.3s; }
        .desktop-nav a:hover { color: var(--primary); }
        .mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
        .mobile-toggle svg { width: 28px; height: 28px; fill: var(--text-main); }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 200; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--white); z-index: 201; transition: 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); }
        .drawer-close { background: none; border: none; cursor: pointer; }
        .drawer-close svg { width: 24px; height: 24px; fill: var(--text-main); }
        .drawer-nav { padding: 20px; display: flex; flex-direction: column; gap: 15px; overflow-y: auto; }
        .drawer-nav a { font-size: 16px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid #f1f5f9; display: block; }

        .dl-hero { padding: 100px 0; background: linear-gradient(135deg, rgba(48,209,88,0.1) 0%, rgba(48,209,88,0.02) 100%); }
        .dl-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
        .dl-content { flex: 1; max-width: 550px; }
        .dl-title { font-size: 42px; font-weight: 800; margin-bottom: 20px; }
        .dl-title span { color: var(--primary); }
        .dl-desc { font-size: 18px; color: var(--text-light); margin-bottom: 40px; }
        
        .dl-buttons { display: flex; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
        .btn-dl { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 8px; font-size: 16px; font-weight: 600; text-decoration: none; transition: 0.3s; }
        .btn-ios { background: #111; color: #fff; }
        .btn-ios:hover { background: #333; transform: translateY(-3px); }
        .btn-android { background: var(--primary); color: #fff; }
        .btn-android:hover { background: var(--primary-dark); transform: translateY(-3px); }
        .btn-dl svg { width: 24px; height: 24px; fill: currentColor; }
        
        .dl-qr { display: flex; align-items: center; gap: 20px; background: var(--white); padding: 20px; border-radius: 12px; display: inline-flex; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .dl-qr img { width: 100px; height: 100px; }
        .dl-qr p { font-size: 14px; color: var(--text-light); font-weight: 500; }

        .dl-image { flex: 1; text-align: center; }
        .dl-image img { max-width: 100%; height: auto; transform: perspective(1000px) rotateY(-5deg); filter: drop-shadow(0 30px 40px rgba(0,0,0,0.1)); }

        .steps-section { padding: 80px 0; background: var(--white); }
        .steps-title { text-align: center; font-size: 32px; font-weight: 700; margin-bottom: 50px; }
        .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .step-card { text-align: center; padding: 40px 20px; }
        .step-icon { width: 80px; height: 80px; background: rgba(48,209,88,0.1); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--primary); font-size: 32px; font-weight: 800; }
        .step-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
        .step-card p { color: var(--text-light); font-size: 15px; }

        .footer { background: #1e293b; color: #cbd5e1; padding: 60px 0 20px; }
        .footer-inner { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 40px; }
        .footer-brand { flex: 1; min-width: 300px; max-width: 400px; }
        .footer-brand .logo span { color: var(--white); }
        .footer-desc { margin-top: 20px; font-size: 14px; line-height: 1.8; }
        .footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
        .link-group h4 { color: var(--white); font-size: 16px; font-weight: 600; margin-bottom: 20px; }
        .link-group ul { display: flex; flex-direction: column; gap: 12px; }
        .link-group a { font-size: 14px; transition: color 0.3s; }
        .link-group a:hover { color: var(--primary); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 13px; }

        @media (max-width: 992px) {
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .dl-inner { flex-direction: column; text-align: center; }
            .dl-content { max-width: 100%; }
            .dl-buttons { justify-content: center; }
            .dl-qr { justify-content: center; margin: 0 auto; }
            .steps-grid { grid-template-columns: 1fr; }
        }