
        :root {
            --uk3xk0-primary: #FFB84D;
            --uk3xk0-primary-dark: #FF6600;
            --uk3xk0-accent: #FF4D4D;
            --uk3xk0-bg-light: #FFFFFF;
            --uk3xk0-bg-alt: #F8F9FA;
            --uk3xk0-text-main: #2D3436;
            --uk3xk0-text-muted: #636E72;
            --uk3xk0-spacing-unit: 8px;
            --uk3xk0-max-width: 1300px;
        }

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

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--uk3xk0-text-main);
            background-color: var(--uk3xk0-bg-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Layout Helpers */
        .uk3xk0-container {
            max-width: var(--uk3xk0-max-width);
            margin: 0 auto;
            padding: 0 calc(var(--uk3xk0-spacing-unit) * 3);
            width: 100%;
        }

        .uk3xk0-flex {
            display: flex;
            flex-wrap: wrap;
        }

        .uk3xk0-flex-item {
            min-width: 0;
        }

        /* Typography */
        h1, h2, h3 {
            word-break: keep-all;
            white-space: normal;
            line-height: 1.2;
        }

        p {
            word-break: break-word;
            overflow-wrap: break-word;
            line-height: 1.8;
            margin-bottom: calc(var(--uk3xk0-spacing-unit) * 2);
        }

        /* Navigation */
        .uk3xk0-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 72px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }

        .uk3xk0-nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            max-width: var(--uk3xk0-max-width);
            margin: 0 auto;
            padding: 0 calc(var(--uk3xk0-spacing-unit) * 3);
        }

        .uk3xk0-logo img {
            height: 36px;
            display: block;
        }

        .uk3xk0-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: calc(var(--uk3xk0-spacing-unit) * 3);
        }

        .uk3xk0-menu a {
            text-decoration: none;
            color: var(--uk3xk0-text-main);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
            padding: 8px 0;
        }

        .uk3xk0-menu a:hover {
            color: var(--uk3xk0-primary-dark);
        }

        /* Hero Comparison */
        .uk3xk0-hero {
            padding-top: 160px;
            padding-bottom: 80px;
            background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
            position: relative;
            overflow: hidden;
        }

        .uk3xk0-hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .uk3xk0-hero-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: calc(var(--uk3xk0-spacing-unit) * 3);
            color: #1a1a1a;
            font-weight: 800;
        }

        .uk3xk0-hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: var(--uk3xk0-text-muted);
            margin-bottom: calc(var(--uk3xk0-spacing-unit) * 5);
        }

        .uk3xk0-hero-visual {
            margin-top: calc(var(--uk3xk0-spacing-unit) * 6);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
        }

        .uk3xk0-vs-badge {
            background: var(--uk3xk0-primary-dark);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 900;
            font-style: italic;
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
        }

        /* Split Comparison Section */
        .uk3xk0-split-section {
            padding: 96px 0;
            background: var(--uk3xk0-bg-light);
        }

        .uk3xk0-split-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 48px;
            align-items: center;
        }

        .uk3xk0-image-box {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .uk3xk0-image-box:hover {
            transform: translateY(-10px);
        }

        .uk3xk0-image-box img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        .uk3xk0-content-box h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 24px;
            background: linear-gradient(to right, #1a1a1a, #666);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Feature Matrix */
        .uk3xk0-matrix {
            background: var(--uk3xk0-bg-alt);
            padding: 96px 0;
        }

        .uk3xk0-matrix-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .uk3xk0-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .uk3xk0-feature-card {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .uk3xk0-feature-card:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            border-color: var(--uk3xk0-primary);
        }

        .uk3xk0-card-icon {
            font-size: 32px;
            margin-bottom: 20px;
            display: block;
        }

        .uk3xk0-feature-card h3 {
            margin-bottom: 16px;
            font-size: 1.25rem;
        }

        /* Comparison Table */
        .uk3xk0-table-section {
            padding: 96px 0;
        }

        .uk3xk0-table-wrapper {
            overflow-x: auto;
            border-radius: 16px;
            box-shadow: 0 0 40px rgba(0,0,0,0.05);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            min-width: 600px;
        }

        th, td {
            padding: 24px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        th {
            background: #fdfdfd;
            font-weight: 700;
            color: #1a1a1a;
        }

        .uk3xk0-highlight-row {
            background: rgba(255, 184, 77, 0.05);
        }

        .uk3xk0-check {
            color: #27ae60;
            font-weight: bold;
        }

        /* CTA Section */
        .uk3xk0-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--uk3xk0-primary) 0%, var(--uk3xk0-primary-dark) 100%);
            color: white;
            text-align: center;
        }

        .uk3xk0-btn-white {
            display: inline-block;
            background: white;
            color: var(--uk3xk0-primary-dark);
            padding: 16px 48px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            margin-top: 32px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .uk3xk0-btn-white:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        /* Dynamic Section */
        .uk3xk0-dynamic-section {
            padding: 96px 0;
            background: #fff;
        }

        .uk3xk0-news-item {
            padding: 24px;
            border-left: 4px solid var(--uk3xk0-primary);
            background: #f9f9f9;
            margin-bottom: 16px;
            transition: background 0.3s;
        }

        .uk3xk0-news-item:hover {
            background: #f0f0f0;
        }

        /* Footer */
        .uk3xk0-footer {
            background: #1a1a1a;
            color: #fff;
            padding: 80px 0 40px;
        }

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

        .uk3xk0-footer-brand h4 {
            font-size: 24px;
            color: var(--uk3xk0-primary);
            margin-bottom: 20px;
        }

        .uk3xk0-footer-links h5 {
            margin-bottom: 20px;
            font-size: 16px;
        }

        .uk3xk0-footer-links ul {
            list-style: none;
        }

        .uk3xk0-footer-links li {
            margin-bottom: 12px;
        }

        .uk3xk0-footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }

        .uk3xk0-footer-links a:hover {
            color: #fff;
        }

        .uk3xk0-copyright {
            padding-top: 40px;
            border-top: 1px solid #333;
            text-align: center;
            color: #666;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .uk3xk0-menu {
                display: none; /* Simplification for mobile */
            }
            .uk3xk0-split-grid {
                grid-template-columns: 1fr;
            }
            .uk3xk0-hero {
                padding-top: 120px;
            }
            .uk3xk0-nav-inner {
                justify-content: center;
            }
        }
    