﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056b3;
      --accent: rgb(16,185,129);
      --dark-navy: #0A1128;
      --silver-white: #F4F7FC;
      --text-main: #1E293B;
      --text-muted: #64748B;
      --border-color: rgba(226, 232, 240, 0.8);
      --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: var(--font-stack);
      color: var(--text-main);
      background-color: #ffffff;
      line-height: 1.6;
    }
    a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
    img { max-width: 100%; height: auto; }
    
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    
    .header {
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 100;
      height: 70px;
      display: flex;
      align-items: center;
    }
    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    
    
    .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(--dark-navy);
      white-space: nowrap;
    }
    
    
    .nav-desktop { display: flex; align-items: center; gap: 24px; }
    .nav-desktop a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-main);
      position: relative;
      padding: 6px 0;
    }
    .nav-desktop a:hover, .nav-desktop a.active {
      color: var(--primary);
    }
    .nav-desktop a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: width 0.3s;
    }
    .nav-desktop a:hover::after { width: 100%; }
    
    .cta-header-btn {
      background-color: var(--primary);
      color: #fff !important;
      padding: 8px 18px;
      border-radius: 6px;
      font-weight: 600 !important;
    }
    .cta-header-btn:hover {
      background-color: var(--primary-hover);
    }
    
    
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      z-index: 110;
    }
    .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: var(--dark-navy);
      border-radius: 3px;
      transition: all 0.3s;
    }
    
    
    .drawer {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100vh;
      background-color: #fff;
      box-shadow: 5px 0 30px rgba(0,0,0,0.1);
      z-index: 1000;
      transition: left 0.3s ease;
      display: flex;
      flex-direction: column;
      padding: 30px 20px;
    }
    .drawer.active { left: 0; }
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.5);
      z-index: 999;
      display: none;
    }
    .drawer-overlay.active { display: block; }
    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }
    .drawer-close {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-main);
    }
    .drawer-nav { display: flex; flex-direction: column; gap: 18px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; }
    .drawer-nav a:hover { color: var(--primary); }
    
    
    .py-100 { padding: 100px 0; }
    
    .download-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 50px;
    }
    .download-card {
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 35px;
      text-align: center;
      background-color: #fff;
    }
    .download-card h3 {
      font-size: 20px;
      color: var(--dark-navy);
      margin-bottom: 12px;
      font-weight: 700;
    }
    .download-card p {
      color: var(--text-muted);
      font-size: 14px;
      margin-bottom: 25px;
    }
    
    
    .download-hero {
      background: radial-gradient(circle at 0% 0%, rgba(29, 123, 255, 0.08) 0%, rgba(10, 17, 40, 0) 70%), var(--silver-white);
      text-align: center;
      padding: 80px 20px;
    }
    .download-hero h1 {
      font-size: 36px;
      font-weight: 800;
      color: var(--dark-navy);
      margin-bottom: 15px;
    }
    .download-hero p {
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .guide-section {
      background-color: var(--silver-white);
    }
    .step-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 40px;
    }
    .step-card {
      position: relative;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
    }
    .step-num {
      position: absolute;
      top: -15px;
      left: 30px;
      background-color: var(--accent);
      color: #fff;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 16px;
    }
    .step-card h3 {
      margin-top: 10px;
      font-size: 18px;
      color: var(--dark-navy);
      margin-bottom: 10px;
    }
    .step-card p {
      color: var(--text-muted);
      font-size: 14px;
    }
    
    
    .footer {
      background-color: #0c1524;
      color: rgba(255,255,255,0.8);
      padding: 80px 0 30px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 60px;
    }
    .footer-col h4 {
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 24px;
    }
    .footer-col p {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255,255,255,0.6);
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 12px;
    }
    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
    }
    .footer-links a:hover {
      color: #fff;
      padding-left: 5px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
      color: rgba(255,255,255,0.4);
    }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }
    
    @media (max-width: 900px) {
      .hamburger { display: flex; }
      .nav-desktop { display: none; }
      .download-grid, .step-grid, .footer-inner {
        grid-template-columns: 1fr;
      }
    }