/* 
 * talent-consulting.css
 * 为优必猎人才规划与咨询页面设计的专用样式
 * 所有类名都添加了ubhunt-前缀，以避免与主题样式冲突
 */

/* 变量定义 */
:root {
    --ubhunt-elegant-blue: #2c5282;
    --ubhunt-elegant-blue-light: #3182ce;
    --ubhunt-elegant-green: #38a169;
    --ubhunt-elegant-green-light: #48bb78;
    --ubhunt-text-dark: #2d3748;
    --ubhunt-text-gray: #4a5568;
    --ubhunt-bg-gray-light: #f7fafc;
    --ubhunt-animation-duration: 0.8s;
}

/* 全局样式 */
.ubhunt-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 多语言支持 */
.ubhunt-en-title {
    font-size: 0.9em;
    color: var(--ubhunt-text-gray);
    font-style: italic;
    margin-bottom: 15px;
}

/* 独立的顶部渐变图层 - 与导航栏高度完全匹配 */
.ubhunt-top-gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px; /* 与Hero区域的margin-top保持一致 */
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.15) 50%, rgba(29, 78, 216, 0.1) 100%);
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* 雷达扫描光晕效果 */
.ubhunt-top-gradient-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 15%,
        rgba(59, 130, 246, 0.2) 30%,
        rgba(59, 130, 246, 0.5) 40%,
        rgba(59, 130, 246, 0.8) 50%,
        rgba(59, 130, 246, 0.5) 60%,
        rgba(59, 130, 246, 0.2) 70%,
        transparent 85%,
        transparent 100%
    );
    animation: ubhunt-radarScan 4s ease-in-out infinite;
}

/* 副光晕效果 - 增加层次感 */
.ubhunt-top-gradient-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 300%;
    height: 100%;
    background: radial-gradient(
        ellipse 40% 100% at 50% 50%,
        rgba(29, 78, 216, 0.4) 0%,
        rgba(29, 78, 216, 0.25) 25%,
        rgba(29, 78, 216, 0.1) 50%,
        transparent 75%
    );
    animation: ubhunt-radarScanSecondary 4s ease-in-out infinite 0.5s;
}

/* 确保导航栏保持透明背景，让渐变效果透过来 */
.header {
    position: relative;
    background: transparent;
}

/* 主雷达扫描动画 */
@keyframes ubhunt-radarScan {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    50% {
        left: 0%;
        opacity: 1;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* 副雷达扫描动画 - 延迟启动，营造深度 */
@keyframes ubhunt-radarScanSecondary {
    0% {
        left: -150%;
        opacity: 0;
        transform: scaleX(1);
    }
    15% {
        opacity: 0.3;
        transform: scaleX(1.1);
    }
    50% {
        left: -50%;
        opacity: 0.6;
        transform: scaleX(1.2);
    }
    85% {
        opacity: 0.3;
        transform: scaleX(1.1);
    }
    100% {
        left: 150%;
        opacity: 0;
        transform: scaleX(1);
    }
}

/* Modern Hero Section - Tech & Business Style */
.ubhunt-hero-modern {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 30%, #f5f5f5 100%);
    overflow: hidden;
    margin-top: 70px;
}

.ubhunt-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.ubhunt-content-wrapper {
    max-width: 600px;
}

.ubhunt-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    color: #1e40af;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.ubhunt-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    animation: ubhunt-pulse 2s infinite;
}

@keyframes ubhunt-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.ubhunt-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.ubhunt-gradient-text {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8, #059669);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: ubhunt-gradientShift 3s ease-in-out infinite;
}

@keyframes ubhunt-gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ubhunt-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 520px;
}

.ubhunt-hero-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.ubhunt-metric-item {
    text-align: left;
}

.ubhunt-metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    display: block;
    margin-bottom: 4px;
}

.ubhunt-metric-number span {
    color: #3b82f6;
}

.ubhunt-metric-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ubhunt-hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.ubhunt-btn-primary-modern {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.ubhunt-btn-primary-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.ubhunt-btn-primary-modern:hover::before {
    left: 100%;
}

.ubhunt-btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.ubhunt-btn-secondary-modern {
    background: transparent;
    color: #374151;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ubhunt-btn-secondary-modern:hover {
    background: #f9fafb;
    border-color: #3b82f6;
    color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.ubhunt-btn-icon,
.ubhunt-play-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.ubhunt-btn-primary-modern:hover .ubhunt-btn-icon {
    transform: translateX(4px);
}

.ubhunt-btn-secondary-modern:hover .ubhunt-play-icon {
    transform: scale(1.1);
}

/* Visual Section */
.ubhunt-hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ubhunt-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 3D Grid */
.ubhunt-grid-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.ubhunt-grid-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    transform-origin: center;
    animation: ubhunt-gridFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.ubhunt-grid-line:nth-child(1) { top: 20%; transform: rotateX(45deg); }
.ubhunt-grid-line:nth-child(2) { top: 35%; transform: rotateX(45deg); }
.ubhunt-grid-line:nth-child(3) { top: 50%; transform: rotateX(45deg); }
.ubhunt-grid-line:nth-child(4) { top: 65%; transform: rotateX(45deg); }
.ubhunt-grid-line:nth-child(5) { top: 80%; transform: rotateX(45deg); }

@keyframes ubhunt-gridFloat {
    0%, 100% { opacity: 0.3; transform: rotateX(45deg) translateZ(0); }
    50% { opacity: 0.6; transform: rotateX(45deg) translateZ(20px); }
}

/* Floating Cards */
.ubhunt-floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ubhunt-card-modern {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 220px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: ubhunt-cardFloat 6s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.12);
}

.ubhunt-card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.ubhunt-card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
}

.ubhunt-card-3 {
    top: 70%;
    right: 25%;
    animation-delay: 4s;
}

.ubhunt-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.25);
}

.ubhunt-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ubhunt-card-icon {
    width: 32px;
    height: 32px;
    padding: 6px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ubhunt-card-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ubhunt-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    animation: ubhunt-pulse 2s infinite;
}

.ubhunt-status-dot.ubhunt-success {
    background: #10b981;
}

.ubhunt-status-dot.ubhunt-warning {
    background: #f59e0b;
}

.ubhunt-status-dot.ubhunt-active {
    background: #3b82f6;
}

.ubhunt-status-text {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.ubhunt-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ubhunt-card-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 16px;
}

.ubhunt-card-metrics {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.ubhunt-metric {
    text-align: center;
}

.ubhunt-metric-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.ubhunt-metric-label {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 2px;
}

.ubhunt-card-progress {
    margin-top: auto;
}

.ubhunt-progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.ubhunt-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.ubhunt-progress-text {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.ubhunt-card-list {
    margin-top: auto;
}

.ubhunt-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #374151;
}

.ubhunt-item-dot {
    width: 4px;
    height: 4px;
    background: #3b82f6;
    border-radius: 50%;
}

@keyframes ubhunt-cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Animated Orbs */
.ubhunt-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    filter: blur(2px);
    animation: ubhunt-orbMove 8s ease-in-out infinite;
}

.ubhunt-orb-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    opacity: 0.3;
    animation-delay: 0s;
}

.ubhunt-orb-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 70%;
    opacity: 0.2;
    animation-delay: 2s;
}

.ubhunt-orb-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 80%;
    opacity: 0.4;
    animation-delay: 4s;
}

@keyframes ubhunt-orbMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.1); }
    50% { transform: translate(-15px, -20px) scale(0.9); }
    75% { transform: translate(30px, 15px) scale(1.05); }
}

/* Background Elements */
.ubhunt-hero-bg-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ubhunt-gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: ubhunt-blobMove 10s ease-in-out infinite;
}

.ubhunt-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.ubhunt-blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #059669, #047857);
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes ubhunt-blobMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
}

.ubhunt-tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: ubhunt-gridMove 20s linear infinite;
    opacity: 0.6;
}

