﻿:root { --primary: rgb(139,92,246); --primary-dark: rgb(109, 40, 217); --primary-light: rgba(139,92,246, 0.1); --text-main: #111827; --text-muted: #6b7280; --bg-body: #f9fafb; --bg-white: #ffffff; --border-color: #e5e7eb; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; padding-top: 70px; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        .header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: fixed; top: 0; width: 100%; z-index: 100; border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 36px; max-width: 150px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 800; color: var(--primary-dark); }
        .desktop-nav { display: none; }
        @media (min-width: 992px) { .desktop-nav { display: flex; align-items: center; gap: 30px; } .desktop-nav ul { display: flex; gap: 24px; } .desktop-nav a { font-weight: 500; } .desktop-nav a:hover { color: var(--primary); } .btn-primary { background: var(--primary); color: white !important; padding: 8px 20px; border-radius: 6px; font-weight: 600; } }
        .mobile-menu-btn { display: block; width: 24px; height: 24px; cursor: pointer; }
        .mobile-menu-btn span { display: block; width: 100%; height: 2px; background: var(--text-main); margin-bottom: 5px; }
        @media (min-width: 992px) { .mobile-menu-btn { display: none; } }
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--bg-white); z-index: 1001; transition: 0.3s; display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-close { font-size: 24px; color: var(--text-muted); cursor: pointer; }
        .drawer-nav { padding: 20px; overflow-y: auto; flex: 1; }
        .drawer-nav li { margin-bottom: 15px; }
        .drawer-nav a { display: block; font-weight: 500; padding: 10px; border-radius: 6px; }

        .dl-hero { padding: 80px 0; background: var(--bg-white); }
        .dl-wrapper { display: flex; flex-direction: column; gap: 50px; align-items: center; }
        @media (min-width: 992px) { .dl-wrapper { flex-direction: row; justify-content: space-between; } }
        .dl-content { max-width: 500px; text-align: center; }
        @media (min-width: 992px) { .dl-content { text-align: left; } }
        .dl-content h1 { font-size: 42px; font-weight: 800; color: var(--text-main); margin-bottom: 20px; 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: 15px; margin-bottom: 30px; }
        @media (min-width: 576px) { .dl-buttons { flex-direction: row; justify-content: center; } }
        @media (min-width: 992px) { .dl-buttons { justify-content: flex-start; } }
        .btn-dl { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 30px; border-radius: 50px; font-size: 18px; font-weight: bold; transition: 0.3s; border: 2px solid transparent; }
        .btn-ios { background: #111827; color: white; }
        .btn-ios:hover { background: #000; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
        .btn-android { background: var(--primary); color: white; }
        .btn-android:hover { background: var(--primary-dark); box-shadow: 0 10px 20px rgba(139,92,246,0.3); }
        
        .qr-box { background: var(--bg-body); padding: 20px; border-radius: 16px; display: inline-block; border: 1px solid var(--border-color); text-align: center; }
        .qr-box img { width: 150px; height: 150px; margin-bottom: 10px; background: white; padding: 10px; border-radius: 8px; }
        .qr-box span { display: block; font-size: 14px; color: var(--text-muted); }
        
        .dl-visual { position: relative; width: 100%; max-width: 400px; }
        .dl-visual img { width: 100%; border-radius: 30px; box-shadow: 0 25px 50px -12px rgba(139,92,246, 0.25); border: 8px solid white; }

        .steps-section { padding: 80px 0; background: linear-gradient(to bottom, var(--bg-body), var(--bg-white)); }
        .steps-title { text-align: center; margin-bottom: 50px; }
        .steps-title h2 { font-size: 32px; font-weight: 700; margin-bottom: 10px; }
        .steps-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
        @media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
        .step-card { background: white; padding: 40px 30px; border-radius: 16px; border: 1px solid var(--border-color); position: relative; z-index: 1; }
        .step-num { position: absolute; top: -20px; left: 30px; width: 40px; height: 40px; background: var(--primary); color: white; font-weight: bold; font-size: 20px; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
        .step-card h3 { font-size: 20px; margin: 15px 0; }
        .step-card p { color: var(--text-muted); font-size: 15px; }

        .footer { background: #111827; color: #9ca3af; padding: 60px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: white; }
        .footer-links h4 { color: white; font-weight: 600; margin-bottom: 20px; }
        .footer-links ul { display: flex; flex-direction: column; gap: 10px; }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 15px; font-size: 14px; }
        .footer-utils { display: flex; gap: 15px; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } .footer-bottom { flex-direction: row; justify-content: space-between; } }