    
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #00D4FF;
            --secondary: #0066FF;
            --dark: #050B14;
            --gray: #8B92A8;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans SC', sans-serif;
            background: var(--dark);
            color: #fff;
            line-height: 1.6;
        }
        #matrix-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.12;
        }
        .grid-bg {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
            animation: grid-move 25s linear infinite;
        }
        @keyframes grid-move {
            0% { background-position: 0 0; }
            100% { background-position: 60px 60px; }
        }
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 20px 40px;
            background: rgba(5, 11, 20, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        }
        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-icon {
            width: 45px; height: 45px;
            background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,102,255,0.2));
            border: 2px solid var(--primary);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: var(--primary); font-weight: 700; font-size: 18px;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
            50% { box-shadow: 0 0 35px rgba(0, 212, 255, 0.6); }
        }
        .logo-text { font-size: 24px; font-weight: 700; color: white; }
        .logo-text span { color: var(--primary); }
        .nav-links { display: flex; gap: 50px; list-style: none; }
        .nav-links a {
            text-decoration: none; color: rgba(255,255,255,0.8);
            font-weight: 500; font-size: 15px;
            transition: all 0.3s;
        }
        .nav-links a:hover { color: var(--primary); }
        .nav-cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark);
            padding: 12px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
        }
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            z-index: 10;
            overflow: hidden;
        }
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(5, 11, 20, 0.7), rgba(5, 11, 20, 0.5));
            z-index: -1;
        }
        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            padding: 8px 20px;
            border-radius: 20px;
            color: var(--primary);
            font-size: 14px;
            margin-bottom: 30px;
        }
        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        .hero h1 .gradient {
            background: linear-gradient(135deg, #00D4FF 0%, #0066FF 50%, #00D4AA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            font-size: 20px;
            color: var(--gray);
            margin-bottom: 40px;
        }
        .hero-buttons { display: flex; gap: 20px; }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark);
            padding: 16px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.3);
        }
        .btn-outline {
            background: transparent;
            color: white;
            padding: 16px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), inset 0 0 20px rgba(0, 212, 255, 0.1);
            transform: translateY(-3px);
        }
        .tech-orb {
            width: 400px; height: 400px;
            position: relative;
        }
        .orb-ring {
            position: absolute;
            border: 2px solid rgba(0, 212, 255, 0.2);
            border-radius: 50%;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
        }
        .orb-ring:nth-child(1) {
            width: 100%; height: 100%;
            animation: rotate 30s linear infinite;
            border-top-color: var(--primary);
        }
        .orb-ring:nth-child(2) {
            width: 75%; height: 75%;
            animation: rotate-reverse 20s linear infinite;
            border-bottom-color: var(--secondary);
        }
        .orb-ring:nth-child(3) {
            width: 50%; height: 50%;
            animation: rotate 15s linear infinite;
            border-left-color: #00D4AA;
        }
        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        @keyframes rotate-reverse {
            from { transform: translate(-50%, -50%) rotate(360deg); }
            to { transform: translate(-50%, -50%) rotate(0deg); }
        }
        .orb-core {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 150px; height: 150px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 80px;
            animation: core-pulse 3s ease-in-out infinite;
        }
        @keyframes core-pulse {
            0%, 100% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.3); }
            50% { box-shadow: 0 0 70px rgba(0, 212, 255, 0.5); }
        }
        section {
            padding: 100px 40px;
            position: relative;
            z-index: 10;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-tag {
            display: inline-block;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        .section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .section-desc {
            font-size: 18px;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .solution-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s ease;
        }
        .solution-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 212, 255, 0.3);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }
        .solution-icon {
            width: 70px; height: 70px;
            background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,102,255,0.2));
            border-radius: 20px;
            display: flex; align-items: center; justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
        }
        .solution-card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .solution-card p {
            color: var(--gray);
            line-height: 1.7;
        }
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        .case-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: rgba(255,255,255,0.05);
            aspect-ratio: 16/10;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }
        .case-card {
            position: relative;
            overflow: hidden;
        }
        .case-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 212, 255, 0.4);
        }
        .case-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 1;
            z-index: 1;
        }
        .case-image {
            display: none;
        }
        .case-content {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 30px;
            background: linear-gradient(to top, rgba(5, 11, 20, 0.98), transparent);
        }
        .case-tag {
            display: inline-block;
            background: rgba(0, 212, 255, 0.15);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 12px;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }
        @media (max-width: 1024px) {
            .hero-content { grid-template-columns: 1fr; }
            .hero h1 { font-size: 48px; }
            .solutions-grid { grid-template-columns: repeat(2, 1fr); }
            .tech-orb { width: 300px; height: 300px; }
        }
        /* News Cards */
        .news-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 212, 255, 0.3);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        @media (max-width: 1024px) {
            .news-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .news-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 36px; }
            .solutions-grid { grid-template-columns: 1fr; }
            .cases-grid { grid-template-columns: 1fr; }
        }
    
