/* Section Hero */
#heroSection {
    background: var(--blue-pink-gradient);
}

#heroSection .tag {
    background: var(--primary-gradient);
    color: var(--white);
    margin: 0 auto 15px auto;
    line-height: 1.6;
}

#heroSection h1 {
    text-align: center;
}

#heroSection h1 span {
    background: linear-gradient(90deg, #9d174d, #db2777);
    background-clip: text;
}

#heroSection .btns-container {
    justify-content: center;
}

#heroSection .swiper-container {
    padding: 20px;
    background: linear-gradient(240deg, #dbeafe , #fce7f3);
    border-radius: var(--medium-radius);
    position: relative;
    margin-top: 60px;
}

#heroSection .swiper {
    width: 100%;
    border-radius: var(--medium-radius);
    position: relative;
}

#heroSection .swiper .swiper-slide {
    height: auto;
}

#heroSection .swiper .swiper-slide figure {
    height: 100%;
    display: flex;
    background: white;
}

#heroSection .swiper .swiper-slide figure img {
    object-fit: contain;
    height: auto;
    margin: auto;
    border-radius: var(--medium-radius);
}

#heroSection .swiper-button-prev,
#heroSection .swiper-button-next {
    color: white;
    background: var(--pink);
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

#heroSection .swiper-button-prev:after,
#heroSection .swiper-button-next:after {
    content: none;
}

#heroSection .swiper-container .card {
    background: white;
    box-shadow: var(--medium-shadow);
    border-radius: var(--low-radius);
    padding: 10px;
    position: absolute;
}

#heroSection .swiper-container .card p {
    line-height: 1;
}

#heroSection .swiper-container .card p.title {
    margin-bottom: 3px;
}

#heroSection .swiper-container .card:nth-of-type(1) {
    bottom: -35px;
    left: -10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#heroSection .swiper-container .card:nth-of-type(1) i {
    color: var(--green);
}

#heroSection .swiper-container .card:nth-of-type(1) .title {
    color: black;
    font-weight: 500;
}

#heroSection .swiper-container .card:nth-of-type(2) {
    top: -35px;
    right: -10px;
}

#heroSection .swiper-container .card:nth-of-type(2) .title {
    text-align: center;
    color: var(--pink);
    font-weight: 700;
}


/* Section Avantages */
#avantages h2 span:last-of-type {
    background: linear-gradient(90deg, #9d174d, #db2777);
    background-clip: text;
}

#avantages .avantages article h3 {
    margin: 20px 0 10px 0;
}

#avantages .avantages article p {
    text-wrap: balance;
}

#avantages #resultats {
    background: var(--blue-pink-gradient);
    padding: 20px;
    margin-top: 50px;
    border-radius: var(--medium-radius);
    text-align: center;
}

#avantages #resultats .cards-container {
    margin-top: 20px;
    text-wrap: balance;
}

#avantages #resultats span {
    color: var(--pink);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: block;
}


/* Section Laser */
#specifications {
    background: var(--quaternary-gradient);
}

#specifications h2,
#specifications .intro {
    text-align: center;
}

#specifications #laser h3 {
    text-align: center;
    text-wrap: balance;
}

#specifications #laser ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

#specifications #laser li {
    border-bottom: var(--border);
    padding-bottom: 10px;
    text-align: left;
}

#specifications #laser li:last-of-type {
    border-bottom: none;
}

#specifications #laser li .name {
    font-weight: 500;
}

#specifications #laser li .precision {
    color: var(--pink);
    font-weight: 600;
}

#specifications #certifications {
    background: color-mix(in srgb, var(--green) 15%, white);
    border-radius: var(--medium-radius);
    padding: 20px;
    margin-top: 20px;
}

#specifications #certifications h3 {
    display: flex;
    gap: 5px;
    align-items: baseline;
    text-align: left;
}

#specifications #certifications i {
    color: var(--green);
    line-height: 1;
}

#specifications #certifications ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: disc;
    padding-left: 15px;
    margin-top: 15px;
}

#specifications #certifications li {
    line-height: 1.2;
    text-align: left;
}


