/* Hero Section */
#heroSection {
    background: var(--blue-pink-gradient);
}

#heroSection .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

#heroSection .tag {
    box-shadow: var(--small-shadow);
    border-radius: var(--hight-radius);
    background: white;
    display: flex;
    gap: 5px;
    font-weight: 500;
    color: var(--grey);
    padding: 10px 15px;
}

#heroSection .tag:nth-of-type(1) i {
    color: var(--green);
}

#heroSection .tag:nth-of-type(2) i {
    color: var(--pink);
}

#heroSection h1 {
    text-wrap: balance;
    text-align: center;
}

#heroSection h1 span {
    background: linear-gradient(90deg, #9d174d, #db2777);
    background-clip: text;
}

#heroSection .btns-container {
    justify-content: center;
}

#heroSection .btns-container a {
    display: flex;
    align-items: center;
    gap: 5px;
}

#heroSection .demo {
    background: linear-gradient(290deg, #dbeafe, #fce7f3);
    border-radius: var(--medium-radius);
    padding: 40px;
    display: flex;
    justify-content: center;
    margin: 50px 0;
    position: relative;
    box-shadow: var(--small-shadow);
}

#heroSection .demo .swiper-button-prev:after,
#heroSection .demo .swiper-button-next:after {
    content: none;
}

#heroSection .demo .swiper-button-prev,
#heroSection .demo .swiper-button-next {
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 25px;
    height: 30px;
    width: 30px;
}

#heroSection .demo .swiper-button-prev {
    top: 5px;
    margin: 0;
}

#heroSection .demo .swiper-button-next {
    bottom: 5px;
    top: unset;
}

#heroSection .swiper-demos {
    overflow: hidden;
    border-radius: 24.5px;
    height: 100%;
    width: 100%;
}

.device {
    position: relative;
    transform: scale(1);
    z-index: 1;
}

.device-iphone-14-pro {
    height: 434px;
    width: 214px;
}

.device-iphone-14-pro .device-frame {
    background: #010101;
    border: 1px solid #1b1721;
    border-radius: 34px;
    box-shadow: inset 0 0 4px 2px #c0b7cd,inset 0 0 0 6px #000000;
    height: 434px;
    padding: 9.5px;
    width: 214px;
}

.device .device-screen {
    background-color: #000;
    background-position: center center;
    background-size: cover;
    object-fit: cover;
    position: relative;
}

.device-iphone-14-pro .device-screen {
    border-radius: 24.5px;
    height: 415px;
    width: 195px;
    overflow: hidden;
}

.device-iphone-14-pro .device-screen video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.device-iphone-14-pro .device-btns {
    background: #1b1721;
    border-radius: 2px;
    height: 16px;
    left: -2px;
    position: absolute;
    top: 57.5px;
    width: 3px;
}

.device-iphone-14-pro .device-btns::after,
.device-iphone-14-pro .device-btns::before {
    background: #1b1721;
    border-radius: 2px;
    content: "";
    height: 31px;
    left: 0;
    position: absolute;
    width: 3px;
}

.device-iphone-14-pro .device-btns::before {
    top: 70px;
}

.device-iphone-14-pro .device-btns::after {
    top: 30px;
}

.device-iphone-14-pro .device-power {
    background: #1b1721;
    border-radius: 2px;
    height: 50px;
    position: absolute;
    right: -2px;
    top: 100px;
    width: 3px;
}

#heroSection .demo .satisfaction {
    padding: 10px;
    position: absolute;
    left: -15px;
    top: -10px;
    max-width: 100px;
    text-align: center;
}

#heroSection .demo .satisfaction span {
    background: var(--primary-gradient);
    background-clip: text;
    color: transparent;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}

#heroSection .demo .satisfaction p {
    font-weight: 500;
    color: var(--grey);
}

#heroSection .demo .argument {
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    text-align: left;
    position: absolute;
    max-width: 200px;
    text-wrap: balance;
    width: max-content;
}

#heroSection .demo .argument:nth-of-type(2) {
    bottom: -20px;
    left: -10px;
    animation-delay: .5s;
}

#heroSection .demo .argument:nth-of-type(3) {
    top: -30px;
    right: -10px;
    animation-delay: .75s;
}

#heroSection .demo .argument:nth-of-type(4) {
    bottom: -70px;
    right: -15px;
    animation-delay: 1s;
}

#heroSection .demo .argument i {
    color: white;
    background: var(--primary-gradient);
    border-radius: var(--hight-radius);
    padding: 5px;
    font-size: 20px;
}

#heroSection .demo .argument p {
    font-weight: 500;
}


/* Presentation Section */
#presentation .tag {
    border-radius: var(--hight-radius);
    background: var(--primary-gradient);
    color: white;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

