/* Partie banner  */

#banner-712 span {
    color: #fff;
}

#banner-712 span a {
    color: var(--primary);
    text-decoration: none;
}

@media only screen and (min-width: 0rem) {
    #banner-712 {
        padding: clamp(10.9375rem, 10vw, 12.5rem) 1rem 6.25rem;
        position: relative;
        z-index: 1;
    }

    #banner-712 .cs-container {
        text-align: center;
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        /* align-items: flex-start; */
        flex-direction: column;
        gap: 1rem;
    }

    #banner-712 .cs-int-title {
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        /* font-weight: 900; */
        line-height: 1.2em;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColorWhite);
        position: relative;
    }

    #banner-712 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    #banner-712 .cs-background:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: #000;
        opacity: 0.75;
        top: 0;
        left: 0;
        z-index: 1;
    }

    #banner-712 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

@media only screen and (min-width: 48rem) {
    #banner-712 .cs-background:before {
        opacity: 1;
        background: linear-gradient(
            90.01deg,
            rgba(0, 0, 0, 0.9) 16.86%,
            rgba(0, 0, 0, 0) 100%
        );
    }
}
/* Fin partie banner  */

:root {
    --color-primary-blue: #007bff;
    --cs-main-dark: #2c3e50;
    --cs-action-blue: #3498db;
    --cs-base-text: #333;
    --cs-soft-bg: #f4f7f6;
    --cs-focus-orange: #e67e22;
}

.css-container {
    max-width: 80rem;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
}

.css-container h2 {
    color: var(--cs-main-dark);
    border-left: 5px solid var(--cs-action-blue);
    padding-left: 15px;
    margin-top: 40px;
    font-size: 1.8rem;
}

.css-container h3 {
    color: var(--cs-action-blue);
    margin-top: 30px;
    font-size: 1.4rem;
}

.css-container p {
    margin-bottom: 15px;
    text-align: justify;
}

.css-container ul {
    background: #f9f9f9;
    padding: 20px 20px 20px 40px;
    border-radius: 5px;
    list-style-type: square;
}

.css-container li {
    margin-bottom: 10px;
}

.css-container .highlight {
    color: var(--cs-focus-orange);
    font-weight: bold;
}

@media (max-width: 600px) {
    .css-container {
        padding: 20px;
    }
}

@media only screen and (min-width: 0rem) {
    .services-341 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
    }

    .services-341 {
        padding: var(--sectionPadding);
    }

    .services-341 .cs-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services-341 .cs-card-group {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: clamp(1rem, 1.6vw, 1.25rem);
    }

    .services-341 .cs-item {
        list-style: none;
        width: 100%;
        max-width: 31.25rem;
        border-radius: 0.5rem;
        position: relative;
        z-index: 1;
        transition:
            box-shadow 0.3s,
            transform 0.3s,
            background 0.3s;
        background: #fff;
    }

    .services-341 .cs-item:hover {
        box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
        transform: translateY(-0.4375rem);
    }

    .services-341 .cs-item:hover .cs-picture img {
        transform: scale(1.1);
    }

    .services-341 .cs-item:hover .cs-h3 {
        color: var(--primaryDark);
    }

    .services-341 .cs-item:before {
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 0.5rem;
        border: 1px solid #e8e8e8;
        background: 0 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .services-341 .cs-link {
        text-decoration: none;
        padding-bottom: clamp(1rem, 2.2vw, 1.5rem);
        display: block;
    }

    .services-341 .cs-picture {
        width: 100%;
        height: 15rem;
        margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
        border-radius: 0.5rem 0.5rem 0 0;
        overflow: hidden;
        display: block;
        position: relative;
        z-index: 10;
    }

    .services-341 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition:
            transform 0.6s,
            opacity 0.3s;
    }

    .services-341 .cs-h3 {
        font-size: clamp(1.25rem, 3vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: 700;
        color: var(--headerColor);
        margin: 0 0 0.75rem;
        padding: 0 clamp(1rem, 2vw, 1.5rem);
        transition: color 0.3s;
    }

    .services-341 .cs-item-text {
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        color: var(--bodyTextColor);
        margin-bottom: 20px;
        padding: 0 clamp(1rem, 2.2vw, 1.5rem);
    }
}

