.group-card-hidde {
    display: none;
}

.btn-show {
    background: #f16625;
    color: white;
    border: none;
    padding: 4px 15px 7px;
    border-radius: 33px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
}

/* Tools Section */
.tools-section {
    padding: 4rem 2rem 6rem 2rem;
    background: white;
    margin: 0;
}


.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 2rem;
    font-family: "Raleway", sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.title-smal-card {
    font-size: 24px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
}

.tools-title {
    margin: 10px auto;
    width: 75%;
}

.tools-grid {
    margin: 0 auto;
    width: 75%;
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.tools-grid-hidde-show {
    margin: 11px auto 0 auto;
    width: 75%;
    /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* Animation d'apparition pour les cartes */
.tool-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.tool-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tool-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tool-card:nth-child(3) {
    animation-delay: 0.3s;
}

.tool-card:nth-child(4) {
    animation-delay: 0.4s;
}


.tool-card {
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: #fffcfa;
    border: 1px solid #fffcfa;
    border-radius: 10px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    font-weight: 600;
    height: 126px;
}


.tool-card:hover {
    background: rgba(255, 245, 240, 1);
    color: #4a5568;
    border: 1px solid #B52824;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px #f6ece6;
}

.tool-card .tool-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 115, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon {
    background: rgba(255, 255, 255, 0.2);
}

.tool-item .tool-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6B73FF, #8B5CF6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon_svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}

.span-card {
    font-size: 16px;
    margin-left: 3px;
    text-align: left;
    color: #373342;
    line-height: 150%;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

/* PDF Tools Section */
.pdf-tools {
    margin-bottom: 50px;
    padding: 4rem 0;
}

.whats-grid {
    margin: 0 auto;
    width: 80%;
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}


.image-whats-card {
    width: 81px;
}


.whats-card-image {
    display: flex;
    justify-content: center;
}

.whats-card-title {
    margin-top: 15px;
    font-size: 1.3rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 600;
    font-family: "__primaryFont_ad2006", "__primaryFont_Fallback_ad2006";
}

.whats-card-p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-align: justify;
    color: #525252;
    font-family: "__primaryFont_ad2006", "__primaryFont_Fallback_ad2006";
}

.whats-card {
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    font-weight: 600;
}

.swiper-outer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 100%;
    margin: 15px auto;
}


.custom-prev-button,
.custom-next-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;

}

/* Animation du SVG au hover */
.custom-prev-button:hover svg,
.custom-next-button:hover svg {
    transform: scale(1.1);
}

/* Transition fluide pour les SVG */
.custom-prev-button svg,
.custom-next-button svg {
    transition: transform 0.3s ease;
}

/* États désactivés */
.custom-prev-button.disabled,
.custom-next-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.custom-prev-button.disabled:hover,
.custom-next-button.disabled:hover {
    transform: none;
    color: #333;
    border-color: #e0e0e0;
}

.swiper-main-container {
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
}

.swiper-main-container {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.swiper-container {
    width: 100%;
}

.container,
.swiper-container,
.row,
.col {
    max-width: 100%;
}

.swiper-container {
    width: 100%;
}


.demo-card {
    background-color: white;
    height: 180px;
    margin: 20px 2px;
    border-radius: 8px;
    padding: 9px;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #f5f5f5;
}

.svgSwiperStars {
    width: 130px;
    height: 25px;
}

.coordonne {
    display: flex;
    justify-content: end;
    margin-top: -6px;
}

.div-faq {
    margin: 0 auto;
    width: 80%;
}


.faq-container {
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.6s ease;
}

.faq-content.open {
    max-height: 500px;
    transition: max-height 0.6s ease, opacity 0.6s ease;
    /* assez grand pour contenir ton texte */
    opacity: 1;
}

.faqSvg {
    width: 24px;
    height: 24px;
    transition: transform 0.6s ease;
}

.faqSvg.open {
    transform: rotate(45deg);
    /* le + devient un X */
}

.h3-faq {
    font-family: "Raleway", sans-serif;
    color: #1c1c1c;
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
    }

    .tools-grid {
        width: 95%;
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid-hidde-show {
        width: 95%;
        grid-template-columns: repeat(2, 1fr);
    }

    .whats-grid {
        margin: 0 auto;
        width: 96%;
        display: grid;
        /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .whats-card {
        width: 80%;
        margin: 0 auto;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
        background: #fff;
        border: 1px solid #fff;
        border-radius: 10px;
        text-decoration: none;
        color: #4a5568;
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .swiper-outer-container {
        gap: 15px;
        max-width: 95%;
    }

    .custom-prev-button,
    .custom-next-button {
        width: 14px;
        height: 40px;
    }

    .custom-prev-button svg,
    .custom-next-button svg {
        width: 30px;
        height: 30px;
    }

    .swiper-main-container {
        overflow: hidden;
        width: 99%;
        margin: 0 auto;
    }

    .demo-card {
        background-color: white;
        height: 180px;
        margin: 20px 2px;
        border-radius: 8px;
        padding: 15px;
        border: 1px solid #f5f5f5;
        box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
    }

    .cardName {
        display: flex;
        justify-content: start;
    }

    .div-faq {
        margin: 0 auto;
        width: 96%;
    }

    .faqSvg {
        min-width: 24px !important;
        min-height: 24px !important;
        transition: transform 0.6s ease;
    }

    .coordonne {
        display: flex;
        justify-content: end;
        margin-top: -14px;
    }

    .span-card {
        font-size: 14px;
        margin-left: 0px;
    }

    .tool-card .tool-icon {
        margin-bottom: 10px;
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(107, 115, 255, 0.1);
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    .tools-title {
        margin: 10px auto;
        width: 95%;
    }

    .title-smal-card {
        margin-top: 20px;
        font-size: 20px;
        font-family: "Raleway", sans-serif;
        font-weight: 700;
    }

    .image-whats-card {
        width: 70px;
    }

    .whats-card-title {
        color: #2c3e50;
        margin-top: 15px;
        line-height: 120%;
        font-family: "__primaryFont_ad2006", "__primaryFont_Fallback_ad2006";
        font-size: 15px;
        height: 700;
        text-align: center;
    }

    .whats-card-p {
        margin-top: 18px;
        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        text-align: center;
        color: #525252;
        font-family: "__primaryFont_ad2006", "__primaryFont_Fallback_ad2006";
    }

    .h3-faq {
        font-family: "Raleway", sans-serif;
        color: #1c1c1c;
        font-size: 16px;
        font-weight: 600;
        line-height: 120%;
    }

    .faq-content.open {
        font-size: 14px;
        max-height: 500px;
        transition: max-height 0.6s ease, opacity 0.6s ease;
        /* assez grand pour contenir ton texte */
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .tools-section {
        padding: 2rem 1rem 6rem 1rem;
        margin: 0;
    }
}