﻿:root {
            --primary: rgb(79,70,229);
            --primary-hover: rgb(67, 56, 202);
            --primary-light: rgba(79,70,229, 0.1);
            --bg-dark: #0a0e17;
            --bg-card: #151b2b;
            --bg-card-hover: #1c2438;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --accent: #eab308;
            --border-color: rgba(255,255,255,0.08);
            --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.5), 0 8px 10px -6px rgba(0,0,0,0.3);
            --gradient-hero: linear-gradient(135deg, #0a0e17 0%, #151b2b 100%);
            --gradient-primary: linear-gradient(90deg, rgb(79,70,229) 0%, rgb(129, 140, 248) 100%);
        }
        * { 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-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
        a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }
        ul, ol { list-style: none; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10, 14, 23, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .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(--text-main); white-space: nowrap; letter-spacing: 1px; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { font-size: 16px; font-weight: 500; color: var(--text-muted); position: relative; padding: 5px 0; }
        .desktop-nav a:hover { color: var(--text-main); }
        .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
        .desktop-nav a:hover::after { width: 100%; }
        .header-actions { display: flex; align-items: center; gap: 20px; }
        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s; border: none; }
        .btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: 0 4px 14px rgba(79,70,229,0.4); }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(79,70,229,0.6); }
        .btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--text-main); }
        .btn-outline:hover { background: var(--primary-light); }
        .menu-toggle { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 10px; }
        .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-main); transition: 0.3s; }
        
        
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 1000; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer { position: fixed; top: 0; left: -320px; bottom: 0; width: 320px; background: var(--bg-card); z-index: 1001; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; border-right: 1px solid var(--border-color); }
        .drawer.active { left: 0; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border-color); }
        .drawer-close { background: none; border: none; font-size: 28px; color: var(--text-muted); cursor: pointer; }
        .drawer-body { padding: 20px; overflow-y: auto; flex: 1; }
        .mobile-nav { display: flex; flex-direction: column; gap: 15px; }
        .mobile-nav a { display: block; padding: 12px 15px; font-size: 16px; color: var(--text-main); background: rgba(255,255,255,0.03); border-radius: 8px; font-weight: 500; }
        .mobile-nav a:hover { background: var(--primary-light); color: rgb(129, 140, 248); }

        
        .hero { padding: 160px 0 100px; background: var(--gradient-hero); position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: var(--primary); filter: blur(150px); opacity: 0.15; border-radius: 50%; z-index: 0; }
        .hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; position: relative; z-index: 1; }
        .hero-content { flex: 1; max-width: 600px; }
        .hero-tag { display: inline-block; padding: 6px 16px; background: rgba(234, 179, 8, 0.1); color: var(--accent); border-radius: 30px; font-size: 14px; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(234, 179, 8, 0.2); }
        .hero h1 { font-size: 56px; font-weight: 800; line-height: 1.2; margin-bottom: 24px; background: linear-gradient(to right, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.8; }
        .hero-btns { display: flex; gap: 20px; }
        .hero-visual { flex: 1; position: relative; }
        .hero-img-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); }
        .hero-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,23,42,0.6) 0%, rgba(15,23,42,0) 50%); }

        
        .trust-banner { padding: 40px 0; background: rgba(255,255,255,0.02); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
        .trust-item h3 { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
        .trust-item p { color: var(--text-muted); font-size: 14px; }

        
        .section { padding: 100px 0; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
        .section-header p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .feature-card { background: var(--bg-card); padding: 40px 30px; border-radius: 16px; border: 1px solid var(--border-color); transition: all 0.3s; position: relative; overflow: hidden; }
        .feature-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(79,70,229,0.15); }
        .feature-icon { width: 60px; height: 60px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: rgb(129, 140, 248); }
        .feature-icon svg { width: 32px; height: 32px; }
        .feature-card h3 { font-size: 22px; margin-bottom: 16px; font-weight: 700; }
        .feature-card p { color: var(--text-muted); font-size: 15px; }

        
        .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .article-card { background: var(--bg-card); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); transition: 0.3s; display: flex; flex-direction: column; }
        .article-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .article-img { height: 200px; position: relative; overflow: hidden; }
        .article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .article-card:hover .article-img img { transform: scale(1.05); }
        .article-tag { position: absolute; top: 15px; left: 15px; background: rgba(10, 14, 23, 0.8); backdrop-filter: blur(4px); padding: 4px 12px; border-radius: 20px; font-size: 12px; color: var(--accent); }
        .article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
        .article-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-title a:hover { color: var(--primary); }
        .article-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .article-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border-color); font-size: 13px; color: #64748b; }
        .meta-item { display: flex; align-items: center; gap: 6px; }

        
        .cta-section { margin: 60px 0; padding: 80px 0; background: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?auto=format&fit=crop&w=1920&q=80') center/cover; position: relative; border-radius: 24px; overflow: hidden; text-align: center; }
        .cta-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(79,70,229,0.8)); }
        .cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
        .cta-inner h2 { font-size: 40px; font-weight: 800; margin-bottom: 20px; }
        .cta-inner p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }

        
        .footer { background: #070a11; padding: 80px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
        .footer-brand p { color: var(--text-muted); margin-top: 20px; font-size: 14px; padding-right: 40px; }
        .footer-links h3 { font-size: 16px; font-weight: 600; margin-bottom: 24px; color: #fff; }
        .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { color: var(--text-muted); font-size: 14px; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--border-color); color: #64748b; font-size: 14px; }

        @media (max-width: 992px) {
            .desktop-nav, .header-actions .btn { display: none; }
            .menu-toggle { display: flex; }
            .hero-inner { flex-direction: column; text-align: center; }
            .hero h1 { font-size: 40px; }
            .hero-btns { justify-content: center; }
            .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .features-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .features-grid, .article-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .cta-inner h2 { font-size: 32px; }
        }