﻿:root {
            --theme-base: rgb(223, 230, 233);
            --theme-light: rgba(223, 230, 233, 0.3);
            --theme-dark: #b2bec3;
            --primary-accent: #d63031;
            --bg-color: #f8f9fa;
            --text-main: #2d3436;
            --text-muted: #636e72;
            --white: #ffffff;
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .head-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .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; color: var(--text-main); white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; padding: 5px 0; border-bottom: 2px solid transparent; }
        .desktop-nav a:hover { color: var(--primary-accent); border-color: var(--primary-accent); }
        .menu-btn { display: none; background: none; border: none; padding: 10px; }
        .menu-btn span { display: block; width: 24px; height: 2px; background: var(--text-main); margin: 5px 0; }
        
        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition); }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--white); z-index: 1000; transition: var(--transition); display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-head { padding: 20px; border-bottom: 1px solid var(--theme-base); display: flex; justify-content: space-between; align-items: center; background: var(--theme-light); }
        .drawer-close { font-size: 28px; background: none; border: none; cursor: pointer; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 15px 0; font-size: 18px; border-bottom: 1px solid #f0f0f0; }

        
        .dl-hero { background: linear-gradient(180deg, var(--theme-base) 0%, var(--bg-color) 100%); padding: 100px 0 60px; }
        .dl-wrap { display: flex; align-items: center; justify-content: center; gap: 80px; }
        .dl-info { max-width: 500px; }
        .dl-info h1 { font-size: 42px; font-weight: 900; margin-bottom: 15px; color: var(--text-main); }
        .dl-info p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
        
        .dl-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
        .dl-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 220px; height: 60px; border-radius: 30px; font-size: 18px; font-weight: bold; cursor: pointer; transition: var(--transition); border: none; }
        .btn-ios { background: var(--text-main); color: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .btn-ios:hover { background: #111; transform: translateY(-3px); }
        .btn-android { background: var(--primary-accent); color: var(--white); box-shadow: 0 10px 20px rgba(214, 48, 49, 0.2); }
        .btn-android:hover { background: #b72626; transform: translateY(-3px); }
        
        .dl-qr { display: flex; align-items: center; gap: 20px; margin-top: 40px; padding-top: 30px; border-top: 1px dashed #ccc; }
        .qr-box { width: 120px; height: 120px; background: var(--white); padding: 10px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .qr-box img { width: 100%; height: 100%; }
        .qr-text { font-size: 14px; color: var(--text-muted); }
        
        .dl-mockup img { max-width: 350px; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }

        
        .steps-sec { padding: 80px 0; background: var(--white); }
        .sec-title { text-align: center; font-size: 30px; margin-bottom: 50px; }
        .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
        .step-card { position: relative; }
        .step-num { width: 50px; height: 50px; background: var(--theme-base); color: var(--text-main); font-size: 24px; font-weight: bold; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 20px; }
        .step-card h3 { font-size: 20px; margin-bottom: 15px; }
        .step-card p { color: var(--text-muted); font-size: 15px; }

        
        footer { background: #1e272e; color: #d2dae2; padding: 60px 0 20px; }
        .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .foot-about .logo span { color: var(--white); }
        .foot-about p { margin-top: 20px; font-size: 14px; line-height: 1.8; color: #808e9b; }
        .foot-title { font-size: 18px; color: var(--white); margin-bottom: 20px; font-weight: bold; }
        .foot-links li { margin-bottom: 10px; }
        .foot-links a { color: #808e9b; font-size: 15px; }
        .foot-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #2f3640; font-size: 14px; color: #808e9b; }

        @media (max-width: 992px) {
            .dl-wrap { flex-direction: column-reverse; text-align: center; }
            .dl-buttons { justify-content: center; }
            .dl-qr { justify-content: center; flex-direction: column; }
            .steps-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .menu-btn { display: block; }
            .foot-grid { grid-template-columns: 1fr; }
            .dl-info h1 { font-size: 32px; }
        }