.pricing-section {
    padding: 50px 0 0;
    position: relative;
}



/* ============ new code ============ */

.header-text {
    text-align: center;
    margin-bottom: 60px;
}

.header-text h1 {
    font-size: 3.5rem !important;
    font-weight: 800;
    background: linear-gradient(135deg, #00a1b0 0%, #00d4e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.subtitle {
    color: rgba(51, 51, 51, 0.7);
    font-size: 1.2rem;
    font-weight: 300;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin: 0 auto 60px;
    background: #ffffff;
    padding: 6px;
    border-radius: 50px;
    width: 320px;
    border: 2px solid rgba(0, 161, 176, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.toggle-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    border-radius: 50px;
}

.toggle-label.active {
    color: #ffffff;
    font-weight: 600;
}

.toggle-switch {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: linear-gradient(135deg, #00a1b0 0%, #00d4e8 100%);
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 161, 176, 0.3);
    z-index: 1;
}

.toggle-switch.active {
    transform: translateX(calc(100% + 0px));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 45px 35px;
    border: 1px solid rgba(0, 161, 176, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(0, 161, 176, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 161, 176, 0.4);
    box-shadow: 0 20px 60px rgba(0, 161, 176, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 252, 253, 0.95) 100%);
    border: 2px solid rgba(0, 161, 176, 0.4);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 161, 176, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 161, 176, 0.25);
}

.pricing-card.hidden {
    display: none;
}

.badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #00a1b0 0%, #00d4e8 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 161, 176, 0.3);
    animation: badgeAnimation 2.5s ease-in-out infinite;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes badgeAnimation {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 161, 176, 0.3);
    }

    50% {
        box-shadow: 0 6px 25px rgba(0, 161, 176, 0.5), 0 0 20px rgba(0, 212, 232, 0.4);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.plan-name {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.plan-price {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00a1b0 0%, #00d4e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 25px;
    line-height: 1;
}

.plan-price .currency {
    font-size: 2rem;
    vertical-align: top;
}

.plan-price .period {
    font-size: 1.1rem;
    color: rgba(51, 51, 51, 0.5);
    font-weight: 400;
    margin-left: 5px;
}

.plan-savings {
    color: #00a1b0;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding: 8px 16px;
    background: rgba(0, 161, 176, 0.1);
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(0, 161, 176, 0.2);
}

.plan-features {
    list-style: none;
    margin: 0 0 25px;
}

.plan-features li {
    padding: 15px 0;
    color: rgba(51, 51, 51, 0.8);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.plan-features li:hover {
    transform: translateX(5px);
    color: #333;
}

.plan-features li::before {
    content: "✓";
    color: #00a1b0;
    font-weight: bold;
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 161, 176, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(0, 161, 176, 0.3);
}

.crypto-button {
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, #00a1b0 0%, #00d4e8 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 161, 176, 0.3);
}

.crypto-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.crypto-button:hover::before {
    width: 300px;
    height: 180px;
}

.crypto-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 161, 176, 0.4);
}

.crypto-button:active {
    transform: translateY(-1px);
}

.crypto-icon {
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.crypto-button span:last-child {
    position: relative;
    z-index: 1;
}

/* Payment Note */
.payment-note {
    /* max-width: 900px;
    margin: 60px auto; */
    padding: 25px 30px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.1);
}

.payment-note-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #f57c00;
    font-weight: 600;
    font-size: 16px;
}

.payment-note-title::before {
    content: "⚠️";
    font-size: 1.3rem;
}

.payment-note-text {
    color: rgba(51, 51, 51, 0.85);
    line-height: 1.6;
    font-size: 14px;
}

/* Content Section */
.content-section {
    /* max-width: 900px; */
    margin: 80px auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(0, 161, 176, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00a1b0 0%, #00d4e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: center;
}

.content-section p {
    color: rgba(51, 51, 51, 0.8);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

/* FAQs Section */
.faqs-section {
    /* max-width: 900px; */
    margin: 80px auto;
}

.faqs-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00a1b0 0%, #00d4e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 161, 176, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: rgba(0, 161, 176, 0.4);
    box-shadow: 0 6px 20px rgba(0, 161, 176, 0.1);
}

.faq-question{
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}
.faq-question .h3Title{
    font-size: 18px;
}

.faq-question:hover{
    color: #00a1b0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #00a1b0;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer-text {
    color: rgba(51, 51, 51, 0.75);
    line-height: 1.8;
    font-size: 1rem;
}


.pricing-card.activein {
    opacity: 1;
    transform: scale(1.05);
}

.pricing-card.activeout {
    opacity: 0.5;
    transform: scale(1);
}

.pricing-card.activeout button,
.pricing-card.activeout a {
    pointer-events: none;
}

@media screen and (max-width: 991px) {
    .pricing-section {
        padding-top: 30px;
    }


}

@media (max-width: 767px) {
    .header-text h1 {
        font-size: 40px !important;
    }

    .subtitle {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }

    .plan-price {
        font-size: 3rem;
    }

    .content-section,
    .faqs-section {
        padding: 30px 20px;
    }

    .content-section h2,
    .faqs-title {
        font-size: 2rem;
    }

    .faq-question{
        padding: 20px;
        font-size: 1rem;
    }

    .faq-question .h3Title{
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .header-text {
        margin-bottom: 30px;
    }

    .pricing-toggle {
        margin: 0 auto 30px;
    }

    .crypto-button {
        padding: 10px 28px;

    }

    .plan-features li {
        padding: 10px 0 0;
    }

    .pricing-card {
        padding: 35px;
    }

    .pricing-card.activein {
        display: block;
        border: 2px solid rgba(0, 161, 176, 0.4);
        transform: unset;
    }
    
    .pricing-card.activeout {
        transform: unset;
        display: none;
    }
}

@media screen and (max-width: 575px) {
    


    .header-text h1 {
        font-size: 26px !important;
    }

    .crypto-button {
        font-size: 16px;
    }

    .pricing-card.featured .plan-name {
        margin-top: 40px;
    }
}

@media screen and (max-width: 480px) {
    .pricing-card {
        padding: 30px;
    }

    .crypto-button {
        padding: 5px 10px;
    }
}