/* 企业级解决方案区域优化样式 */
.enterprise-section {
    padding: 3rem 0 1.5rem 0 !important; /* 减少底部空白 */
}

.enterprise-section .section-header {
    margin-bottom: 2.5rem;
}

.enterprise-section .bento-grid {
    margin-bottom: 0;
}

/* 优化卡片内容布局 */
.enterprise-section .bento-content {
    padding: 2rem 1.75rem;
}

.enterprise-section .bento-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.875rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.enterprise-section .bento-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: var(--text-light);
    min-height: 3.5em;
}

/* 优化图标样式 */
.enterprise-section .bento-icon-box {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.enterprise-section .bento-card:hover .bento-icon-box {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* 优化特性标签 */
.enterprise-section .bento-feature-tags {
    margin-top: auto;
    padding-top: 0.5rem;
}

.enterprise-section .bento-feature-tags li {
    font-size: 0.9rem;
    margin-bottom: 0.625rem;
    padding: 0.375rem 0;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.enterprise-section .bento-feature-tags li:hover {
    color: var(--primary-600);
    transform: translateX(4px);
}

.enterprise-section .bento-feature-tags i {
    color: var(--primary-500);
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

/* 响应式优化 */
@media (max-width: 1024px) {
    .enterprise-section {
        padding: 2.5rem 0 1rem 0 !important;
    }
    
    .enterprise-section .bento-content {
        padding: 1.75rem 1.5rem;
    }
    
    .enterprise-section .bento-content h3 {
        font-size: 1.3rem;
    }
    
    .enterprise-section .bento-content p {
        font-size: 0.9rem;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .enterprise-section {
        padding: 2rem 0 1rem 0 !important;
    }
    
    .enterprise-section .section-header {
        margin-bottom: 2rem;
    }
    
    .enterprise-section .bento-content {
        padding: 1.5rem 1.25rem;
    }
    
    .enterprise-section .bento-icon-box {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .enterprise-section .bento-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .enterprise-section .bento-content p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .enterprise-section .bento-feature-tags li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