@keyframes ubhunt-gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* 痛点与解决方案 */
.ubhunt-pain-points {
    padding: 100px 0 80px;
    background-color: white;
    position: relative;
}

/* 快速解决方案样式 */
.ubhunt-quick-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.ubhunt-solution-card-simple {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.ubhunt-solution-card-simple:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ubhunt-solution-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(44, 82, 130, 0.2);
}

.ubhunt-solution-card-simple h3 {
    font-size: 1.5rem;
    color: var(--ubhunt-text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.ubhunt-solution-card-simple p {
    color: var(--ubhunt-text-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.ubhunt-solution-arrow {
    font-size: 2rem;
    color: var(--ubhunt-elegant-blue);
    margin: 20px 0;
    font-weight: bold;
}

.ubhunt-solution-result-simple {
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.ubhunt-solution-result-simple strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.ubhunt-solution-result-simple span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* 服务概述 */
.ubhunt-services-overview {
    padding: 100px 0 80px;
    background-color: var(--ubhunt-bg-gray-light);
    position: relative;
    overflow: hidden;
}

.ubhunt-services-overview::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: white;
    transform: skewY(-3deg);
    z-index: 1;
}

.ubhunt-section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.ubhunt-section-title h2 {
    font-size: 2.5rem;
    color: var(--ubhunt-elegant-blue);
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}

.ubhunt-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    border-radius: 2px;
}

.ubhunt-section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--ubhunt-text-gray);
    font-size: 1.1rem;
}

.ubhunt-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.ubhunt-service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
}

.ubhunt-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.ubhunt-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

.ubhunt-service-card:hover::before {
    transform: scaleX(1);
}

.ubhunt-service-card-inner {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ubhunt-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue-light), var(--ubhunt-elegant-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ubhunt-service-card:hover .ubhunt-service-icon {
    transform: rotateY(180deg);
}

.ubhunt-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--ubhunt-elegant-blue);
}

.ubhunt-service-card p {
    color: var(--ubhunt-text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.ubhunt-read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    height: 24px; /* 固定链接高度 */
    align-self: flex-start;
}

.ubhunt-read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.ubhunt-read-more:hover i {
    transform: translateX(5px);
}

/* 优势对比 */
.ubhunt-advantages {
    padding: 100px 0 80px;
    position: relative;
    background-color: white;
}

.ubhunt-advantages-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    z-index: 5;
}

.ubhunt-advantage-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ubhunt-advantage-item.ubhunt-visible {
    opacity: 1;
    transform: translateY(0);
}

.ubhunt-advantage-item:nth-child(even) {
    flex-direction: row-reverse;
}

.ubhunt-advantage-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 420px;
}

.ubhunt-advantage-visual {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ubhunt-advantage-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f6f9fc, #edf2f7);
    z-index: 1;
}

.ubhunt-advantage-graphic {
    position: relative;
    z-index: 2;
    width: 90%;
    height: 90%;
}

/* 整合优势展示 */
.ubhunt-integration-showcase {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 20px;
    justify-content: space-between;
}

.ubhunt-showcase-header {
    text-align: center;
    margin-bottom: 10px;
}

.ubhunt-showcase-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ubhunt-elegant-blue);
    margin-bottom: 8px;
}

.ubhunt-showcase-header p {
    font-size: 0.95rem;
    color: var(--ubhunt-text-gray);
    font-weight: 500;
}

.ubhunt-services-combination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.ubhunt-service-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.ubhunt-service-circle.ubhunt-headhunting {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border: 3px solid #2196f3;
}

.ubhunt-service-circle.ubhunt-consulting {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border: 3px solid #4caf50;
}

.ubhunt-service-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.ubhunt-headhunting .ubhunt-service-icon {
    background: #2196f3;
    color: white;
}

.ubhunt-consulting .ubhunt-service-icon {
    background: #4caf50;
    color: white;
}

.ubhunt-service-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ubhunt-text-dark);
    margin-bottom: 4px;
}

.ubhunt-service-detail {
    font-size: 0.75rem;
    color: var(--ubhunt-text-gray);
}

.ubhunt-connection-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ubhunt-flow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #2196f3, #4caf50);
    margin-bottom: 10px;
}

.ubhunt-flow-symbol {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.ubhunt-result-showcase {
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    border-radius: 20px;
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

.ubhunt-result-showcase::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.ubhunt-result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 600;
}

.ubhunt-result-header i {
    font-size: 1.4rem;
    color: #ffd700;
}

.ubhunt-advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ubhunt-advantage-item-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    transition: all 0.3s ease;
}

.ubhunt-advantage-item-mini:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(3px);
}

.ubhunt-advantage-item-mini i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    color: #ffd700;
    flex-shrink: 0;
}