@media only screen and (min-width: 48rem) {
    .services-341 .cs-card-group {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
        max-width: 100%;
        gap: clamp(1rem, 1.6vw, 1.25rem);
        justify-items: center;
        justify-content: center;
    }

    .services-341 .cs-item {
        max-width: 100%;
    }

    @media only screen and (min-width: 64rem) {
        .services-341 .cs-card-group {
            grid-template-columns: repeat(3, 1fr);
        }

        .services-341 .cs-item:nth-child(4) {
            grid-column: 2 / span 1;
        }
    }
}

.services-341 .container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.services-341 .container .intro h3,
.services-341 .container .usage h3,
.services-341 .container .fonctionnement h3,
.services-341 .container .tarifs h3 {
    font-size: 1.6rem;
    color: #1a3c77;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.services-341 .container .intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.services-341 .container .usage ul,
.services-341 .container .usage ol,
.services-341 .container .fonctionnement ul,
.services-341 .container .fonctionnement ol {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.services-341 .container .usage ul li,
.services-341 .container .usage ol li,
.services-341 .container .fonctionnement ul li,
.services-341 .container .fonctionnement ol li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.services-341 .container .tarifs table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.services-341 .container .tarifs table th {
    background-color: #e3efff;
    color: #003d80;
    font-weight: bold;
    padding: 1rem;
    text-align: left;
}

.services-341 .container .tarifs table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    background-color: #fdfdfe;
}

.services-341 .container .tarifs table tr:nth-child(even) td {
    background-color: #f6f9ff;
}

@media (max-width: 600px) {
    .services-341 .container {
        padding: 1.5rem;
    }

    .services-341 .container .tarifs table th,
    .services-341 .container .tarifs table td {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
}

@media only screen and (min-width: 0rem) {
    .services-341 .cs-container,
    .why-choose-375 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        /* flex-direction: column; */
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
    }
}

.services-341 {
    padding: var(--sectionPadding);
}

.services-341 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-341 .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: clamp(1rem, 1.6vw, 1.25rem);
}

.services-341 .cs-item {
    list-style: none;
    width: 100%;
    max-width: 31.25rem;
    border-radius: 0.5rem;
    position: relative;
    z-index: 1;
    transition:
        box-shadow 0.3s,
        transform 0.3s,
        background 0.3s;
    background: #fff;
}

.services-341 .cs-item:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    transform: translateY(-0.4375rem);
}

.services-341 .cs-item:hover .cs-picture img {
    transform: scale(1.1);
}

.services-341 .cs-item:hover .cs-h3 {
    color: var(--primaryDark);
}

.services-341 .cs-item:before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    border: 1px solid #e8e8e8;
    background: 0 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.services-341 .cs-link {
    text-decoration: none;
    padding-bottom: clamp(1rem, 2.2vw, 1.5rem);
    display: block;
}

.services-341 .cs-picture {
    width: 100%;
    height: 15rem;
    margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
    border-radius: 0.5rem 0.5rem 0 0;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 10;
}

.services-341 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition:
        transform 0.6s,
        opacity 0.3s;
}

.services-341 .cs-h3 {
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    color: var(--headerColor);
    margin: 0 0 0.75rem;
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    transition: color 0.3s;
}

.services-341 .cs-item-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    margin-bottom: 20px;
    padding: 0 clamp(1rem, 2.2vw, 1.5rem);
}

@media only screen and (min-width: 48rem) {
    .services-341 .cs-card-group {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
        max-width: 100%;
        gap: clamp(1rem, 1.6vw, 1.25rem);
        justify-items: center;
        justify-content: center;
    }

    .services-341 .cs-item {
        max-width: 100%;
    }
}

@media only screen and (min-width: 64rem) {
    .services-341 .cs-card-group {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-341 .cs-item:nth-child(4) {
        grid-column: 2 / span 1;
    }
}

.pricing-card:hover,
.step:hover {
    transform: scale(1.05);
}

.step,
.testimonial {
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn,
.step-circle {
    color: #fff;
    align-items: center;
    display: flex;
}

.step {
    width: 260px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
}

.step h3 {
    margin-bottom: 10px;
    color: #444;
}

.step p {
    font-size: 0.9rem;
    color: #666;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 15px auto;
}

.step-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #444;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    font-weight: 700;
}

.step1 {
    border-top: 6px solid #e74c3c;
}

.step2 {
    border-top: 6px solid #f39c12;
}

.step3 {
    border-top: 6px solid #f1c40f;
}

.step4 {
    border-top: 6px solid #1abc9c;
}

.step5 {
    border-top: 6px solid #2980b9;
}

.step6 {
    border-top: 6px solid #8e44ad;
}

.step7 {
    border-top: 6px solid #ad7a44;
}

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }
}

