.use-case-hidden {
    display: none;
}

.use-case-card {
    display: block;
    height: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-decoration: none !important;
    border: 1px solid #ececec;
    transition: all .3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.use-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(18, 24, 186, .15);
    border-color: var(--theme);
}

.use-case-card h4 {
    color: var(--theme);
    margin-bottom: 12px;
    font-weight: 700;
}

.use-case-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}

.icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--theme);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.use-case-card:hover .icon-wrap {
    background: linear-gradient(135deg,
            var(--theme) 0%,
            #2a32ff 100%);
}