/* pricing Page Styles */
.pricing-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 70vh;
    padding: 30px 0 0 0;
    position: relative;
}

.pricing-banner .banner-bg {
    width: 20%;
    height: 100px;
    position: absolute;
    top: 100px;
    left: 0;
    /* bottom: -40px; */
    background: rgba(81, 162, 255, 0.1);
    box-shadow: 0 0 150px 100px rgba(81, 162, 255, 0.2);
    border-radius: 50%;
    filter: blur(40px);
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
}

.pricing-banner .caption {
    font-size: 14px;
    font-weight: bold;
    color: #432DD7;
    margin-bottom: 0;
}


.pricing-banner .description {
    font-size: 68px;
    font-weight: 900;
    color: #0F172B;
    text-align: center;
    background-color: transparent;
    max-width: 60%;
    line-height: normal;
}


.feature-banner {
    width: 880px;
    overflow: hidden;
    border-radius: 48px;
    background: transparent;
}

.feature-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 48px;
}

/* ////////////////////////////////////////////////////////////////// */


.pricing-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px 0;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    gap: 30px;
}

.pricing-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    /* width: 30%; */
    background-color: #FFFFFF;
    padding: 30px 20px;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1 1 calc((100% / 3) - 30px);
    min-width: 300px;
    min-height: 500px;
    height: auto;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    z-index: -1;
    transition: height 0.4s ease;
}


.pricing-card:nth-child(1)::before {
    background: linear-gradient(180deg, #FFB900 0%, #FF8904 100%);
}

.pricing-card:nth-child(2)::before {
    background: linear-gradient(180deg, #155DFC 0%, #432DD7 100%);
}

.pricing-card:nth-child(3)::before {
    background: linear-gradient(180deg, #00D492 0%, #00C950 100%);
}

.pricing-card:nth-child(1).active,
.pricing-card:nth-child(2).active,
.pricing-card:nth-child(3).active {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.active {
    min-height: 550px;
}

.pricing-card.active::before {
    height: 100%;
}


.pricing-card.active {
    transform: translateY(-10px);
}

.pricing-content {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    background-color: transparent;
    width: 100%;
}

.pricing-card ul li,
.pricing-card ul,
.pricing-card p,
.pricing-card img {
    background-color: transparent;
}


.pricing-badge-wrapper {
    display: none;
}

.pricing-card.active .pricing-badge-wrapper {
    display: block;
    background: linear-gradient(to right, #FFB900 0%, #FF6900 100%);
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
}


.icon-pricing-wrapper {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.pricing-icon {
    width: 58px;
    height: 58px;
    background-color: transparent;
}

.pricing-section .card-title {
    color: #0F172B;
    background-color: transparent;
    font-size: 28px;
    font-weight: 900;
}

.pricing-section .pricing-price {
    background-color: transparent;
}

.pricing-section .pricing-price span {
    color: #0F172B;
    font-size: 28px;
    font-weight: 900;
    background-color: transparent;
}


.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: transparent;
    margin-bottom: 10px;
}

.pricing-features li {
    color: #0F172B;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pricing-card.active .pricing-features li,
.pricing-card.active .card-title,
.pricing-card.active .pricing-price,
.pricing-card.active .pricing-price span {
    color: #FFFFFF;
}

.icon-pricing-wrapper div {
    background-color: transparent;
    background-color: #FFEDD4;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    transform: translateY(0);
    transition: all 0.4s ease;
    visibility: visible;
}

.pricing-title {
    color: #CA3500;
}

.pricing-card.active .icon-pricing-wrapper div {
    transform: translateY(-60px);
    visibility: hidden;
    opacity: 0;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: transparent;
}

.pricing-card .btn-subscribe {
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-card:nth-child(1) .btn-subscribe {
    background-color: #FFF7ED;
    color: #F54900;
    border: 1px solid #FFD6A8;
}


.pricing-card.active:nth-child(1) .btn-subscribe {
    background-color: #FFFFFF;
    color: #FF8904;
}

.pricing-card:nth-child(2) .btn-subscribe {
    background-color: #EFF6FF;
    color: #1447E6;
    border: 1px solid #BFDBFE;
}


.pricing-card.active:nth-child(2) .btn-subscribe {
    background-color: #FFFFFF;
    color: #1447E6;
}

.pricing-card:nth-child(3) .btn-subscribe {
    background-color: #F0FDF4;
    color: #008236;
    border: 1px solid #B9F8CF;
}


.pricing-card.active:nth-child(3) .btn-subscribe {
    background-color: #FFFFFF;
    color: #008236;
}


/* //////////////////////////////////////////////////////////////////////////////////////////////  */


.perks-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 0 50px 0;
    background-color: transparent;
}

.perks-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    gap: 20px;
}

.perks-title {
    color: #0F172B;
    font-size: 30px;
    font-weight: 900;
    background-color: transparent;
}

.perks-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.perk-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    padding: 20px 10px;
    border-radius: 16px;
    border: 1px solid #F1F5F9;
    flex: 1 1 calc((100% / 7) - 15px);
    min-width: 140px;
    transition: all 0.3s ease;
    gap: 10px;
    transition: all 0.3s ease;
}

.perk-card img,
.perk-card p {
    background-color: transparent;
}


.perk-description {
    background-color: #DCFCE7;
    color: #008236;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.perk-card:hover {
    transform: scale(1.05);
}

/* /////////////////////////////////////////////////////////////////////// */

/* comparison-table */
.comparison-table {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 50px 0;
}

.comparison-table-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 26px;
    box-shadow:
        0px 8px 10px -6px rgba(0, 0, 0, 0.1),
        0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.comparison-title {
    color: #0F172B;
    font-size: 30px;
    font-weight: 900;
    background-color: transparent;
}

.comparison-table-wrapper {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    background-color: transparent;
    -webkit-overflow-scrolling: touch;
}

.comparison-table-wrapper table {
    background-color: transparent;
    width: 90%;
    min-width: 600px;
}


thead {
    background-color: transparent;
}

.comparison-table-wrapper tbody,
.comparison-table-wrapper table tr,
.comparison-table-wrapper table td,
.comparison-table-wrapper table th {
    background-color: transparent;
}

.comparison-table-wrapper th,
.comparison-table-wrapper td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #0000001A;
    background-color: transparent;
}

.comparison-table-wrapper tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table-wrapper th:first-child,
.comparison-table-wrapper td:first-child {
    text-align: right;
    color: #475569;
}

/* /////////////////////////////////////////////////////////////////////// */
/* trust-bar */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}


.trust-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    width: 80%;
    background-color: #FFFFFF;
    border-radius: 26px;
    border: 1px solid #E2E8F0;
    padding: 20px;
    box-shadow:
        0px 1px 2px -1px rgba(0, 0, 0, 0.1),
        0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}

.verification-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 5px;
    background-color: transparent;
}

