﻿:root {
            --primary: #1D7BFF;
            --primary-accent: rgb(189,147,249);
            --bg-glacier: #F4F8FC;
            --silver: #E2E8F0;
            --ink-deep: #0B0F19;
            --ink-light: #475569;
            --white: #FFFFFF;
            --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, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-glacier); color: var(--ink-deep); line-height: 1.6; }
        a { color: inherit; text-decoration: none; }

        
        .site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--silver); height: 70px; }
        .header-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 20px; }
        .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 { display: inline-block; font-size: 18px; font-weight: 800; color: var(--ink-deep); }
        .desktop-nav { display: flex; align-items: center; gap: 32px; }
        .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--ink-light); }
        .desktop-nav a:hover { color: var(--primary); }
        .mobile-trigger { display: none; background: none; border: none; cursor: pointer; }
        .mobile-trigger span { display: block; width: 24px; height: 2px; background: var(--ink-deep); margin: 5px 0; }

        
        .drawer-mask { position: fixed; inset: 0; background: rgba(11, 15, 25, 0.5); backdrop-filter: blur(4px); z-index: 2000; opacity: 0; pointer-events: none; transition: var(--transition); }
        .drawer-mask.active { opacity: 1; pointer-events: auto; }
        .mobile-drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background: var(--white); z-index: 2001; box-shadow: 10px 0 30px rgba(0,0,0,0.1); transition: var(--transition); display: flex; flex-direction: column; }
        .mobile-drawer.active { left: 0; }
        .drawer-header { padding: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--silver); }
        .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; }
        .drawer-nav { padding: 20px 0; overflow-y: auto; flex: 1; }
        .drawer-nav a { display: block; padding: 14px 24px; font-size: 16px; font-weight: 500; color: var(--ink-light); }

        .dl-banner { background: linear-gradient(135deg, #1D7BFF 0%, #0B0F19 100%); color: var(--white); padding: 60px 20px; text-align: center; }
        .dl-banner h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }

        .container { max-width: 1000px; margin: 50px auto; padding: 0 20px; }
        .dl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
        .dl-card { background: var(--white); border: 1px solid var(--silver); border-radius: 12px; padding: 40px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: var(--transition); }
        .dl-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
        .dl-icon { width: 80px; height: 80px; background: rgba(29, 123, 255, 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 800; margin-bottom: 24px; }
        .dl-card h2 { font-size: 22px; font-weight: 700; color: var(--ink-deep); margin-bottom: 12px; }
        .dl-card p { font-size: 15px; color: var(--ink-light); margin-bottom: 30px; line-height: 1.6; }
        .dl-btn { background: var(--primary); color: var(--white); width: 100%; padding: 14px 24px; font-weight: 600; border-radius: 8px; transition: var(--transition); text-align: center; margin-top: auto; }
        .dl-btn:hover { background: #0062E3; }

        .steps-section { margin-top: 60px; background: var(--white); border: 1px solid var(--silver); border-radius: 12px; padding: 45px 40px; }
        .steps-section h3 { font-size: 24px; font-weight: 700; color: var(--ink-deep); margin-bottom: 30px; text-align: center; }
        .step-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .step-item { position: relative; padding-left: 50px; }
        .step-num { position: absolute; left: 0; top: 0; width: 36px; height: 36px; background: rgba(189,147,249,0.15); color: var(--primary-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
        .step-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--ink-deep); }
        .step-item p { font-size: 14px; color: var(--ink-light); }

        
        .site-footer { background: #0B0F19; color: #94A3B8; padding: 70px 20px 30px; border-top: 1px solid rgba(255,255,255,0.1); }
        .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
        .footer-brand .logo span { color: var(--white); }
        .footer-desc { margin-top: 15px; font-size: 14px; }
        .footer-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { font-size: 14px; transition: var(--transition); }
        .footer-links a:hover { color: var(--white); }
        .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 13px; }

        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-trigger { display: block; }
            .dl-grid, .step-list { grid-template-columns: 1fr; }
        }