﻿:root { --primary: rgb(220,38,38); --primary-hover: rgb(185,28,28); --primary-light: rgba(220,38,38,0.1); --text-main: #1f2937; --text-muted: #6b7280; --bg-body: #f9fafb; --bg-white: #ffffff; --border-color: #e5e7eb; --transition: all 0.3s ease; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        .container { width: 100%; 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: 20px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
        .header { background: var(--bg-white); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 50; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .nav-links { display: none; }
        .nav-links a { font-size: 16px; font-weight: 500; padding: 10px 15px; border-radius: 6px; }
        .nav-links a:hover { color: var(--primary); background: var(--primary-light); }
        .menu-btn { display: block; background: none; border: none; cursor: pointer; }
        .menu-btn svg { width: 28px; height: 28px; }
        @media (min-width: 768px) { .nav-links { display: flex; gap: 10px; } .menu-btn { display: none; } }
        
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 90; opacity: 0; visibility: hidden; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; bottom: 0; width: 280px; background: var(--bg-white); z-index: 100; transition: var(--transition); }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; }
        .drawer-close { background: none; border: none; cursor: pointer; }
        .drawer-nav { padding: 20px; }
        .drawer-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border-color); }

        
        .dl-hero { padding: 100px 0; background: radial-gradient(circle at right, #fee2e2 0%, var(--bg-white) 50%); overflow: hidden; }
        .dl-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
        @media (min-width: 992px) { .dl-grid { grid-template-columns: 1fr 1fr; } }
        .dl-content h1 { font-size: 42px; font-weight: 800; margin-bottom: 20px; color: #111; 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-buttons { display: flex; flex-direction: column; gap: 20px; max-width: 300px; }
        .btn-app { display: flex; align-items: center; gap: 15px; padding: 15px 25px; border-radius: 12px; font-size: 18px; font-weight: 700; color: white; background: #111; transition: var(--transition); justify-content: center; }
        .btn-app:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
        .btn-app.android { background: var(--primary); }
        .btn-app svg { width: 32px; height: 32px; }
        .btn-app div { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
        .btn-app div span { font-size: 12px; font-weight: 400; opacity: 0.8; }
        
        .dl-mockup { position: relative; text-align: center; }
        .dl-mockup img { max-width: 80%; margin: 0 auto; filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15)); }

        .steps-section { padding: 80px 0; background: var(--bg-white); }
        .steps-title { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 50px; }
        .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
        .step-item { padding: 30px; }
        .step-icon { width: 80px; height: 80px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; font-weight: 800; }
        .step-item h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }

        
        .footer { background: #111827; color: #d1d5db; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
        .footer-brand .logo span { color: white; }
        .footer-title { color: white; font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; display: flex; justify-content: space-between; font-size: 14px; }