/* Pricing card */
.section-price {
    padding: 40px 0;
}

.price-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    padding: 28px;
    max-width: 720px;
    margin: 0 auto;
    color: #0b0f1a;
}

.action-overlap .container {
    padding: 0 50px;
}

.price-card__header {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.price-card__row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 10px;
}

.price-card__big {
    font-size: 48px;
    font-weight: 800;
    color: #79b300;
    letter-spacing: .5px;
}

.price-card__old {
    font-size: 28px;
    color: #6c7a89;
    text-decoration: line-through;
    opacity: .7;
}

.price-card__badge {
    display: inline-block;
    background: #ffd64d;
    color: #1d1d1f;
    font-weight: 700;
    border-radius: 10px;
    padding: 8px 14px;
    margin: 10px 0 14px;
}

.price-card__split {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-card__split-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: lowercase;
}

.price-card__info {
    color: #6d6d6d;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 2px;
    margin-bottom: 20px;
}

.price-card__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin: 18px 0 24px;
}

.price-card__btn {
    background: #79b300;
    color: #fff;
    padding: 18px 26px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease;
}

.price-card__btn:hover {
    background: #6aa000;
}

.price-card__gift {
    color: #3478f6;
    text-decoration: none;
    padding: 12px 18px;
    border: 2px solid #e5eefc;
    border-radius: 14px;
    font-weight: 700;
}

.price-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    color: #2a2a2a;
}

.price-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 2px;
}

/* Sticky bar */
.price-sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: -120px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    z-index: 50;
    transition: top .25s ease;
}

.price-sticky.is-visible {
    top: 0;
}

.price-sticky__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
}

.price-sticky__title {
    font-weight: 700;
    color: #2a2a2a;
}

.price-sticky__price {
    font-size: 22px;
    font-weight: 800;
    color: #79b300;
}

.price-sticky__old {
    font-size: 16px;
    color: #8a97a6;
    text-decoration: line-through;
    margin-left: 8px;
}

.price-sticky__btn {
    background: #79b300;
    color: #fff;
    padding: 12px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 768px) {
    .price-card {
        border-radius: 16px;
        padding: 22px;
    }

    .price-card__big {
        font-size: 36px;
    }

    .price-card__old {
        font-size: 22px;
    }

    .price-sticky__price {
        font-size: 18px;
    }
}

/* Right rail action card (action__wrap) */
.action__wrap {
    position: sticky;
    top: 0;
    align-self: flex-start;
    width: 422px;
    max-width: 100%;
    margin-left: auto;
    z-index: 3;
}

.action__wrap .action {
    background: #fff;
    font-family: "pfhighwaysanspro-bold", Arial, Helvetica, sans-serif;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
    padding: 35px;
}

.action__wrap .action__price-title {
    /* font-weight: 700; */
    margin-bottom: 8px;
}

.action__price-title {
    font-family: "pfhighwaysanspro-bold", Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    line-height: 1.1em;
    color: #212a34;
}


.action__title,
.action-title,
.action__free-element .free-element__name {
    font-family: "pfhighwaysanspro-bold", Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.125em;
    line-height: 1.1em;
    color: #212a34;
    margin: 30px 0 0;
}

.action__wrap .action__prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
}

.action__wrap .action__price {
    font-size: 34px;
    font-weight: 800;
    color: #79b300;
}

.action__wrap .action__old {
    font-size: 18px;
    text-decoration: line-through;
    color: #8a97a6;
}

.action__wrap .action__badge {
    display: inline-block;
    background: #ffd64d;
    border-radius: 10px;
    padding: 6px 10px;
    font-weight: 700;
    margin-bottom: 12px;
}

.action__wrap .action__hint {
    color: #6d6d6d;
    line-height: 1.5;
    margin: 10px 0 18px;
}

.action__wrap .action__btn {
    display: block;
    text-align: center;
    background: #79b300;
    color: #fff;
    text-decoration: none;
    padding: 16px;
    border-radius: 40px;
    font-weight: 800;
}

.action__wrap .action__btn:hover {
    background: #6aa000;
}

.action__wrap .action__gift {
    display: block;
    text-align: center;
    margin-top: 12px;
    text-decoration: none;
    border: 2px solid #e5eefc;
    border-radius: 14px;
    padding: 12px;
    color: #3478f6;
    font-weight: 700;
}

.action__wrap .action__list {
    font-family: "pfhighwaysanspro-bold", Arial, Helvetica, sans-serif;
    list-style: none;
    padding: 16px 0 0;
    margin: 0;
}

.action__wrap .action__list li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
}

/* Overlap on previous section */
.action-overlap {
    position: sticky;
    top: 0;
}

.action-overlap .action__wrap {
    margin-top: -460px;
}

@media (max-width: 992px) {
    .action__wrap {
        position: static;
        width: 100%;
        margin-left: 0;
    }

    .action-overlap .action__wrap {
        margin-top: 20px;
    }
}

.site-wrap {
    overflow: clip;
}