﻿:root {
      --primary-color: rgb(147, 51, 234);
      --primary-hover: rgb(126, 34, 206);
      --deep-sea-ink: #0B1120;
      --text-dark: #0F172A;
      --text-muted: #64748B;
      --border-color: #E2E8F0;
      --transition: all 0.3s ease;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--text-dark); background-color: #F8FAFC; line-height: 1.6; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    
    
    header { background: #FFFFFF; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
    .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: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; color: var(--text-dark); }
    .nav-menu { display: flex; gap: 24px; align-items: center; }
    .nav-menu a { font-size: 15px; font-weight: 600; color: var(--text-dark); padding: 8px 12px; border-radius: 6px; }
    .nav-menu a:hover { color: var(--primary-color); background: rgba(147,51,234,0.05); }
    .nav-btn { background: var(--primary-color); color: #FFF !important; padding: 8px 18px !important; border-radius: 8px; font-weight: 600; }
    .hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; pointer-events: none; transition: var(--transition); backdrop-filter: blur(4px); }
    .drawer { position: fixed; top: 0; left: -320px; width: 320px; height: 100%; background: #FFF; z-index: 1001; transition: var(--transition); padding: 30px 24px; display: flex; flex-direction: column; gap: 30px; }
    .drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
    .drawer-open .drawer { left: 0; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; }
    .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
    .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--text-dark); padding: 12px; border-radius: 8px; border-bottom: 1px solid var(--border-color); }

    
    .dl-section { max-width: 1100px; margin: 60px auto; padding: 0 20px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
    .dl-left h1 { font-size: 38px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; line-height: 1.2; }
    .dl-left p { font-size: 16px; color: var(--text-muted); margin-bottom: 30px; line-height: 1.7; }
    
    .dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
    .dl-card { border: 1px solid var(--border-color); background: #FFF; border-radius: 12px; padding: 24px; text-align: center; transition: var(--transition); }
    .dl-card:hover { border-color: var(--primary-color); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .dl-icon { font-size: 36px; margin-bottom: 14px; }
    .dl-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
    .dl-card span { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 16px; }
    .dl-btn { background: var(--primary-color); color: #FFF; font-weight: 600; padding: 10px 20px; border-radius: 8px; font-size: 14px; display: inline-block; width: 100%; }
    .dl-btn:hover { background: var(--primary-hover); }

    
    .dl-right { background: linear-gradient(135deg, var(--deep-sea-ink) 0%, #1E293B 100%); border-radius: 20px; padding: 40px; color: #FFF; text-align: center; }
    .qr-box { background: #FFF; width: 180px; height: 180px; margin: 0 auto 24px; border-radius: 12px; padding: 10px; display: flex; align-items: center; justify-content: center; }
    .qr-box img { width: 100%; height: 100%; object-fit: contain; }
    .dl-right h2 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
    .dl-right p { font-size: 14px; opacity: 0.8; margin-bottom: 24px; }

    
    .steps-section { background: #F1F5F9; padding: 80px 20px; }
    .steps-container { max-width: 1000px; margin: 0 auto; }
    .steps-title { text-align: center; font-size: 28px; font-weight: 800; margin-bottom: 50px; }
    .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .step-card { text-align: center; }
    .step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-color); color: #FFF; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; margin: 0 auto 20px; }
    .step-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

    
    footer { background: #0F172A; color: #94A3B8; padding: 70px 20px 30px; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }
    .footer-brand .logo span { color: #FFFFFF; }
    .footer-brand p { font-size: 14px; }
    .footer-links h4 { color: #FFFFFF; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
    .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links ul a { font-size: 14px; }
    .footer-links ul a:hover { color: #FFFFFF; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 13px; }

    @media (max-width: 900px) {
      .dl-section { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .hamburger { display: block; }
      .footer-container { grid-template-columns: 1fr; }
    }