/*PRICING SECTION s*/
.pricing-section {
    background: #000;
    padding: 64px 80px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

/* HEADER */
.pricing-header {
    max-width: 1280px;
    margin-bottom: 44px;
}

.pricing-label {
    font-size: 14px;
    color: #A882FF;
    letter-spacing: 0.04em;
}

.pricing-title {
    font-size: 48px;
    font-weight: 900;
    margin: 12px 0;
}

.pricing-desc {
    font-family: Lato;
    font-size: 20px;
    color: #DBDBDB;
    max-width: 640px;
}

/*TOGGLe */

.pricing-toggle {
    margin-top: 32px;
    width: 301px;
    height: 68px;
    background: #232323;
    border-radius: 20px;
    position: relative;
    display: flex;
    padding: 6px;
}

.toggle-bg {
    position: absolute;

    top: 15px;
    left: 10px;
    width: 50%;
    height: calc(100% - 12px);
    background: linear-gradient(101.67deg, #93C3FD 0%, #7D86ED 45.89%, #5B63ED 100%);
    border-radius: 12px;
    transition: 0.3s ease;

    width: 130px;
    height: 36px;

}

.toggle-btn {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    z-index: 2;
    font-size: 16px;
    cursor: pointer;
}

.toggle-btn.active {
    color: #000;
}

/* =========================
   CARDS WRAPPER
========================= */
.pricing-cards {
    max-width: 1280px;
    display: flex;
    gap: 20px;
}

/* =========================
   CARD BASE
========================= */
.pricing-card {
    width: 405px;
    /* height: 636px; */
    height: auto;

    border-radius: 32px 32px 0 0;
    padding: 40px 40px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-card.light {
    background: linear-gradient(101.67deg, rgba(147, 195, 253, 0.6) 0%, rgba(125, 134, 237, 0.6) 45.89%, rgba(91, 99, 237, 0.6) 100%);

    color: #ffffff;
}

.pricing-card.dark {
    background: #232323;
}

/* CARD CONTENT */
.card-price {
    font-size: 48px;
    font-weight: 900;
}

.card-desc {
    font-family: Lato;
    font-size: 16px;
}

.card-btnb {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    /* background: linear-gradient(101.67deg, #93C3FD 0%, #7D86ED 45.89%, #5B63ED 100%); */
    background: #FFFFFF;
    color: #000000;
}

.card-btn {
    /* margin-top: 8px; */
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    background: linear-gradient(101.67deg, #93C3FD 0%, #7D86ED 45.89%, #5B63ED 100%);
    color: #ffffff;
}


/* FEATURES */
.card-features {
    list-style: none;
    padding: 0;
    font-family: Lato;
    font-size: 15px;
}

.card-features li {
    margin-bottom: 10px;
}

.inc-text {
    font-family: Orbitron;
    font-weight: 900;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2%;

}




/* .expiry-box {
        background: #ffffff;
        color: #000;
        width: 405px;
        height: 50px;
        padding: 14px 18px;
        /* margin-bottom: -30px; *
        display: flex-start;
        /* margin-left: 10px; *
        align-items: center;
        text-align: center;
        gap: 8px;
        font-family: Lato, sans-serif;
        font-size: 14px;
        border-radius: 0 0 32px 32px;
        /* border-radius: 0 0 28px 28px; *
    } */

.expiry-box {
    width: 100%;
    height: 50px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: Lato, sans-serif;
    font-size: 14px;
    border-radius: 0 0 32px 32px;
}

.light-expiry {
    background: #ffffff;
    color: #000;
}

.dark-expiry {
    background: #ffffff;
    color: #000;
}


.pricing-card {
    overflow: hidden;
}


/* =========================
   RESPONSIVE
========================= */
/* @media (max-width: 991px) {
  .pricing-section {
    padding: 64px 32px;
  }

  /* .pricing-cards {
    flex-direction: column;
  } *
} */

/*  */

/* =========================
   TABLET (768px – 991px)
========================= */
@media (max-width: 991px) and (min-width: 768px) {

    .pricing-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .pricing-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .pricing-item {
        width: calc(50% - 10px);
    }

    .pricing-card {
        width: 100%;
        /* 2 cards per row */
        height: auto;
        /* IMPORTANT: prevent overflow */
        padding: 40px 32px;
    }



    .card-price {
        font-size: 40px;
    }

    .pricing-desc {
        white-space: normal;
        /* prevent text overflow */
    }
}

/* =========================
   MOBILE (≤ 767px)
========================= */
@media (max-width: 767px) {

    .pricing-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pricing-cards {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-item {
        width: 100%;
    }

    .pricing-card {
        width: 100%;
        height: auto;
        /* auto height for mobile */
        padding: 32px 24px;
    }

    .pricing-title {
        font-size: 32px;
        line-height: 42px;
    }

    .pricing-desc {
        font-size: 16px;
        line-height: 24px;
        white-space: normal;
    }

    .card-price {
        font-size: 36px;
    }
}

/* =========================
   SMALL MOBILE (≤ 375px)
========================= */
@media (max-width: 375px) {

    .pricing-card {
        padding: 28px 20px;
    }

    .card-price {
        font-size: 32px;
    }

    /*  */

    .pricing-toggle {
        width: 100%;
        max-width: 100%;
        height: 56px;
        padding: 4px;
    }

    .toggle-bg {
        width: 45%;
        height: calc(100% - 8px);
        top: 4px;
        left: 4px;
        border-radius: 10px;
    }

    .toggle-btn {
        font-size: 14px;
    }

}

/* pricing sec e  */