
        /* 基础样式重置 */
        .uee-hero-wrapper {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #F0E9FF; /* 图片中的浅紫色背景 */
            padding: 80px 20px;
            text-align: center;
            color: #111827;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* 顶部小标签 */
        .uee-badge {
            display: inline-flex;
            align-items: center;
            background-color: #EEF2FF;
            color: #59B7B8;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 24px;
            border: 1px solid rgba(89, 183, 184, 0.2);
        }

        .uee-badge::before {
            content: '🛡️';
            margin-right: 8px;
            font-size: 14px;
        }

        /* 主标题 */
        .uee-headline {
            font-size: clamp(36px, 5vw, 68px); /* 响应式字号 */
            line-height: 1.05;
            font-weight: 800;
            margin: 0 0 24px 0;
            letter-spacing: -2px;
            max-width: 900px;
        }

        .text-orange {
            color: #FF7D2A; /* 图片中的橙色 */
        }

        .text-teal {
            color: #59B7B8; /* 图片中的青色 */
        }

        /* 描述文字 */
        .uee-description {
            font-size: 18px;
            line-height: 1.6;
            color: #4B5563;
            max-width: 650px;
            margin-bottom: 40px;
        }

        /* 按钮与背书区布局 */
        .uee-cta-group {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* 橙色主按钮 */
        .uee-btn-primary {
            background-color: #FF7D2A;
            color: white;
            padding: 16px 36px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            transition: transform 0.2s, background-color 0.2s;
            box-shadow: 0 10px 20px rgba(255, 125, 42, 0.3);
        }

        .uee-btn-primary:hover {
            background-color: #e66d22;
            transform: translateY(-2px);
        }

        /* 社交背书卡片 */
        .uee-trust-badge {
            background: white;
            padding: 10px 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        .uee-avatars {
            display: flex;
            margin-right: 12px;
        }

        .uee-avatars img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid white;
            margin-right: -10px;
            background-color: #ddd;
        }

        .uee-trust-text {
            font-size: 14px;
            font-weight: 500;
            color: #4B5563;
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .uee-headline { font-size: 38px; }
            .uee-description { font-size: 16px; }
            .uee-cta-group { flex-direction: column; }
            .uee-btn-primary { width: 100%; box-sizing: border-box; }
        }
    