.pricing-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Toggle ── */
.toggle-row {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.toggle-pill {
    display: inline-flex;
    background: #65CB7B14;
    border: 2px solid #65CB7B;
    border-radius: 9px;
    padding: 0;
    /* gap: 2px; */
    margin-top: 20px;
}

.t-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 9px 36px;
    cursor: pointer;
    color: #65CB7B;
    transition: background .22s, color .22s;
    line-height: 1.3;
    text-align: center;
    min-width: 150px;
}

.t-btn .t-sub {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: .9;
}

.t-btn.active {
    background: #65CB7B;
    color: #fff;
    border-radius: 4px 0 0 4px;
}

.t-btn-basic.active {
    border-radius: 0 4px 4px 0;
}

.t-btn:not(.active):hover {
    background: #65cb7b3f;
}

/* ── Hero Price ── */
.hero-price-row {
    text-align: center;
    margin-bottom: 7px;
}

.hero-amount {
    display: flex;
    align-items: baseline;
    line-height: 1;
    justify-content: center;
}

.h-sym {
    font-size: 60px;
    color: #65CB7B;
    font-family: 'Montserrat';
    font-weight: 700;
}

.h-num {
    font-size: 60px;
    color: #65CB7B;
    font-family: 'Montserrat';
    font-weight: 700;
}

.h-per {
    font-size: 22px;
    font-weight: 500;
    color: #7B7B7B;
    align-self: flex-end;
    margin-bottom: 9px;
    margin-left: 3px;
}

.hero-billed {
    text-align: center;
    font-size: 17px;
    color: #6D6D6D;
    font-weight: 400;
    margin-bottom: 24px;
}

/* ── Billing Buttons ── */
.billing-row {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 46px;
    margin-top: 0;
}

.bill-btn {
    /* font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border: 1.5px solid #65CB7B;
    border-radius: 50px;
    padding: 10px 28px;
    background: #fff;
    color: #65CB7B;
    cursor: pointer;
    transition: background .2s, color .2s;
    line-height: 1.3;
    text-align: center; */

    border: 2px solid #65CB7B;
    background: none;
    border-radius: 60px;
    color: #65CB7B;
    font-weight: 600;
    line-height: 1;
    font-size: 16px;
    padding: 9px 31px;
    height: auto;
}

.bill-btn-annual {
    line-height: 1.2;
}

.bill-btn .save-s {
    display: block;
    font-size: 12px;
    font-weight: 400;
}

.bill-btn.active {
    background: #65CB7B;
    color: #fff;
}

.timePeriodButtons button:not(.active):hover {
    background: #65cb7b1c !important;
    border: 2px solid #65CB7B !important;
    color: #65CB7B !important;
}

.timePeriodButtons button:hover {
    border: 2px solid #65CB7B !important;
    background: #65CB7B !important;
    color: #fff !important;
}

/* ── Cards Grid ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}

@media(max-width:960px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ent-col {
        grid-column: 1/-1;
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }
}

@media(max-width:768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:576px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .ent-col {
        grid-column: auto;
        max-width: 100%;
    }

    .h-num {
        font-size: 58px;
    }

    .h-sym {
        font-size: 36px;
        margin-top: 6px;
    }

    .h-per {
        font-size: 18px;
    }
}

/* ── Plan Card ── */
.plan-card {
    background: #fff;
    border: 1px solid #A8A8A8;
    border-radius: 16px;
    /* padding: 26px 22px 28px; */
    position: relative;
    height: 100%;
    transition: transform .40s ease, box-shadow .40s ease, border-color .40s ease;
}

.pricing_card_inner_header_padding {
    padding: 26px 22px 28px;
    padding-bottom: 0;
}

.pricing_card_inner_body_padding {
    padding: 26px 22px 28px;
    padding-top: 10px;
}

.plan-card.is-popular {
    border-color: #65cb7b;
    background: #65CA7B0A;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
}

.pop-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #65CB7B;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 8px 14px 6px;
    border-radius: 0 12px 0 9px;
}

/* icon row */
.c-icon-wrap {
    margin-bottom: 25px;
    line-height: 1;
    /* height: 40px; */
}

.c-icon-wrap img {
    height: 40px;
    width: auto;
}

