
        :root {
            --k8qm-primary: #0052D4;
            --k8qm-secondary: #00D2FF;
            --k8qm-accent: #6FB1FC;
            --k8qm-dark: #1A1C20;
            --k8qm-light: #F8FAFC;
            --k8qm-text: #334155;
            --k8qm-text-light: #64748B;
            --k8qm-white: #ffffff;
            --k8qm-spacing: 8px;
            --k8qm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: "Inter", "Microsoft YaHei", sans-serif;
            background-color: var(--k8qm-light);
            color: var(--k8qm-text);
            line-height: 1.6;
            overflow-x: hidden;
            word-break: break-word;
        }

        /* Typography */
        h1, h2, h3 {
            line-height: 1.2;
            color: var(--k8qm-dark);
            word-break: keep-all;
        }

        p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Navigation */
        .k8qm-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }

        .k8qm-nav-container {
            width: 95vw;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .k8qm-logo {
            flex-shrink: 0;
        }

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

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

        .k8qm-nav-item a {
            text-decoration: none;
            color: var(--k8qm-text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--k8qm-transition);
            position: relative;
            padding: 5px 0;
        }

        .k8qm-nav-item a:hover {
            color: var(--k8qm-primary);
        }

        .k8qm-nav-item a.active {
            color: var(--k8qm-primary);
        }

        .k8qm-nav-item a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--k8qm-primary);
        }

        /* Hero Section - Unique Diagonal Split */
        .k8qm-hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, #1A1C20 0%, #0052D4 100%);
            color: var(--k8qm-white);
            position: relative;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        }

        .k8qm-hero-content {
            width: 90vw;
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .k8qm-hero h1 {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            color: var(--k8qm-white);
            margin-bottom: 24px;
            font-weight: 800;
        }

        .k8qm-hero p {
            font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        /* Main Container */
        .k8qm-main-wrapper {
            width: 90vw;
            max-width: 1200px;
            margin: -60px auto 80px;
            position: relative;
            z-index: 10;
        }

        /* Comparison Matrix Cards */
        .k8qm-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 64px;
        }

        .k8qm-card {
            background: var(--k8qm-white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--k8qm-transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            min-width: 0;
        }

        .k8qm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 82, 212, 0.1);
        }

        .k8qm-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .k8qm-metric-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(0, 82, 212, 0.1);
            color: var(--k8qm-primary);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        /* Benchmark Section */
        .k8qm-benchmark-box {
            background: var(--k8qm-dark);
            color: var(--k8qm-white);
            border-radius: 24px;
            padding: 64px;
            margin: 64px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .k8qm-benchmark-item {
            flex: 1;
            min-width: 240px;
        }

        .k8qm-benchmark-value {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #00D2FF, #92FE9D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }

        .k8qm-benchmark-label {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 12px;
            display: block;
        }

        /* Industry Solutions */
        .k8qm-industry-section {
            padding: 80px 0;
        }

        .k8qm-section-title {
            text-align: center;
            margin-bottom: 48px;
        }

        .k8qm-solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 24px;
        }

        .k8qm-solution-card {
            background: var(--k8qm-white);
            padding: 32px;
            border-radius: 16px;
            border-left: 6px solid var(--k8qm-primary);
        }

        /* Roadmap Timeline */
        .k8qm-roadmap {
            margin: 80px 0;
            background: var(--k8qm-white);
            padding: 48px;
            border-radius: 24px;
        }

        .k8qm-timeline {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 32px;
        }

        .k8qm-timeline-item {
            flex: 1;
            min-width: 260px;
            padding: 24px;
            background: var(--k8qm-light);
            border-radius: 12px;
            position: relative;
        }

        .k8qm-quarter {
            font-weight: 800;
            color: var(--k8qm-primary);
            font-size: 1.2rem;
            display: block;
            margin-bottom: 8px;
        }

        /* Testimonials */
        .k8qm-testimonials {
            padding: 80px 0;
        }

        .k8qm-testimony-card {
            font-style: italic;
            padding: 32px;
            background: rgba(255, 255, 255, 0.5);
            border: 1px dashed var(--k8qm-accent);
            border-radius: 16px;
            margin-bottom: 24px;
        }

        /* Footer */
        .k8qm-footer {
            background: var(--k8qm-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 40px;
        }

        .k8qm-footer-content {
            width: 90vw;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
        }

        .k8qm-footer-brand h2 {
            color: var(--k8qm-white);
            margin-bottom: 16px;
        }

        .k8qm-footer-links {
            display: flex;
            gap: 48px;
            flex-wrap: wrap;
        }

        .k8qm-footer-group h4 {
            color: var(--k8qm-white);
            margin-bottom: 20px;
        }

        .k8qm-footer-group ul {
            list-style: none;
        }

        .k8qm-footer-group ul li {
            margin-bottom: 10px;
        }

        .k8qm-footer-group a {
            color: inherit;
            text-decoration: none;
            transition: var(--k8qm-transition);
        }

        .k8qm-footer-group a:hover {
            color: var(--k8qm-white);
        }

        .k8qm-copyright {
            width: 100%;
            text-align: center;
            margin-top: 60px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .k8qm-nav-container {
                flex-direction: column;
                padding: 10px;
            }
            .k8qm-navbar {
                height: auto;
                position: relative;
            }
            .k8qm-nav-menu {
                justify-content: center;
                padding: 16px 0;
            }
            .k8qm-hero {
                padding: 80px 0 60px;
                clip-path: none;
            }
            .k8qm-benchmark-box {
                padding: 32px;
            }
            .k8qm-main-wrapper {
                margin-top: 24px;
            }
        }

        /* Utility */
        .k8qm-btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--k8qm-transition);
            cursor: pointer;
            border: none;
        }

        .k8qm-btn-primary {
            background: var(--k8qm-primary);
            color: var(--k8qm-white);
            box-shadow: 0 4px 15px rgba(0, 82, 212, 0.3);
        }

        .k8qm-btn-primary:hover {
            background: #0041a8;
            transform: scale(1.05);
        }
    