
        /* --- 极致紧凑、动态汽车背景 CTA 模块 --- */
        .uee-auto-cta-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            position: relative;
            /* 1. 背景颜色渐变 */
            background: linear-gradient(135deg, #56B8B8 0%, #3E9292 100%);
            padding: 80px 5%; 
            color: #ffffff;
            overflow: hidden; /* 隐藏溢出的浮动小车 */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* --- 2. 背景汽车浮动动态效果 --- */
        .uee-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .uee-car-icon {
            position: absolute;
            opacity: 0.12; /* 极低透明度，增加高级感 */
            animation: carFloat 20s infinite ease-in-out;
            color: #ffffff;
        }

        @keyframes carFloat {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(40px, -30px) rotate(5deg); }
            100% { transform: translate(-20px, 10px) rotate(-5deg); }
        }

        /* 放置不同位置的小车 */
        .car-1 { top: 10%; left: 5%; font-size: 50px; animation-duration: 25s; }
        .car-2 { bottom: 15%; left: 15%; font-size: 30px; animation-duration: 18s; animation-delay: -2s; }
        .car-3 { top: 20%; right: 10%; font-size: 45px; animation-duration: 22s; animation-delay: -5s; }
        .car-4 { bottom: 10%; right: 25%; font-size: 35px; animation-duration: 20s; animation-delay: -8s; }

        .uee-cta-main-container {
            position: relative;
            z-index: 5;
            max-width: 1300px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            flex-wrap: wrap;
        }

        /* --- 3. 文字区域：显著增加宽度 --- */
        .uee-cta-text-side {
            flex: 1.5; /* 占据更多空间 */
            min-width: 400px;
            text-align: left;
        }

        .uee-cta-text-side h2 {
            font-size: clamp(32px, 4.5vw, 46px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -2px;
            margin: 0 0 20px 0;
        }

        .uee-cta-text-side p {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.5;
            /* 核心：文字显示宽度增加 */
            max-width: 950px; 
            margin-bottom: 40px;
        }

        /* 单一主按钮 */
        .uee-btn-demo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FF8022; /* 匹配亮橙色 */
            color: #ffffff;
            padding: 18px 44px;
            border-radius: 10px;
            font-size: 19px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 25px rgba(255, 128, 34, 0.3);
        }

        .uee-btn-demo:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 128, 34, 0.45);
            background-color: #f77619;
        }

        .uee-btn-demo::after {
            content: '→';
            margin-left: 12px;
            font-size: 22px;
            transition: transform 0.3s ease;
        }

        /* --- 4. 右侧磨砂数据卡片 --- */
        .uee-cta-stat-side {
            flex: 1;
            min-width: 380px;
            display: flex;
            justify-content: flex-end;
        }

        .uee-glass-stats-box {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 40px;
            display: flex;
            gap: 50px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .uee-stat-block {
            text-align: center;
        }

        .uee-stat-block b {
            display: block;
            font-size: 48px;
            font-weight: 800;
            color: #FF8022; /* 橙色高亮数据 */
            line-height: 1;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }

        .uee-stat-block span {
            display: block;
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.85);
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.2;
            white-space: nowrap;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-cta-main-container { flex-direction: column; text-align: center; }
            .uee-cta-text-side { text-align: center; min-width: 100%; }
            .uee-cta-stat-side { justify-content: center; width: 100%; margin-top: 40px; }
            .uee-cta-text-side p { margin-left: auto; margin-right: auto; }
        }

        @media (max-width: 480px) {
            .uee-glass-stats-box { gap: 20px; flex-direction: column; padding: 30px; }
            .uee-btn-demo { width: 100%; padding: 16px 20px; }
        }
    