﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056D2;
      --bg-dark: #0A0F1D;
      --text-white: #FFFFFF;
      --text-gray: #94A3B8;
      --text-dark: #0F172A;
      --bg-light: #F4F7FC;
      --border-color: rgba(255, 255, 255, 0.1);
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font-family); background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; }

    
    .header {
      background-color: var(--bg-dark);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid var(--border-color);
      padding: 15px 0;
    }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .header-container { display: flex; justify-content: space-between; align-items: center; }

    .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-white);
      white-space: nowrap;
    }

    .nav-menu { display: flex; gap: 24px; align-items: center; }
    .nav-menu a { color: var(--text-gray); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.3s; }
    .nav-menu a:hover { color: var(--primary); }
    .menu-toggle { display: none; background: none; border: none; color: var(--text-white); font-size: 24px; cursor: pointer; }

    
    .drawer { position: fixed; top: 0; left: -100%; width: 280px; height: 100%; background-color: var(--bg-dark); z-index: 1100; transition: left 0.3s ease; padding: 30px 20px; display: flex; flex-direction: column; gap: 30px; box-shadow: 5px 0 15px rgba(0,0,0,0.5); }
    .drawer.active { left: 0; }
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1050; display: none; }
    .drawer-overlay.active { display: block; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; }
    .drawer-close { background: none; border: none; color: var(--text-white); font-size: 28px; cursor: pointer; }
    .drawer-menu { display: flex; flex-direction: column; gap: 20px; }
    .drawer-menu a { color: var(--text-gray); text-decoration: none; font-size: 18px; font-weight: 500; }
    .drawer-menu a:hover { color: var(--primary); }

    
    .dl-hero {
      background: radial-gradient(circle at top, #102A45 0%, var(--bg-dark) 100%);
      color: var(--text-white);
      padding: 100px 0;
      text-align: center;
    }

    .dl-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 20px; }
    .dl-hero p { color: var(--text-gray); font-size: 18px; max-width: 650px; margin: 0 auto 40px auto; }

    .dl-options {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .dl-card {
      background-color: var(--bg-card);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 40px;
      width: 280px;
      text-align: center;
      transition: transform 0.3s;
    }

    .dl-card:hover { transform: translateY(-5px); }
    .dl-card .icon { font-size: 48px; margin-bottom: 20px; color: var(--primary); }
    .dl-card h3 { font-size: 22px; color: var(--text-white); margin-bottom: 10px; }
    .dl-card p { font-size: 13px; color: var(--text-gray); margin-bottom: 30px; }

    .dl-btn {
      display: inline-block;
      width: 100%;
      padding: 12px 0;
      background-color: var(--primary);
      color: var(--text-white);
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .dl-btn:hover { background-color: var(--primary-hover); }

    
    .steps-section { padding: 80px 0; background-color: var(--text-white); }
    .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .step-box { text-align: center; }
    .step-num { width: 50px; height: 50px; background-color: var(--primary); color: var(--text-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin: 0 auto 20px auto; }
    .step-box h3 { font-size: 18px; margin-bottom: 10px; }
    .step-box p { color: #64748B; font-size: 14px; }

    
    .footer {
      background-color: var(--bg-dark);
      color: var(--text-gray);
      padding: 60px 0 30px 0;
      border-top: 1px solid var(--border-color);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 40px;
    }

    .footer-brand .logo { margin-bottom: 20px; }
    .footer-brand p { font-size: 14px; line-height: 1.8; }
    .footer-links h4 { color: var(--text-white); margin-bottom: 20px; font-size: 16px; }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { color: var(--text-gray); text-decoration: none; font-size: 14px; transition: color 0.3s; }
    .footer-links a:hover { color: var(--primary); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; text-align: center; font-size: 13px; }

    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .menu-toggle { display: block; }
      .steps-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }