.image-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 100px 0;
}

.image-text .image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image-container {
    max-width: 600px;
}

.content-text {
    max-width: 550px;
}


.image-text {
    flex-direction: row;
}

.image-text .centered-list {
    margin-bottom: 20px;
    text-align: left;
    list-style: none;
    padding: 0;
}

.image-text .centered-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.image-text .custom-order {
    order: -1;
}

.image-text .centered-list li::before {
    content: "•";
    position: absolute;
    transform: translateX(-300%);
    color: #000000;
    font-weight: 600;
}

.image-text .link-more {
    display: flex;
    font-size: 16px;
    font-weight: 600;
    color: #3999ff;
    text-decoration: none;
    height: 30px;
    align-items: center;
    gap: 5px;
}

@media (max-width: 767px) {
    .image-text {
        flex-direction: column-reverse;
        margin: 20px 0 40px;
        gap: 10px;
    }

    .image-text .custom-order {
        order: 2;
    }

    .image-text .content-text {
        max-width: 100%;
        margin-left: 0px;

    }

    .image-text .content-text {
        text-align: left;
    }

    .image-text .link-more {
        /*margin-bottom: 20px;*/
        font-size: 14px;
        gap: 2px;
    }

    .image-text .centered-list {
        margin-bottom: 10px;
    }

    .link-more svg {
        margin-top: 3px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .image-text {
        flex-direction: column-reverse;
        margin: 80px 0;
        gap: 10px;
    }
    .image-text-bottom{
        margin-top: 40px;
    }

    .image-text .custom-order {
        order: 2;
    }

    .content-text {
        max-width: 100%;
    }

    .title-index1 {
        margin-bottom: 50px;
    }

    .title-index2 {
        text-align: center;
    }

    .title-index3 {
        text-align: center;
        margin-bottom: 30px;
    }

    .image-text .centered-list {
        text-align: center;
    }

    .image-text .content-text {
        text-align: center;
    }

    .image-text .link-more {
        justify-content: center;
        /* margin-bottom: 20px;*/
    }
}


/**/
.container_cases {
}

.container_cases .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #0f172a;
}

.container_cases .use-cases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.container_cases .use-case-card {
    background-color: white;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.container_cases .use-case-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 25px rgba(0, 0, 0, 0.12);
}

.container_cases .card-icon {
    width: 100%;
    height: 200px;
    margin: 0 auto 16px;
    /*border-radius: 2px;*/
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    padding: 50px 0;
}

.container_cases .card-icon img {
    height: 100px;
    display: inline;
}

.container_cases .icon1 {
    background-color: #d8eaf6;
}

.container_cases .icon2 {
    background-color: #e5e9f4;
}

.container_cases .icon3 {
    background-color: #e5e4fa;
}

.container_cases .icon4 {
    background-color: #dbecf6;
}

.container_cases .icon5 {
    background-color: #f7e0f0;
}

.container_cases .icon6 {
    background-color: #faf0e4;
}

.container_cases .icon7 {
    background-color: #eaeaea;
}

.container_cases .icon8 {
    background-color: #e3f1ea;
}

.container_cases .card-text {
    color: #334155;
    padding: 0 10px 10px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container_cases .use-cases {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .container_cases .use-cases {
        grid-template-columns: repeat(1, 1fr);
    }

    .container_cases .section-title {
        font-size: 24px;
    }

    .container_cases .card-icon {
        width: 100%;
        height: 120px;
        color: white;
        padding: 20px 0;
        margin: 0;
    }

    .container_cases .card-icon img {
        height: 60px;
    }

    .container_cases .card-text {
        padding: 10px 5px;
        line-height: 1.5;
    }
}

.tips-tab .title {
    text-align: center;
    margin-bottom: 20px;
}

.tips-tab .tabs {
    display: flex;
    overflow: hidden;
    margin: 0 auto;
}

.tips-tab .tab-list {
    flex: 0 0 480px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e2e6ef;
}


.tips-tab .tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 20px;
    cursor: pointer;
    border-right: 2px solid transparent;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
}