/* 区域专业图表 */
.ubhunt-regional-expertise {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ubhunt-map-container {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.ubhunt-region-map {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ubhunt-map-visual {
    width: 90%;
    height: 90%;
    position: relative;
}

.ubhunt-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='800' height='500' viewBox='0 0 800 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M200,180 Q250,120 300,150 T400,120 Q450,100 500,150 T600,180 Q650,200 700,180' stroke='%232c5282' stroke-width='2' fill='none' stroke-dasharray='5,5'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.ubhunt-region-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ubhunt-region-point {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ubhunt-elegant-blue);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 5px rgba(44, 82, 130, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.ubhunt-region-point:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 0 8px rgba(44, 82, 130, 0.2);
}

.ubhunt-region-point.ubhunt-active {
    background: var(--ubhunt-elegant-green);
    box-shadow: 0 0 0 8px rgba(56, 161, 105, 0.2);
    z-index: 3;
}

.ubhunt-region-point.ubhunt-china {
    top: 35%;
    left: 70%;
}

.ubhunt-region-point.ubhunt-singapore {
    top: 58%;
    left: 65%;
}

.ubhunt-region-point.ubhunt-malaysia {
    top: 60%;
    left: 62%;
}

.ubhunt-region-point.ubhunt-thailand {
    top: 52%;
    left: 58%;
}

.ubhunt-region-point.ubhunt-vietnam {
    top: 50%;
    left: 63%;
}

.ubhunt-region-point.ubhunt-indonesia {
    top: 65%;
    left: 60%;
}

.ubhunt-region-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 4;
    transition: all 0.3s ease;
    transform-origin: bottom center;
}

.ubhunt-region-info.ubhunt-hidden {
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
}

.ubhunt-region-info-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ubhunt-region-info-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ubhunt-elegant-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.ubhunt-region-info-name {
    font-weight: 600;
    color: var(--ubhunt-text-dark);
}

.ubhunt-region-info-desc {
    color: var(--ubhunt-text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.ubhunt-region-stats {
    display: flex;
    gap: 10px;
}

.ubhunt-region-stat {
    flex: 1;
    background: #f8fafc;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.ubhunt-region-stat-value {
    font-weight: 600;
    color: var(--ubhunt-elegant-blue);
    font-size: 1.1rem;
}

.ubhunt-region-stat-label {
    font-size: 0.8rem;
    color: var(--ubhunt-text-gray);
}

/* 自定解决方案 */
.ubhunt-customization-visual {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ubhunt-comparison-view {
    flex-grow: 1;
    display: flex;
    gap: 20px;
}

.ubhunt-comparison-column {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.ubhunt-comparison-header {
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

.ubhunt-traditional-header {
    background: #edf2f7;
    color: var(--ubhunt-text-dark);
}

.ubhunt-ubhunt-header {
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    color: white;
}

.ubhunt-comparison-body {
    flex-grow: 1;
    padding: 15px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ubhunt-comparison-item {
    padding: 10px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.ubhunt-traditional-item {
    background: #f8fafc;
    color: var(--ubhunt-text-gray);
    position: relative;
}

.ubhunt-traditional-item::before {
    content: '\f00d';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #e53e3e;
    margin-right: 8px;
}

.ubhunt-ubhunt-item {
    background: rgba(56, 161, 105, 0.1);
    color: var(--ubhunt-elegant-green);
    position: relative;
}

.ubhunt-ubhunt-item::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--ubhunt-elegant-green);
    margin-right: 8px;
}

.ubhunt-advantage-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 10;
}

.ubhunt-advantage-title {
    font-size: 1.8rem;
    color: var(--ubhunt-elegant-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.ubhunt-advantage-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    border-radius: 1.5px;
}

.ubhunt-advantage-description {
    color: var(--ubhunt-text-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.ubhunt-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.ubhunt-comparison-table th, .ubhunt-comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.ubhunt-comparison-table th {
    background-color: var(--ubhunt-elegant-blue);
    color: white;
    font-weight: 600;
}

.ubhunt-comparison-table th:first-child {
    background-color: transparent;
    border-bottom: none;
}

.ubhunt-comparison-table tr:last-child td {
    border-bottom: none;
}

.ubhunt-comparison-table td:first-child {
    font-weight: 600;
    color: var(--ubhunt-elegant-blue);
}

.ubhunt-competitors {
    background-color: #f8fafc;
}

.ubhunt-ubhunt {
    background-color: #ebf8ff;
}

.ubhunt-check-icon {
    color: var(--ubhunt-elegant-green);
    font-size: 1.2rem;
}

.ubhunt-x-icon {
    color: #e53e3e;
    font-size: 1.2rem;
}

/* 流程与方法论 */
.ubhunt-methodology {
    padding: 100px 0 80px;
    position: relative;
    background-color: var(--ubhunt-bg-gray-light);
}

.ubhunt-methodology::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: white;
    transform: skewY(-3deg);
    z-index: 1;
}

.ubhunt-methodology-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: rgba(44, 82, 130, 0.05);
    z-index: -1;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.ubhunt-methodology-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.ubhunt-methodology-text {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.ubhunt-methodology-text h2 {
    font-size: 2.5rem;
    color: var(--ubhunt-elegant-blue);
    margin-bottom: 20px;
}

.ubhunt-methodology-text p {
    color: var(--ubhunt-text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.ubhunt-methodology-steps {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.ubhunt-methodology-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 24px;
    width: 2px;
    height: calc(100% - 50px);
    background: linear-gradient(to bottom, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    z-index: 0;
}

.ubhunt-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
}

.ubhunt-step.ubhunt-visible {
    opacity: 1;
    transform: translateY(0);
}

.ubhunt-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.ubhunt-step-content {
    margin-left: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.ubhunt-step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--ubhunt-elegant-blue);
}

.ubhunt-step-content p {
    color: var(--ubhunt-text-gray);
}

/* 案例研究 */
.ubhunt-case-studies {
    padding: 100px 0 80px;
    background-color: white;
    position: relative;
    z-index: 5;
}

.ubhunt-case-showcase {
    margin-top: 60px;
}

.ubhunt-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.ubhunt-case-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.ubhunt-case-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* 不同行业的悬停效果 */
.ubhunt-case-card.ubhunt-tech:hover {
    border-color: rgba(44, 82, 130, 0.3);
    box-shadow: 0 25px 60px rgba(44, 82, 130, 0.2);
}

.ubhunt-case-card.ubhunt-manufacturing:hover {
    border-color: rgba(56, 161, 105, 0.3);
    box-shadow: 0 25px 60px rgba(56, 161, 105, 0.2);
}

.ubhunt-case-card.ubhunt-finance:hover {
    border-color: rgba(44, 82, 130, 0.3);
    box-shadow: 0 25px 60px rgba(44, 82, 130, 0.2);
}

.ubhunt-case-card.ubhunt-healthcare:hover {
    border-color: rgba(56, 161, 105, 0.3);
    box-shadow: 0 25px 60px rgba(56, 161, 105, 0.2);
}

.ubhunt-case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    color: white;
    position: relative;
    overflow: hidden;
}

.ubhunt-case-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20px;
    width: 100px;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-15deg);
}

.ubhunt-case-number {
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0.8;
    line-height: 1;
}

.ubhunt-case-industry {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.ubhunt-case-industry i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.ubhunt-case-body {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ubhunt-case-challenge h4,
.ubhunt-case-solution h4,
.ubhunt-case-impact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ubhunt-elegant-blue);
    position: relative;
    padding-left: 20px;
}

.ubhunt-case-challenge h4::before,
.ubhunt-case-solution h4::before,
.ubhunt-case-impact h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    border-radius: 2px;
}

.ubhunt-case-challenge h4::before {
    background: #e53e3e;
}

.ubhunt-case-solution h4::before {
    background: var(--ubhunt-elegant-blue);
}

.ubhunt-case-impact h4::before {
    background: var(--ubhunt-elegant-green);
}

.ubhunt-case-challenge p,
.ubhunt-case-solution p,
.ubhunt-case-impact p {
    color: var(--ubhunt-text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

.ubhunt-solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.ubhunt-solution-tags span {
    background: rgba(44, 82, 130, 0.1);
    color: var(--ubhunt-elegant-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(44, 82, 130, 0.2);
    transition: all 0.3s ease;
}

.ubhunt-solution-tags span:hover {
    background: rgba(44, 82, 130, 0.2);
    transform: translateY(-1px);
}

.ubhunt-impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.ubhunt-metric {
    text-align: center;
}

.ubhunt-metric:hover {
    background: rgba(56, 161, 105, 0.1);
    transform: translateY(-3px);
}

.ubhunt-metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--ubhunt-elegant-green); /* 备选颜色 */
    background: linear-gradient(135deg, var(--ubhunt-elegant-green), var(--ubhunt-elegant-green-light));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* 不支持background-clip的浏览器回退 */
@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
    .ubhunt-metric-value {
        color: var(--ubhunt-elegant-green) !important;
        background: none !important;
    }
}

.ubhunt-metric-label {
    font-size: 0.9rem;
    color: var(--ubhunt-text-gray);
    font-weight: 500;
}

.ubhunt-case-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 35px;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ubhunt-case-client {
    font-weight: 600;
    color: var(--ubhunt-text-dark);
    font-size: 1rem;
}

.ubhunt-case-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ubhunt-text-gray);
    font-size: 0.95rem;
}

.ubhunt-case-location i {
    color: var(--ubhunt-elegant-blue);
}

.ubhunt-case-cta {
    background: linear-gradient(135deg, var(--ubhunt-bg-gray-light), #ffffff);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.ubhunt-case-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(44, 82, 130, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ubhunt-case-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 161, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ubhunt-cta-content {
    position: relative;
    z-index: 2;
}

.ubhunt-cta-content h3 {
    font-size: 2rem;
    color: var(--ubhunt-elegant-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.ubhunt-cta-content p {
    color: var(--ubhunt-text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 区域覆盖 */
.ubhunt-regions {
    padding: 100px 0 80px;
    background-color: var(--ubhunt-bg-gray-light);
    position: relative;
}

.ubhunt-regions::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 160px;
    background-color: white;
    transform: skewY(-2deg);
    z-index: 1;
}

.ubhunt-regions-showcase {
    position: relative;
    z-index: 5;
    margin-top: 60px;
}

/* 区域概览网格 */
.ubhunt-regions-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.ubhunt-overview-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(44, 82, 130, 0.08);
    overflow: hidden;
}

.ubhunt-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    transition: all 0.3s ease;
}

.ubhunt-overview-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(44, 82, 130, 0.15);
}

.ubhunt-overview-card:hover::before {
    height: 5px;
    box-shadow: 0 3px 8px rgba(44, 82, 130, 0.3);
}

.ubhunt-overview-card.ubhunt-featured {
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.03), rgba(56, 161, 105, 0.03));
    border: 2px solid rgba(44, 82, 130, 0.12);
    transform: scale(1.02);
}

.ubhunt-overview-card.ubhunt-featured::before {
    height: 4px;
    background: linear-gradient(90deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green), var(--ubhunt-elegant-blue));
}

.ubhunt-overview-card.ubhunt-featured .ubhunt-region-flag {
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green)) !important;
    border-color: transparent !important;
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.25) !important;
}

