

:root{
    --page-bg:#eef7f2;
    --starter:#D0804B;
    --starter-dark:#d98a1f;
    --growth:#0FA35B;
    --growth-dark:#188a4f;
    --pro:#3B6FE0;
    --pro-dark:#274fb8;
    --ent:#8A26C3;
    --ent-dark:#6a2fc9;
    --check:#23827E;
    --cross:#F44336;
    --section-band:#EBF2FF;
    --text-dark:#1b2430;
    --text-muted:#6b7480;
}

.pricing-page {
    background: #F3F7F7;
}

.pricing-page .py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.pricing-page .pb-100 {
    padding-bottom: 100px;
}

.pricing-page .pt-30 {
    padding-top: 30px;
}

section.pricing {
    position: relative;
    z-index: 1;
}

section.pricing .title-main {
    margin-bottom: 10px;
}

section.pricing .sec-pra.subcription-pra {
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 25px;
	background: linear-gradient(114deg, #A848CA 51.4%, #F2BC24 102.26%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

section.pricing .card.pricing-card {
    border-radius: 20px;
    border: 1px solid rgba(22, 94, 91, 0.20);
    background: #F4FBFA;
    padding: 30px 40px;
}

section.pricing .card.pricing-card .pc-title {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 12px;
	color: #165E5B;
}

section.pricing .priceToggle {
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 20px;
}

section.pricing .priceToggle .label-left,
section.pricing .priceToggle .label-right {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: #000;
}

section.pricing .priceToggle .form-check {
    min-height: auto;
}

section.pricing .priceToggle input.form-check-input {
    margin: 0;
    width: 65px;
    height: 30px;
    border: 1px solid var(--primary-clr);
    background-image: url('../../images/icons/inputCheckBg.svg');
    background-size: inherit;
    background-position: left 4px center;
    cursor: pointer;
}

section.pricing .priceToggle input.form-check-input:checked {
    background-color: var(--primary-clr);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    background-position: right center;
}

section.pricing .priceToggle input.form-check-input:focus, 
section.pricing .priceToggle input.form-check-input:active {
    box-shadow: none;
}

section.pricing .card.pricing-card .priceRange {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}

section.pricing .card.pricing-card .priceRange span {
    font-size: 40px;
    font-weight: 700;
}

section.pricing .card.pricing-card .pcBtn-sec {
    margin-top: 24px;
    margin-bottom: 34px;
}

section.pricing .card.pricing-card .pcBtn-sec .utter-btn {
    padding: 12px 23px;
}

section.pricing .card.pricing-card .pc-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 25px;
}

section.pricing .card.pricing-card .fi-title {
    margin-bottom: 30px;
    font-size: 18px;
}

section.pricing .card.pricing-card .fee-fetures {
	margin-top: 27px;
}

section.pricing .card.pricing-card .fee-fetures .fee-info {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 19px;
}

section.pricing .card.pricing-card .fee-fetures .fee-info .list-ic {
    background-color: #5FD495;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.facebookPlatform .facebookPricing-box {
    width: 100%;
    border: 1px solid #5FD495;
    background-color: rgba(197, 250, 221, 0.5);
    border-radius: 20px;
    padding: 45px 60px;
}

section.facebookPlatform .sec-pra {
    margin-bottom: 35px;
    width: 100%;
    max-width: 970px;
    margin-right: auto;
    margin-left: auto;
}

section.facebookPlatform .utter-btn.secondary {
    padding: 16px 30px;
    min-width: 295px;
    margin-bottom: 10px;
    line-height: normal;
}

/* ---------- Pricing cards ---------- */
.plans-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    align-items:start;
    margin-bottom:44px;
}
@media (max-width:991px){
    .plans-row{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:575px){
    .plans-row{ grid-template-columns:1fr; }
}

.plan-card{
    background:#fff;
    border-radius:16px;
    padding:26px 22px 28px;
    border-top:2px solid var(--card-color);
    position:relative;
    height:100%;
    display:flex;
    flex-direction:column;
    box-shadow: 0px 4px 4px 0px #0000001A;
}
.plan-card.growth {
    border: 2px solid var(--growth);
}
.plan-card.enterprise{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.badge-best{
    position: absolute;
    top: -4%;
    left: 50%;
    background: #0FA35B;
    padding: 2px 2px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    width: 101.5%;
    height: 43px;
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: -1;
}

.badge-best .inner {
    background-color: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 17px;
    letter-spacing: 2px;
}

.plan-name{
    font-weight:700;
    font-size:1.05rem;
    color:var(--card-color);
    margin-bottom:14px;
}
.plan-price{
    font-size:2rem;
    font-weight:700;
    color:var(--text-dark);
    line-height:1;
}
.plan-price .period{
    font-size:.9rem;
    font-weight:600;
    color:var(--text-muted);
}
.plan-billed{
    font-size:.82rem;
    color:var(--text-muted);
    margin-bottom:16px;
}

.btn-plan{
    display:block;
    width:100%;
    border:none;
    color:#fff;
    font-weight:700;
    padding:9px 0;
    border-radius:8px;
    text-align:center;
    margin-bottom:20px;
    font-size:.92rem;
    text-decoration:none;
    transition:filter .15s;
}
.btn-plan:hover{ filter:brightness(0.92); color:#fff; }

.plan-intro{
    font-size:1rem;
    font-weight:600;
    color:var(--text-dark);
    margin-bottom:12px;
}

.plan-features{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:11px;
}
.plan-features li{
    display:flex;
    gap:9px;
    font-size:14px;
    line-height:16px;
    color:#000000;
    padding: 14px 0px;
    border-bottom: 1px solid #DADADA;
}
.plan-features li svg{ flex:0 0 auto; margin-top:2px; }

.plan-features li:first-child {padding-top:0}

.plan-features li:last-child{border-bottom: 0;padding-bottom: 0;}

.starter{ --card-color:var(--starter); }
.growth{ --card-color:var(--growth); }
.professional{ --card-color:var(--pro); }
.enterprise{ --card-color:var(--ent); }

.starter .btn-plan{ background:var(--starter); }
.growth .btn-plan{ background:var(--growth); }
.professional .btn-plan{ background:var(--pro); }
.enterprise .btn-plan{ background:var(--ent); }

/* ---------- Comparison table ---------- */
.comparison-card{
    background:#fff;
    border-radius:16px;
    box-shadow: 0px 3px 10px 0px #0000000F;
    border: 1px solid #EAEAEA;
    margin-bottom:20px;
}

/* Sticky header lives OUTSIDE the horizontal-scroll container.
    (position:sticky is broken by any ancestor with overflow-x:auto,
    since that ancestor becomes its own non-page scroll context.) */

.comp-header-outer {
    position:sticky;
    top:0;
    z-index:30;
    overflow:hidden;
    border-radius:18px 18px 0 0;
    background:#fff;
    box-shadow: 0px 3px 10px 0px #0000000F;
    margin-bottom: 20px;
    transition: 0.2s all;
}

.comp-header-outer.is-stuck {
    top: 80px;
    border-radius: 0;
    transition: 0.2s all;
}

.comp-header-bar{
    display:flex;
    min-width:760px;
    padding:22px 18px 16px;
}
.comp-header-bar .comp-col{
    text-align:left;
}
.comp-header-bar .comp-col.title{
    text-align:left;
    display:flex;
    align-items:center;
}

.comp-body{
    padding: 20px 24px;
}

.comp-title{
    font-weight:700;
    font-size:1.85rem;
    color:#202124;
    white-space:nowrap;
}

.comp-plan-name{
    font-weight:600;
    font-size:20px;
    text-align:center;
    margin-bottom:10px;
    color:#000000;
}

.comp-plan-btn{
    display:block;
    margin:0 auto;
    width:88%;
    max-width:130px;
    border:none;
    color:#fff;
    font-weight:700;
    font-size:.8rem;
    padding:7px 0;
    border-radius:7px;
    text-decoration:none;
    text-align:center;
}
.comp-plan-btn:hover{ filter:brightness(.92); color:#fff; }
.btn-starter{ background:var(--starter); }
.btn-growth{ background:var(--growth); }
.btn-pro{ background:var(--pro); }
.btn-ent{ background:var(--ent); }

.comp-col .comp-plan-btn {
    width: 100%;
    max-width: 100%;
    font-weight: 600;
    padding: 3px 10px;
    margin: 0;
}

.comp-body .cb-sec {
    margin-bottom: 20px;
}

.comp-body .cb-sec .row.feat-row:last-child {
    border-bottom: 0px;
}

.row.cat-row {
    background:var(--section-band);
    font-weight:700;
    font-size:22px;
    padding:16px 18px;
    color:#202124;
    border-radius: 12px;
    margin-bottom: 20px;
}

.row.feat-row {
    padding:12px 16px;
    font-size:16px;
    font-weight: 600;
    border-bottom:1px solid #f0f1f5;
    color:#202124;
}

.row.feat-row:hover {
    background-color: #f0f1f5;
}

.row.feat-row .icon-check {
    color: var(--check);
    font-weight: 800;
}

.row.feat-row .icon-cross {
    color:var(--cross); 
    font-weight:800; 
}

/* ================= Mobile Detailed Plan Comparison ================= */
.price-comparison-mobile{ background:var(--page-bg); }
.price-comparison-mobile.py-30{ padding-top:30px; padding-bottom:30px;background-color: #fff; }

.mob-plan-tabs{
    display:flex;
    gap:10px;
    flex-wrap:nowrap;
    overflow-x:auto;
    margin-bottom:16px;
    padding-bottom:2px;
}
.mob-plan-tabs .plan-tab{
    flex:1 0 auto;
    border:none;
    background:#fff;
    color:#000;
    font-weight:600;
    font-size:.9rem;
    padding:11px 14px;
    border-radius:10px;
    white-space:nowrap;
    text-align:center;
    width: 100%;
    line-height: 100%;
    transition:background .15s, color .15s;
}
.mob-plan-tabs .plan-tab.active{
    color:#fff;
}

.mob-plan-tabs .plan-tab.tab-starter {
    border: 1px solid #D0804B
}

.mob-plan-tabs .plan-tab.tab-growth {
    border: 1px solid #0FA35B
}

.mob-plan-tabs .plan-tab.tab-professional {
    border: 1px solid #3B6FE0
}

.mob-plan-tabs .plan-tab.tab-enterprise {
    border: 1px solid #8A26C3
}

.mob-plan-tabs .plan-tab.tab-starter.active{ background:var(--starter); }
.mob-plan-tabs .plan-tab.tab-growth.active{ background:var(--growth); }
.mob-plan-tabs .plan-tab.tab-professional.active{ background:var(--pro); }
.mob-plan-tabs .plan-tab.tab-enterprise.active{ background:var(--ent); }

.mob-plan-btn{
    display:block;
    width:100%;
    background:#fff;
    font-weight:600;
    font-size:.95rem;
    padding:9px 0;
    border-radius:10px;
    text-align:center;
    text-decoration:none;
    margin-bottom:22px;
    transition:background .15s, color .15s;
    line-height: 100%;
}
.btn-mob-starter{ border:1px solid var(--starter); background-color:var(--starter);color:#fff }
.btn-mob-starter:hover{ background:var(--starter); color:#fff; }
.btn-mob-growth{ border:1px solid var(--growth); background-color:var(--growth); color:#fff; }
.btn-mob-growth:hover{ background:var(--growth); color:#fff; }
.btn-mob-professional{ border:1px solid var(--pro); background-color:var(--pro); color:#fff; }
.btn-mob-professional:hover{ background:var(--pro); color:#fff; }
.btn-mob-enterprise{ border:1px solid var(--ent); background-color:var(--ent); color:#fff; }
.btn-mob-enterprise:hover{ background:var(--ent); color:#fff; }

.mob-accordion .accordion-item{
    border:1px solid #EAEAEA;
    border-radius:16px !important;
    overflow:hidden;
    margin-bottom:12px;
}
.mob-accordion .accordion-button{
    font-weight:700;
    font-size:1.1rem;
    color:#202124;
    background:#fff;
    padding:20px 20px;
    line-height: 100%;
    box-shadow:none;
}
.mob-accordion .accordion-button:not(.collapsed){
    background:#fff;
    color:#202124;
    box-shadow:none;
}
.mob-accordion .accordion-button:focus{
    box-shadow:none;
    border-color:transparent;
}
.mob-accordion .accordion-body{
    padding:0 18px;
}

.mob-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:15px 0;
    border-bottom:1px solid #DADADA;
    font-size:.88rem;
}
.mob-row:last-child{ border-bottom:none; }
.mob-row .mob-feat{ color:#000000; }
.mob-row .mob-val{
    font-weight:600;
    color:#000000;
    text-align:right;
    white-space:nowrap;
}

.plans-row .plan-card .btn-toggle-features {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #000000;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 14px auto 0px auto;
    padding: 0;
    width: auto;
    line-height: 24px;
    display: none;
}

@media (max-width: 1400px) and (min-width: 1200px) {
    .badge-best {
        top: -3.5%;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    .badge-best {
        top: -3%;
    }

    .plans-row {
        gap: 10px;
    }

    .plan-intro {
        font-size: 0.9rem;
    }
}

@media (max-width:767px){
    .page-title{ font-size:1.5rem; }
}

@media (max-width: 1200px) {
    section.pricing .card.pricing-card {
        padding: 25px 30px;
    }

    section.pricing .card.pricing-card .pc-title {
        font-size: 20px;
    }

    section.pricing .card.pricing-card .priceRange span {
        font-size: 35px;
    }

    section.facebookPlatform .facebookPricing-box {
        padding: 35px 45px;
    }

    .plan-price {
        font-size: 1.5rem;
    }

    .comp-title {
        font-size: 1.5rem;
    }

    .comp-plan-name {
        font-size: 16px;
    }

    .row.cat-row {
        font-size: 20px;
        padding: 14px 16px;
    }

    .row.feat-row {
        padding: 10px 14px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {

    section.pricing .priceToggle .label-left, section.pricing .priceToggle .label-right {
        font-size: 16px;
    }

    section.pricing .priceToggle input.form-check-input {
        width: 40px;
        height: 20px;
        background-size: 14px;
        background-position: left 2px center;
    }

    section.pricing .card.pricing-card {
        padding: 23px 25px;
    }

    section.pricing .card.pricing-card .pc-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    section.pricing .card.pricing-card .priceRange {
        font-size: 16px;
        margin-bottom: 15px;
    }

    section.pricing .card.pricing-card .priceRange span {
        font-size: 32px;
    }
    section.pricing .card.pricing-card .pcBtn-sec .utter-btn {
        font-size: 16px;
    }

    section.facebookPlatform .facebookPricing-box {
        padding: 25px 35px;
    }

    section.facebookPlatform .utter-btn.secondary {
        padding: 13px 10px;
        min-width: 100%;
        margin-bottom: 0px;
        font-size: 16px;
        font-weight: 600;
    }

    section.pricing .priceToggle {
        padding-top: 0;
        padding-bottom: 12px;
    }

    section.pricing .sec-pra.subcription-pra {
        margin-bottom: 10px;
    }

    .plan-card {
        padding: 24px 24px;
    }

    .plans-row {
        margin-bottom: 0;
    }

    .plan-features li {
        padding: 12px 0px;
    }

    .facebookPlatform.py-30 {
        padding-top: 45px;
    }

    .plan-card.growth {
        padding-top: 43px;
    }

    .badge-best {
        width: 101%;
        height: 30px;
        top: 0;
        z-index: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .plans-row .plan-card .btn-toggle-features {
        display: inline-flex;
    }

    .plans-row .plan-card ul.plan-features {
        overflow: hidden;
        max-height: 320px;
        transition: max-height 0.35s ease-in-out;
    }

    .plans-row .plan-card.features-expanded ul.plan-features {
        max-height: none;
    }
}

@media (max-width: 500px) {

    .mob-plan-tabs {
        gap: 5px;
    }

    .mob-plan-tabs .plan-tab {
        padding: 13px 10px;
    }

    .mob-accordion .accordion-button {
        font-size: 18px;
    }
}

@media (max-width: 350px) {
    .mob-plan-tabs .plan-tab {
        font-size: 12px;
    }
}