.verification-info .verification-icon {
    width: 58px;
    height: 58px;
    background-color: transparent;
}

.verification-info .verification-icon img {
    width: 100%;
    height: 100%;
    background-color: transparent;
    object-fit: contain;
}

.verification-title {
    color: #0F172B;
    font-size: 16px;
    font-weight: bold;
    background-color: transparent;
}

.verification-description {
    color: #475569;
    font-size: 14px;
    background-color: transparent;
}

.payment-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.payment-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-btns .payment-btn {
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    background-color: #F8FAFC;
    border: 1px solid #0000001A;
}

.payment-btns .payment-btn:nth-child(1) {
    color: #45556C;
}

.payment-btns .payment-btn:nth-child(2) {
    color: #1D293D;
}

.payment-btns .payment-btn:nth-child(3) {
    color: #E60076;
}

.verification-text,
.payment-btns {
    background-color: transparent;
}

/* /////////////////////////////////////////////////////////////////////// */

/* media queries */
@media (max-width: 1210px) {
    .pricing-card {
        flex: 0 0 300px;
    }

    .pricing-container {
        gap: 40px;
    }

    .pricing-banner .description {
        font-size: 28px;
        max-width: 90%;
    }

}

@media (max-width: 780px) {
    .pricing-card {
        flex: 1 1 90%;
        min-width: unset;
    }

    .pricing-container {
        width: 95%;
        gap: 25px;
    }

    .pricing-card:nth-child(1).active,
    .pricing-card:nth-child(2).active,
    .pricing-card:nth-child(3).active {
        transform: scale(1.01) translateY(-10px);
    }


    .payment-btns {
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }


    .pricing-banner .description {
        font-size: 28px;
        max-width: 90%;
    }

    .comparison-title {
        font-size: 20px;
        font-weight: bold;

    }


    .perks-title {
        font-size: 20px;
        font-weight: bold;

    }
}