﻿:root {
            --primary-color: rgb(187,134,252);
            --primary-color-light: rgba(187,134,252, 0.1);
            --primary-color-dark: rgb(158, 99, 233);
            --bg-color: #121212;
            --surface-color: #1e1e1e;
            --text-color: #e0e0e0;
            --text-secondary-color: #a0a0a0;
            --border-color: rgba(255, 255, 255, 0.1);
            --header-height: 70px;
        }
        *, *::before, *::after { 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-color); color: var(--text-color); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
        a { color: var(--primary-color); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: var(--primary-color-dark); }
        img { max-width: 100%; height: auto; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .header { position: absolute; top: 0; left: 0; width: 100%; z-index: 1000; padding: 0 20px; height: var(--header-height); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; }
        .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: 700; color: #fff; white-space: nowrap; }
        .main-nav { display: none; }
        .nav-toggle { display: block; width: 24px; height: 24px; background: none; border: none; cursor: pointer; z-index: 1001; position: relative; }
        .nav-toggle .icon-bar { display: block; width: 100%; height: 2px; background-color: #fff; border-radius: 1px; transition: all 0.3s ease; }
        .nav-toggle .icon-bar:nth-child(2) { margin: 6px 0; }
        .mobile-nav-open .nav-toggle .icon-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .mobile-nav-open .nav-toggle .icon-bar:nth-child(2) { opacity: 0; }
        .mobile-nav-open .nav-toggle .icon-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
        .drawer-nav { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background-color: var(--surface-color); z-index: 999; transition: left 0.3s ease; padding: 20px; display: flex; flex-direction: column; }
        .drawer-nav .logo { margin-bottom: 30px; }
        .drawer-nav .logo span { color: var(--text-color); }
        .drawer-nav-links { list-style: none; flex-grow: 1; }
        .drawer-nav-links a { display: block; padding: 12px 0; font-size: 16px; color: var(--text-color); font-weight: 500; border-bottom: 1px solid var(--border-color); }
        .drawer-nav-links a:hover { color: var(--primary-color); }
        .nav-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); z-index: 998; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
        .mobile-nav-open .drawer-nav { left: 0; }
        .mobile-nav-open .nav-mask { opacity: 1; visibility: visible; }
        .btn { display: inline-block; padding: 12px 28px; background-color: var(--primary-color); color: #fff; border-radius: 50px; font-weight: 600; text-align: center; transition: background-color 0.3s ease, transform 0.3s ease; border: none; cursor: pointer; }
        .btn:hover { background-color: var(--primary-color-dark); transform: translateY(-2px); }
        .btn-secondary { background-color: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); }
        .btn-secondary:hover { background-color: var(--primary-color-light); color: var(--primary-color); }
        .hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--header-height) 20px 60px; overflow: hidden; }
        .hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-color) url('https://images.unsplash.com/photo-1593435713503-255515c545a2?q=80&w=1920&auto=format&fit=crop') center/cover; opacity: 0.1; z-index: -1; }
        .hero-bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, transparent, var(--bg-color) 80%); }
        .hero-content { max-width: 800px; z-index: 1; }
        .hero-title { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; background: linear-gradient(45deg, #fff, var(--primary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-subtitle { font-size: 1.2rem; color: var(--text-secondary-color); margin-bottom: 40px; }
        .hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .section { padding: 80px 0; }
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
        .section-title p { font-size: 1.1rem; color: var(--text-secondary-color); max-width: 600px; margin: 0 auto; }
        .trust-bar { background-color: var(--surface-color); padding: 40px 0; text-align: center; }
        .trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
        .trust-item { }
        .trust-item svg { width: 40px; height: 40px; color: var(--primary-color); margin-bottom: 15px; }
        .trust-item h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 5px; }
        .trust-item p { color: var(--text-secondary-color); font-size: 0.9rem; }
        .services-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
        .service-card { background-color: var(--surface-color); border-radius: 12px; padding: 30px; text-align: center; border: 1px solid var(--border-color); transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(187,134,252, 0.1); }
        .service-card-icon { width: 80px; height: 80px; margin: 0 auto 20px; }
        .service-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 15px; }
        .service-card p { color: var(--text-secondary-color); margin-bottom: 25px; }
        .data-section { background-color: var(--surface-color); }
        .data-content { display: flex; flex-direction: column; gap: 40px; align-items: center; }
        .data-text { text-align: left; max-width: 500px; }
        .data-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
        .data-text p { color: var(--text-secondary-color); margin-bottom: 20px; }
        .data-image { max-width: 500px; width: 100%; border-radius: 12px; }
        .article-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
        .article-card { background-color: var(--surface-color); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--border-color); transition: transform 0.3s ease; }
        .article-card:hover { transform: translateY(-5px); }
        .article-card-image { aspect-ratio: 16 / 9; object-fit: cover; }
        .article-card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
        .article-card-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
        .article-card-title a { color: var(--text-color); }
        .article-card-title a:hover { color: var(--primary-color); }
        .article-card-summary { color: var(--text-secondary-color); font-size: 0.95rem; margin-bottom: 15px; flex-grow: 1; }
        .article-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-secondary-color); border-top: 1px solid var(--border-color); padding-top: 15px; }
        .article-card-tags a { background-color: var(--primary-color-light); color: var(--primary-color); padding: 3px 8px; border-radius: 4px; font-size: 0.8rem; margin-right: 5px; }
        .cta-section { background: linear-gradient(45deg, var(--primary-color), var(--primary-color-dark)); text-align: center; padding: 80px 20px; }
        .cta-section h2 { font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 15px; }
        .cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
        .cta-section .btn { background-color: #fff; color: var(--primary-color); padding: 14px 35px; }
        .footer { background-color: var(--surface-color); padding: 60px 0 30px; }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; text-align: center; }
        .footer-brand p { color: var(--text-secondary-color); font-size: 0.9rem; margin-top: 15px; }
        .footer-links h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 15px; }
        .footer-links ul { list-style: none; }
        .footer-links ul li { margin-bottom: 10px; }
        .footer-links ul a { color: var(--text-secondary-color); }
        .footer-links ul a:hover { color: #fff; }
        .footer-bottom { border-top: 1px solid var(--border-color); margin-top: 40px; padding-top: 30px; text-align: center; font-size: 0.9rem; color: var(--text-secondary-color); }
        @media (min-width: 768px) {
            .main-nav { display: flex; align-items: center; gap: 30px; }
            .main-nav a { color: #fff; font-weight: 500; }
            .main-nav a:hover { color: var(--primary-color); }
            .nav-toggle { display: none; }
            .hero-title { font-size: 3.5rem; }
            .trust-grid { grid-template-columns: repeat(4, 1fr); }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .data-content { flex-direction: row; }
            .data-text, .data-image { flex: 1; }
            .article-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 2fr 1fr 1fr; text-align: left; }
        }
        @media (min-width: 1024px) {
            .services-grid { grid-template-columns: repeat(3, 1fr); }
            .article-grid { grid-template-columns: repeat(3, 1fr); }
        }