.tips-tab .tab:hover {
    background: #f8faff;
}

.tips-tab .tab.active {
    background: #eef4ff;
    border-right-color: #3999ff;
    color: #3999ff;
}

.tips-tab .tab img {
    width: 34px;
    height: 34px;
}

.tips-tab .tab.active .img-1 {
    content: url("../../images/duplicate-finder/pc/df1_tips1_2.png");
}

.tips-tab .tab.active .img-2 {
    content: url("../../images/duplicate-finder/pc/df1_tips2_2.png");
}

.tips-tab .tab.active .img-3 {
    content: url("../../images/duplicate-finder/pc/df1_tips3_2.png");
}

.tips-tab .tab.active .img-4 {
    content: url("../../images/duplicate-finder/pc/df1_tips4_2.png");
}

.tips-tab .tab.active .img-5 {
    content: url("../../images/duplicate-finder/pc/df1_tips5_2.png");
}

.tips-tab .tab-content {
    flex: 1;
    padding: 20px 30px;
    display: none;
    font-weight: 500;
}

.tips-tab .tab-content.active {
    display: block;
}

.tips-tab .tab-content .guide-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.tips-tab .tab-content .guide-list a{
    text-decoration: none;
    color: black;
}

.tips-tab .tab-content .guide-list a:hover{
    color: #0a8ce5;
}

