
        /* --- 极致紧凑、扁平化实施步骤模块 --- */
        .uee-steps-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background-color: #ffffff;
            padding: 40px 5%; /* 极致缩减上下空白 */
            color: #111827;
        }

        .uee-steps-container {
            max-width: 1250px;
            margin: 0 auto;
        }

        /* --- 顶部扁平化标题区 --- */
        .uee-steps-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end; /* 底部对齐显高级 */
            gap: 40px;
            margin-bottom: 40px;
        }

        .uee-header-left { flex: 1.5; }
        .uee-header-right { flex: 1; }

        .uee-steps-tag {
            font-size: 12px;
            font-weight: 800;
            color: #FF7D2A; /* 核心橙色 */
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            display: block;
        }

        .uee-steps-header h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            line-height: 1.05; /* 极致紧缩行距 */
            letter-spacing: -1.8px;
            margin: 0;
            color: #0B1221;
        }

        .uee-steps-header h2 span {
            color: #FF7D2A;
        }

        .uee-header-right p {
            font-size: 16px;
            color: #64748b;
            line-height: 1.4;
            max-width: 380px;
            margin-bottom: 5px;
        }

        /* --- 三列卡片布局 --- */
        .uee-steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .uee-step-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            border-radius: 20px;
            padding: 30px;
            position: relative; /* 为数字背景定位 */
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
        }

        .uee-step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            border-color: #FF7D2A;
        }

        /* 卡片数字背景 */
        .uee-step-number {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 52px;
            font-weight: 800;
            color: #f1f5f9; /* 极淡灰色 */
            line-height: 1;
            user-select: none;
        }

        /* 卡片图标盒 */
        .uee-step-icon {
            width: 44px;
            height: 44px;
            background-color: #fff7ed;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: #FF7D2A;
            font-size: 20px;
            position: relative;
            z-index: 1;
        }

        .uee-step-card h4 {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.1;
            margin: 0 0 10px 0;
            color: #0B1221;
        }

        .uee-step-card p {
            font-size: 14.5px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .uee-steps-header { flex-direction: column; align-items: flex-start; text-align: left; }
            .uee-steps-grid { grid-template-columns: 1fr; }
            .uee-header-right p { max-width: 100%; }
        }
    