.main {
    background: #F5F6FF;
}
.main h1, .main h2 {
    font-size: 48px;
    line-height: 1.375;
    font-weight: bold;
    color: #000000;
    text-align: center;
}

.main h3, .main h4 {
    font-size: 24px;
    line-height: 1.375;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .main h1, .main h2 {
        font-size: 30px;
    }

    .main h3, .main h4 {
        font-size: 20px;
    }
}

.blob-btn {
    z-index: 1;
    position: relative;
    text-align: center;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
}

.blob-btn__inner {
    z-index: 1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
    border-radius: 26px;

}
.blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url("#goo");
}
.blob-btn__blob {
    position: absolute;
    top: 6px;
    width: 25%;
    height: 100%;
    background: #6D79F0;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
}

.more-box .blob-btn__blob {
    background: #555555;
}

.bundle-buy-btn.yealow-btn .blob-btn__blob {
    background: #FFE666;
}


@supports (filter: url("#goo")) {
    .blob-btn__blob {
        transform: translate3d(0, 150%, 0) scale(1.4);
    }
}
.blob-btn__blob:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
}
.blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
}
.blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
}
.blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
}
.blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
}
@supports (filter: url("#goo")) {
    .blob-btn:hover .blob-btn__blob {
        transform: translateZ(0) scale(1.7);
    }
}

.accept-box .guarantee,
.accept-box  .accept span {
    display: none;
}

