﻿:root { --primary: rgb(94,92,230); --text-main: #1a202c; --text-sub: #4a5568; --bg-body: #f7fafc; --border: #e2e8f0; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        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: 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; }
        .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); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .desktop-nav { display: flex; gap: 30px; align-items: center; }
        .desktop-nav a { font-weight: 500; color: var(--text-sub); }
        .desktop-nav a:hover { color: var(--primary); }
        .header-action { display: flex; align-items: center; gap: 15px; }
        .btn { display: inline-flex; align-items: center; padding: 10px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; }
        .btn-primary { background: var(--primary); color: #fff; }
        .menu-toggle { display: none; cursor: pointer; }
        .drawer-mask { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; z-index: 998; }
        .drawer-mask.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; 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; flex: 1; }
        .drawer-nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--border); }
        
        .site-footer { background: #1a202c; color: #a0aec0; padding: 80px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
        .footer-logo span { color: #fff; }
        ul { list-style: none; }

        
        .dl-hero { padding: 100px 0; background: #fff; }
        .dl-grid { display: flex; align-items: center; gap: 60px; }
        .dl-content { flex: 1; }
        .dl-content h1 { font-size: 48px; margin-bottom: 20px; color: var(--text-main); }
        .dl-content p { font-size: 18px; color: var(--text-sub); margin-bottom: 40px; }
        .dl-buttons { display: flex; gap: 20px; }
        .dl-btn { display: flex; align-items: center; gap: 15px; padding: 15px 30px; background: var(--text-main); color: #fff; border-radius: 12px; transition: 0.3s; }
        .dl-btn:hover { background: var(--primary); transform: translateY(-3px); }
        .dl-btn svg { width: 32px; height: 32px; }
        .dl-btn-text span { display: block; font-size: 12px; opacity: 0.8; }
        .dl-btn-text strong { display: block; font-size: 18px; font-weight: 600; }
        
        .dl-visual { flex: 1; text-align: center; }
        .dl-visual img { max-width: 80%; margin: 0 auto; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }

        .dl-steps { padding: 80px 0; background: var(--bg-body); }
        .step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; margin-top: 50px; }
        .step-card { background: #fff; padding: 40px; border-radius: 16px; position: relative; }
        .step-num { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 20px; }
        .step-card h3 { font-size: 20px; margin-top: 10px; margin-bottom: 10px; }

        @media (max-width: 768px) {
            .desktop-nav, .header-action .btn { display: none; }
            .menu-toggle { display: block; }
            .dl-grid, .step-grid { flex-direction: column; grid-template-columns: 1fr; text-align: center; }
            .dl-buttons { flex-direction: column; align-items: center; }
        }