
        :root {
            --u25mzy-primary: #D42323;
            --u25mzy-secondary: #2C2C2C;
            --u25mzy-accent: #00A0E9;
            --u25mzy-bg: #F9FAFB;
            --u25mzy-text: #1F2937;
            --u25mzy-white: #FFFFFF;
            --u25mzy-gray-light: #F3F4F6;
            --u25mzy-max-width: 1320px;
        }

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

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--u25mzy-text);
            background-color: var(--u25mzy-bg);
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
        }

        .u25mzy-container {
            width: 100%;
            max-width: var(--u25mzy-max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .u25mzy-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .u25mzy-nav-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 72px;
            min-width: 0;
        }

        .u25mzy-logo {
            flex: 0 0 auto;
            min-width: 0;
        }

        .u25mzy-logo img {
            height: 32px;
            width: auto;
            display: block;
        }

        .u25mzy-nav-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 20px;
            min-width: 0;
        }

        .u25mzy-nav-menu li {
            min-width: 0;
        }

        .u25mzy-nav-menu a {
            text-decoration: none;
            color: var(--u25mzy-secondary);
            font-weight: 500;
            font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1rem);
            transition: color 0.3s;
            padding: 8px 4px;
            position: relative;
        }

        .u25mzy-nav-menu a:hover {
            color: var(--u25mzy-primary);
        }

        .u25mzy-nav-menu a.u25mzy-active {
            color: var(--u25mzy-primary);
        }

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

        /* Hero Section - Unique Diagonal Design */
        .u25mzy-hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
            position: relative;
            overflow: hidden;
        }

        .u25mzy-hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212,35,35,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .u25mzy-hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-width: 0;
        }

        .u25mzy-hero-text {
            flex: 1 1 600px;
            min-width: 0;
            word-break: break-word;
        }

        .u25mzy-hero-title {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            color: var(--u25mzy-secondary);
            margin-bottom: 24px;
        }

        .u25mzy-hero-subtitle {
            font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.5rem);
            color: #666;
            margin-bottom: 40px;
            max-width: 800px;
        }

        /* Shortcut Cards Grid */
        .u25mzy-section-title {
            text-align: center;
            margin-bottom: 64px;
            min-width: 0;
        }

        .u25mzy-section-title h2 {
            font-size: clamp(2rem, 3vw + 1rem, 3rem);
            margin-bottom: 16px;
        }

        .u25mzy-shortcut-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 96px;
        }

        .u25mzy-shortcut-card {
            background: var(--u25mzy-white);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
            min-width: 0;
        }

        .u25mzy-shortcut-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        }

        .u25mzy-card-category {
            display: inline-block;
            padding: 4px 12px;
            background: var(--u25mzy-gray-light);
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--u25mzy-primary);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .u25mzy-shortcut-list {
            list-style: none;
        }

        .u25mzy-shortcut-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
        }

        .u25mzy-shortcut-item:last-child {
            border-bottom: none;
        }

        .u25mzy-key {
            background: #eee;
            padding: 2px 8px;
            border-radius: 4px;
            font-family: monospace;
            font-weight: bold;
            box-shadow: 0 2px 0 #ccc;
            font-size: 0.9rem;
        }

        /* Synergy Solutions - Alternating Layout */
        .u25mzy-synergy {
            background-color: var(--u25mzy-secondary);
            color: var(--u25mzy-white);
            padding: 96px 0;
        }

        .u25mzy-synergy-item {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin-bottom: 80px;
            align-items: center;
            min-width: 0;
        }

        .u25mzy-synergy-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .u25mzy-synergy-text {
            flex: 1 1 450px;
            min-width: 0;
        }

        .u25mzy-synergy-text h3 {
            font-size: clamp(1.5rem, 2vw + 1rem, 2.25rem);
            margin-bottom: 24px;
            color: var(--u25mzy-primary);
        }

        .u25mzy-tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
        }

        .u25mzy-tag {
            background: rgba(255,255,255,0.1);
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 0.9rem;
        }

        .u25mzy-workflow-box {
            background: rgba(255,255,255,0.05);
            padding: 24px;
            border-left: 4px solid var(--u25mzy-primary);
            margin-top: 24px;
        }

        /* Success Stories */
        .u25mzy-narratives {
            padding: 96px 0;
        }

        .u25mzy-narrative-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            min-width: 0;
        }

        .u25mzy-narrative-card {
            flex: 1 1 500px;
            background: var(--u25mzy-white);
            padding: 48px;
            border-radius: 24px;
            min-width: 0;
            border: 1px solid #eee;
        }

        .u25mzy-narrative-card h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--u25mzy-secondary);
        }

        .u25mzy-narrative-outcome {
            margin-top: 24px;
            font-weight: bold;
            color: var(--u25mzy-primary);
        }

        /* Footer */
        .u25mzy-footer {
            background: #111;
            color: #999;
            padding: 80px 0 40px;
            min-width: 0;
        }

        .u25mzy-footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 60px;
        }

        .u25mzy-footer-brand {
            flex: 1 1 300px;
            min-width: 0;
        }

        .u25mzy-footer-brand h2 {
            color: var(--u25mzy-white);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .u25mzy-footer-links {
            flex: 1 1 200px;
            min-width: 0;
        }

        .u25mzy-footer-links h5 {
            color: var(--u25mzy-white);
            margin-bottom: 20px;
            font-size: 1rem;
        }

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

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

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

        .u25mzy-footer-links a:hover {
            color: var(--u25mzy-white);
        }

        .u25mzy-copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #222;
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .u25mzy-nav-wrapper {
                height: auto;
                padding: 16px 0;
            }
            .u25mzy-nav-menu {
                width: 100%;
                margin-top: 16px;
                justify-content: center;
                gap: 10px;
            }
            .u25mzy-hero {
                padding: 120px 0 60px;
                text-align: center;
            }
            .u25mzy-synergy-item, .u25mzy-synergy-item:nth-child(even) {
                flex-direction: column;
            }
        }
    