.testimonial-main {
    display: grid;
    place-items: center;
    color: var(--space-cadet);
}

.testimonial-main h2 {
    text-align: center;
    color: var(--paynes-gray);
}

.testimonial-slider {
    max-width: 800px;
    width: 90%;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.testimonial-slider button {
    cursor: pointer;
    border: none;
}

.testimonial-list {
    display: flex;
    overflow: hidden;
}

.testimonial1 {
    flex: 1 0 100%;
    text-align: center;
    padding: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial1 .bi-quote {
    font-size: 2.5rem;
    color: var(--sunglow);
    opacity: 0.75;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    color: gold;
    font-size: 1.2rem;
}

.rating-source-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.testimonial1 blockquote {
    font-size: 1rem;
    margin-inline: 20px;
}

.testimonial1 blockquote {
    position: relative;
}

.toggle-text {
    display: inline-block;
    margin-top: 10px;
    background: none;
    border: none;
    color: var(--dark-cyan);
    cursor: pointer;
    font-size: 0.9rem;
}

.user-info {
    margin: 30px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.user-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-details .name {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--dark-cyan);
}

.user-details .company {
    color: var(--muted-color);
}

/* button navigation */

.but-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    transition: 0.3s;
    color: var(--light-color);
    background-color: var(--space-cadet);
}

.but-nav.prev {
    left: 10px;
}

.but-nav.next {
    right: 10px;
}

.dots-container {
    text-align: center;
}

.dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 5px;
    margin-inline: 5px;
    background-color: var(--dot-color);
    transition: width 0.5s;
}

.dot.active {
    width: 30px;
    background-color: var(--paynes-gray);
}

@media (min-width: 768px) {
    .testimonial1 .bi-quote {
        font-size: 4rem;
    }

    .testimonial1 blockquote {
        font-size: 1.25rem;
    }
}

.column,
.testimonial,
.testimonial-card {
    box-sizing: border-box;
}

/* Grille pour les prestations */
.css-container .cs-grid-targets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.css-container .cs-target-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #2980b9;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Effet discret au survol */
.css-container .cs-target-item:hover {
    border-color: #3498db;
    transform: translateY(-3px);
    color: #1a202c;
}

/* Adaptation mobile */
@media (max-width: 768px) {
    .css-container .cs-grid-targets {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .css-container .cs-target-item {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .css-container .cs-grid-targets {
        grid-template-columns: 1fr;
    }
}

:root {
    --reviewsprimary: #2563eb;
    --reviewsbg: #f3f4f6;
    --reviewscard: #ffffff;
    --reviewstext: #111827;
    --reviewsmuted: #6b7280;
}

.reviews {
    width: 100%;
    max-width: 900px;
    place-self: center;
}

.reviews .card {
    background: var(--reviewscard);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.reviews .testimonial {
    display: none;
    animation: fade 0.4s ease;
}

.reviews .testimonial.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reviews .logo {
    width: 50px;
    margin-bottom: 15px;
}

.reviews .stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 25px;
}

.reviews .text {
    font-size: 17px;
    color: var(--reviewsmuted);
    line-height: 1.7;
    min-height: 120px;
    /* hauteur fixe */
}

.reviews .text.expanded {
    min-height: auto;
}

.reviews .name {
    margin-top: 20px;
    font-weight: 600;
    color: var(--reviewstext);
}

/* Boutons */
.reviews .controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviews .nav {
    display: flex;
    gap: 10px;
}

.reviews button {
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}

.reviews .primary {
    background: var(--reviewsprimary);
    color: white;
}

.reviews .displayplay {
    display: none;
}

.reviews .secondary {
    background: #e5e7eb;
}

@media (max-width: 600px) {
    .reviews .card {
        padding: 30px;
    }
}

.question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #000;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
    margin: 20px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.question::after {
    content: "\002B";
    /* + */
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: transform 0.2s ease;
}

.question.active::after {
    transform: rotate(45deg);
    /* + -> x */
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
}

.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
    font-size: 1rem;
    color: #333;
}

#FAQ {
    padding-bottom: 6rem;
    width: 100%;
    margin: auto;
}

#FAQ,
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.cta-final {
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid #d1d5db;
    padding-top: 2rem;
}

.cta-final h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-final p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    background-color: var(--color-primary-blue);
    transition: background-color 0.3s;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.cta-button:hover {
    background-color: #0056b3;
}

.d-none {
    display: none;
}
