﻿:root { --theme-color: rgb(229,231,235); --bg-body: #f4f7f6; --bg-surface: #ffffff; --primary: #059669; --primary-hover: #047857; --text-main: #111827; --text-regular: #374151; --text-muted: #6b7280; --border-light: var(--theme-color); --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); --radius-md: 8px; --radius-lg: 12px; --container-width: 1200px; }
        * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: -apple-system, sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; } a { text-decoration: none; color: inherit; transition: all 0.3s ease; } img { max-width: 100%; display: block; } ul { list-style: none; }
        .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
        
        .header { background: var(--bg-surface); border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
        .header-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: 36px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; } .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .nav-desktop { display: flex; gap: 30px; align-items: center; } .nav-desktop a { font-weight: 500; color: var(--text-regular); font-size: 15px; position: relative; } .nav-desktop a:hover { color: var(--primary); }
        .header-actions { display: flex; gap: 12px; align-items: center; } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: var(--radius-md); font-weight: 600; cursor: pointer; transition: all 0.3s; font-size: 15px; } .btn-primary { background: var(--primary); color: #fff; } .btn-outline { border: 1px solid var(--border-light); background: var(--bg-surface); }
        .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; } .menu-toggle svg { width: 28px; height: 28px; fill: var(--text-main); }
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; visibility: hidden; transition: opacity 0.3s; } .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 280px; background: var(--bg-surface); z-index: 1000; transform: translateX(-100%); transition: transform 0.3s; display: flex; flex-direction: column; } .drawer.active { transform: translateX(0); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; } .drawer-close { background: none; border: none; cursor: pointer; } .drawer-close svg { width: 24px; height: 24px; fill: var(--text-muted); }
        .drawer-nav { padding: 20px 0; overflow-y: auto; } .drawer-nav a { display: block; padding: 12px 24px; font-size: 16px; font-weight: 500; border-left: 3px solid transparent; }
        
        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; font-size: 14px; margin-top: 0;} .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; } .footer-logo span { color: #fff; } .footer h4 { color: #fff; margin-bottom: 20px; } .footer-links li { margin-bottom: 12px; } .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; display: flex; justify-content: space-between; color: #6b7280; font-size: 13px; } .footer-bottom-links a { margin-left: 16px; }

        
        .dl-hero { padding: 100px 0; background: linear-gradient(135deg, #111827 0%, #064e3b 100%); color: #fff; overflow: hidden; position: relative; }
        .dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
        .dl-text h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
        .dl-text p { font-size: 18px; color: #d1fae5; margin-bottom: 40px; }
        .dl-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
        .btn-dl { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); padding: 16px 32px; border-radius: 40px; font-size: 18px; font-weight: 600; color: #fff; backdrop-filter: blur(10px); transition: all 0.3s; }
        .btn-dl:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
        .btn-dl svg { width: 28px; height: 28px; fill: currentColor; }
        .dl-mockup { text-align: center; position: relative; }
        .dl-mockup img { max-width: 320px; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); }

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

        @media (max-width: 768px) { .nav-desktop, .header-actions .btn { display: none; } .menu-toggle { display: block; } .footer-grid { grid-template-columns: 1fr; } .dl-grid, .step-grid { grid-template-columns: 1fr; text-align: center; } .dl-buttons { justify-content: center; } .dl-text h1 { font-size: 36px; } }