.ubhunt-overview-card.ubhunt-featured h3 {
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* 浏览器兼容性回退 */
@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
    .ubhunt-overview-card.ubhunt-featured h3 {
        color: var(--ubhunt-elegant-blue) !important;
        background: none !important;
    }
}

.ubhunt-region-flag {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid rgba(44, 82, 130, 0.1);
}

/* 统一的渐变配色方案 */
.ubhunt-region-flag.ubhunt-china {
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), #4a7bc8);
    color: white;
}

.ubhunt-region-flag.ubhunt-singapore {
    background: linear-gradient(135deg, #4a7bc8, var(--ubhunt-elegant-blue-light));
    color: white;
}

.ubhunt-region-flag.ubhunt-malaysia {
    background: linear-gradient(135deg, var(--ubhunt-elegant-green), #4bb375);
    color: white;
}

.ubhunt-region-flag.ubhunt-thailand {
    background: linear-gradient(135deg, #5a8fd8, var(--ubhunt-elegant-blue-light));
    color: white;
}

.ubhunt-region-flag.ubhunt-vietnam {
    background: linear-gradient(135deg, var(--ubhunt-elegant-green-light), #5cb85c);
    color: white;
}

.ubhunt-region-flag.ubhunt-indonesia {
    background: linear-gradient(135deg, #6ba3ea, var(--ubhunt-elegant-blue));
    color: white;
}

.ubhunt-overview-card:hover .ubhunt-region-flag {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 25px rgba(44, 82, 130, 0.2);
}

.ubhunt-overview-card h3 {
    font-size: 1.5rem;
    color: var(--ubhunt-text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ubhunt-overview-card p {
    color: var(--ubhunt-text-gray);
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 500;
}

.ubhunt-overview-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ubhunt-stat-badge {
    background: rgba(44, 82, 130, 0.08);
    color: var(--ubhunt-elegant-blue);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(44, 82, 130, 0.12);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.ubhunt-stat-badge:hover {
    background: rgba(44, 82, 130, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.15);
    border-color: rgba(44, 82, 130, 0.2);
}

.ubhunt-overview-card.ubhunt-featured .ubhunt-stat-badge {
    background: rgba(56, 161, 105, 0.12);
    color: var(--ubhunt-elegant-green);
    border-color: rgba(56, 161, 105, 0.2);
}

.ubhunt-overview-card.ubhunt-featured .ubhunt-stat-badge:hover {
    background: rgba(56, 161, 105, 0.2);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.2);
}

/* 区域详情 */
.ubhunt-regions-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.ubhunt-detail-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ubhunt-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.02), rgba(56, 161, 105, 0.02));
    z-index: 1;
}

.ubhunt-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.ubhunt-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.ubhunt-region-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(44, 82, 130, 0.3);
}

.ubhunt-region-title h4 {
    font-size: 1.4rem;
    color: var(--ubhunt-text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.ubhunt-region-title p {
    color: var(--ubhunt-text-gray);
    font-size: 0.95rem;
}

.ubhunt-detail-content {
    position: relative;
    z-index: 2;
}

.ubhunt-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ubhunt-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ubhunt-feature-item:hover {
    background: rgba(44, 82, 130, 0.08);
    transform: translateX(5px);
}

.ubhunt-feature-item i {
    color: var(--ubhunt-elegant-blue);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.ubhunt-feature-item span {
    color: var(--ubhunt-text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* 服务范围统计 */
.ubhunt-service-scope {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.ubhunt-service-scope::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(44, 82, 130, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ubhunt-service-scope::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 161, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ubhunt-scope-title {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.ubhunt-scope-title h3 {
    font-size: 2rem;
    color: var(--ubhunt-text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.ubhunt-scope-title p {
    color: var(--ubhunt-text-gray);
    font-size: 1.1rem;
}

.ubhunt-scope-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.ubhunt-scope-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.ubhunt-scope-metric:hover {
    background: rgba(44, 82, 130, 0.08);
    transform: translateY(-5px);
}

.ubhunt-scope-metric:hover .ubhunt-metric-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 12px 30px rgba(44, 82, 130, 0.3);
}

.ubhunt-metric-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(44, 82, 130, 0.2);
    transition: all 0.3s ease;
}

.ubhunt-metric-data {
    text-align: center;
}

.ubhunt-metric-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--ubhunt-elegant-blue); /* 备选颜色 */
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* 不支持background-clip的浏览器回退 */
@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
    .ubhunt-metric-number {
        color: var(--ubhunt-elegant-blue) !important;
        background: none !important;
    }
}

.ubhunt-metric-label {
    font-size: 0.95rem;
    color: var(--ubhunt-text-gray);
    font-weight: 500;
}

/* 客户评价 */
.ubhunt-testimonials {
    padding: 100px 0 80px;
    position: relative;
    background-color: white;
}

.ubhunt-testimonial-container {
    position: relative;
    margin-top: 60px;
}

.ubhunt-testimonial-quote {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.ubhunt-testimonial-items {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 30px 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.ubhunt-testimonial-item {
    display: none;
    animation: ubhunt-fadeIn 0.5s ease;
}

.ubhunt-testimonial-item.ubhunt-active {
    display: block;
}

.ubhunt-testimonial-text {
    font-size: 1.2rem;
    color: var(--ubhunt-text-gray);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.ubhunt-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ubhunt-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--ubhunt-elegant-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.ubhunt-testimonial-info {
    text-align: left;
}

.ubhunt-testimonial-info h4 {
    font-size: 1.1rem;
    color: var(--ubhunt-text-dark);
    margin-bottom: 5px;
}

.ubhunt-testimonial-info p {
    font-size: 0.9rem;
    color: var(--ubhunt-text-gray);
}

.ubhunt-testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.ubhunt-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ubhunt-testimonial-dot.ubhunt-active {
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    transform: scale(1.2);
}

/* 联系我们 - 专业简洁版 */
.ubhunt-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
}

.ubhunt-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

/* 联系区域样式 */
.ubhunt-contact-main-centered {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* 新的主容器布局 */
.ubhunt-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

/* 左侧信息区域 */
.ubhunt-contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* 信息卡片通用样式 */
.ubhunt-info-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ubhunt-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.ubhunt-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.6) 50%, 
        transparent 100%);
}

/* 卡片头部 */
/* 卡片头部统一样式 */
.ubhunt-card-header {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.ubhunt-header-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.ubhunt-card-header-content {
    flex: 1;
}

.ubhunt-header-icon i {
    font-size: 24px;
    color: white;
}

/* 统一卡片标题样式 */
.ubhunt-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

/* 统一卡片副标题样式 */
.ubhunt-contact-subtitle,
.ubhunt-card-header p {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.ubhunt-contact-subtitle {
    display: inline-block;
    margin-top: 3px;
}

/* 统一卡片内容样式 */
.ubhunt-card-content {
    position: relative;
}

.ubhunt-card-content > p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

/* 联系方式统一样式 */
.ubhunt-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.ubhunt-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ubhunt-contact-item:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.03) 0%, 
        rgba(16, 185, 129, 0.03) 100%);
    border-radius: 12px;
    padding: 18px 14px;
    margin: 0 -14px;
}

.ubhunt-contact-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.12) 0%, 
        rgba(29, 78, 216, 0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ubhunt-contact-icon i {
    font-size: 17px;
    color: #3b82f6;
}

.ubhunt-contact-details {
    flex: 1;
}

.ubhunt-contact-details h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 5px 0;
}

.ubhunt-contact-details p {
    margin: 0 0 3px 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
}

.ubhunt-contact-details a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ubhunt-contact-details a:hover {
    color: #1d4ed8;
}

.ubhunt-contact-note {
    font-size: 12px;
    color: #6b7280;
    display: block;
    opacity: 0.85;
}

/* 服务承诺统一样式 */
.ubhunt-promise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.ubhunt-promise-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(248, 250, 252, 0.5) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.08);
    transition: all 0.3s ease;
}

.ubhunt-promise-item:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(16, 185, 129, 0.03) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

.ubhunt-promise-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ubhunt-promise-icon i {
    font-size: 15px;
    color: white;
}

.ubhunt-promise-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.ubhunt-promise-text p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

/* 服务优势卡片统一样式 */
.ubhunt-service-advantages .ubhunt-card-content {
    padding-top: 4px;
}

/* 优势统计数据区域 */
.ubhunt-advantage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 22px;
    padding: 18px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.04) 0%, 
        rgba(147, 51, 234, 0.04) 100%);
    border-radius: 14px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05);
}

.ubhunt-stat-item {
    text-align: center;
    padding: 10px 6px;
    position: relative;
}

.ubhunt-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(59, 130, 246, 0.25), 
        transparent);
}