.tips-tab .tab-content .guide-list li {
    padding: 20px 0;
    line-height: 1.5;
    color: #333;
    position: relative;
    padding-left: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.tips-tab .tab-content .guide-list li:hover{
    color: #0a8ce5;
}

.tips-tab .tab-content .guide-list li::before {
    content: "•";
    position: absolute;
    left: -5px;
    top: 18px;
    color: #333;
    font-size: 18px;
}


.tips-tab .tab-content .guide-list li:last-child {
    /*border-bottom: none;*/
}


@media (max-width: 767px) {
    .container_cases .use-cases {
        gap: 20px;
    }

    .tips-tab .tab-list {
        flex: auto;
        flex-direction: column;
        gap: 10px;
    }

    .tips-tab .tabs {
        flex-direction: column;
    }

    .tips-tab .tab-list {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #e2e6ef;
    }

    .tips-tab .tab {
        font-size: 16px;
        display: flex;
        min-width: 160px;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 10px 0;
        text-align: center;
        border-right: transparent;
        border-bottom: 2px solid transparent;
    }

    .tips-tab .tab-list::-webkit-scrollbar {
        display: none;
    }

    .tips-tab .tab img {
        width: 24px;
        height: 24px;
    }

    .tips-tab .tab.active {
        border-bottom-color: #3575ff;
        background: #eef4ff;
    }

    .tips-tab .tab-content {
        padding: 0;
    }
}

@media (min-width: 768px) and  (max-width: 1023px) {
    .tips-tab .tab-list {
        flex: auto;
        flex-direction: column;
        gap: 10px;
    }

    .tips-tab .tabs {
        flex-direction: column;
    }

    .tips-tab .tab-list {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #e2e6ef;
    }

    .tips-tab .tab {
        font-size: 16px;
        display: flex;
        min-width: 160px;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 20px 10px;
        text-align: center;
        border-right: transparent;
        border-bottom: 2px solid transparent;
    }

    .tips-tab .tab img {
        width: 32px;
        height: 32px;
    }

    .tips-tab .tab.active {
        border-bottom-color: #3575ff;
        background: #eef4ff;
    }
}

/* review-tap*/
.review-container {
    align-items: center;
}

.review-container .title {
    text-align: center;
    margin-bottom: 10px;
}

.review-container .intro {
    text-align: center;
    max-width: 800px;
    margin-bottom: 20px;
    line-height: 1.5;
    margin: 20px auto 30px;
}

.review-container .tabs-nav {
    display: flex;
    gap: 50px;
    padding: 10px 0;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.review-container .tabs-nav::-webkit-scrollbar {
    display: none;
}

.review-container .tab-btn {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding: 18px 0;
    cursor: pointer;
    position: relative;
    margin-bottom: 20px;
    white-space: nowrap;
}

.review-container .tab-btn.active {
    color: #0071e3;
}

.review-container .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0071e3;
}

.review-container .tabs-content {
    margin-top: 20px;
}

.review-container .tab-panel {
    display: none;
}

.review-container .tab-panel.active {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 20px;
}

.review-container .tab-panel.active > * {
    width: 0;
    flex: 1 1 0;
}

.review-container .review-card {
     display: flex;
    flex-direction: column;
    text-align: center;
    padding: 10px 10px;
}

.review-container .bottom-div > *:last-child {
    margin-top: auto;
}


.review-container .review-icon {
    max-height: 80px;
    text-align: center;
}

.review-container .review-text {
    flex: 1;
    line-height: 1.5;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
}

.review-container .review-source {
    color: #666;
    margin-top: 8px;
    font-weight: 500;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #0071e3;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
}

@media (max-width: 767px) {
    .review-container .tabs-nav {
        justify-content: left;
        gap: 15px;
    }

    .review-container .tabs-content{
        margin-top: 10px;
    }

    .review-container .tab-btn {
        font-size: 16px;
        padding-bottom: 5px;
        margin-bottom: 0px;
    }

    .review-container .tab-panel.active {
        display: block;
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
        margin-bottom: 20px;
    }

    .review-container .tab-panel.active > * {
        width: 100%;
        flex: unset;
    }

    .review-container .intro {
        text-align: left;
        margin: 20px auto 0px;
    }

    .read-more svg {
        vertical-align: middle;
        position: relative;
        top: 1px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .review-container .tabs-nav {
        justify-content: left;
    }

    .read-more{
        font-size: 14px;
        line-height: 1.2;
    }

}


/*FAQS*/
.faqs .faq-title {
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faqs .faq-list {
    margin-bottom: 2rem;
}

.faqs .faq-item {
    background-color: #ffffff;
    border-radius: 5px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.07);
}


.faqs .faq-item.active .faq-question {
    color: #1B89FE;
}

.faqs .faq-question {
    display: block;
    text-align: left;
    width: 100%;
    padding: 1.5rem 1.2rem;
    border: none;
    background: none;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}


.faqs .faq-item .faq-question::after {
    content: "";
    background-image: url("../../images/duplicate-finder/pc/df1_xia1.png");
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 12px;
    right: 0;
    transition: all 0.2s ease;
    padding-top: 1.6rem;
    margin-right: 30px;
}


.faqs .faq-item.active .faq-question::after {
    background-image: url("../../images/duplicate-finder/pc/df1_xia2.png") !important;
}

.faqs .faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #000000;
    line-height: 1.5;
}

.faqs .faq-item.active .faq-answer {
    padding: 0 1.2rem 1.5rem;
    max-height: 200px;
}

.faqs .read-more-faqs {
    display: block;
    text-align: center;
    color: #1B89FE;
    text-decoration: none;
    margin-bottom: 2.5rem;
    font-size: 18px;
    font-weight: 600;
}


.faqs .bottom-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-bottom: 50px;
}


.faqs .card {
    background-color: #F2F8FF;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    padding: 1.5rem;
}

.faqs .card-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 2rem;
}

