﻿:root { --primary: rgb(52,199,89); --primary-hover: #29b34a; --primary-light: rgba(52,199,89,0.08); --bg-color: #f8fafc; --text-main: #0f172a; --text-muted: #64748b; --border-color: #e2e8f0; --white: #ffffff; --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: var(--font-main); color: var(--text-main); background-color: var(--bg-color); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
        a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; 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; letter-spacing: -0.5px;}

        .site-header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .desktop-nav .nav-list { display: flex; gap: 32px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; color: var(--text-muted); position: relative; }
        .desktop-nav a:hover { color: var(--primary); }
        .desktop-nav a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
        .desktop-nav a:hover::after { width: 100%; }
        
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .btn-primary { background: var(--primary); color: var(--white); padding: 10px 24px; border-radius: 8px; font-weight: 600; box-shadow: 0 4px 14px rgba(52,199,89,0.3); display: inline-block;}
        .btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(52,199,89,0.4); color: var(--white); }
        .btn-outline { border: 1px solid var(--border-color); padding: 10px 24px; border-radius: 8px; font-weight: 600; background: var(--white); color: var(--text-main); display: inline-block;}
        .btn-outline:hover { border-color: var(--primary); color: var(--primary); }

        .mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; width: 30px; }
        .mobile-menu-toggle span { display: block; width: 100%; height: 3px; background: var(--text-main); border-radius: 2px; transition: 0.3s; }
        .mobile-drawer { position: fixed; inset: 0; z-index: 999; visibility: hidden; opacity: 0; transition: 0.3s; }
        .mobile-drawer.active { visibility: visible; opacity: 1; }
        .drawer-mask { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
        .drawer-content { position: absolute; top: 0; left: 0; bottom: 0; width: 280px; background: var(--white); transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
        .mobile-drawer.active .drawer-content { transform: translateX(0); }
        .drawer-header { padding: 24px 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text-muted); }
        .drawer-nav { padding: 20px; flex: 1; overflow-y: auto; }
        .drawer-nav li { margin-bottom: 16px; }
        .drawer-nav a { display: block; font-size: 18px; font-weight: 500; color: var(--text-main); padding: 8px 0; border-bottom: 1px dashed var(--border-color); }

        .site-footer { background: var(--white); border-top: 1px solid var(--border-color); padding: 80px 0 20px; margin-top: auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
        .footer-brand .brand-desc { margin-top: 20px; color: var(--text-muted); font-size: 15px; max-width: 300px; }
        .footer-title { font-size: 18px; font-weight: 700; margin-bottom: 24px; color: var(--text-main); }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: var(--text-muted); font-size: 15px; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-contact p { color: var(--text-muted); margin-bottom: 12px; font-size: 15px; }
        .footer-bottom { border-top: 1px solid var(--border-color); padding-top: 24px; text-align: center; color: #94a3b8; font-size: 14px; }

        
        .dl-hero { padding: 100px 0; overflow: hidden; background: linear-gradient(180deg, var(--bg-color) 0%, var(--white) 100%); }
        .dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .dl-content h1 { font-size: 48px; font-weight: 800; margin-bottom: 24px; line-height: 1.2; }
        .dl-content h1 span { color: var(--primary); }
        .dl-content p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
        
        .dl-box { background: var(--white); border: 1px solid var(--border-color); border-radius: 24px; padding: 30px; display: flex; gap: 24px; align-items: center; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
        .qr-code { width: 120px; height: 120px; background: var(--bg-color); border-radius: 12px; padding: 10px; display: flex; align-items: center; justify-content: center; border: 1px dashed var(--border-color); font-size: 12px; color: var(--text-muted); text-align: center;}
        .dl-btns { display: flex; flex-direction: column; gap: 12px; flex: 1; }
        .btn-icon { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px; border-radius: 12px; font-weight: 600; font-size: 16px; border: 2px solid; transition: 0.3s; }
        .btn-ios { background: #000; color: #fff; border-color: #000; }
        .btn-ios:hover { background: #333; }
        .btn-adr { background: var(--primary); color: #fff; border-color: var(--primary); }
        .btn-adr:hover { background: var(--primary-hover); }

        .dl-visual { position: relative; display: flex; justify-content: center; }
        .dl-visual img { max-height: 600px; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)); }

        .steps-section { padding: 80px 0; background: var(--white); }
        .steps-head { text-align: center; margin-bottom: 60px; }
        .steps-head h2 { font-size: 36px; font-weight: 800; }
        .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
        .steps-grid::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: dashed 2px var(--border-color); z-index: 0; }
        .step-item { text-align: center; position: relative; z-index: 1; }
        .step-icon { width: 64px; height: 64px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; margin: 0 auto 20px; border: 6px solid var(--white); box-shadow: var(--shadow-md); }
        .step-item h4 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .step-item p { color: var(--text-muted); font-size: 15px; }

        @media(max-width: 1024px) {
            .dl-grid { grid-template-columns: 1fr; text-align: center; }
            .dl-box { flex-direction: column; max-width: 400px; margin: 0 auto 24px; }
            .steps-grid::before { display: none; }
            .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
        }
        @media(max-width: 768px) {
            .desktop-nav, .header-actions .btn-outline { display: none; }
            .mobile-menu-toggle { display: flex; }
            .dl-content h1 { font-size: 36px; }
            .steps-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-links a:hover { padding-left: 0; }
            .logo { justify-content: center; }
            .drawer-header .logo { justify-content: flex-start; }
        }