.wmsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 32px;
}

/* card */
.wmsCard {
    padding: 34px 30px;
    border-radius: 22px;
    /* background: linear-gradient(180deg, #ffffff, #f8fafc); */
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all .35s ease;
    background: radial-gradient(circle at top right, rgba(153, 192, 255, 0.18), transparent 65%);

}

/* category tag */
.wmsTag {
    font-size: 12px;
    letter-spacing: .08em;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
}

/* icon */
.iconWrap {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.iconWrap img {
    width: 50px;
    height: 50px;
}

/* title */
.wmsCard h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* description */
.wmsCard p {
    color: #6b7280;
    line-height: 1.65;
}

/* hover */
.wmsCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
    border-color: #bfdbfe;
    border-radius: 22px;

}

/* soft glow */
.wmsCard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, .18), transparent 65%);
    opacity: 0;
    transition: opacity .35s ease;
    border-radius: 22px;

}

.wmsCard:hover::after {
    opacity: 1;
}

@media(max-width:768px) {

    .wmsGrid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wmsCard {
        padding: 28px 22px;
    }

}