﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056b3;
      --bg-dark: #121824;
      --text-light: #f8f9fa;
      --theme-grey: rgb(66,70,81);
      --body-bg: #f4f7fc;
      --card-bg: #ffffff;
      --text-main: #2b303c;
      --text-muted: #6c757d;
      --border-color: rgba(29, 123, 255, 0.12);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
      --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; background-color: var(--body-bg); color: var(--text-main); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: var(--transition); }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

    
    header { background-color: #ffffff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
    .header-container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .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: 18px; font-weight: 800; color: var(--theme-grey); }
    .nav-menu { display: flex; align-items: center; gap: 30px; }
    .nav-menu a { font-weight: 500; color: var(--theme-grey); font-size: 15px; }
    .nav-menu a:hover { color: var(--primary); }
    .header-actions { display: flex; align-items: center; gap: 15px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; transition: var(--transition); border: none; }
    .btn-primary { background-color: var(--primary); color: #ffffff; }
    .btn-primary:hover { background-color: var(--primary-hover); }
    .menu-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--theme-grey); cursor: pointer; }

    
    .drawer-backdrop { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-color: rgba(0, 0, 0, 0.5); z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition); }
    .drawer-backdrop.active { opacity: 1; visibility: visible; }
    .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100vh; background-color: #ffffff; z-index: 999; box-shadow: var(--shadow-md); transition: var(--transition); display: flex; flex-direction: column; padding: 20px; }
    .drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; margin-bottom: 20px; }
    .drawer-close { background: none; border: none; font-size: 24px; color: var(--text-muted); cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; overflow-y: auto; flex: 1; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--theme-grey); padding: 10px 5px; }

    
    .dl-hero { background: linear-gradient(135deg, #1e293b 0%, var(--bg-dark) 100%); color: #ffffff; padding: 80px 0; text-align: center; }
    .dl-hero h1 { font-size: 36px; margin-bottom: 15px; }
    .dl-hero p { font-size: 18px; color: #94a3b8; max-width: 700px; margin: 0 auto 30px; }

    .dl-section { padding: 60px 0; }
    .dl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
    .dl-card { background-color: #ffffff; border: 1px solid var(--border-color); border-radius: 12px; padding: 40px 30px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); }
    .dl-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
    .dl-icon { font-size: 48px; margin-bottom: 20px; }
    .dl-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--theme-grey); }
    .dl-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; line-height: 1.6; }

    
    .steps-section { padding: 80px 0; background-color: #ffffff; border-top: 1px solid var(--border-color); }
    .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
    .step-item { position: relative; padding: 20px; text-align: center; }
    .step-num { width: 50px; height: 50px; border-radius: 50%; background-color: var(--primary); color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: bold; margin: 0 auto 20px; }
    .step-item h4 { font-size: 16px; margin-bottom: 10px; color: var(--theme-grey); }
    .step-item p { font-size: 13px; color: var(--text-muted); }

    
    footer { background-color: var(--bg-dark); color: #94a3b8; padding: 80px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 50px; }
    .footer-brand { grid-column: span 2; }
    @media (max-width: 768px) { .footer-brand { grid-column: span 1; } }
    .footer-brand p { margin-top: 15px; font-size: 14px; }
    .footer-heading { color: #ffffff; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-size: 14px; }
    .footer-links a:hover { color: #ffffff; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 30px; text-align: center; font-size: 12px; }

    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .menu-toggle { display: block; }
    }