﻿:root { --primary-color: rgb(255, 59, 48); --primary-hover: rgb(220, 40, 30); --primary-light: rgba(255, 59, 48, 0.1); --text-main: #2c3e50; --text-muted: #6c757d; --bg-body: #f8f9fa; --bg-white: #ffffff; --border-color: #eaeaea; --container-width: 1200px; --shadow-sm: 0 2px 8px rgba(0,0,0,0.05); --shadow-md: 0 8px 24px rgba(0,0,0,0.08); --radius-md: 8px; --radius-lg: 16px; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul, li { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
        
        .header { background: var(--bg-white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .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: 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-size: 16px; font-weight: 500; color: var(--text-main); }
        .nav-desktop a:hover { color: var(--primary-color); }
        .header-actions { display: flex; align-items: center; gap: 15px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .btn-outline { border: 1px solid var(--border-color); background: transparent; color: var(--text-main); }
        .btn-outline:hover { border-color: var(--primary-color); color: var(--primary-color); }
        .menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--text-main); }

        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--bg-white); z-index: 1002; transition: all 0.3s; overflow-y: auto; display: flex; flex-direction: column; }
        .drawer.active { left: 0; box-shadow: var(--shadow-md); }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 28px; cursor: pointer; color: var(--text-muted); line-height: 1; }
        .drawer-nav { padding: 20px 0; }
        .drawer-nav a { display: block; padding: 15px 20px; font-size: 16px; border-bottom: 1px solid #f0f0f0; }

        .footer { background: #1a1a2e; color: #a0a0b5; padding: 80px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
        .footer-brand .logo span { color: #fff; }
        .footer-title { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 14px; display: flex; flex-direction: column; gap: 10px; }
        .footer-bottom-links { display: flex; justify-content: center; gap: 20px; }

        @media (max-width: 768px) { .nav-desktop, .header-actions .btn-outline { display: none; } .menu-toggle { display: block; } .footer-grid { grid-template-columns: 1fr; } }

        
        .dl-hero { background: var(--bg-white); padding: 80px 0; border-bottom: 1px solid var(--border-color); text-align: center; }
        .dl-hero h1 { font-size: 36px; margin-bottom: 15px; color: #111; }
        .dl-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }
        .dl-cards { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
        .dl-card { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 40px; width: 320px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
        .dl-card:hover { border-color: var(--primary-color); box-shadow: var(--shadow-md); transform: translateY(-5px); }
        .dl-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary-color); opacity: 0; transition: opacity 0.3s; }
        .dl-card:hover::before { opacity: 1; }
        .dl-icon { font-size: 50px; margin-bottom: 20px; display: block; }
        .dl-card h3 { font-size: 24px; margin-bottom: 10px; }
        .dl-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 30px; }
        .btn-dl { display: block; width: 100%; padding: 14px; background: var(--primary-color); color: #fff; border-radius: var(--radius-md); font-weight: bold; font-size: 16px; text-decoration: none; transition: background 0.3s; }
        .btn-dl:hover { background: var(--primary-hover); }

        .dl-steps-section { padding: 80px 0; background: var(--bg-body); }
        .dl-steps-title { text-align: center; margin-bottom: 50px; font-size: 28px; }
        .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
        .step-item { background: var(--bg-white); padding: 30px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); position: relative; z-index: 2; }
        .step-num { width: 40px; height: 40px; background: var(--primary-color); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: bold; margin-bottom: 20px; }
        .step-item h4 { font-size: 18px; margin-bottom: 10px; }
        .step-item p { color: var(--text-muted); font-size: 14px; }
        
        @media (max-width: 992px) { .steps-grid { grid-template-columns: 1fr; } }