.problems-card-soft {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: all 0.4s ease;
}

.problems-card-soft:hover {
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.problems-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 32px;
}
.problems-card {
    padding: 52px;
    position: relative;
    overflow: hidden;
}

.problems-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problems-card:hover::before {
    opacity: 1;
}

.problems-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 32px;
}

.problems-card h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.problems-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgb(100, 116, 139);
}

@media (max-width: 1024px) {
    .problems-cards-grid {
        grid-template-columns: 1fr;
    }
}
