.vc-pricing {
    position: relative;
    padding: 40px 0;
}

.vc-pricing .vc-section__header {
    padding-bottom: 20px;
}

.pricing-plan {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    background-color: #fff;
    padding: 30px;
    position: relative;
    z-index: 11;
    transition: .4s ease-in-out;
    border-radius: 32px;
    overflow: hidden;
}

.pricing-plan:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vc-pricing__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: -12px;
    padding: 12px;
}

.vc-pricing__item {
    display: flex;
    flex: 1 1 calc(25% - 24px);
    min-width: 280px;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .vc-pricing__item {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .vc-pricing__item {
        flex: 1 1 100%;
    }
}

.pricing-plan ul.list-style li {
    font-weight: 400;
    padding: 15px 0;
    border-bottom: 1px solid #D8D8D8;
}

.pricing-plan ul.list-style li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}

.pricing-plan ul.list-style li:before {
    background-color: #021833;
    width: 8px;
    height: 8px;
}

.pricing-plan__img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    height: 180px;
}

.pricing-plan__img-wrapper .preview_img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.pricing-plan .pricing_title {
    position: relative;
    font-size: 25px;
    line-height: 1.1;
    margin: 0;
    font-weight: 500;
    z-index: 5;
}

.pricing-plan.two .pricing_title {
    color: #ffffff;
}

.vc-body--wob .pricing-plan .pricing_title, .vc-body--wob .pricing-plan.two .pricing_title {
    color: var(--vc-black);
}

.pricing-plan ul.list-style {
    border-top: 1px solid #D8D8D8;
    padding-top: 26px;
    margin-top: 21px;
    padding-bottom: 30px;
    position: relative;
}

.pricing-plan ul.list-style:before {
    content: "";
    position: absolute;
    width: 50%;
    background-color: var(--theme-colour);
    top: -1px;
    height: 1px;
}

.pricing-plan .pricing-plan__icon img {
    position: absolute;
    right: -35px;
    top: 0px;
    width: 100px;
    height: 100px;
}

.pricing-plan .icon-default {
    opacity: 0;
}

.pricing-plan.two .icon-default {
    opacity: .3;
}

.pricing-plan.two .icon-hover {
    opacity: 0;
}

.pricing-plan .icon-hover {
    opacity: .3;
}

.vc-pricing__item:hover .icon-default {
    opacity: .3;
}

.vc-pricing__item:hover .icon-hover {
    opacity: 0;
}

.pricing-plan .price {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.pricing-plan .price.wo_image {
    text-align: left;
    padding-top: 30px;
    font-size: 40px;
}

.vc-body--wob .pricing-plan .price, .vc-body--wob .pricing-plan.two .price {
    color: var(--vc-black);
}

.pricing-plan.two {
    background-color: var(--vc-secondary);
}

.vc-body--wob .pricing-plan.two {
    background-color: var(--vc-white);
}

.pricing-plan.two h5,
.pricing-plan.two > span,
.pricing-plan.two .price,
.pricing-plan.two li {
    color: #fff;
}

.pricing-plan .desc {
    font-size: calc(0.0045146727 * 100vw + 12.1309255079px);
    font-weight: 400;
    font-style: normal;
    line-height: 1.24;
    padding: 20px 0;
}

.pricing-plan.two .desc {
    color: #ffffff;
}

.vc-body--wob .pricing-plan .desc, .vc-body--wob .pricing-plan.two .desc {
    color: var(--vc-black);
}

@media (min-width: 1300px) {
    .pricing-plan .desc {
        font-size: 16px;
    }
}

.pricing-plan.two ul.list-style li:before {
    background-color: #fff;
}

.pricing-plan.two ul.list-style:before {
    display: none;
}

.pricing-plan.two .btn {
    border-color: #fff;
}

.pricing-plan.two .btn:hover {
    border-color: transparent;
    background-color: #021935;
}

.two .vc-btn.vc-btn--transparent {
    color: var(--vc-white);
    background-color: var(--vc-transparent);
    border-color: var(--vc-white);
}

ul.shaps {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.shaps li {
    position: absolute;
}

.vc-pricing ul.shaps li:nth-child(1) {
    top: 16%;
    left: 4%;
}

.vc-pricing ul.shaps li:nth-child(2) {
    top: 27%;
    right: 4%;
}

.vc-pricing ul.shaps li:nth-child(1) img,
.vc-pricing ul.shaps li:nth-child(2) img {
    animation: fa-spin 10s infinite linear;
}

.vc-pricing ul.shaps li:nth-child(3) img,
.vc-pricing ul.shaps li:nth-child(4) img {
    animation: fa-spin 20s infinite linear;
}

.vc-pricing ul.shaps li:nth-child(3) {
    top: auto;
    bottom: 6%;
}

.vc-pricing ul.shaps li:nth-child(4) {
    top: 24%;
    left: 7%;
}

/* Animations */
@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes topshap {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .vc-pricing__list {
        flex-wrap: wrap;
    }
    
    .vc-pricing__item {
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .vc-pricing__list {
        flex-direction: column;
        gap: 16px;
    }
    
    .vc-pricing__item {
        width: 100%;
        min-width: 100%;
    }
    
    .pricing-plan h3 {
        font-size: 36px;
    }
    
    /* Скрываем декоративные элементы на мобильных */
    ul.shaps {
        display: none;
    }
}