.elementor-3289 .elementor-element.elementor-element-2f5b8aa{--display:flex;}/* Start custom CSS for html, class: .elementor-element-bb90e42 */.subscription-pricing {
    max-width: 900px;
    margin: 0 auto;
    font-family: inherit;
}

/* -------------------------
   BILLING TOGGLE
------------------------- */

.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.billing-label {
    font-size: 18px;
    font-weight: 600;
    color: #667085;
    transition: 0.2s ease;
}

.billing-label.active {
    color: #172033;
}

.billing-switch {
    position: relative;
    width: 60px;
    height: 32px;
    display: inline-block;
}

.billing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #d1d5db;
    border-radius: 30px;
    transition: 0.2s;
}

.billing-slider:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 4px;
    top: 4px;
    background: white;
    border-radius: 50%;
    transition: 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.billing-switch input:checked + .billing-slider {
    background: #4f82ed;
}

.billing-switch input:checked + .billing-slider:before {
    transform: translateX(28px);
}

.save-badge {
    background: #e8f8ed;
    color: #287642;
    padding: 5px 9px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}


/* -------------------------
   CARDS
------------------------- */

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pricing-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 15px;
    padding: 40px 30px 30px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid #4f82ed;
}

.pricing-card h3 {
    margin: 0 0 25px;
    font-size: 24px;
    font-weight: 700;
    color: #172033;
}

.price {
    display: flex;
    align-items: flex-start;
}

.currency {
    font-size: 20px;
    margin-top: 10px;
    margin-right: 4px;
}

.price-value {
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    color: #172033;
}

.billing-period {
    margin-top: 8px;
    color: #667085;
    font-size: 14px;
}

.features {
    margin: 35px 0;
}

.features div {
    margin-bottom: 18px;
    color: #667085;
    font-size: 15px;
}


/* -------------------------
   BUTTON
------------------------- */

.choose-plan {
    width: 100%;
    border: 1px solid #4f82ed;
    background: white;
    color: #4f82ed;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.choose-plan:hover {
    background: #4f82ed;
    color: white;
}

.featured .choose-plan {
    background: #4f82ed;
    color: white;
}

.featured .choose-plan:hover {
    background: #396ed8;
}


/* -------------------------
   BEST VALUE RIBBON
------------------------- */

.best-value {
    position: absolute;
    top: 20px;
    right: -42px;
    width: 145px;
    text-align: center;
    background: #4f82ed;
    color: white;
    padding: 8px 0;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}


/* -------------------------
   ERROR
------------------------- */

.subscription-error {
    margin-top: 20px;
    text-align: center;
    color: #c0392b;
}


/* -------------------------
   MOBILE
------------------------- */

@media (max-width: 700px) {

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .billing-toggle-wrapper {
        gap: 8px;
    }

    .billing-label {
        font-size: 15px;
    }

}/* End custom CSS */