
        /* --- 极致紧凑、55/45 比例、科技感 CTA 模块 --- */
        .uee-final-cta-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #59B7B8; /* 核心品牌青色 */
            /* 背景加入微弱斜切色块效果，模拟图中的高端质感 */
            background-image: linear-gradient(110deg, #59B7B8 60%, #4ea6a7 60%); 
            padding: 60px 5%; 
            color: #ffffff;
            overflow: hidden;
        }

        .uee-final-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center; /* 左右内容垂直居中 */
            gap: 60px;
            flex-wrap: wrap;
        }

        /* --- 左侧内容区 (55% 宽度) --- */
        .uee-final-left {
            flex: 55;
            min-width: 420px;
        }

        .uee-final-left h2 {
            font-size: clamp(34px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -2.5px;
            margin: 0 0 25px 0;
            color: #ffffff;
        }

        /* 橙色斜体关键词 */
        .uee-orange-italic {
            color: #FF7D2A;
            font-style: italic;
        }

        .uee-final-desc {
            font-size: 19px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.5;
            max-width: 600px;
            margin-bottom: 40px;
        }

        /* 单一主按钮样式 */
        .uee-btn-white {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
            color: #59B7B8;
            padding: 18px 44px;
            border-radius: 8px;
            font-size: 19px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .uee-btn-white:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            color: #4ea6a7;
        }

        .uee-btn-white::after {
            content: '→';
            margin-left: 12px;
            font-size: 22px;
            transition: transform 0.3s ease;
        }

        .uee-btn-white:hover::after {
            transform: translateX(6px);
        }

        /* --- 右侧：磨砂玻璃统计卡片 (45% 宽度) --- */
        .uee-final-right {
            flex: 45;
            min-width: 380px;
            display: flex;
            justify-content: center;
        }

        .uee-glass-card {
            background: rgba(255, 255, 255, 0.15); /* 玻璃半透明度 */
            backdrop-filter: blur(12px); /* 毛玻璃模糊效果 */
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 35px;
            width: 100%;
            max-width: 480px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        /* 卡片头部 */
        .uee-glass-top {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .uee-glass-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .uee-glass-header-text b {
            display: block;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
            margin-bottom: 2px;
        }

        .uee-glass-header-text span {
            font-size: 22px;
            font-weight: 800;
        }

        /* 卡片底部统计 */
        .uee-glass-stats {
            display: flex;
            justify-content: space-between;
        }

        .uee-stat-box {
            text-align: left;
        }

        .uee-stat-box b {
            display: block;
            font-size: 32px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 8px;
        }

        .uee-stat-box span {
            display: block;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-final-container { flex-direction: column; text-align: center; }
            .uee-final-left, .uee-final-right { min-width: 100%; }
            .uee-final-desc { margin-left: auto; margin-right: auto; }
            .uee-final-right { margin-top: 40px; }
            .uee-glass-card { margin: 0 auto; }
        }
    