
        /* --- 极致紧凑、保险版高转化 CTA 模块 --- */
        .uee-ins-cta-wrap {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #56B8B8; /* 核心品牌青色 */
            padding: 60px 5%; 
            color: #ffffff;
            overflow: hidden;
        }

        .uee-ins-cta-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center; /* 垂直居中 */
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        /* --- 左侧：文字与主按钮区 --- */
        .uee-ins-cta-left {
            flex: 1.2;
            min-width: 320px;
        }

        .uee-ins-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-ins-cta-left p {
            font-size: 17px;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.9);
            max-width: 580px;
            margin-bottom: 30px;
        }

        /* 橙色主按钮 */
        .uee-ins-btn-growth {
            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-ins-btn-growth:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 128, 34, 0.4);
            background-color: #f77619;
        }

        .uee-ins-btn-growth::after {
            content: '→';
            margin-left: 10px;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .uee-ins-btn-growth:hover::after {
            transform: translateX(5px);
        }

        /* --- 右侧：磨砂玻璃统计卡片 --- */
        .uee-ins-cta-right {
            flex: 1;
            min-width: 380px;
            display: flex;
            justify-content: center;
        }

        .uee-stats-glass-box {
            background: rgba(255, 255, 255, 0.12); /* 玻璃半透明度 */
            backdrop-filter: blur(10px); /* 核心毛玻璃效果 */
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            gap: 50px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
        }

        .uee-stats-glass-box:hover {
            transform: scale(1.02);
            background: rgba(255, 255, 255, 0.18);
        }

        .uee-ins-stat-item {
            text-align: center;
        }

        .uee-ins-stat-item b {
            display: block;
            font-size: 46px;
            font-weight: 800;
            color: #FF8022; /* 橙色高亮数据 */
            line-height: 1;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }

        .uee-ins-stat-item 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-ins-cta-container { flex-direction: column; text-align: center; }
            .uee-ins-cta-left p { margin-left: auto; margin-right: auto; }
            .uee-stats-glass-box { padding: 30px; width: 100%; justify-content: center; }
        }

        @media (max-width: 480px) {
            .uee-stats-glass-box { gap: 20px; flex-direction: column; }
            .uee-ins-btn-growth { width: 100%; }
        }
    