.vtk-price-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:32px;
    width:100%;
    max-width:1216px;
    margin:0 auto;
}
.vtk-price-card{
    position:relative;
    min-height:452px;
    background:#fff;
    border:1px solid #dbe3ef;
    border-radius:16px;
    color:#0f274f;
    box-shadow:0 4px 14px rgba(15,23,42,.04);
    transition:all .22s ease;
}
.vtk-price-card.is-highlighted{
    border:2px solid #2563eb;
    box-shadow:0 18px 35px rgba(15,23,42,.09);
}
.vtk-price-card-inner{
    display:flex;
    flex-direction:column;
    height:100%;
    padding:36px 32px 32px;
}
.vtk-price-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:18px;
}
.vtk-price-plan{
    color:#94a3b8;
    font-size:13px;
    line-height:1;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.vtk-price-card.is-highlighted .vtk-price-plan{
    color:#2563eb;
}
.vtk-price-top-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    z-index:2;
    padding:7px 17px;
    border-radius:999px;
    background:#2563eb;
    color:#fff;
    font-size:11px;
    line-height:1;
    font-weight:900;
    white-space:nowrap;
    box-shadow:0 8px 16px rgba(37,99,235,.28);
}
.vtk-price-side-badge{
    padding:5px 12px;
    border-radius:999px;
    background:#132a52;
    color:#fff;
    font-size:10px;
    line-height:1;
    font-weight:900;
    white-space:nowrap;
}
.vtk-price-amount{
    color:#0f274f;
    font-size:40px;
    line-height:1;
    font-weight:900;
    letter-spacing:-.045em;
}
.vtk-price-leads{
    margin-top:7px;
    color:#2563eb;
    font-size:19px;
    line-height:1;
    font-weight:900;
}
.vtk-price-per-lead{
    margin-top:10px;
    color:#475569;
    font-size:13px;
    line-height:1.25;
}
.vtk-price-promo{
    display:inline-flex;
    width:max-content;
    max-width:100%;
    margin-top:9px;
    padding:5px 8px;
    border-radius:4px;
    background:#dcfce7;
    color:#00a65a;
    font-size:11px;
    line-height:1.2;
    font-weight:900;
}
.vtk-price-divider{
    height:1px;
    width:100%;
    margin:18px 0;
    background:#e2e8f0;
}
.vtk-price-features{
    display:grid;
    gap:13px;
}
.vtk-price-feature{
    display:flex;
    align-items:flex-start;
    gap:11px;
}
.vtk-price-feature-icon{
    flex:0 0 auto;
    color:#2563eb;
    font-size:16px;
    line-height:1.2;
}
.vtk-price-feature-text{
    color:#475569;
    font-size:13px;
    line-height:1.35;
}
.vtk-price-feature:first-child .vtk-price-feature-text{
    color:#0f172a;
}
.vtk-price-button-wrap{
    margin-top:auto;
    padding-top:40px;
}
.vtk-price-button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    padding:15px 22px;
    border:1px solid #2563eb;
    border-radius:10px;
    background:#fff;
    color:#2563eb;
    text-align:center;
    text-decoration:none;
    font-size:13px;
    line-height:1;
    font-weight:900;
    transition:all .2s ease;
}
.vtk-price-card.is-highlighted .vtk-price-button{
    background:#2563eb;
    color:#fff;
    box-shadow:0 10px 20px rgba(37,99,235,.28);
}
.vtk-price-button:hover{
    background:#2563eb;
    color:#fff;
    border-color:#2563eb;
}
@media(max-width:1024px){
    .vtk-price-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:767px){
    .vtk-price-grid{grid-template-columns:1fr;}
    .vtk-price-card-inner{padding:30px 24px;}
}