.faqs .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.faqs .card-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faqs .card-link {
    color: #1B89FE;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 767px) {
    .faqs .faq-item .faq-question::after {
        margin-right: 15px;
    }

    .faqs .faq-item.active .faq-question {
        padding-bottom: 0rem;
    }

    .faqs .faq-question {
        font-size: 16px;
        padding: 1.5rem 2rem 1.2rem 1rem
    }

    .faqs .faq-item {
        margin-bottom: 20px;
    }

    .faqs .faq-item.active .faq-answer {
        padding: 1rem 1rem;
        max-height: 200px;
    }

    .faqs .bottom-cards {
        display: grid;
        grid-template-columns: 1fr;
        padding-bottom: 50px;
    }

    .faqs .card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .faqs .card {
        text-align: center;
    }

    .faqs .card-title {
        text-align: center;
    }

    .faqs .card-link svg {
        vertical-align: middle;
        position: relative;
        top: 1px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .faqs .card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .faqs .card {
        text-align: center;
    }

    .faqs .faq-question {
        padding-right: 2.5rem;
    }
}

/*steps*/
.steps-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    padding-bottom: 50px;
}

.steps-container .steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

.steps-container .step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    cursor: pointer;
}

.steps-container .step .step-icon {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: #fff;

}

.steps-container .step-icon::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    width: 2px;
    height: 130px;
    transform: translateX(-50%);
    background-image: linear-gradient(to bottom, #d5dbe8 40%, transparent 0);
    background-size: 2px 12px;
    background-repeat: repeat-y;
    z-index: -1;
}

.steps-container :last-child .step-icon::after {
    display: none;
}

.steps-container .step-content h3 {
    margin: 0;
    font-size: 18px;
    color: #000000;
    font-weight: 500;
}

.steps-container .step.active .step-content h3 {
    color: #3999ff
}

.steps-container .step-content p {
    margin: 6px 0 0;
    line-height: 1.6;
    color: #444;
    max-width: 420px;
}

.steps-container .images {
    flex-shrink: 0;
    position: relative;
    margin: auto;
}

.steps-container .images img {
    width: 650px;
    max-width: 90vw;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: opacity 0.4s ease;

}

.steps-container .images img:not(.active) {
    opacity: 0;
    position: absolute;
    display: none;
}


@media (max-width: 1023px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .steps-container .steps {
        flex-direction: row;
        gap: 24px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 1rem 1rem 1rem;
        scroll-snap-type: x mandatory;
        /*border-bottom: 1px solid #eee;*/
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .steps-container .steps::-webkit-scrollbar {
        display: none;
    }

    .steps-container .step {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        max-width: 260px;
        scroll-snap-align: start;
        flex-shrink: 0;
        cursor: pointer;
    }

    .steps-container .step-content h3 {
        font-size: 16px;
    }

    .steps-container .step-icon img {
        width: 38px;
        height: 38px;
    }

    .steps-container .step-icon::after {
        top: 50%;
        left: 60%;
        width: 250px;
        height: 2px;
        background-image: linear-gradient(to right, #d5dbe8 40%, transparent 0);
        background-size: 12px 2px;
        background-repeat: repeat-x;
        transform: translateY(-50%);
    }

    .steps-container .step:last-child .step-icon::after {
        display: none;
    }

    .steps-container .step-content h3 {
        margin-bottom: 5px;
    }

    .steps-container .step-content h3, .step-content p {
        text-align: center;
    }

    .steps-container .image {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 1rem;
    }

    .steps-container .image img {
        width: 90%;
        max-width: 420px;
        border-radius: 8px;
        transition: opacity 0.3s ease, transform 0.4s ease;
    }

    .steps-container .image img.active {
        opacity: 1;
        transform: scale(1);
    }

    .steps-container .image img:not(.active) {
        opacity: 0;
        transform: scale(0.96);
    }
}

@media (max-width: 1023px) {
    .header-banner .platform-icons .win:hover {
        content: url("../../images/common/win-green.png");
    }

    .header-banner .platform-icons .mac:hover {
        content: url("../../images/common/mac-green.png");
    }

    .header-banner .platform-icons .android:hover {
        content: url("../../images/common/android-green.png");
    }

    .header-banner .platform-icons .ios:hover {
        content: url("../../images/common/ios-green.png");
    }

    .product-button .menu-down-btn img {
        margin-right: 0px !important;
    }
}