
    /* 基础容器 */
    .uee-hero-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 100px 20px; /* 增加上下边距使单按钮布局更有呼吸感 */
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        background-color: #ffffff;
        gap: 60px;
    }

    /* 左侧文字区域 */
    .uee-hero-content {
        flex: 1;
        text-align: left;
    }

    /* 顶部小标签 */
    .uee-hero-tag {
        display: inline-block;
        background-color: #f0fafa; /* 极淡的主色背景 */
        color: #56B8B8; /* 主色调 */
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 30px;
    }

    /* 标题样式 */
    .uee-hero-content h1 {
        font-size: 56px;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.1;
        margin: 0 0 25px 0;
        letter-spacing: -0.03em;
    }

    /* 标题中的主色调文字 */
    .uee-hero-content h1 span {
        color: #56B8B8;
    }

    /* 副标题 */
    .uee-hero-content p {
        font-size: 19px;
        line-height: 1.6;
        color: #475569;
        margin-bottom: 45px;
        max-width: 520px;
    }

    /* 按钮组容器 */
    .uee-hero-btns {
        display: flex;
        justify-content: flex-start;
    }

    /* 橙色主行动按钮 - Book a Demo */
    .uee-btn-primary {
        background-color: #ff7b1a; /* 活力橙色 */
        color: #ffffff;
        padding: 18px 45px; /* 增加按钮宽度使其更厚重 */
        border-radius: 12px;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 12px 24px rgba(255, 123, 26, 0.25);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .uee-btn-primary:hover {
        transform: translateY(-4px);
        background-color: #f06a00;
        box-shadow: 0 18px 35px rgba(255, 123, 26, 0.35);
    }

    /* 右侧图片区域 */
    .uee-hero-visual {
        flex: 1.2;
        position: relative;
    }

    /* 图片容器带白色边框和深阴影 */
    .uee-img-container {
        border: 8px solid #ffffff;
        border-radius: 35px;
        box-shadow: 0 35px 70px rgba(0,0,0,0.12);
        overflow: hidden;
        position: relative;
    }

    .uee-img-container img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* 悬浮数据卡片 (玻璃拟态效果) */
    .uee-floating-card {
        position: absolute;
        bottom: 30px;
        left: -40px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        padding: 22px 28px;
        border-radius: 22px;
        display: flex;
        align-items: center;
        gap: 18px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border: 1px solid rgba(255,255,255,0.6);
        z-index: 10;
    }

    .uee-icon-check {
        width: 44px;
        height: 44px;
        background-color: #10b981; /* 绿色成功图标 */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .uee-card-text span {
        display: block;
        font-size: 13px;
        color: #64748b;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 2px;
    }

    .uee-card-text strong {
        font-size: 24px;
        color: #0f172a;
        font-weight: 800;
    }

    /* 移动端适配 */
    @media (max-width: 992px) {
        .uee-hero-section {
            flex-direction: column;
            text-align: center;
            padding: 60px 20px;
        }
        .uee-hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .uee-hero-content h1 {
            font-size: 36px;
        }
        .uee-btn-primary {
            width: 100%;
            max-width: 320px;
            justify-content: center;
        }
        .uee-hero-visual {
            width: 100%;
            margin-top: 60px;
        }
        .uee-floating-card {
            left: 50%;
            transform: translateX(-50%);
            bottom: -30px;
            width: 240px;
        }
    }