#presentation .cards-container {
    text-align: center;
    text-wrap: balance;
}

#presentation article h3 {
    margin: 20px 0 5px 0;
}

#presentation .citation {
    margin-top: 40px;
    text-wrap: balance;
    background: var(--blue-pink-gradient);
    border: none;
}

#presentation .citation .author {
    margin: 10px 0 20px 0;
}

#presentation .citation a {
    margin-left: auto;
    margin-right: auto;
}

#presentation .citation figure {
    margin-bottom: -40px;
    margin-top: 20px;
}

#presentation .citation figure img {
    max-height: 200px;
    object-fit: contain;
}


/* Offers Section */
#offers {
    background: var(--quaternary-gradient);
}

#offers .tag {
    background: var(--primary-gradient);
    color: white;
    margin-left: auto;
    margin-right: auto;
}

#offers .section-container > h2 {
    margin-top: 20px;
}

#offers article {
    text-align: center;
    text-wrap: balance;
}

#offers article h3 {
    margin: 15px 0 10px 0;
}

#offers article .reduction {
    margin: 15px 0;
}

#offers article .pourcentage {
    color: var(--green);
    font-weight: 700;
    font-size: 1.875rem;
    margin-bottom: 5px;
    display: block;
}

#offers article .btn {
    width: 100%;
    margin-top: 20px;
}

#offers .promotions {
    margin-top: 30px;
    background: var(--primary-gradient);
    border: none;
}

#offers .promotions h2 {
    margin-bottom: 20px;
    color: white;
}

#offers .promotions article .tag {
    background: var(--green);
}

#offers .promotions article .date {
    display: flex;
    gap: 5px;
    align-items: baseline;
    justify-content: center;
    margin-top: 10px;
    text-wrap: initial;
    text-align: initial;
}

#offers .promotions article .date i {
    color: var(--orange);
}

#offers .preuves {
    text-wrap: balance;
    text-align: center;
    margin-top: 40px;
}

#offers .preuves .cards-container {
    flex-direction: row;
    flex-wrap: wrap;
}

#offers .preuves article {
    width: calc(50% - 13px);
}

#offers .preuves article .icon {
    margin-bottom: 10px;
}

#offers .cta {
    margin-top: 40px;
    box-shadow: var(--medium-shadow);
    border-radius: var(--medium-radius);
    background: var(--blue-pink-gradient);
}

#offers .cta div {
    border: none;
    background: none;
    box-shadow: unset;
}

#offers .cta a {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

#offers .cta figure {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

#offers .cta figure img {
    max-width: 150px;
    margin-bottom: -23px;
}


    /* Reviews Section */
/* Reviews Section */
#reviews h2,
#reviews .intro {
    text-wrap: balance;
    margin-left: 20px;
    margin-right: 20px;
}

#reviews .section-container {
    padding: 3rem 0;
}

#reviews .swiper {
    padding: 0 20px 40px 20px;
}

#reviews .swiper-slide {
    height: auto;
}

#reviews .swiper-slide .review-container {
    height: 100%;
}

#reviews .swiper-slide .author {
    display: flex;
    gap: 20px;
    text-align: left;
    align-items: center;
}

#reviews .swiper-slide figure {
    width: 40px;
}

#reviews .swiper-slide .author div span {
    font-size: 13px;
    color: var(--grey);
}

#reviews .swiper-slide .rating {
    margin: 20px 0 10px 0;
    text-align: left;
}

#reviews .swiper-slide .rating .star {
    color: grey;
}

#reviews .swiper-slide .rating .star.filled {
    color: #fbc02d;
    font-size: 30px;
}

#reviews .swiper-slide p {
    text-align: left;
}

#reviews .swiper-pagination {
    bottom: 7px;
}

#reviews .swiper-pagination-bullet-active {
    background: var(--orange);
}

#reviews .swiper-button-next {
    right: 20px;
}

#reviews .swiper-button-prev {
    left: 20px;
}

#reviews .swiper-button-next,
#reviews .swiper-button-prev {
    font-size: 20px;
    border: var(--border);
    padding: 10px;
    background: var(--white);
    border-radius: var(--hight-radius);
    width: 30px;
    height: 30px;
    box-shadow: var(--small-shadow);
    color: var(--orange);
    bottom: 0;
    top: unset;
}

