/* 行业痛点美化 */
.pain-points-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0;
}

.pain-points-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.pain-point-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff6b6b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pain-point-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pain-point-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.15);
}

.pain-point-item:hover::before {
    opacity: 1;
}

.pain-point-item:nth-child(2) {
    border-left-color: #ffa726;
}

.pain-point-item:nth-child(3) {
    border-left-color: #42a5f5;
}

.pain-point-title {
    font-size: 18px;
    font-weight: 700;
    color: #1d3864;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pain-point-title::before {
    content: '⚠';
    font-size: 20px;
    color: #ff6b6b;
}

.pain-point-item:nth-child(2) .pain-point-title::before {
    color: #ffa726;
}

.pain-point-item:nth-child(3) .pain-point-title::before {
    color: #42a5f5;
}

.pain-point-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* 适用行业美化 */
.industries-section {
    background: #ffffff;
    padding: 40px 0;
}

/* 方案目标美化 */
.goals-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
}

.goals-section .goal-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(29, 56, 100, 0.08);
    border: 1px solid rgba(29, 56, 100, 0.1);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.goals-section .goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1d3864 0%, #007AFF 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.goals-section .goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(29, 56, 100, 0.15);
    border-color: rgba(29, 56, 100, 0.2);
}

.goals-section .goal-card:hover::before {
    opacity: 1;
}

.goals-section .goal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.goals-section .goal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1d3864;
    margin-bottom: 16px;
    line-height: 1.4;
    position: relative;
    padding-left: 20px;
}

.goals-section .goal-title::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1d3864 0%, #007AFF 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.goals-section .goal-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    flex: 1;
    text-align: left;
}

@media (max-width: 768px) {
    .goals-section {
        padding: 40px 0;
    }
    
    .goals-section .goal-card {
        padding: 24px;
    }
    
    .goals-section .goal-title {
        font-size: 20px;
    }
    
    .goals-section .goal-desc {
        font-size: 14px;
    }
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}

.industry-tag {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(29, 56, 100, 0.08) 0%, rgba(0, 122, 255, 0.08) 100%);
    border: 1px solid rgba(29, 56, 100, 0.15);
    border-radius: 20px;
    font-size: 14px;
    color: #1d3864;
    transition: all 0.3s ease;
    cursor: default;
}

.industry-tag:hover {
    background: linear-gradient(135deg, rgba(29, 56, 100, 0.15) 0%, rgba(0, 122, 255, 0.15) 100%);
    border-color: rgba(29, 56, 100, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(29, 56, 100, 0.1);
}

@media (max-width: 768px) {
    .pain-points-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pain-point-item {
        padding: 20px;
    }
    
    .industries-tags {
        gap: 8px;
    }
    
    .industry-tag {
        padding: 8px 16px;
        font-size: 13px;
    }
}


