﻿:root {
      --primary: #10B981;
      --aux: #22C55E;
      --bg-dark: #07120F;
      --bg-dark-card: #0c1f19;
      --bg-light: #EAFBF3;
      --text-light: #ECFDF5;
      --text-dark: #0B1F19;
      --accent: #A7F3D0;
      --fallback: rgb(35,39,47);
      --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font); background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }

    
    .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(--primary); white-space: nowrap; letter-spacing: 0.5px; }

    
    .site-header { background: rgba(7, 18, 15, 0.95); border-bottom: 1px solid rgba(16, 185, 129, 0.15); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
    .header-container { max-width: 1200px; margin: 0 auto; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; }
    .desktop-nav { display: flex; align-items: center; gap: 24px; }
    .desktop-nav a { font-size: 15px; font-weight: 500; color: #94a3b8; padding: 6px 0; border-bottom: 2px solid transparent; }
    .desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); border-bottom-color: var(--primary); }
    
    
    .mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; width: 30px; }
    .mobile-menu-toggle span { display: block; width: 100%; height: 2px; background-color: var(--text-light); transition: 0.3s; }

    
    .mobile-drawer { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; z-index: 2000; transition: left 0.4s ease; }
    .mobile-drawer.active { left: 0; }
    .drawer-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); }
    .drawer-content { position: absolute; top: 0; left: 0; width: 80%; max-width: 320px; height: 100%; background: var(--bg-dark); border-right: 1px solid rgba(16, 185, 129, 0.2); padding: 25px; display: flex; flex-direction: column; gap: 30px; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; font-size: 32px; color: var(--primary); cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { font-size: 18px; font-weight: 600; color: #cbd5e1; }
    .drawer-nav a:hover { color: var(--primary); padding-left: 8px; }

    
    .download-wrap { max-width: 1000px; margin: 60px auto; padding: 0 20px; }
    .download-hero { text-align: center; margin-bottom: 50px; }
    .download-hero h1 { font-size: 40px; color: #fff; margin-bottom: 15px; }
    .download-hero h1 span { color: var(--primary); }
    .download-hero p { font-size: 18px; color: #94a3b8; }

    .download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 50px; }
    .download-card { background: var(--bg-dark-card); border: 1px solid rgba(16, 185, 129, 0.15); border-radius: 16px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
    .download-card::after { content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: rgba(16, 185, 129, 0.03); border-radius: 50%; }
    .download-card h2 { font-size: 24px; color: #fff; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
    .download-card h2 span { font-size: 30px; }
    .download-card p { font-size: 14px; color: #cbd5e1; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }
    .btn-download { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; background: var(--primary); color: var(--bg-dark); font-weight: 700; border-radius: 8px; border: none; cursor: pointer; transition: 0.3s; }
    .btn-download:hover { background: var(--aux); }
    .card-meta { margin-top: 15px; font-size: 12px; color: #94a3b8; display: flex; gap: 15px; }

    
    .steps-section { background: rgba(16, 185, 129, 0.03); border: 1px solid rgba(16, 185, 129, 0.08); border-radius: 16px; padding: 40px; }
    .steps-section h2 { font-size: 24px; color: #fff; margin-bottom: 30px; text-align: center; }
    .steps-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .step-item { position: relative; text-align: center; }
    .step-num { width: 50px; height: 50px; background: var(--primary); color: var(--bg-dark); font-weight: 800; font-size: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; box-shadow: 0 0 15px rgba(16, 185, 129, 0.3); }
    .step-item h3 { font-size: 18px; color: #fff; margin-bottom: 10px; }
    .step-item p { font-size: 13px; color: #94a3b8; line-height: 1.6; }

    
    .site-footer { background: #030806; border-top: 1px solid rgba(16, 185, 129, 0.15); padding: 60px 20px 30px 20px; font-size: 14px; color: #94a3b8; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
    .footer-brand .footer-desc { margin-top: 20px; line-height: 1.6; }
    .footer-links h4, .footer-meta h4 { color: #fff; margin-bottom: 20px; font-size: 16px; }
    .footer-links ul, .footer-meta ul { list-style: none; }
    .footer-links li, .footer-meta li { margin-bottom: 12px; }
    .footer-links a:hover, .footer-meta a:hover { color: var(--primary); }
    .footer-bottom { border-top: 1px solid rgba(16, 185, 129, 0.08); padding-top: 25px; max-width: 1200px; margin: 0 auto; text-align: center; font-size: 13px; color: #64748b; }

    @media (max-width: 768px) {
      .desktop-nav { display: none; }
      .mobile-menu-toggle { display: flex; }
      .download-grid { grid-template-columns: 1fr; }
      .steps-list { grid-template-columns: 1fr; gap: 40px; }
    }