
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        /* ===== Header & Navigation ===== */
        .uvq6jx-header {
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .uvq6jx-nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            position: relative;
        }

        .uvq6jx-logo img {
            height: 40px;
            width: auto;
        }

        .uvq6jx-nav-menu {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .uvq6jx-nav-menu a {
            text-decoration: none;
            color: #333;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .uvq6jx-nav-menu a:hover {
            color: #0088cc;
        }

        .uvq6jx-nav-menu a.active {
            color: #0088cc;
        }

        .uvq6jx-nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 3px;
            background: #0088cc;
            border-radius: 2px;
        }

        .uvq6jx-download-btn {
            background: #0088cc;
            color: white;
            padding: 10px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .uvq6jx-download-btn:hover {
            background: #0077b5;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
        }

        .uvq6jx-menu-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            gap: 6px;
            padding: 8px;
        }

        .uvq6jx-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .uvq6jx-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .uvq6jx-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .uvq6jx-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .uvq6jx-nav-overlay {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .uvq6jx-nav-overlay.active {
            display: block;
        }

        /* ===== Page Intro Section ===== */
        .uvq6jx-intro-section {
            background: linear-gradient(135deg, #0088cc 0%, #005a96 100%);
            padding: 60px 20px;
            text-align: center;
        }

        .uvq6jx-intro-content {
            max-width: 800px;
            margin: 0 auto;
            color: white;
        }

        .uvq6jx-intro-content h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .uvq6jx-intro-content p {
            font-size: 18px;
            opacity: 0.95;
            line-height: 1.6;
        }

        /* ===== Features Grid ===== */
        .uvq6jx-features-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .uvq6jx-features-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .uvq6jx-features-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .uvq6jx-features-header p {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .uvq6jx-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .uvq6jx-feature-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .uvq6jx-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
            border-color: #0088cc;
        }

        .uvq6jx-feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .uvq6jx-feature-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .uvq6jx-feature-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.8;
        }

        /* ===== Features Showcase ===== */
        .uvq6jx-showcase-section {
            background: #f8f9fa;
            padding: 80px 20px;
        }

        .uvq6jx-showcase-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .uvq6jx-showcase-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .uvq6jx-showcase-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .uvq6jx-showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .uvq6jx-showcase-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .uvq6jx-showcase-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .uvq6jx-showcase-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .uvq6jx-showcase-content {
            padding: 25px;
        }

        .uvq6jx-showcase-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .uvq6jx-showcase-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* ===== Stats Section ===== */
        .uvq6jx-stats-section {
            background: linear-gradient(135deg, #0088cc 0%, #005a96 100%);
            padding: 80px 20px;
            color: white;
        }

        .uvq6jx-stats-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .uvq6jx-stats-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .uvq6jx-stats-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .uvq6jx-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .uvq6jx-stat-item {
            text-align: center;
        }

        .uvq6jx-stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .uvq6jx-stat-unit {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            opacity: 0.95;
        }

        .uvq6jx-stat-label {
            font-size: 14px;
            opacity: 0.85;
            line-height: 1.6;
        }

        /* ===== Comparison Table ===== */
        .uvq6jx-comparison-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .uvq6jx-comparison-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .uvq6jx-comparison-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .uvq6jx-comparison-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .uvq6jx-comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .uvq6jx-comparison-table th {
            background: #0088cc;
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 600;
            font-size: 15px;
        }

        .uvq6jx-comparison-table td {
            padding: 18px 20px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 14px;
        }

        .uvq6jx-comparison-table tr:last-child td {
            border-bottom: none;
        }

        .uvq6jx-comparison-table tbody tr:hover {
            background: #f8f9fa;
        }

        .uvq6jx-check-mark {
            color: #28a745;
            font-weight: 700;
            font-size: 18px;
        }

        .uvq6jx-cross-mark {
            color: #dc3545;
            font-weight: 700;
            font-size: 18px;
        }

        /* ===== Scenarios Section ===== */
        .uvq6jx-scenarios-section {
            background: #f8f9fa;
            padding: 80px 20px;
        }

        .uvq6jx-scenarios-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .uvq6jx-scenarios-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .uvq6jx-scenarios-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .uvq6jx-scenarios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .uvq6jx-scenario-card {
            background: white;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            border-left: 4px solid #0088cc;
        }

        .uvq6jx-scenario-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .uvq6jx-scenario-icon {
            font-size: 44px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .uvq6jx-scenario-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .uvq6jx-scenario-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* ===== Tech Advantages ===== */
        .uvq6jx-tech-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .uvq6jx-tech-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .uvq6jx-tech-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .uvq6jx-tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .uvq6jx-tech-item {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-top: 4px solid #0088cc;
            transition: all 0.3s ease;
        }

        .uvq6jx-tech-item:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .uvq6jx-tech-item h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .uvq6jx-tech-item p {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
        }

        /* ===== CTA Section ===== */
        .uvq6jx-cta-section {
            background: linear-gradient(135deg, #0088cc 0%, #005a96 100%);
            padding: 60px 20px;
            text-align: center;
            color: white;
        }

        .uvq6jx-cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .uvq6jx-cta-content h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .uvq6jx-cta-content p {
            font-size: 16px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .uvq6jx-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .uvq6jx-cta-primary {
            background: white;
            color: #0088cc;
            padding: 14px 40px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .uvq6jx-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .uvq6jx-cta-secondary {
            background: transparent;
            color: white;
            padding: 14px 40px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: 2px solid white;
            cursor: pointer;
            display: inline-block;
        }

        .uvq6jx-cta-secondary:hover {
            background: white;
            color: #0088cc;
        }

        /* ===== Footer ===== */
        .uvq6jx-footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 60px 20px 30px;
        }

        .uvq6jx-footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .uvq6jx-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .uvq6jx-footer-section h4 {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .uvq6jx-footer-section ul {
            list-style: none;
        }

        .uvq6jx-footer-section ul li {
            margin-bottom: 12px;
        }

        .uvq6jx-footer-section a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .uvq6jx-footer-section a:hover {
            color: #0088cc;
        }

        .uvq6jx-footer-brand {
            color: white;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .uvq6jx-footer-divider {
            border-top: 1px solid #333;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .uvq6jx-footer-bottom {
            font-size: 14px;
            color: #888;
        }

        .uvq6jx-footer-social {
            display: flex;
            gap: 20px;
        }

        .uvq6jx-footer-social a {
            color: #ccc;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .uvq6jx-footer-social a:hover {
            color: #0088cc;
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 768px) {
            .uvq6jx-menu-toggle {
                display: flex;
            }

            .uvq6jx-nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 20px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                z-index: 1001;
            }

            .uvq6jx-nav-menu.active {
                display: flex;
            }

            .uvq6jx-nav-menu a {
                padding: 12px 0;
                border-bottom: 1px solid #f0f0f0;
            }

            .uvq6jx-nav-menu a.active::after {
                display: none;
            }

            .uvq6jx-intro-content h1 {
                font-size: 28px;
            }

            .uvq6jx-intro-content p {
                font-size: 16px;
            }

            .uvq6jx-features-header h2,
            .uvq6jx-showcase-header h2,
            .uvq6jx-stats-header h2,
            .uvq6jx-comparison-header h2,
            .uvq6jx-scenarios-header h2,
            .uvq6jx-tech-header h2,
            .uvq6jx-cta-content h2 {
                font-size: 26px;
            }

            .uvq6jx-features-grid,
            .uvq6jx-showcase-grid,
            .uvq6jx-scenarios-grid,
            .uvq6jx-tech-grid {
                grid-template-columns: 1fr;
            }

            .uvq6jx-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .uvq6jx-feature-card,
            .uvq6jx-scenario-card {
                padding: 25px;
            }

            .uvq6jx-comparison-table th,
            .uvq6jx-comparison-table td {
                padding: 12px 15px;
                font-size: 13px;
            }

            .uvq6jx-cta-buttons {
                flex-direction: column;
            }

            .uvq6jx-cta-primary,
            .uvq6jx-cta-secondary {
                width: 100%;
            }

            .uvq6jx-footer-divider {
                flex-direction: column;
                align-items: flex-start;
            }

            .uvq6jx-footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .uvq6jx-nav {
                height: 60px;
            }

            .uvq6jx-intro-section {
                padding: 40px 15px;
            }

            .uvq6jx-intro-content h1 {
                font-size: 22px;
            }

            .uvq6jx-intro-content p {
                font-size: 14px;
            }

            .uvq6jx-features-wrapper,
            .uvq6jx-showcase-section,
            .uvq6jx-stats-section,
            .uvq6jx-comparison-section,
            .uvq6jx-scenarios-section,
            .uvq6jx-tech-section {
                padding: 50px 15px;
            }

            .uvq6jx-stats-grid {
                grid-template-columns: 1fr;
            }

            .uvq6jx-stat-number {
                font-size: 36px;
            }

            .uvq6jx-footer-grid {
                grid-template-columns: 1fr;
            }
        }
    