
        /* --- 极致紧凑、高转化 CTA 模块版式 --- */
        .uee-cta-ready-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #56B8B8; /* 核心品牌青色 */
            padding: 60px 5%; /* 紧凑上下边距 */
            color: #ffffff;
            overflow: hidden;
        }

        .uee-cta-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center; /* 垂直居中 */
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        /* --- 左侧文字区 --- */
        .uee-cta-left {
            flex: 1.2;
            min-width: 320px;
        }

        .uee-cta-left h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -1.5px;
            margin: 0 0 16px 0;
        }

        .uee-cta-left p {
            font-size: 17px;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.9);
            max-width: 540px;
            margin-bottom: 30px;
        }

        /* 橙色主按钮 */
        .uee-btn-speak {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FF8022; /* 核心橙色 */
            color: #ffffff;
            padding: 16px 36px;
            border-radius: 8px; /* 匹配图中微圆角 */
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(255, 128, 34, 0.25);
        }

        .uee-btn-speak:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 128, 34, 0.4);
            background-color: #f77619;
        }

        .uee-btn-speak::after {
            content: '→';
            margin-left: 10px;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .uee-btn-speak:hover::after {
            transform: translateX(5px);
        }

        /* --- 右侧磨砂数据卡片 --- */
        .uee-cta-right {
            flex: 1;
            min-width: 380px;
            display: flex;
            justify-content: center;
        }

        .uee-stats-glass {
            background: rgba(255, 255, 255, 0.15); /* 玻璃质感透明度 */
            backdrop-filter: blur(10px); /* 毛玻璃模糊 */
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            gap: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transition: transform 0.4s ease;
        }

        .uee-stats-glass:hover {
            transform: scale(1.03);
            background: rgba(255, 255, 255, 0.2);
        }

        .uee-stat-box {
            text-align: center;
        }

        .uee-stat-box b {
            display: block;
            font-size: 44px;
            font-weight: 800;
            color: #FF8022; /* 数据使用橙色高亮 */
            line-height: 1;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }

        .uee-stat-box span {
            display: block;
            font-size: 12px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.85);
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.2;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-cta-container { flex-direction: column; text-align: center; }
            .uee-cta-left p { margin-left: auto; margin-right: auto; }
            .uee-stats-glass { padding: 30px; width: 100%; justify-content: center; }
        }

        @media (max-width: 480px) {
            .uee-stats-glass { gap: 20px; flex-direction: column; }
            .uee-btn-speak { width: 100%; }
        }
    