/* plan name */
.c-name {
    color: #1B1C1F;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 0 !important;
    font-weight: 600;
    margin-top: 6px;
}

p.c-desc {
    margin-bottom: 5px;
}

/* description */
/* .c-desc {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    line-height: 1.65;
    margin-bottom: 16px;
} */

/* price */
/* .c-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0;
    margin-bottom: 4px;
} */

.cp-sym {
    margin-bottom: 22px !important;
    color: #1B1C1F !important;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Montserrat';
}

.cp-num {
    margin-bottom: 22px !important;
    color: #1B1C1F !important;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Montserrat';
}

.cp-per {
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat';
    color: #7B7B7B;
    text-transform: lowercase;
    margin: 0;
}

/* divider */
.c-hr {
    border: none;
    border-top: 1px solid #A8A8A8;
    margin: 18px 0 15px;
    opacity: 1;
}

.plan-card.is-popular .c-hr {
    border-top: 1px solid #65CA7B;
}

/* users section */
.users-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.u-title {
    font-size: 21px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #1b1b1b;
}

.u-sub {
    font-size: 15px;
    font-weight: 400;
    color: #6d6d6d;
    margin-top: 0;
}

.u-sub span {
    font-weight: 600;
}

.bundle-tag {
    background: #fff;
    color: #7b7b7b;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid #BEBEBE;
}

/* counter */
.counter-row {
    border-width: 1px 1px;
    border-radius: 6px;
    border: 1px solid #BEBEBE;
    background: #FFF;
    padding: 6px 6px;
    width: 135px;
    justify-content: space-between;
    align-items: center;
    /* height: 48px; */
    display: flex;
}

.ctr-btn {
    border: none;
    border-radius: 4px;
    background: #fff;
    font-size: 29px;
    font-weight: 400;
    color: #7B7B7B;;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .15s, color .15s;
    padding: 0 7px;
    line-height: 1;
}

.ctr-btn:hover:not(:disabled) {
    border-color: #65CB7B;
    color: #65CB7B;
}

.ctr-btn:disabled {
    opacity: .3;
    cursor: not-allowed;
}

.ctr-val {
    min-width: 18px;
    width: 45px;
    text-align: center;
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 0 0;
    color: #7B7B7B;
    font-size: 16px;
    font-weight: 500;
}

/* LEFT SIDE */
.ctr-val::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    /* thickness */
    height: 100%;
    background: linear-gradient(180deg, #FFF 0%, #BEBEBE 51.5%, #FFF 100%);
    border-radius: 12px;
}

/* RIGHT SIDE */
.ctr-val::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    /* thickness */
    height: 100%;
    background: linear-gradient(180deg, #FFF 0%, #BEBEBE 51.5%, #FFF 100%);
    border-radius: 12px;
}

/* buy buttons */
.btn-outline-buy {
    display: block;
    width: 100%;
    background: #E0F4E5;
    color: #65CB7B;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    margin-top: 18px;
    transition: background .18s;
}

.btn-outline-buy i {
    margin-left: 3px;
}

.btn-outline-buy:hover {
    background: #65cb7b52;
}

.btn-solid-buy {
    display: block;
    width: 100%;
    background: #65CB7B;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    margin-top: 18px;
    transition: background .18s;
}

.btn-solid-buy i {
    margin-left: 3px;
}

.btn-solid-buy:hover {
    background: #5cc072;
}

/* feature list */
.feat-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.feat-list li {
    display: flex;
    align-items: baseline;
    gap: 9px;
    font-size: 16px;
    font-weight: 500;
    color: #505050;
    line-height: 1.5;
    padding: 10px 0;
}

.fi-wrap {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid #65CB7B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.fi-wrap svg {
    width: 10px;
    height: 10px;
    stroke-width: 1.5 !important;
}

/* ── Enterprise Card ── */
.enterprise-card {
    padding: 36px 24px 32px;
    color: #fff;
    height: 100%;
    border-radius: 30px;
    border: 1px solid #1B1B1B;
    background: #FFF;
    box-shadow: 0 12px 0 0 #1B1B1B inset;
    transition: transform .40s ease, box-shadow .40s ease, border-color .40s ease;
}

.enterprise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10), 0 12px 0 0 #1B1B1B inset;
}

.ent-crown {
    text-align: center;
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1;
    margin-top: 37px;
}

