﻿:root {
      --primary: rgb(14,165,233);
      --primary-hover: #0284c7;
      --ink-dark: #0f172a;
      --ink-medium: #1e293b;
      --ink-light: #334155;
      --glacier-light: #f0f9ff;
      --glacier-border: #e0f2fe;
      --silver-white: #f8fafc;
      --pure-white: #ffffff;
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font-sans); background-color: var(--silver-white); color: var(--ink-dark); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

    header { background-color: var(--ink-dark); border-bottom: 1px solid rgba(255, 255, 255, 0.1); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(8px); }
    .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .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(--pure-white); white-space: nowrap; }
    .desktop-nav { display: flex; align-items: center; gap: 32px; }
    .desktop-nav a { color: #94a3b8; font-weight: 500; font-size: 15px; }
    .desktop-nav a:hover { color: var(--primary); }
    .nav-actions { display: flex; align-items: center; gap: 16px; }
    .btn-download-nav { background-color: var(--primary); color: var(--pure-white); padding: 8px 18px; border-radius: 9999px; font-size: 14px; font-weight: 600; }
    .btn-download-nav:hover { background-color: var(--primary-hover); }
    .menu-toggle { display: none; background: none; border: none; color: var(--pure-white); font-size: 24px; cursor: pointer; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .drawer { position: fixed; top: 0; left: 0; width: 300px; height: 100%; background-color: var(--ink-dark); z-index: 1001; transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
    .drawer.active { transform: translateX(0); }
    .drawer-header { padding: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; color: var(--pure-white); font-size: 28px; cursor: pointer; }
    .drawer-content { flex: 1; overflow-y: auto; padding: 24px; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }

    
    .dl-banner {
      background: radial-gradient(circle at 50% 0%, #1e293b 0%, #0f172a 100%);
      color: var(--pure-white);
      padding: 80px 20px;
      text-align: center;
    }
    .dl-container { max-width: 1200px; margin: 0 auto; }
    .dl-title { font-size: 38px; font-weight: 800; margin-bottom: 16px; }
    .dl-desc { color: #94a3b8; font-size: 16px; max-width: 600px; margin: 0 auto; }

    .dl-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin: -50px auto 80px;
      max-width: 1200px;
      padding: 0 20px;
      position: relative;
      z-index: 10;
    }

    .dl-card {
      background: var(--pure-white);
      border: 1px solid var(--glacier-border);
      border-radius: 16px;
      padding: 40px 30px;
      text-align: center;
      box-shadow: var(--shadow-lg);
      transition: all 0.3s ease;
    }

    .dl-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
    }

    .dl-icon {
      font-size: 48px;
      margin-bottom: 24px;
    }

    .dl-card h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--ink-dark);
    }

    .dl-card-ver {
      font-size: 12px;
      background: var(--glacier-light);
      color: var(--primary);
      padding: 4px 12px;
      border-radius: 9999px;
      display: inline-block;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .dl-card p {
      color: var(--ink-light);
      font-size: 14px;
      margin-bottom: 30px;
      min-height: 48px;
    }

    .btn-dl {
      background: var(--primary);
      color: var(--pure-white);
      padding: 12px 30px;
      border-radius: 8px;
      font-weight: 700;
      display: block;
      box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    }

    .btn-dl:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
    }

    
    .steps-section {
      padding: 80px 20px;
      background: var(--pure-white);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 50px auto 0;
    }

    .step-card {
      background: var(--silver-white);
      border-radius: 12px;
      padding: 30px;
      position: relative;
    }

    .step-num {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 48px;
      font-weight: 900;
      color: rgba(14, 165, 233, 0.1);
      line-height: 1;
    }

    .step-card h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--ink-dark);
    }

    .step-card p {
      color: var(--ink-light);
      font-size: 14px;
    }

    
    .faq-section {
      padding: 80px 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--pure-white);
      border: 1px solid var(--glacier-border);
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 16px;
    }

    .faq-q {
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 8px;
      color: var(--ink-dark);
    }

    .faq-a {
      font-size: 14px;
      color: var(--ink-light);
    }

    
    footer { background-color: #090d16; color: #94a3b8; font-size: 14px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
    .footer-top { max-width: 1200px; margin: 0 auto; padding: 60px 20px; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
    .footer-brand p { margin-top: 16px; line-height: 1.6; font-size: 13px; }
    .footer-title { color: var(--pure-white); font-size: 15px; font-weight: 700; margin-bottom: 20px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { color: #94a3b8; }
    .footer-links a:hover { color: var(--primary); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding: 30px 20px; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; }

    @media (max-width: 768px) {
      .desktop-nav, .nav-actions { display: none; }
      .menu-toggle { display: block; }
      .dl-grid, .steps-grid { grid-template-columns: 1fr; }
      .dl-grid { margin-top: 20px; }
      .footer-top { grid-template-columns: 1fr; gap: 30px; }
    }