#reviews .swiper-button-next:after,
#reviews .swiper-button-prev:after {
    content: none;
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        /* Hero Section */
        #heroSection .section-container {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        #heroSection .content {
            width: 50%;
            text-align: left;
        }

        #heroSection .tags {
            justify-content: left;
        }

        #heroSection h1 {
            text-align: left;
        }

        #heroSection .intro {
            text-align: left;
        }

        #heroSection .btns-container {
            justify-content: left;
        }

        #heroSection .demo {
            width: 50%;
            padding: 60px;
            margin: 40px 0;
        }

        #heroSection .device {
            scale: 1.1;
        }

        #heroSection .demo .satisfaction {
            left: -25px;
            top: -20px;
        }

        #heroSection .demo .argument:nth-of-type(2) {
            bottom: -25px;
            left: -35px;
        }

        #heroSection .demo .argument:nth-of-type(3) {
            top: -40px;
            right: -30px;
        }

        #heroSection .demo .argument:nth-of-type(4) {
            bottom: -70px;
            right: -20px;
        }


        /* Presentation Section */
        #presentation .tag {
            margin-bottom: 25px;
        }

        #presentation article {
            width: calc(50% - 10px);
        }

        #presentation .citation {
            margin-top: 50px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
        }

        #presentation .citation .author {
            margin: 15px 0 25px 0;
        }

        #presentation .citation div {
            width: 70%;
        }

        #presentation .citation figure {
            width: 30%;
            margin-top: -30px;
            margin-bottom: -65px;
        }

        #presentation .citation figure img {
            max-height: 250px;
        }


        /* Offers Section */
        #offers .cards-container {
            justify-content: center;
        }

        #offers article {
            width: calc(50% - 10px);
        }

        #offers .promotions {
            margin-top: 40px;
        }

        #offers .promotions h2 {
            margin-bottom: 25px;
        }

        #offers .preuves {
            margin-top: 50px;
        }

        #offers .preuves .cards-container {
            flex-wrap: nowrap;
        }

        #offers .cta {
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            justify-content: center;
            flex-direction: row-reverse;
            margin-top: 50px;
        }

        #offers .cta div {
            width: 60%;
        }

        #offers .cta a {
            margin-bottom: 0;
        }

        #offers .cta figure {
            margin-bottom: -25px;
            width: 40%;
        }

        #offers .cta figure img {
            max-width: 175px;
            margin: 0;
        }


        /* Reviews Section */
        #reviews .section-container {
            padding: 4rem 30px;
        }

        #reviews h2,
        #reviews .intro {
            margin-left: 40px;
            margin-right: 40px;
        }

        #reviews .swiper-slide .author div span {
            font-size: 14px;
        }

        #reviews .swiper {
            padding: 1px 11px 60px 11px;
            position: relative;
        }

        #reviews .swiper-button-prev {
            left: 10px;
        }

        #reviews .swiper-button-next {
            right: 10px;
        }

        #reviews .swiper-button-next,
        #reviews .swiper-button-prev {
            width: 40px;
            height: 40px;
            font-size: 25px;
        }

        #reviews .swiper-pagination {
            bottom: 16px;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            /* Hero Section */
            #heroSection .section-container {
                gap: 60px;
                justify-content: space-between;
            }

            #heroSection .demo {
                width: 42%;
                padding: 95px;
                margin: 0;
                min-width: 500px;
            }

            #heroSection .device {
                scale: 1.25;
            }

            #heroSection .demo .satisfaction {
                left: -25px;
                top: -20px;
                max-width: 120px;
            }

            #heroSection .demo .argument:nth-of-type(2) {
                bottom: 120px;
                left: -55px;
                max-width: 180px;
            }

            #heroSection .demo .argument:nth-of-type(3) {
                top: 120px;
                right: -60px;
                max-width: 210px;
            }

            #heroSection .demo .argument:nth-of-type(4) {
                bottom: -40px;
                right: -30px;
                max-width: 250px;
            }


            /* Presentation Section */
            #presentation .tag {
                margin-bottom: 30px;
            }

            #presentation .intro {
                max-width: 80%;
                margin-left: auto;
                margin-right: auto;
            }

            #presentation .cards-container {
                flex-wrap: nowrap;
            }

            #presentation article {
                width: 25%;
            }

            #presentation .citation {
                margin-top: 60px;
            }

            #presentation .citation figure {
                margin-top: -15px;
            }


            /* Offers Section */
            #offers article {
                width: calc(33% - 10px);
            }

            #offers .promotions {
                margin-top: 50px;
            }

            #offers .promotions h2 {
                margin-bottom: 30px;
            }

            #offers .preuves {
                margin-top: 60px;
            }

            #offers .cta {
                max-width: 700px;
                margin-top: 60px;
            }


            /* Reviews Section */
            #reviews .section-container {
                padding: 5rem 50px;
            }

            #reviews .swiper {
                padding: 1px 11px 60px 11px;
            }

            #reviews .swiper-slide .author div span {
                font-size: 15px;
            }
        }