.ent-title {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #1b1b1b;
}

p.ent-desc {
    color: #6D6D6D;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
}

/* .ent-desc {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
    line-height: 1.65;
    margin-bottom: 22px;
} */

.btn-contact-sales {
    display: block;
    width: 100%;
    background: #1b1b1b;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
    margin-bottom: 22px;
    transition: background .18s;
}

.btn-contact-sales i {
    margin-left: 3px;
}

.btn-contact-sales:hover {
    background: #2e2e2e;
}

.ent-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enterprise-card-feat-list .fi-wrap {
    border: 1.5px solid #1b1b1b;
}

.enterprise-card-feat-list .fi-wrap svg {
    stroke: #1b1b1b;
}

.ent-feat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    padding: 7.5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.ent-feat-list li:last-child {
    border-bottom: none;
}

.efi-wrap {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 1.5px solid #65CB7B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.efi-wrap svg {
    width: 8px;
    height: 8px;
}




@media (max-width: 1399.98px) {
    .ent-title {
        font-size: 39px;
    }

    .bill-btn {
        height: 60px;
    }

    .u-sub {
        font-size: 14px;
    }

    .counter-row {
        width: 120px;
    }

    .ctr-val {
        width: 39px;
        padding: 4px 6px;
    }

    .u-title {
        font-size: 18px;

    }

    .bundle-tag {
        font-size: 12px;
        padding: 8px 7px;
    }

    .cp-num {
        font-size: 35px;
    }

    .cp-sym {
        font-size: 35px;
    }

    .cp-per {
        font-size: 16px;
    }

    .pricing_card_inner_header_padding {
        padding: 24px 18px;
        padding-bottom: 0;
    }

    .pricing_card_inner_body_padding {
        padding: 24px 18px;
        padding-top: 0;

    }

    .enterprise-card {
        padding: 24px 18px;
    }

    .c-icon-wrap {
        margin-bottom: 16px;
    }
}

@media (max-width: 1199.98px) {
    .ent-title {
        font-size: 35px;
    }

    .feat-list li {
        font-size: 14px;
        padding: 8px 0;
        gap: 5px;
    }

    .fi-wrap {
        width: 15px;
        height: 15px;
    }

    .fi-wrap svg {
        width: 8px;
        height: 8px;
    }

    .btn-solid-buy {
        padding: 8px;
        font-size: 15px;
    }

    .btn-outline-buy {
        padding: 8px;
        font-size: 15px;
    }

    .btn-contact-sales {
        padding: 8px;
        font-size: 15px;
    }

    .cp-num {
        font-size: 30px;
    }

    .cp-sym {
        font-size: 30px;
    }

    .cp-per {
        font-size: 14px;
    }

    .ent-title {
        font-size: 30px;
    }

    .c-name {
        font-size: 20px;
    }

    .pricing_card_inner_header_padding {
        padding: 21px 14px;
        padding-bottom: 0;
    }

    .pricing_card_inner_body_padding {
        padding: 21px 14px;
        padding-top: 0;
    }

    .c-hr {
        margin: 9px 0 13px;
    }

    .pop-badge {
        font-size: 12px;
    }

    .bill-btn {
        font-size: 14px;
        height: auto;
    }

    .enterprise-card {
        padding: 21px 14px;
    }

    .t-btn {
        padding: 6px 25px;
        min-width: 140px;
    }

    .h-num {
        font-size: 50px;
    }

    .h-sym {
        font-size: 50px;
    }

    .h-per {
        font-size: 19px;
    }
}

@media (max-width: 991.98px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bill-btn {
        font-size: 14px !important;
        height: auto !important;
        padding: 9px 24px !important;
    }
}

@media (max-width: 767.98px) {
    .cards-grid {
        grid-template-columns: 1fr !important;
    }

    .h-per {
        font-size: 16px;
    }
    .h-num {
        font-size: 40px;
    }

    .h-sym {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .h-num {
        font-size: 35px;
    }

    .h-sym {
        font-size: 35px;
    }

    .t-btn {
        padding: 5px 18px;
        min-width: 125px;
        font-size: 15px;
        font-weight: 600;
    }

    .t-btn .t-sub {
        font-size: 13px;
    }

    
    .toggle-row {
        margin-bottom: 15px;
    }
}