.accept-box .accept {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.accept-box .accept>img {
    height: 35px;
    margin: 0 5px 5px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #DFE7EA
}

/* top-banner */
.top-banner {
    padding: 70px 0;
}

.top-banner .tab-switch {
    margin: 40px 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-banner .tab-switch .tab-item {
    width: 180px;
    height: 44px;
    border: 1px solid #E6E8FD;
    background: #fff;
    color: #4858EC;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    border-radius: 22px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.top-banner .tab-switch .tab-item + .tab-item {
    margin-left: 20px;
}

.top-banner .tab-switch .tab-item.active {
    color: #fff;
    background: #4858EC;
    border-color: #4858EC;
}

.top-banner .tab-switch .tab-item:hover {
    box-shadow: 0px 4px 16px 0px rgba(72, 88, 236, 30%);
}

.tabswitch-content-item {
    display: none;
}

.tabswitch-content-item.active {
    display: block;
}

.tabswitch-content-item .card-container {
    margin-bottom: 60px;
}

.tabswitch-content .card-title {
    font-size: 24px;
    line-height: 1.375;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
}

.tabswitch-content .card-title.mb-0 {
    margin-bottom: 0;
}

.card-title-desc {
    color: #000000;
    font-size: 14px;
    margin-bottom: 30px;
}

.card-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.card-item {
    border: 1px solid #E6E8FD;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.card-item.card-item-full {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.card-item.card-item-half {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.card-item.best-seller {
    background: linear-gradient(97.27deg, #FFFFFF 54.55%, #EBE4F5 97.34%);
}

.card-item.best-seller::before {
    position: absolute;
    content: '';
    width: 606px;
    height:100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url(../png/data_recovery_bg.png) no-repeat bottom right / cover;
}

.card-item.bundle {
    padding: 0;
    flex-direction: column;
    overflow: hidden;
}

.card-item-full .card-left {
    width: 505px;
    flex-shrink: 0;
    margin-right: 7.36%;
    position: relative;
    z-index: 1;
}

.card-item-full .card-right {
    flex-grow: 1;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.card-item .card-top {
    display: flex;
    align-items: center;
}

.card-item .card-top .icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.card-item .card-top .name {
    margin-left: 20px;
    font-size: 18px;
    color: #333333;
}

.card-item .card-top .name h3 {
    margin-bottom: 6px;
}

.card-item .card-top .name p {
    opacity: 0.5;
}

.card-item .card-desc {
    margin: 30px 0 40px;
    color: #333333;
    flex-grow: 1;
}

.card-item .card-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
}

.card-item .plan-radio {
    position: relative;
}

.card-item .plan-radio + .plan-radio {
    margin-top: 8px;
}

.card-item .plan-radio input[type="radio"] {
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.card-item .plan-radio label {
    width: fit-content;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #333333;
    position: relative;
    padding-left: 26px;
    display: block;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.card-item .plan-radio label::before {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    left: 0;
    top: 1px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.card-item .plan-radio label::after {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    background-color: #D9D9D9;
    left: 4px;
    top: 5px;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.2s ease;
}

.card-item .plan-radio input[type="radio"]:checked +  label {
    color: #EF4242;
}

.card-item .plan-radio input[type="radio"]:checked +  label::before {
    border-color: #EF4242;
}

.card-item .plan-radio input[type="radio"]:checked +  label::after {
    transform: scale(1);
    background-color: #EF4242;
}

.card-item .card-price:not(.active) {
    display: none;
}

.card-item .card-price {
    text-align: right;
    margin-left: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    flex-wrap: wrap;
}

.card-item .card-price .final-price {
    font-size: 42px;
    line-height: 57px;
    font-weight: bold;
    color: #4858EC;
}

.card-item .card-price .virtual-price {
    font-size: 18px;
    line-height: 1.375;
    color: #333333;
    opacity: 0.5;
    margin-left: 6px;
}

.card-item .card-btn-group {
    margin: 6px -12px 20px;
    display: flex;
    flex-wrap: wrap;
}

.card-btn-group .card-btn {
    position: relative;
    margin: 20px 12px 0;
}

.card-btn-group .card-btn.buy-btn:not(.active) {
    display: none;
}

.card-btn-group .card-btn.buy-btn:not(:has(.icart-btn)) {
    margin: 0;
}

.card-btn-group .icart-btn,
.card-btn-group .more-btn,
.bundle-plan .bundle-buy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 240px;
    min-width: 220px;
    height: 52px;
    border-radius: 26px;
    color: #FFFFFF;
    font-weight: 600;
}

.card-btn-group .buy-now-btn,
.bundle-plan .bundle-buy-btn {
    background: #4858EC;
    border-radius: 26px;
}

.card-btn-group .icart-btn svg {
    display: none;
}

.card-btn-group .icart-btn {
    position: relative;
    z-index: 2;
}

.card-btn-group .icart-btn span,
.card-btn-group .more-btn span,
.bundle-buy-btn .icart-btn span{
    position: relative;
    z-index: 2;
}

.bundle-plan .bundle-buy-btn.yealow-btn {
    background: linear-gradient(90deg, #FCCB52 0%, #E4A732 100%);
    color: #582326;
}

.card-btn-group .more-btn {
    background-color: #333333;
}

.card-avaliable {
    display: flex;
    align-items: center;
}

.card-avaliable p {
    opacity: 0.5;
    color: #2E2E2E;
    font-size: 14px;
}

.card-avaliable svg {
    color: #999999;
    margin-left: 8px;
}

.bundle-intro {
    display: flex;
    background: linear-gradient(103.63deg, #FAF8FF 6.24%, #FFFBE9 63.84%);
}

.bundle-intro .intro-left {
    width: 36%;
    background: linear-gradient(270deg, rgba(156, 131, 223, 0) 0%, #9C83DF33 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 20px;
}

.bundle-intro .intro-right {
    margin: 0 6.8% 0 8.5%;
    padding: 40px 0 50px;
}

.bundle-intro .intro-list {
    margin-top: 25px;
}

.bundle-intro .intro-list li {
    padding-left: 14px;
    font-size: 18px;
    line-height: 1.375;
    color: #333333;
    font-weight: 600;
    position: relative;
}

.bundle-intro .intro-list li + li {
    margin-top: 10px;
}

.bundle-intro .intro-list li::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #333333;
    top: 9px;
    left: 0;
}

.bundle-plan {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "month year lifetime";
    padding: 50px 0;
    text-align: center;
}

.bundle-plan li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.bundle-plan li.month {
    grid-area: month;
}

.bundle-plan li.year {
    grid-area: year;
}

.bundle-plan li.lifetime {
    grid-area: lifetime;
}

.bundle-plan li + li::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 82%;
    background-color: #E6E8FD;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
}

.bundle-plan .plan-desc {
    margin-top: 8px;
    flex-grow: 1;
}

.bundle-plan .plan-price {
    padding: 20px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333333;
}

.bundle-plan .plan-price .final-price {
    font-size: 48px;
    line-height: 65px;
    font-weight: bold;
    margin-bottom: 6px;
}

.bundle-plan .bundle-buy-btn {
    max-width: 240px;
}

.bundle-plan .bundle-buy-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: inherit !important;
}

@media (max-width: 1200px) {
    .bundle-intro .intro-left {
        width: 45%;
    }
    .bundle-intro .intro-right {
        margin: 0 30px;
        padding: 40px 0;
    }

    .card-item {
        padding: 30px 24px;
    }
}

@media (max-width: 1024px) {
    .top-banner {
        padding: 50px 0;
    }

    .top-banner .tab-switch {
        margin: 30px 0 40px;
    }

    .card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .tabswitch-content-item .card-container {
        margin-bottom: 40px;
    }

    .bundle-plan {
        padding: 40px 0;
    }

    .bundle-plan .plan-price .final-price {
        font-size: 42px;
        line-height: 57px;
    }

    .bundle-intro .intro-list li {
        font-size: 16px;
    }

    .bundle-plan .plan-price {
        padding: 10px 0 30px;
    }

    .card-item-full .card-left {
        width: 460px;
        margin-right: 20px;
    }

    .card-item .card-top .icon {
        width: 60px;
        height: 60px;
    }

    .card-item .card-desc {
        margin: 20px 0 26px;
    }

    .card-list {
        gap: 20px;
    }
    
}
/* black friday 2025 */
@media (max-width: 992px) {
    .bundle-plan {
        row-gap: 40px;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "month year"
            "lifetime lifetime";
    }
}
/* black friday 2025 */

@media (max-width: 768px) {
    .card-item.best-seller {
        flex-direction: column;
    }

    .card-item-full .card-left {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .card-title,
    .card-title-desc {
        text-align: center;
    }

    .card-title span {
        display: none;
    }

    .card-item .card-btn-group {
        grid-template-columns: repeat(auto-fit, 240px);
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        place-content: center;
        place-items: center;
    }

    .card-item .card-top {
        width: fit-content;
        margin: 0 auto;
    }

    .card-item .card-desc {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }   

    .card-avaliable {
        justify-content: center;
    }

    .card-item-full .card-right {
        justify-content: center;
    }

    .card-item.best-seller::before {
        height: 441px;
        top: unset;
        bottom: 0;
        transform: none;
    }

    .card-list {
        grid-template-columns: 1fr;
    }

    .bundle-intro {
        flex-direction: column-reverse;
        background: linear-gradient(270deg, rgba(156, 131, 223, 0) 0%, #9C83DF33 100%);
        padding: 30px 24px 20px;
    }

    .bundle-intro .intro-left {
        background: none;
        justify-content: center;
        padding: 0;
        width: 100%;
    }

    .bundle-intro .intro-left img {
        max-width: 300px;
    }

    .bundle-intro .intro-right {
        margin: 0 auto;
        max-width: 550px;
        padding-top: 0;
    }

    .bundle-intro .intro-right h3 {
        text-align: center;
    }

    .bundle-plan {
        row-gap: 40px;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "month year"
            "lifetime lifetime";
    }
}

@media (max-width: 580px) {
    .bundle-plan {
        row-gap: 80px;
        grid-template-columns: 1fr;
        grid-template-areas: 
            "month"
            "year"
            "lifetime";
    }

    .card-item .card-top {
        flex-direction: column;
    }

    .card-item .card-top .icon {
        width: 48px;
        height: 48px;
    }

    .card-item .card-top .name {
        margin: 10px 0 0;
        text-align: center;
    }

    .top-banner .tab-switch {
        border-radius: 12px;
        background: #fff;
        padding: 4px;
        border: 1px solid #E6E8FD;
        max-width: 360px;
        margin: 30px auto;
        justify-content: space-between;
    }

    .top-banner .tab-switch .tab-item {
        border: none;
        border-radius: 8px;
        width: calc(50% - 2px);
    }

    .top-banner .tab-switch .tab-item + .tab-item {
        margin-left: 0;
    }

    .top-banner .tab-switch .tab-item:hover {
        box-shadow: none;
    }

    .bundle-plan li + li::before {
        width: 80%;
        height: 1px;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
    }
}
/* top-banner */

/* support */
.support {
    height: 658px;
    background: #E1E4FF;
    position: relative;
    max-width: 100vw;
    overflow: hidden;
}

.support-bg {
    position: absolute;
    width: 1317px;
    height: 658px;
    top: 0;
    left: 50%;
    transform: translateX(-960px);
    background: url(../png/support_img.png) no-repeat left center;
}

.support-bg::before {
    position: absolute;
    content: '';
    width: 400px;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, #E1E4FF 80%, rgba(225, 228, 255, 0) 100%);
}

.support-bg::after {
    position: absolute;
    content: '';
    width: 311px;
    height: 100%;
    top: 0;
    right: -2px;
    background: linear-gradient(270deg, #E1E4FF 0%, rgba(225, 228, 255, 0) 100%);
}

.support-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 80px;
    height: 100%;
}

.support-box {
    width: 468px;
    color: #000000;
}

.support-box h2 {
    text-align: left;
}

.support-box .support-desc {
    margin: 20px 0 36px;
}

.support-btn {
    width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    border-radius: 26px;
    color: #FFFFFF !important;
    font-weight: 600;
    background-color: #4858EC;
    position: relative;
}
.support-bottom {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.support-bottom::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(22px); 
    -webkit-backdrop-filter: blur(22px);
}

.support-bottom .support-list {
    height: 110px;
    display: flex;
    color: #fff;
    position: relative;
    z-index: 1;
}

.support-bottom .support-list li {
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.support-bottom .support-list li img {
    flex-shrink: 0;
    margin-right: 12px;
    user-select: none;
    pointer-events: none;
}


@media (min-width: 1921px) {
    .support-bg::before {
        left: 90px;
    }
}

@media (max-width: 1024px) {
    .support {
        height: 526px;
    }
    .support-box .support-desc {
        margin: 20px 0;
    }

    .support-bottom .support-list {
        height: 90px;
    }

    .support-bottom .support-list li img {
        width: 40px;
    }

    .support-bg {
        transform: translateX(-860px) scale(0.8);
        transform-origin: top center;
    }

    .support-box {
        width: 400px;
    }
}

@media (max-width: 992px) {
    .support-bottom .support-list {
        flex-wrap: wrap;
        height: 126px;
        padding: 10px 0;
    }
    .support-bottom .support-list li {
        width: 50%;
    }

    .support-container {
        padding-bottom: 120px;
    }
}

@media (max-width: 580px) {
    .support-container {
        padding-bottom: 220px;
    }

    .support-bg {
        transform: translateX(-638px) scale(0.8);
        filter: blur(6px);
    }

    .support-box h2,
    .support-box .support-desc {
        color: #fff;
        text-align: center;
    }

    .support-btn {
        margin: 0 auto;
    }

    .support-bottom .support-list {
        height: 220px;
    }

    .support-bottom .support-list li {
        width: 100%;
    }

    .support-box {
        width: 100%;
    }
}
/* support */

/* faq */
.faq {
    padding: 120px 0 150px;
}

.faq-warp {
    margin-top: 30px;
}

.faq-item {
    padding: 30px 0 20px;
    border-bottom: 1px solid #3333334d;
}

.faq-item .faq-title {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    line-height: 1.375;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    padding: 0px 25px 10px 0;
}

.faq-item .faq-title:hover {
    color: #333333;
}

.faq-item .faq-title::after {
    content: '';
    position: absolute;
    right: 5px;
    top: 10px;
    width: 24px;
    height: 24px;
    background-image: url(https://images.anyrecover.com/anyrecoveren/assets/common/store/drop_nor.svg);
    background-size: cover;
    transition: all 0.2s ease-in-out;
}

.faq-item.active .faq-title::after {
    transform: rotate(180deg);
}

.faq-item .faq-info {
    display: none;
    font-size: 16px;
	line-height: 1.375;
    color: #333333;
    padding: 0px 30px 10px 0;
}

@media (max-width: 1024px) {
    .faq {
        padding: 50px 0 80px;
    }

    .faq-warp {
        margin-top: 20px;
    }

    .faq-item {
        padding: 20px 0 10px;
    }

    .faq-item .faq-title {
        font-size: 18px;
    }
}
/* faq */