
        /* --- 极致紧凑、宽屏扁平化功能网格 --- */
        .uee-smarter-calling-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 50px 0; /* 极致缩减上下空白 */
            color: #111827;
            text-align: center;
        }

        .uee-smarter-container {
            width: 92%;
            max-width: 1300px; /* 加宽版式 */
            margin: 0 auto;
        }

        /* 1. 顶部标题区域 */
        .uee-smarter-header {
            margin-bottom: 45px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .uee-smarter-tag {
            font-size: 12px;
            font-weight: 800;
            color: #FF8022; /* 核心橙色 */
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .uee-smarter-header h2 {
            font-size: clamp(30px, 4.5vw, 46px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩 */
            letter-spacing: -2.2px;
            margin: 0 0 15px 0;
            color: #0B1221;
        }

        .uee-smarter-header p {
            font-size: 17px;
            color: #64748b;
            line-height: 1.45;
            max-width: 900px; /* 扁平化文字宽度 */
            margin: 0 auto;
        }

        /* 2. 三列功能网格 */
        .uee-smarter-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .uee-smarter-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 24px;
            padding: 35px 30px;
            text-align: left;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .uee-smarter-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.06);
            border-color: #e2e8f0;
        }

        /* 图标样式 */
        .uee-card-icon-box {
            width: 44px;
            height: 44px;
            background-color: #F0F2FF; /* 淡蓝紫色背景 */
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: #56B8B8;
            font-size: 22px;
        }

        .uee-smarter-card h3 {
            font-size: 20px;
            font-weight: 800;
            line-height: 1.1;
            margin: 0 0 15px 0;
            color: #0B1221;
        }

        .uee-smarter-card p {
            font-size: 15px;
            color: #4b5563;
            line-height: 1.45; /* 紧凑描述 */
            margin: 0 0 30px 0;
        }

        /* 3. 底部状态药丸标签 */
        .uee-status-pill {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 6px;
            font-family: monospace; /* 模拟代码/技术感 */
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.2px;
        }

        /* 颜色变体 */
        .pill-teal { background-color: #F0FDFA; color: #56B8B8; }
        .pill-orange { background-color: #FFF7ED; color: #FF8022; }
        .pill-dark { background-color: #0B1221; color: #ffffff; }

        .uee-status-pill::before {
            content: '•';
            margin-right: 8px;
            font-size: 18px;
        }

        /* 响应式：移动端适配 */
        @media (max-width: 992px) {
            .uee-smarter-grid { grid-template-columns: 1fr; gap: 20px; }
            .uee-smarter-header h2 { font-size: 32px; letter-spacing: -1px; }
            .uee-smarter-header p { font-size: 16px; }
        }
    