/* Section Processus */
#processus article {
    text-align: center;
    position: relative;
    width: 300px;
    margin: 0 auto;
}

#processus article .number {
    position: absolute;
    top: 0;
    right: 40px;
    border: 2px solid var(--pink);
    color: var(--pink);
    background: var(--white);
    border-radius: var(--hight-radius);
    padding: 5px;
    font-weight: 600;
    font-size: .875rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#processus article .icon {
    padding: 10px;
    border-radius: var(--hight-radius);
    margin: 10px auto 0 auto;
}

#processus article .icon i {
    width: 30px;
    height: 30px;
    font-size: 30px;
}

#processus article h3 {
    margin: 15px 0 5px 0;
}

#processus article p {
    text-wrap: balance;
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        /* Section Hero */
        #heroSection .tag {
            margin: 0 auto 15px auto;
        }

        #heroSection .swiper-container {
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            padding: 30px;
            margin-top: 70px;
        }

        #heroSection .swiper-container .card:nth-of-type(1) {
            bottom: -30px;
            left: -20px;
        }

        #heroSection .swiper-container .card:nth-of-type(2) {
            top: -30px;
            right: -20px;
        }


        /* Section Avantages */
        #avantages .avantages article {
            width: calc(50% - 10px);
        }

        #avantages #resultats {
            padding: 30px;
            margin-top: 50px;
        }

        #avantages #resultats .cards-container {
            margin-top: 30px;
        }

        #avantages #resultats article {
            width: calc(50% - 10px);
        }

        #avantages #resultats span {
            font-size: 2rem;
        }


        /* Section Laser */
        #specifications #laser ul {
            gap: 15px;
            margin-top: 30px;
        }

        #specifications #laser li {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding-bottom: 15px;
        }

        #specifications #certifications {
            margin-top: 30px;
        }

        #specifications #certifications ul {
            gap: 15px;
        }


        /* Section Processus */
        #processus .cards-container {
            justify-content: center;
            gap: 60px;
        }

        #processus article {
            width: calc(50% - 15px);
            max-width: 300px;
            margin: 0;
        }

        #processus article .icon {
            padding: 15px;
        }


        /* Section CTA */
        #cta .section-container {
            padding-top: 0;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            /* Section Hero */
            #heroSection {
                text-align: left;
            }

            #heroSection .section-container {
                display: flex;
                justify-content: space-between;
                gap: 60px;
                align-items: center;
            }

            #heroSection h1 {
                text-wrap: balance;
                text-align: left;
            }

            #heroSection .intro {
                text-align: left;
            }

            #heroSection .tag {
                margin: 0 0 20px 0;
            }

            #heroSection .btns-container {
                justify-content: flex-start;
            }

            #heroSection .swiper-container {
                margin-top: 0;
                padding: 40px;
            }

            #heroSection .swiper-container .card:nth-of-type(1) {
                bottom: -25px;
                left: -25px;
            }

            #heroSection .swiper-container .card:nth-of-type(2) {
                top: -25px;
                right: -25px;
            }


            /* Section Avantages */
            #avantages .avantages {
                flex-wrap: nowrap;
            }

            #avantages .avantages article {
                width: 25%;
            }

            #avantages .avantages article h3 {
                margin: 25px 0 15px 0;
            }

            #avantages #resultats {
                padding: 50px;
                margin-top: 70px;
            }

            #avantages #resultats .cards-container {
                margin-top: 50px;
                flex-wrap: nowrap;
            }

            #avantages #resultats article {
                width: calc(25% - 10px);
            }

            #avantages #resultats span {
                font-size: 3rem;
            }


            /* Section Laser */
            #specifications .section-container > div {
                max-width: 900px;
                margin: 0 auto;
            }

            #specifications #laser ul {
                gap: 20px;
                margin-top: 40px;
            }

            #specifications #laser li {
                padding-bottom: 20px;
            }

            #specifications #certifications {
                margin-top: 40px;
                padding: 25px;
            }


            /* Section Processus */
            #processus .cards-container {
                flex-wrap: nowrap;
                gap: 30px;
                justify-content: space-between;
            }

            #processus article h3 {
                margin: 20px 0 10px;
            }
        }