﻿:root {
      --primary: #1D7BFF;
      --bg-dark: #0B132B;
      --border-color: rgba(255, 255, 255, 0.08);
      --text-muted: #8A99AD;
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: var(--font-family);
      background-color: #050a18;
      color: #e2e8f0;
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(11, 19, 43, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { display: block; height: 38px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { display: inline-block; font-size: 20px; font-weight: 800; color: #ffffff; }
    .nav-list { display: flex; gap: 25px; list-style: none; align-items: center; }
    .nav-list a { font-size: 15px; font-weight: 500; color: #cbd5e1; }
    .nav-list a:hover { color: var(--primary); }
    .burger-menu { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 200; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: #0B132B; z-index: 201; box-shadow: 4px 0 20px rgba(0,0,0,0.5); transition: all 0.3s ease; display: flex; flex-direction: column; padding: 20px; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
    .drawer-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: #e2e8f0; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

    
    .dl-hero {
      background: radial-gradient(circle at top, #111b35 0%, #050a18 100%);
      padding: 80px 20px;
      text-align: center;
      border-bottom: 1px solid var(--border-color);
    }
    .dl-hero h1 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 15px; }
    .dl-hero p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

    .dl-container {
      max-width: 1000px;
      margin: 60px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .dl-card {
      background: #0B132B;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .dl-card:hover {
      border-color: var(--primary);
      transform: translateY(-5px);
    }
    .dl-icon { font-size: 40px; margin-bottom: 20px; }
    .dl-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .dl-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; }
    .dl-btn {
      display: block;
      width: 100%;
      padding: 12px;
      background: var(--primary);
      color: #fff;
      border-radius: 8px;
      font-weight: 600;
    }
    .dl-btn:hover {
      background: #0056cc;
    }

    
    .faq-section {
      max-width: 800px;
      margin: 60px auto;
      padding: 0 20px;
    }
    .faq-title { text-align: center; font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 40px; }
    .faq-item {
      background: #0B132B;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 15px;
    }
    .faq-item h4 { font-size: 16px; color: #fff; margin-bottom: 8px; }
    .faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

    
    footer {
      background: #050a18;
      border-top: 1px solid var(--border-color);
      color: var(--text-muted);
      font-size: 14px;
      padding: 80px 20px 30px;
      margin-top: 80px;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 50px;
      margin-bottom: 50px;
    }
    .footer-brand .logo { margin-bottom: 20px; }
    .footer-brand p { line-height: 1.6; margin-bottom: 20px; }
    .footer-group h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
    .footer-group ul { list-style: none; }
    .footer-group ul li { margin-bottom: 12px; }
    .footer-group ul a:hover { color: #fff; }
    .footer-contact p { margin-bottom: 10px; }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid var(--border-color);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      align-items: center;
    }

    @media (max-width: 768px) {
      .nav-list { display: none; }
      .burger-menu { display: block; }
      .dl-container { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
    }