.ubhunt-stat-number {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    display: block;
}

.ubhunt-stat-label {
    font-size: 12px;
    color: #6b7280 !important;
    font-weight: 500;
    opacity: 1;
    display: block;
    white-space: nowrap;
    -webkit-text-fill-color: #6b7280 !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

/* 服务亮点统一样式 */
.ubhunt-service-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ubhunt-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(248, 250, 252, 0.6) 100%);
    border: 1px solid rgba(229, 231, 235, 0.7);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.ubhunt-highlight:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(147, 51, 234, 0.03) 100%);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.ubhunt-highlight i {
    color: #3b82f6;
    font-size: 15px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.ubhunt-highlight span {
    font-size: 13px;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.4;
}

/* 右侧表单区域 */
.ubhunt-contact-form-section {
    position: sticky;
    top: 100px;
}

/* 表单头部优化 */
.ubhunt-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.ubhunt-form-header-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.3);
    position: relative;
}

.ubhunt-form-header-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8, #3b82f6);
    border-radius: 22px;
    z-index: -1;
    animation: ubhunt-rotate 3s linear infinite;
}

@keyframes ubhunt-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ubhunt-form-header-icon i {
    font-size: 28px;
    color: white;
}

.ubhunt-form-header h3 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #1f2937, #374151);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin: 0 0 12px 0;
}

