.vtk-steps-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    column-gap:40px;
    row-gap:24px;
    width:100%;
    max-width:1520px;
    margin:0 auto;
}
.vtk-step-card{
    display:block;
    min-height:221px;
    background:#fff;
    border:1px solid #dbe3ef;
    border-radius:19px;
    color:inherit;
    text-decoration:none;
    overflow:hidden;
    transition:all .22s ease;
}
.vtk-step-card:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 35px rgba(15,23,42,.07);
    border-color:#cbd5e1;
}
.vtk-step-card-inner{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    height:100%;
    padding:30px;
    text-align:left;
}
.vtk-step-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    margin-bottom:20px;
    border-radius:13px;
    background:#eaf2ff;
    color:#2563eb;
    font-size:19px;
    line-height:1;
    font-weight:900;
}
.vtk-step-title{
    margin:0 0 18px;
    color:#020617;
    font-size:22px;
    line-height:1.18;
    font-weight:850;
    letter-spacing:-.03em;
}
.vtk-step-description{
    color:#64748b;
    font-size:16px;
    line-height:1.55;
}
@media (max-width:1024px){
    .vtk-steps-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
}
@media (max-width:767px){
    .vtk-steps-grid{grid-template-columns:1fr;}
    .vtk-step-card-inner{padding:24px;}
}
