﻿:root {
            --primary: rgb(168,85,247);
            --primary-hover: rgb(147,51,234);
            --primary-light: rgba(168,85,247,0.1);
            --text-main: #1f2937;
            --text-muted: #6b7280;
            --bg-light: #f9fafb;
            --border-color: #f3f4f6;
            --shadow: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
            --shadow-lg: 0 20px 25px -5px rgba(168,85,247,0.1), 0 10px 10px -5px rgba(168,85,247,0.04);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); background: #fff; line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }
        
        
        header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
        .nav-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 42px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 22px; font-weight: 800; line-height: 1; color: var(--primary); white-space: nowrap; letter-spacing: -0.5px; }
        .nav-menu { display: flex; align-items: center; gap: 30px; }
        .nav-menu a { font-size: 16px; font-weight: 600; color: #4b5563; position: relative; padding: 5px 0; }
        .nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
        .nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
        .nav-menu a:hover::after { width: 100%; }
        .nav-btn { background: var(--primary); color: #fff; padding: 10px 24px; border-radius: 9999px; font-weight: 600; box-shadow: 0 4px 14px rgba(168,85,247,0.4); }
        .nav-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }
        .burger-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-main); }

        
        .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: opacity 0.3s ease; }
        .drawer-overlay.active { opacity: 1; pointer-events: auto; }
        .drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background: #fff; z-index: 1001; box-shadow: 10px 0 30px rgba(0,0,0,0.1); transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
        .drawer.active { left: 0; }
        .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; cursor: pointer; color: var(--text-muted); }
        .drawer-menu { padding: 20px; display: flex; flex-direction: column; gap: 20px; }
        .drawer-menu a { font-size: 18px; font-weight: 600; color: #374151; padding: 8px 0; border-bottom: 1px dashed var(--border-color); }
        .drawer-menu a:hover { color: var(--primary); padding-left: 5px; }

        
        .hero { position: relative; overflow: hidden; padding: 100px 20px; background: radial-gradient(circle at 80% 20%, rgba(168,85,247,0.15) 0%, rgba(255,255,255,0) 50%); }
        .hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
        .hero-info { max-width: 650px; }
        .hero-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-light); color: var(--primary); padding: 8px 16px; border-radius: 9999px; font-weight: 700; font-size: 14px; margin-bottom: 24px; text-transform: uppercase; border: 1px solid rgba(168,85,247,0.2); }
        .hero-title { font-size: 48px; line-height: 1.15; font-weight: 800; color: #111827; margin-bottom: 20px; }
        .hero-title span { color: var(--primary); position: relative; }
        .hero-desc { font-size: 18px; color: var(--text-muted); margin-bottom: 35px; line-height: 1.7; }
        .hero-actions { display: flex; gap: 16px; align-items: center; }
        .hero-btn-primary { background: var(--primary); color: #fff; font-weight: 700; padding: 16px 36px; border-radius: 12px; font-size: 16px; box-shadow: 0 10px 20px rgba(168,85,247,0.3); }
        .hero-btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(168,85,247,0.4); }
        .hero-btn-secondary { background: #fff; border: 2px solid var(--border-color); color: var(--text-main); font-weight: 700; padding: 14px 34px; border-radius: 12px; font-size: 16px; }
        .hero-btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
        .hero-visual { position: relative; }
        .hero-card { background: #fff; border-radius: 24px; padding: 30px; box-shadow: var(--shadow-lg); border: 1px solid rgba(168,85,247,0.08); position: relative; z-index: 2; }
        .hero-chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
        .hero-chart-title { font-weight: 800; font-size: 20px; color: #111827; }
        .hero-chart-badge { background: #ef4444; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 8px; border-radius: 4px; }
        .hero-numbers { display: flex; gap: 12px; margin-bottom: 25px; justify-content: center; }
        .hero-num-ball { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), #a855f7); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; box-shadow: 0 4px 10px rgba(168,85,247,0.3); }
        .hero-num-ball.blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); box-shadow: 0 4px 10px rgba(59,130,246,0.3); }
        .hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; border-top: 1px solid var(--border-color); padding-top: 20px; }
        .hero-metric-val { font-size: 20px; font-weight: 800; color: var(--primary); }
        .hero-metric-lbl { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

        
        .trust-bar { background: var(--bg-light); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 30px 20px; }
        .trust-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 30px; }
        .trust-item { display: flex; align-items: center; gap: 12px; }
        .trust-icon { font-size: 24px; color: var(--primary); }
        .trust-text { font-weight: 700; color: #374151; font-size: 16px; }

        
        .services { padding: 100px 20px; background: #fff; }
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
        .section-tag { color: var(--primary); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
        .section-title { font-size: 36px; font-weight: 800; color: #111827; margin-bottom: 15px; }
        .section-desc { font-size: 16px; color: var(--text-muted); }
        .services-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .service-card { background: #fff; border: 1px solid var(--border-color); padding: 40px 30px; border-radius: 20px; transition: all 0.3s ease; }
        .service-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow); }
        .service-icon-box { width: 60px; height: 60px; border-radius: 16px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 25px; }
        .service-card-title { font-size: 22px; font-weight: 800; color: #111827; margin-bottom: 15px; }
        .service-card-desc { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

        
        .features-row { padding: 100px 20px; background: var(--bg-light); overflow: hidden; }
        .features-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .features-visual { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .feat-stat-card { background: #fff; padding: 25px; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.02); }
        .feat-stat-card:nth-child(even) { transform: translateY(30px); }
        .feat-stat-num { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
        .feat-stat-lbl { font-size: 14px; color: var(--text-muted); font-weight: 600; }
        .features-content .section-header { text-align: left; margin-bottom: 40px; }
        .feature-bullets { display: flex; flex-direction: column; gap: 20px; }
        .feat-bullet { display: flex; gap: 15px; }
        .feat-bullet-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; margin-top: 3px; }
        .feat-bullet-title { font-weight: 700; font-size: 18px; color: #111827; margin-bottom: 6px; }
        .feat-bullet-desc { color: var(--text-muted); font-size: 14px; }

        
        .content-hub { padding: 100px 20px; background: #fff; }
        .hub-container { max-width: 1200px; margin: 0 auto; }
        .hub-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; }
        .hub-tab-btn { background: var(--bg-light); border: 1px solid var(--border-color); color: var(--text-muted); padding: 12px 28px; border-radius: 9999px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
        .hub-tab-btn.active, .hub-tab-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 14px rgba(168,85,247,0.3); }
        .hub-pane { display: none; }
        .hub-pane.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        
        
        .article-card { background: #fff; border-radius: 20px; border: 1px solid var(--border-color); overflow: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
        .article-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(168,85,247,0.2); }
        .article-img { width: 100%; height: 200px; object-fit: cover; background: var(--primary-light); }
        .article-body { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
        .article-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
        .article-tags { display: flex; gap: 8px; flex-wrap: wrap; }
        .article-tag { background: var(--bg-light); color: var(--primary); font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 4px; border: 1px solid var(--border-color); }
        .article-title { font-size: 18px; font-weight: 800; color: #111827; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-title:hover { color: var(--primary); }
        .article-summary { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; }
        .article-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-color); padding-top: 15px; margin-top: auto; font-size: 13px; color: var(--text-muted); }
        .article-author { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #374151; }
        .article-author::before { content: ''; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
        .article-more { font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 4px; }

        
        .cta { background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%); padding: 100px 20px; position: relative; overflow: hidden; border-radius: 0; }
        .cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center, rgba(168,85,247,0.15) 0%, transparent 60%); pointer-events: none; }
        .cta-container { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
        .cta-title { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 20px; }
        .cta-desc { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
        .cta-buttons { display: flex; justify-content: center; gap: 20px; }
        .cta-btn-primary { background: var(--primary); color: #fff; font-weight: 700; padding: 16px 40px; border-radius: 12px; font-size: 16px; box-shadow: 0 10px 20px rgba(168,85,247,0.3); }
        .cta-btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
        .cta-btn-secondary { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-weight: 700; padding: 16px 40px; border-radius: 12px; font-size: 16px; backdrop-filter: blur(10px); }
        .cta-btn-secondary:hover { background: rgba(255,255,255,0.2); }

        
        footer { background: #0b0f19; color: #9ca3af; padding: 80px 20px 30px; border-top: 1px solid #1f2937; }
        .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; margin-bottom: 60px; }
        .footer-brand .logo span { color: #fff; }
        .footer-desc { margin-top: 20px; font-size: 14px; line-height: 1.7; color: #6b7280; }
        .footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 25px; position: relative; text-transform: uppercase; letter-spacing: 0.5px; }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { font-size: 14px; color: #9ca3af; }
        .footer-links a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid #1f2937; padding-top: 30px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; color: #4b5563; }
        .footer-bottom-links { display: flex; gap: 20px; }

        
        @media (max-width: 1024px) {
            .hero-container, .features-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
            .hero-info { max-width: 100%; margin: 0 auto; }
            .hero-actions { justify-content: center; }
            .features-visual { display: none; }
            .features-content .section-header { text-align: center; }
            .services-grid, .hub-pane.active { grid-template-columns: repeat(2, 1fr); }
            .footer-container { grid-template-columns: repeat(2, 1fr); gap: 40px; }
        }
        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .burger-btn { display: block; }
            .services-grid, .hub-pane.active { grid-template-columns: 1fr; }
            .hero-title { font-size: 36px; }
            .section-title { font-size: 28px; }
            .footer-container { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }