﻿:root {
      --primary: #A855F7;
      --primary-hover: #9333EA;
      --coral: #FF6B6B;
      --dark: #1E1B4B;
      --light-pink: #FFF1F2;
      --blue: #60A5FA;
      --bg-gradient: linear-gradient(135deg, #1E1B4B 0%, #110E30 100%);
      --text-main: #FFFFFF;
      --text-muted: #A5B4FC;
      --card-bg: rgba(255, 255, 255, 0.05);
      --card-border: rgba(255, 255, 255, 0.1);
      --font-sans: -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: #0B0826; color: #E2E8F0; line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

    
    header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(30, 27, 75, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(168, 85, 247, 0.15); }
    .header-container { max-width: 1200px; margin: 0 auto; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { height: 38px; width: auto; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; color: #FFF; background: linear-gradient(135deg, #FFF 0%, #A855F7 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .nav-menu { display: flex; align-items: center; gap: 32px; }
    .nav-menu a { font-size: 15px; font-weight: 500; color: #CBD5E1; }
    .nav-menu a:hover { color: var(--primary); }
    .nav-btn { background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%); color: #FFF !important; padding: 8px 20px; border-radius: 99px; font-size: 14px; font-weight: 600; }
    .menu-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
    .menu-toggle span { display: block; width: 24px; height: 2px; background-color: #FFFFFF; }

    
    .drawer { position: fixed; top: 0; left: -100%; width: 280px; height: 100%; background: #110E30; z-index: 1099; padding: 80px 24px; display: flex; flex-direction: column; gap: 24px; box-shadow: 4px 0 25px rgba(0,0,0,0.5); transition: left 0.4s ease; }
    .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: 1098; display: none; backdrop-filter: blur(4px); }
    .drawer-overlay.active { display: block; }

    
    .inner-banner { padding: 140px 20px 60px; background: linear-gradient(180deg, rgba(30, 27, 75, 0.6) 0%, #0B0826 100%); border-bottom: 1px solid rgba(255,255,255,0.05); }
    .banner-content { max-width: 1200px; margin: 0 auto; text-align: center; }
    .banner-title { font-size: 36px; font-weight: 800; color: #FFF; margin-bottom: 12px; }
    .banner-desc { color: #A5B4FC; max-width: 600px; margin: 0 auto; font-size: 16px; }

    
    .dl-sec { padding: 80px 20px; }
    .dl-container { max-width: 1200px; margin: 0 auto; }

    .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 80px; }
    .dl-card { background: rgba(30, 27, 75, 0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; padding: 40px; text-align: center; display: flex; flex-direction: column; justify-content: space-between; transition: all 0.3s ease; }
    .dl-card:hover { transform: translateY(-5px); border-color: rgba(168, 85, 247, 0.3); }

    .dl-card h3 { font-size: 22px; font-weight: 800; color: #FFF; margin-bottom: 12px; }
    .dl-card p { color: #94A3B8; font-size: 14px; margin-bottom: 30px; }

    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
    .btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--coral) 100%); color: #FFFFFF; }
    .btn-secondary { background: rgba(255,255,255,0.08); color: #FFF; border: 1px solid rgba(255,255,255,0.1); }

    
    .steps-section { background: rgba(30, 27, 75, 0.2); border-radius: 24px; padding: 60px; border: 1px solid rgba(255,255,255,0.05); }
    .step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
    .step-item { position: relative; }
    .step-num { font-size: 40px; font-weight: 800; color: rgba(168, 85, 247, 0.3); line-height: 1; margin-bottom: 14px; }
    .step-item h4 { color: #FFF; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
    .step-item p { color: #94A3B8; font-size: 14px; }

    
    footer { background: #0B0826; border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 20px 40px; color: #94A3B8; }
    .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; margin-bottom: 60px; }
    .footer-brand p { margin-top: 20px; font-size: 14px; max-width: 300px; }
    .footer-col h5 { color: #FFF; font-size: 16px; font-weight: 700; margin-bottom: 24px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { font-size: 14px; }
    .footer-col ul li a:hover { color: var(--primary); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; }

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