.ubhunt-form-header p {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

/* 文本域特殊样式 */
.ubhunt-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* 按钮图标间距 */
.ubhunt-contact-form-wrapper .san-form-group button i {
    margin-right: 8px;
}

/* 表单注释优化 */
.ubhunt-form-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin-top: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.ubhunt-note-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.ubhunt-note-icon i {
    font-size: 10px;
    color: white;
}

.ubhunt-form-note p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.ubhunt-contact-form-wrapper {
    width: 100%;
    max-width: 800px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.ubhunt-contact-form-wrapper h3 {
    font-size: 1.4rem;
    color: var(--ubhunt-text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ubhunt-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ubhunt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ubhunt-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ubhunt-form-group label {
    font-size: 0.9rem;
    color: var(--ubhunt-text-dark);
    font-weight: 500;
}

.ubhunt-form-group input,
.ubhunt-form-group select,
.ubhunt-form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ubhunt-form-group input:focus,
.ubhunt-form-group select:focus,
.ubhunt-form-group textarea:focus {
    border-color: var(--ubhunt-elegant-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.ubhunt-form-submit {
    margin-top: 10px;
    text-align: center;
}

.ubhunt-submit-btn {
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ubhunt-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 82, 130, 0.2);
}

.ubhunt-form-note {
    margin-top: 15px;
    text-align: center;
    color: var(--ubhunt-text-gray);
    font-size: 0.9rem;
}

/* 辅助类 */
.ubhunt-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ubhunt-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ubhunt-btn-primary {
    background: linear-gradient(135deg, var(--ubhunt-elegant-blue), var(--ubhunt-elegant-green));
    color: white;
}

/* 动画 */
@keyframes ubhunt-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ubhunt-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 添加可见性类 */
.ubhunt-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    /* 确保渐变层高度与导航栏匹配 */
    .ubhunt-top-gradient-layer {
        height: 70px; /* 保持与桌面版一致 */
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(37, 99, 235, 0.12) 50%, rgba(29, 78, 216, 0.08) 100%);
    }
    
    /* 平板端雷达扫描优化 */
    .ubhunt-top-gradient-layer::before {
        background: linear-gradient(
            90deg,
            transparent 0%,
            transparent 20%,
            rgba(59, 130, 246, 0.3) 35%,
            rgba(59, 130, 246, 0.6) 50%,
            rgba(59, 130, 246, 0.3) 65%,
            transparent 80%,
            transparent 100%
        );
        animation-duration: 3.5s;
    }
    
    /* 简化副光晕效果 */
    .ubhunt-top-gradient-layer::after {
        background: radial-gradient(
            ellipse 50% 100% at 50% 50%,
            rgba(29, 78, 216, 0.3) 0%,
            rgba(29, 78, 216, 0.18) 30%,
            rgba(29, 78, 216, 0.08) 60%,
            transparent 85%
        );
        animation-duration: 3.5s;
    }
    
    .ubhunt-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ubhunt-hero-visual {
        height: 400px;
    }
    
    /* 隐藏悬浮卡片 */
    .ubhunt-floating-cards {
        display: none;
    }
    
    .ubhunt-case-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ubhunt-impact-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .ubhunt-regions-overview {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ubhunt-regions-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ubhunt-scope-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* 优势卡片响应式处理 - 平板端 */
    .ubhunt-advantage-item {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .ubhunt-advantage-item:nth-child(even) {
        flex-direction: column;
    }
    
    .ubhunt-advantage-image {
        max-width: 100%;
        min-width: 280px;
        height: 350px;
    }
    
    .ubhunt-integration-showcase {
        padding: 20px;
        gap: 15px;
    }
    
    .ubhunt-services-combination {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .ubhunt-service-circle {
        width: 100px;
        height: 100px;
    }
    
    .ubhunt-connection-flow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    /* 新卡片样式响应式 - 平板端 */
    .ubhunt-content-overlay {
        padding: 20px;
    }
    
    .ubhunt-value-proposition h3 {
        font-size: 1.6rem;
    }
    
    .ubhunt-geo-header h3,
    .ubhunt-innovation-header h3 {
        font-size: 1.5rem;
    }
    
    .ubhunt-market-stats {
        gap: 15px;
    }
    
    .ubhunt-innovation-comparison {
        flex-direction: column;
        gap: 15px;
    }
    
    .ubhunt-arrow-transform {
        transform: rotate(90deg);
    }
    
    /* 卡片头部响应式 - 1024px */
    .ubhunt-card-header {
        gap: 14px;
    }
}

@media (max-width: 768px) {
    /* 移动端可能需要稍微调整高度 */
    .ubhunt-top-gradient-layer {
        height: 60px; /* 移动端导航栏通常稍矮 */
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.16) 0%, rgba(29, 78, 216, 0.1) 100%);
    }
    
    /* 移动端雷达扫描简化 */
    .ubhunt-top-gradient-layer::before {
        background: linear-gradient(
            90deg,
            transparent 0%,
            transparent 25%,
            rgba(59, 130, 246, 0.4) 40%,
            rgba(59, 130, 246, 0.6) 50%,
            rgba(59, 130, 246, 0.4) 60%,
            transparent 75%,
            transparent 100%
        );
        animation-duration: 3s;
        width: 150%;
        left: -75%;
    }
    
    /* 移动端禁用副光晕，提升性能 */
    .ubhunt-top-gradient-layer::after {
        display: none;
    }
    
    /* 确保Hero区域的margin-top与渐变层高度匹配 */
    .ubhunt-hero-modern {
        margin-top: 60px;
    }
    
    .ubhunt-hero-grid {
        padding: 0 20px;
    }
    
    .ubhunt-hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .ubhunt-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .ubhunt-hero-metrics {
        justify-content: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .ubhunt-metric-number {
        font-size: 2rem;
    }
    
    .ubhunt-hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .ubhunt-btn-primary-modern,
    .ubhunt-btn-secondary-modern {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .ubhunt-hero-visual {
        height: 300px;
    }
    
    .ubhunt-card-modern {
        padding: 16px;
    }
    
    .ubhunt-card-icon {
        width: 36px;
        height: 36px;
    }
    
    .ubhunt-methodology-content {
        flex-direction: column;
    }
    
    .ubhunt-methodology-text {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .ubhunt-case-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 25px;
    }
    
    .ubhunt-case-number {
        font-size: 2rem;
    }
    
    .ubhunt-case-body {
        padding: 25px;
        gap: 20px;
    }
    
    .ubhunt-case-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px 25px;
    }
    
    .ubhunt-impact-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ubhunt-solution-tags {
        justify-content: center;
    }
    
    .ubhunt-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 新联系我们模块响应式 */
    .ubhunt-contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ubhunt-contact-form-section {
        position: static;
    }
    
    .ubhunt-promise-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* 三个卡片统一响应式 - 平板端 */
    .ubhunt-card-header h3 {
        font-size: 18px;
    }
    
    .ubhunt-contact-subtitle,
    .ubhunt-card-header p {
        font-size: 12px;
    }
    
    .ubhunt-contact-details h4 {
        font-size: 14px;
    }
    
    .ubhunt-contact-details p {
        font-size: 13px;
    }
    
    .ubhunt-promise-text h4 {
        font-size: 13px;
    }
    
    .ubhunt-promise-text p {
        font-size: 11px;
    }
    
    .ubhunt-advantage-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 16px;
    }
    
    .ubhunt-stat-number {
        font-size: 22px;
    }
    
    .ubhunt-stat-label {
        font-size: 11px;
        color: #6b7280 !important;
        -webkit-text-fill-color: #6b7280 !important;
    }
    
    .ubhunt-highlight {
        padding: 10px 12px;
    }
    
    .ubhunt-highlight span {
        font-size: 12px;
    }
    
    .ubhunt-form-header h3 {
        font-size: 24px;
    }
    
    .ubhunt-form-header p {
        font-size: 15px;
    }
    
    .ubhunt-contact-subtitle {
        font-size: 12px;
        margin-top: 5px;
    }
    
    /* 卡片头部响应式 - 平板端 */
    .ubhunt-card-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .ubhunt-header-icon {
        margin: 0 auto;
    }
    
    /* 优势卡片响应式处理 - 移动端 */
    .ubhunt-advantage-item {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .ubhunt-advantage-item:nth-child(even) {
        flex-direction: column;
    }
    
    .ubhunt-advantage-image {
        max-width: 100%;
        min-width: 250px;
        height: 320px;
        margin: 0 auto;
    }
    
    .ubhunt-integration-showcase {
        padding: 15px;
        gap: 12px;
        height: 100%;
        overflow: hidden;
    }
    
    .ubhunt-showcase-header h3 {
        font-size: 1.2rem;
    }
    
    .ubhunt-showcase-header p {
        font-size: 0.85rem;
    }
    
    .ubhunt-services-combination {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .ubhunt-service-circle {
        width: 90px;
        height: 90px;
    }
    
    .ubhunt-service-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .ubhunt-service-label {
        font-size: 0.8rem;
    }
    
    .ubhunt-service-detail {
        font-size: 0.7rem;
    }
    
    .ubhunt-connection-flow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    .ubhunt-flow-line {
        height: 30px;
    }
    
    .ubhunt-flow-symbol {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
    
    .ubhunt-result-showcase {
        padding: 15px;
        border-radius: 15px;
    }
    
    .ubhunt-result-header {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .ubhunt-advantage-content {
        padding: 0 20px;
    }
    
    .ubhunt-advantage-title {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .ubhunt-advantage-description {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .ubhunt-comparison-table {
        font-size: 0.85rem;
    }
    
    /* 新卡片样式响应式 - 移动端 */
    .ubhunt-content-overlay {
        padding: 15px;
    }
    
    .ubhunt-value-proposition h3 {
        font-size: 1.4rem;
    }
    
        .ubhunt-geo-value-proposition h3,
    .ubhunt-innovation-header h3 {
        font-size: 1.3rem;
    }

    .ubhunt-key-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ubhunt-market-comparison {
        flex-direction: column;
        gap: 15px;
    }

    .ubhunt-market-connector {
        transform: rotate(90deg);
    }

    .ubhunt-market-region {
        min-width: 100px;
        padding: 12px;
    }
    
    .ubhunt-innovation-comparison {
        flex-direction: column;
        gap: 15px;
    }
    
    .ubhunt-old-way,
    .ubhunt-new-way {
        min-width: 100px;
        padding: 12px;
    }
    
    .ubhunt-innovation-features {
        gap: 8px;
    }
    
    .ubhunt-feature-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    /* 小屏设备的渐变层高度 */
    .ubhunt-top-gradient-layer {
        height: 55px; /* 小屏设备导航栏更紧凑 */
    }
    
    /* 小屏设备雷达扫描最简化 */
    .ubhunt-top-gradient-layer::before {
        background: linear-gradient(
            90deg,
            transparent 0%,
            rgba(59, 130, 246, 0.3) 35%,
            rgba(59, 130, 246, 0.5) 50%,
            rgba(59, 130, 246, 0.3) 65%,
            transparent 100%
        );
        animation-duration: 2.5s;
        width: 120%;
        left: -60%;
    }
    
    /* 小屏设备背景保持深色调 */
    .ubhunt-top-gradient-layer {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(29, 78, 216, 0.08) 100%);
    }
    
    /* 确保Hero区域的margin-top与渐变层高度匹配 */
    .ubhunt-hero-modern {
        margin-top: 55px;
    }
    
    .ubhunt-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .ubhunt-hero-subtitle {
        font-size: 1rem;
    }
    
    .ubhunt-hero-metrics {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .ubhunt-metric-item {
        text-align: center;
    }
    
    .ubhunt-quick-solutions {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ubhunt-solution-card-simple {
        padding: 30px 20px;
    }
    
    .ubhunt-service-circle {
        width: 100px;
        height: 100px;
    }
    
    .ubhunt-service-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .ubhunt-advantage-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .ubhunt-advantage-item-mini {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .ubhunt-advantage-image {
        min-width: 200px;
        height: 280px;
        margin: 0 auto;
    }
    
    /* 整合优势展示在小屏幕的优化 */
    .ubhunt-integration-showcase {
        padding: 12px;
        gap: 10px;
    }
    
    .ubhunt-showcase-header h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .ubhunt-showcase-header p {
        font-size: 0.8rem;
    }
    
    .ubhunt-services-combination {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .ubhunt-service-circle {
        width: 80px;
        height: 80px;
    }
    
    .ubhunt-service-label {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }
    
    .ubhunt-service-detail {
        font-size: 0.65rem;
    }
    
    .ubhunt-connection-flow {
        margin: 5px 0;
    }
    
    .ubhunt-flow-line {
        height: 25px;
    }
    
    .ubhunt-flow-symbol {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
    }
    
    .ubhunt-result-showcase {
        padding: 12px;
        border-radius: 12px;
    }
    
    .ubhunt-result-header {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .ubhunt-advantage-content {
        padding: 0 15px;
    }
    
    .ubhunt-advantage-title {
        font-size: 1.2rem;
    }
    
    .ubhunt-advantage-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .ubhunt-comparison-table {
        font-size: 0.8rem;
    }
    
    .ubhunt-comparison-table th, 
    .ubhunt-comparison-table td {
        padding: 8px 6px;
    }
    
    /* 新卡片样式响应式 - 小屏设备 */
    .ubhunt-content-overlay {
        padding: 12px;
    }
    
    .ubhunt-value-proposition h3 {
        font-size: 1.2rem;
    }
    
    .ubhunt-value-proposition p {
        font-size: 1rem;
    }
    
        .ubhunt-geo-value-proposition h3,
    .ubhunt-innovation-header h3 {
        font-size: 1.1rem;
    }

    .ubhunt-showcase-badge,
    .ubhunt-geo-badge,
    .ubhunt-innovation-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .ubhunt-benefit-item {
        padding: 10px 12px;
    }

    .ubhunt-benefit-icon {
        width: 26px;
        height: 26px;
    }

    .ubhunt-benefit-icon i {
        font-size: 0.9rem;
        font-weight: 900;
    }

    .ubhunt-benefit-item span {
        font-size: 0.8rem;
    }

    .ubhunt-market-comparison {
        gap: 12px;
    }

    .ubhunt-market-region {
        min-width: 100px;
        padding: 10px;
    }

    .ubhunt-market-region span {
        font-size: 0.8rem;
    }
    
    .ubhunt-case-industry {
        font-size: 1rem;
    }
    
    .ubhunt-case-industry i {
        font-size: 1.2rem;
    }
    
    .ubhunt-metric-value {
        font-size: 1.5rem;
    }
    
    .ubhunt-solution-tags span {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

/* 现代化图片基础卡片样式 */
.ubhunt-image-based,
.ubhunt-map-based,
.ubhunt-innovation-based {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ubhunt-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.ubhunt-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 82, 130, 0.85) 0%,
        rgba(56, 161, 105, 0.75) 50%,
        rgba(37, 99, 235, 0.8) 100%
    );
    z-index: 2;
}

.ubhunt-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

/* 第一个卡片 - 商务合作主题 */
.ubhunt-modern-showcase {
    width: 100%;
    text-align: center;
    color: white;
}

.ubhunt-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.ubhunt-showcase-badge i {
    color: #ffd700;
}

.ubhunt-value-proposition {
    margin-bottom: 25px;
}

.ubhunt-value-proposition h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.ubhunt-value-proposition p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.ubhunt-key-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ubhunt-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ubhunt-benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.ubhunt-benefit-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ubhunt-benefit-icon i {
    color: #ffd700;
    font-size: 1rem;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ubhunt-benefit-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* 第二个卡片 - 地图/区域主题 - 重构版本，模仿其他卡片风格 */
.ubhunt-geo-showcase {
    width: 100%;
    text-align: center;
    color: white;
    position: relative;
}

.ubhunt-geo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.ubhunt-geo-badge i {
    color: #4ade80;
}

.ubhunt-geo-value-proposition {
    margin-bottom: 40px;
}

.ubhunt-geo-value-proposition h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.ubhunt-geo-value-proposition p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}



/* 核心市场展示 - 模仿第三个卡片的对比风格 */
.ubhunt-market-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.ubhunt-market-region {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ubhunt-market-region:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.ubhunt-market-region::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.ubhunt-market-region:hover::before {
    left: 100%;
}

.ubhunt-china-region {
    border-color: rgba(220, 38, 127, 0.5);
}

.ubhunt-sea-region {
    border-color: rgba(16, 185, 129, 0.5);
}

.ubhunt-market-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.ubhunt-market-icon {
    margin-bottom: 8px;
}

.ubhunt-market-icon i {
    font-size: 1.5rem;
}

.ubhunt-china-region .ubhunt-market-icon i {
    color: #dc2626;
}

.ubhunt-sea-region .ubhunt-market-icon i {
    color: #10b981;
}

.ubhunt-market-region span {
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
}

/* 连接箭头 */
.ubhunt-market-connector {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ubhunt-market-connector i {
    color: #4ade80;
    font-size: 1.2rem;
}



/* 第三个卡片 - 创新科技主题 */
.ubhunt-innovation-showcase {
    width: 100%;
    text-align: center;
    color: white;
}

.ubhunt-innovation-header {
    margin-bottom: 25px;
}

.ubhunt-innovation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.ubhunt-innovation-badge i {
    color: #fbbf24;
}

.ubhunt-innovation-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.ubhunt-innovation-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.ubhunt-old-way,
.ubhunt-new-way {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.ubhunt-old-way {
    border-color: rgba(239, 68, 68, 0.5);
}

.ubhunt-new-way {
    border-color: rgba(34, 197, 94, 0.5);
}

.ubhunt-way-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.ubhunt-way-icon {
    margin-bottom: 8px;
}

.ubhunt-way-icon i {
    font-size: 1.5rem;
}

.ubhunt-old-way .ubhunt-way-icon i {
    color: #ef4444;
}

.ubhunt-new-way .ubhunt-way-icon i {
    color: #22c55e;
}

.ubhunt-old-way span,
.ubhunt-new-way span {
    font-size: 0.85rem;
    font-weight: 500;
}

.ubhunt-arrow-transform {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ubhunt-arrow-transform i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.ubhunt-innovation-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ubhunt-feature-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.ubhunt-feature-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* 自定解决方案 */

/* 现代化表单样式 - 玻璃态设计适配页面风格 */
.ubhunt-contact-form-wrapper {
    position: relative;
    z-index: 1;
}

.ubhunt-contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(29, 78, 216, 0.05) 25%, 
        rgba(16, 185, 129, 0.1) 50%, 
        rgba(59, 130, 246, 0.08) 75%, 
        rgba(29, 78, 216, 0.12) 100%);
    border-radius: 30px;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.6;
}

.ubhunt-contact-form-wrapper .san-form-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.9) 50%, 
        rgba(255, 255, 255, 0.85) 100%);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.ubhunt-contact-form-wrapper .san-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.5) 50%, 
        transparent 100%);
    z-index: 1;
}

.ubhunt-contact-form-wrapper h3 {
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #1f2937, #374151);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: relative;
}

.ubhunt-contact-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.ubhunt-contact-form-wrapper .san-form-group {
    margin-bottom: 28px;
    position: relative;
}

.ubhunt-contact-form-wrapper .san-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #374151;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.ubhunt-contact-form-wrapper .san-form-group:focus-within label {
    color: #1d4ed8;
}

.ubhunt-contact-form-wrapper .san-form-group label.required::after {
    content: " *";
    color: #ef4444;
    font-weight: 500;
}

.ubhunt-contact-form-wrapper .dynamic-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 16px;
    font-size: 16px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.8) 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ubhunt-contact-form-wrapper .dynamic-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.ubhunt-contact-form-wrapper .dynamic-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.9) 100%);
    box-shadow: 
        0 0 0 4px rgba(59, 130, 246, 0.15),
        0 8px 24px rgba(59, 130, 246, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.ubhunt-contact-form-wrapper .dynamic-input:invalid {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 
        0 0 0 3px rgba(239, 68, 68, 0.1),
        0 4px 12px rgba(239, 68, 68, 0.1);
}

.ubhunt-contact-form-wrapper select.dynamic-input {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233b82f6" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    padding-right: 60px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.ubhunt-contact-form-wrapper select.dynamic-input:focus {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231d4ed8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
}

.ubhunt-contact-form-wrapper .san-form-check-inline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding: 16px 20px;
    border: 2px solid rgba(229, 231, 235, 0.6);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(248, 250, 252, 0.5) 100%);
    backdrop-filter: blur(10px);
}

.ubhunt-contact-form-wrapper .san-form-check-inline input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
}

.ubhunt-contact-form-wrapper .san-form-check-inline:hover {
    border-color: rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(29, 78, 216, 0.04) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.ubhunt-contact-form-wrapper .san-form-group button {
    width: 100%;
    background: linear-gradient(135deg, 
        #3b82f6 0%, 
        #1d4ed8 50%, 
        #1e40af 100%);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 20px 32px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 12px 28px rgba(59, 130, 246, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-top: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 15px;
}

.ubhunt-contact-form-wrapper .san-form-group button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ubhunt-contact-form-wrapper .san-form-group button:hover::before {
    left: 100%;
}

.ubhunt-contact-form-wrapper .san-form-group button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        #4f46e5 0%, 
        #3b82f6 50%, 
        #1d4ed8 100%);
}

.ubhunt-contact-form-wrapper .san-form-group button:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

.ubhunt-contact-form-wrapper .san-form-group button:disabled {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0.7;
}

.ubhunt-contact-form-wrapper .san-form-group button:disabled::before {
    display: none;
}

/* 表单注释美化 */
.ubhunt-form-note {
    text-align: center;
    margin-top: 24px;
    padding: 16px 24px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.ubhunt-form-note p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .ubhunt-contact-form-wrapper .san-form-container {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .ubhunt-contact-form-wrapper h3 {
        font-size: 24px;
        margin-bottom: 28px;
    }
    
    .ubhunt-contact-form-wrapper .san-form-check-inline {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
    }
    
    .ubhunt-contact-form-wrapper .dynamic-input,
    .ubhunt-contact-form-wrapper .san-form-group button {
        font-size: 16px;
        padding: 16px 20px;
    }
    
    .ubhunt-contact-form-wrapper .san-form-group button {
        padding: 18px 24px;
    }
}

@media (max-width: 480px) {
    .ubhunt-contact-form-wrapper::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-radius: 20px;
    }
    
    .ubhunt-contact-form-wrapper .san-form-container {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .ubhunt-contact-form-wrapper h3 {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    .ubhunt-contact-form-wrapper .san-form-group {
        margin-bottom: 24px;
    }
    
    .ubhunt-contact-form-wrapper .san-form-check-inline {
        padding: 12px 14px;
    }
    
    .ubhunt-contact-form-wrapper select.dynamic-input {
        background-position: right 16px center;
        background-size: 18px;
        padding-right: 50px;
    }
    
    .ubhunt-contact-form-wrapper .dynamic-input {
        padding: 16px 18px;
        border-radius: 12px;
    }
    
    .ubhunt-contact-form-wrapper .san-form-group button {
        padding: 16px 20px;
        border-radius: 12px;
        font-size: 14px;
    }
}

/* 现代化 Toast 通知系统 */
.ubhunt-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.ubhunt-toast {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 20px 24px;
    margin-bottom: 16px;
    min-width: 350px;
    max-width: 450px;
    pointer-events: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid #3498db;
    position: relative;
    overflow: hidden;
}

.ubhunt-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.ubhunt-toast.success {
    border-left-color: #27ae60;
}

.ubhunt-toast.error {
    border-left-color: #e74c3c;
}

.ubhunt-toast.warning {
    border-left-color: #f39c12;
}

.ubhunt-toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ubhunt-toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.ubhunt-toast.success .ubhunt-toast-icon {
    background: #27ae60;
}

.ubhunt-toast.error .ubhunt-toast-icon {
    background: #e74c3c;
}

.ubhunt-toast.warning .ubhunt-toast-icon {
    background: #f39c12;
}

.ubhunt-toast.info .ubhunt-toast-icon {
    background: #3498db;
}

.ubhunt-toast-text {
    flex: 1;
}

.ubhunt-toast-title {
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 4px;
    line-height: 1.4;
}

.ubhunt-toast-message {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.5;
}

.ubhunt-toast-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    color: #bdc3c7;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.ubhunt-toast-close:hover {
    background: #ecf0f1;
    color: #7f8c8d;
}

.ubhunt-toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(52, 152, 219, 0.3);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.ubhunt-toast-progress-bar {
    height: 100%;
    background: #3498db;
    width: 100%;
    transform: translateX(-100%);
    animation: toastProgress 4s linear forwards;
}

.ubhunt-toast.success .ubhunt-toast-progress-bar {
    background: #27ae60;
}

.ubhunt-toast.error .ubhunt-toast-progress-bar {
    background: #e74c3c;
}

.ubhunt-toast.warning .ubhunt-toast-progress-bar {
    background: #f39c12;
}

@keyframes toastProgress {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}

/* 响应式适配 */
@media (max-width: 768px) {
    .ubhunt-toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .ubhunt-toast {
        min-width: auto;
        max-width: none;
        width: 100%;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .ubhunt-toast {
        padding: 16px 20px;
        border-radius: 8px;
    }
    
    .ubhunt-toast-title {
        font-size: 15px;
    }
    
    .ubhunt-toast-message {
        font-size: 13px;
    }
    
    /* 新联系我们模块小屏幕响应式 */
    .ubhunt-contact-content {
        gap: 40px;
        margin-top: 40px;
    }
    
    .ubhunt-contact-info {
        gap: 24px;
    }
    
    .ubhunt-info-card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .ubhunt-card-header h3 {
        font-size: 20px;
    }
    
    .ubhunt-contact-subtitle {
        font-size: 13px;
        margin-top: 6px;
    }
    
    .ubhunt-header-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
    
    .ubhunt-header-icon i {
        font-size: 20px;
    }
    
    .ubhunt-contact-item {
        padding: 16px 0;
    }
    
    .ubhunt-contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .ubhunt-contact-icon i {
        font-size: 16px;
    }
    

    
    .ubhunt-form-header-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }
    
    .ubhunt-form-header-icon i {
        font-size: 24px;
    }
    
    .ubhunt-form-header h3 {
        font-size: 22px;
    }
    
    .ubhunt-form-header p {
        font-size: 14px;
    }
    
    /* 三个卡片统一响应式 - 手机端 */
    .ubhunt-card-header {
        margin-bottom: 20px;
        gap: 12px;
    }
    
    .ubhunt-header-icon {
        width: 48px;
        height: 48px;
    }
    
    .ubhunt-header-icon i {
        font-size: 20px;
    }
    
    .ubhunt-card-header h3 {
        font-size: 16px;
    }
    
    .ubhunt-contact-subtitle,
    .ubhunt-card-header p {
        font-size: 11px;
    }
    
    .ubhunt-contact-item {
        padding: 14px 0;
    }
    
    .ubhunt-contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .ubhunt-contact-icon i {
        font-size: 15px;
    }
    
    .ubhunt-contact-details h4 {
        font-size: 13px;
    }
    
    .ubhunt-contact-details p {
        font-size: 12px;
    }
    
    .ubhunt-promise-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ubhunt-promise-item {
        padding: 12px 14px;
    }
    
    .ubhunt-promise-icon {
        width: 32px;
        height: 32px;
    }
    
    .ubhunt-promise-icon i {
        font-size: 13px;
    }
    
    .ubhunt-promise-text h4 {
        font-size: 12px;
    }
    
    .ubhunt-promise-text p {
        font-size: 10px;
    }
    
    .ubhunt-advantage-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .ubhunt-stat-item {
        padding: 10px 8px;
        border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    }
    
    .ubhunt-stat-item:last-child {
        border-bottom: none;
    }
    
    .ubhunt-stat-item:not(:last-child)::after {
        display: none;
    }
    
    .ubhunt-stat-number {
        font-size: 20px;
    }
    
    .ubhunt-stat-label {
        font-size: 10px;
        color: #6b7280 !important;
        -webkit-text-fill-color: #6b7280 !important;
    }
    
    .ubhunt-service-highlights {
        gap: 10px;
    }
    
    .ubhunt-highlight {
        padding: 8px 10px;
    }
    
    .ubhunt-highlight i {
        font-size: 13px;
        width: 16px;
    }
    
    .ubhunt-highlight span {
        font-size: 11px;
    }

}