/* =========================================
   1. FONTS & GLOBAL
   ========================================= */
@font-face {
    font-family: 'Lohit Devanagari';
    src: url('../font/fonnts.com-FormaDJRVariable-VF-Testing.ttf') format('truetype');
    font-weight: 1 999;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FatFrank';
    src: url('../font/fat-frank-heavy.otf') format('truetype');
    font-weight: 1 999;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #FEF2EC;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Sécurité pour éviter le scroll horizontal */
}

/* Fix pour l'animation de texte (mots insécables) */
.word-wrapper {
    display: inline-block;
    white-space: nowrap;
    margin-right: 0.25em;
}

.word-wrapper:last-child {
    margin-right: 0;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.header {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    display: flex;
    padding: 0 200px;
    align-items: center;
    height: 100px;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    /* Important pour le padding */
}

.header--hidden {
    transform: translateY(-100%);
}

.header--visible {
    transform: translateY(0);
}

.header--scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, #FEF2EC 0%, rgba(254, 242, 236, 0.50) 28.85%, rgba(254, 242, 236, 0.25) 50.12%, rgba(254, 242, 236, 0.50) 70.55%, rgba(254, 242, 236, 0.95) 100%), #f4ecfe;
}

.header .menu-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Wrapper pour le menu desktop/mobile */
.nav-content {
    display: contents;
}

.block-list-link {
    width: 50%;
}

.block-list-link ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-menu-top-element {
    color: #0F0007;
    text-align: center;
    font-family: "Lohit Devanagari";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.block-cta {
    display: flex;
    justify-content: center;
}

.block-cta .cta-element {
    padding: 15px 40px;
    border-radius: 38px;
    background: linear-gradient(90deg, #C185B5 0%, #774695 100%);
    color: #FEF2EC;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

/* --- BURGER MENU (Caché par défaut) --- */
.burger-menu {
    display: none;
}

@media (max-width: 1650px) {
    .header {
        padding: 0 100px;
    }
}

/* --- NAVIGATION MOBILE (Tablette et moins < 1024px) --- */
@media (max-width: 1350px) {
    .header {
        padding: 0 30px;
        justify-content: space-between;
    }

    /* Bouton Burger */
    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 35px;
        height: 25px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
        padding: 0;
    }

    .burger-line {
        width: 100%;
        height: 3px;
        background-color: #774695;
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
        transform-origin: 1px;
    }

    /* Animation Burger */
    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg);
    }

    /* Menu Fullscreen */
    .nav-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(180deg, #FEF2EC 0%, #f4ecfe 100%);
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        gap: 40px;
    }

    .nav-content.open {
        transform: translateX(0);
    }

    .block-list-link {
        width: 100%;
    }

    .block-list-link ul {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .link-menu-top-element {
        font-size: 28px;
        font-family: 'FatFrank', sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        color: #774695;
    }
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.main-page {
    background-color: #FEF2EC;
}

section.hero {
    padding-top: 100px;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(254, 242, 236, 0.80) 0%, #FEF2EC 32.69%, rgba(254, 242, 236, 0.65) 74.52%, rgba(254, 242, 236, 0.80) 100%), linear-gradient(90deg, #FEF2EC 0%, rgba(254, 242, 236, 0.50) 28.85%, rgba(254, 242, 236, 0.25) 50.12%, rgba(254, 242, 236, 0.50) 70.55%, rgba(254, 242, 236, 0.95) 100%), #A179FF;
    overflow: hidden;
}

section.hero>* {
    padding-bottom: 5vh;
    padding-top: 2vh;
}

section.hero .block-cta {
    display: flex;
    justify-content: center;
    transition-duration: 1000ms;
    transition-delay: 800ms;
    transition-timing-function: cubic-bezier(0, 0, 0, 1);
    opacity: 0;
    translate: 0 65px;
}

section.hero .block-cta.active {
    opacity: 1;
    translate: 0 0;
}

section.hero .block-cta .cta-element {
    padding: 15px 40px;
    border-radius: 38px;
    border: 2px solid rgba(239, 212, 96, 0.50);
    background: linear-gradient(90deg, #C185B5 0%, #774695 100%);
    color: #FEF2EC;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

/* Video Player VSL */
.container-player-vsl {
    display: flex;
    justify-content: center;
    position: relative;
}

.container-player-vsl .custom-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.container-player-vsl .volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    padding: 5px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.container-player-vsl .volume-control:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.05);
}

.container-player-vsl .volume-icon {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 28px;
    height: 28px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.container-player-vsl .volume-icon:hover {
    color: #f0d460;
    transform: scale(1.1);
}

.container-player-vsl .volume-icon svg {
    width: 100%;
    height: 100%;
}

.hidden {
    display: none;
}

.container-player-vsl .volume-slider {
    position: relative;
    width: 70px;
    height: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.container-player-vsl .volume-control:hover .volume-slider {
    opacity: 1;
}

#volume-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    translate: 0 -7px;
}

#volume-range::-webkit-slider-thumb,
#volume-range::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.volume-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, #C185B5 0%, #774695 100%);
    border-radius: 3px;
    width: 100%;
    pointer-events: none;
    transition: width 0.1s ease;
}

.container-player-vsl .block-video {
    transition-duration: 1000ms;
    transition-delay: 1100ms;
    transition-timing-function: cubic-bezier(0, 0, 0, 1);
    opacity: 0;
    translate: 0 65px;
    cursor: pointer;
    position: relative;
}

.container-player-vsl .block-video.active {
    opacity: 1;
    translate: 0 0;
}

.container-player-vsl #vsl-video {
    width: max(35vw, 450px + 15vw);
    border-radius: 30px;
    filter: brightness(0.5);
    transition-duration: 200ms;
}

.container-player-vsl .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    transition-duration: 200ms;
    pointer-events: none;
}

.container-player-vsl .custom-controls {
    opacity: 0;
    transition-duration: 200ms;
    transition-delay: 200ms;
}

.container-player-vsl .block-video:hover .play-btn {
    scale: 1.1;
}

.container-player-vsl .block-video:hover #vsl-video {
    filter: brightness(0.7);
}

.container-player-vsl .block-video:hover .custom-controls {
    opacity: 1;
}

.container-player-vsl.play .block-video #vsl-video {
    filter: brightness(1);
}

.container-player-vsl.play .block-video:hover #vsl-video {
    filter: brightness(.9);
}

.container-player-vsl.play .play-btn {
    opacity: 0;
}

/* Page Title */
.page-title {
    padding: 3vh 0;
    color: #0F0007;
    text-align: center;
    font-family: FatFrank;
    font-size: max(3.3vw, 1.7vw + 10px);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.page-title .spanify-span {
    opacity: 1;
    display: inline-block;
    translate: 0 200%;
    opacity: 0;
    transition-duration: 400ms;
    transition-timing-function: cubic-bezier(0, 0, 0, 1);
}

.page-title .space-span {
    width: 16px;
}

.page-title .active.spanify-span {
    translate: 0;
    opacity: 1;
}

/* Icons List */
.container-list-icon-text {
    display: flex;
    justify-content: center;
}

.container-list-icon-text .list-icon-text {
    display: flex;
    gap: 7vw;
    list-style: none;
    padding: 0;
}

.container-list-icon-text .block-icon-text {
    display: flex;
    padding: 10px;
    gap: 30px;
    translate: 0 50px;
    opacity: 0;
}

.container-list-icon-text .block-icon-text.active {
    translate: 0 0;
    opacity: 1;
}

.container-list-icon-text .block-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-list-icon-text .text-content {
    color: #0F0007;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Logos List */
.list-logo {
    padding: 10vh;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, rgba(254, 242, 236, 0.00) 0%, #FEF2EC 100%);
}

.list-logo .container-list-loge {
    display: flex;
    align-items: center;
    gap: 10vw;
    list-style: none;
    padding: 0;
}

/* =========================================
   4. PAIN POINTS SECTION
   ========================================= */
section.pain-point {
    padding-top: 100px;
    position: relative;
}

section.pain-point .sub-title {
    color: #000;
    text-align: center;
    font-family: FatFrank;
    font-size: 40.81px;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 4px;
}

section.pain-point .sub-title .in-text-color {
    color: #774695;
}

section.pain-point .container-icon-title-text {
    display: grid;
    grid-template-columns: 1fr 600px 1fr;
    grid-template-rows: repeat(5, max(25vh, 300px));
    grid-template-areas: "t1 tc . "
        ".  tc t2"
        "t3 tc . "
        ".  tc t4"
        ".  tc . "
        ".  tt . ";
}

section.pain-point .block-tel-cta {
    grid-area: tc;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

section.pain-point .block-iphone-video {
    position: sticky;
    top: 30vh;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;

    .svg-iphone {
        height: 100%;
    }
}

section.pain-point .video-container {
    position: absolute;
    z-index: -1;
    aspect-ratio: 10 / 21;
    border-radius: 32px;
    height: 60vh;
    width: auto;
    max-width: 230px;
    max-height: 482px;
}

section.pain-point .block-bottom {
    padding-bottom: 100px;
    grid-area: tt;
}

section.pain-point .block-cta {
    display: flex;
    justify-content: center;
}

section.pain-point .block-cta .cta-element {
    padding: 15px 40px;
    border-radius: 38px;
    border: 2px solid rgba(239, 212, 96, 0.50);
    background: linear-gradient(90deg, #C185B5 0%, #774695 100%);
    color: #FEF2EC;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

section.pain-point [data-position="1"] {
    grid-area: t1;
}

section.pain-point [data-position="2"] {
    grid-area: t2;
}

section.pain-point [data-position="3"] {
    grid-area: t3;
}

section.pain-point [data-position="4"] {
    grid-area: t4;
}

section.pain-point .block-icon-title-text {
    display: flex;
    align-items: center;
}

section.pain-point .block-icon-title-text.left {
    justify-content: flex-end;
}

section.pain-point .block-icon-title-text.right {
    justify-content: flex-start;
}

section.pain-point .block-position {
    height: fit-content;
    width: 360px;
}

section.pain-point .block-position>* {
    padding-bottom: 10px;
}

section.pain-point .title {
    color: #000;
    font-family: "Forma DJR Variable";
    font-size: 24px;
    font-weight: 700;
}

section.pain-point .title .in-text-color {
    color: #774695;
}

section.pain-point .title .spanify-span {
    opacity: 1;
    display: inline-block;
    translate: 0 200%;
    opacity: 0;
    transition-duration: 0;
    transition-timing-function: cubic-bezier(0, 0, 0, 1);
}

section.pain-point .title .space-span {
    width: 9px;
}

section.pain-point .text-content {
    color: #000;
    font-family: "Forma DJR Variable";
    font-size: 16px;
    font-weight: 400;
}

section.triangle {
    overflow: hidden;
    position: relative;
    max-height: 125vw;

    .list-block-triangle {
        translate: -50vw;
        width: fit-content;

        .block-triangle {
            position: relative;

            svg {
                width: 200vw;
                height: auto;
            }

            .block-text {
                position: absolute;
                right: 50%;
                top: 47%;
                translate: 50% -50%;

                .in-text-color-white {
                    color: #FFF;
                    text-align: center;
                    font-family: FatFrank;
                    font-size: 3vw;
                    font-weight: 900;
                }

                .in-text-color-black {
                    color: #000;
                    text-align: center;
                    font-family: FatFrank;
                    font-size: 3vw;
                    font-weight: 900;
                }
            }
        }

        [data-position="1"] {
            translate: 0 0;

            svg {
                translate: -75% 0;
            }
        }

        [data-position="2"] {
            translate: 0 calc(-50% - 0.1vw);

            svg {
                translate: 75% 0;
            }
        }

        [data-position="3"] {
            translate: 0 calc(-100% - 0.2vw);

            svg {
                translate: -75% 0;
            }
        }

        [data-position="4"] {
            translate: 0 calc(-150% - 0.3vw);

            svg {
                translate: 75% 0;
            }
        }
    }
}

/* =========================================
   6. SCALE SVG (VIDEO WALL)
   ========================================= */
section.scale-svg {
    overflow: hidden;
}

section.scale-svg .container-list-image-video {
    display: flex;
    justify-content: center;
    position: relative;
    top: 0;
    padding: 0 10vw;
    left: 0;
    width: 100vw;
    height: 100vh;
}

section.scale-svg .block-list-image-video {
    min-height: 100vh;
    min-width: 80vh;
    width: 100%;
    position: absolute;
    z-index: 2;
}

section.scale-svg .image-video {
    background-color: #000;
    border-radius: 10px;
    position: absolute;
    width: 9vw;
    height: 16vw;
    transition-timing-function: ease-out;
    overflow: hidden;
}

section.scale-svg .image-video:hover.small,
section.scale-svg .image-video:hover.middle,
section.scale-svg .image-video:hover.big {
    scale: 1;
    z-index: 2;
}

section.scale-svg .image-video.small {
    transition-duration: 300ms;
    scale: 0.25;
}

section.scale-svg .image-video.middle {
    transition-duration: 200ms;
    scale: 0.5;
}

section.scale-svg .image-video.big {
    transition-duration: 100ms;
    scale: 0.75;
}

/* Positioning Grid */
section.scale-svg .image-video.left-2 {
    left: 20%;
}

section.scale-svg .image-video.left-3 {
    left: 30%;
}

section.scale-svg .image-video.left-4 {
    left: 40%;
}

section.scale-svg .image-video.left-5 {
    left: 50%;
}

section.scale-svg .image-video.left-6 {
    left: 60%;
}

section.scale-svg .image-video.left-8 {
    left: 70%;
    top: 23%;
}

section.scale-svg .image-video.left-9 {
    left: 90%;
}

section.scale-svg .image-video.top-2 {
    top: 20%;
}

section.scale-svg .image-video.top-3 {
    top: 30%;
}

section.scale-svg .image-video.top-4 {
    top: 40%;
}

section.scale-svg .image-video.top-5 {
    top: 50%;
}

section.scale-svg .image-video.top-6 {
    top: 60%;
}

section.scale-svg .image-video.top-7 {
    top: 70%;
}

section.scale-svg .image-video.top-8 {
    top: 80%;
}

section.scale-svg .image-video.top-9 {
    top: 90%;
}

section.scale-svg .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.3s ease;
}

section.scale-svg .image-video:hover .video-thumbnail {
    filter: grayscale(0%) brightness(1);
}

section.scale-svg .block-effect-scale-logo {
    height: 500vh;
    width: 100%;
    position: relative;
}

section.scale-svg .contain-effect-scale-logo {
    pointer-events: none;
    align-items: center;
    position: absolute;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/background-image-test-effect-scale.jpg);
    background-position: center;
    background-size: cover;
    .effect-scale-logo-svg {
        height: auto;
        width: 100vw;
        scale: 2.70;
    }
}

section.scale-svg .container-list-image-video.visible {
    position: fixed;
}

section.scale-svg .block-title-1 {
    position: absolute;
    z-index: 1;
}

section.scale-svg .block-title-1 .title {
    color: #000;
    text-align: center;
    font-family: FatFrank;
    font-size: 4vw;
    font-weight: 900;
    margin-bottom: 50px;
}

section.scale-svg .block-title-1 .block-cta {
    display: flex;
    justify-content: center;
}

section.scale-svg .block-title-1 .cta-element {
    padding: 15px 40px;
    border-radius: 38px;
    border: 2px solid rgba(239, 212, 96, 0.50);
    background: linear-gradient(90deg, #C185B5 0%, #774695 100%);
    color: #FEF2EC;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

section.scale-svg .block-title-2 {
    position: absolute;
    opacity: 0;
    z-index: 11;
    top: 15%;
}

section.scale-svg .container-fondateur {
    position: absolute;
    z-index: 11;
    bottom: 10%;
    margin: 0 auto;
    width: 80vw;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    pointer-events: none;

    .list-fondeur {
        display: flex;
        justify-content: space-between;
    }

    .fondeur {
        font-family: "Lohit Devanagari";
        width: 20vw;
        opacity: 0;

        .block-img img {
            border-radius: 10px;
            width: 100%;
        }
    }

    .text-name {
        margin-top: 20px;
        font-size: 1.4vw;
    }

    .text-sub-title {
        font-weight: 500;
        font-size: 1.27vw;
        font-family: "Lohit Devanagari";
        font-style: italic;
        margin-top: 3px;
    }

    .text-content {
        font-size: 1.25vw;
        font-weight: 300;
        opacity: 1;
        margin-top: 20px;
    }


}

section.scale-svg .block-title-2 .title {
    color: #fef2ec;
    text-align: center;
    font-family: FatFrank;
    font-size: 52.623px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}

section.scale-svg .block-title-2 .sub-title {
    color: #fef2ec;
    text-align: center;
    font-family: "Forma DJR Variable";
    font-size: 37.976px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
}

/* =========================================
   7. CIRCLE SECTION
   ========================================= */
.section-circle {
    overflow: hidden;
    height: calc(300vh + 1600px);
}

.section-circle .block-circle {
    padding-top: min(14vh, 14vw);
    position: relative;
    overflow: hidden;
    max-width: max(100vw, 400px);
    max-height: max(150vh, 500px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.section-circle .block-circle .svg-circle {
    width: max(200vh, 200vw, 400px);
    height: max(200vh, 200vw, 400px);
    transform-origin: top center;
    overflow: visible;
}

.section-circle .block-circle-2 {
    translate: 0 -75vh;
}

.section-circle .block-circle-3 {
    translate: 0 -150vh;
}

.section-circle .block-circle-4 {
    translate: 0 -225vh;
}

.section-circle .container-images-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 3vh;
    translate: -50%;
    z-index: 1;
    max-width: 800px;
}

.section-circle .block-image {
    display: flex;
    margin-bottom: 5vh;
}

.section-circle .img-bg {
    height: min(16vw, 32vh);
    width: min(9vw, 18vh);
    border-radius: 15px;
    background-color: #000;
}

.section-circle .img-bg:nth-child(1) {
    rotate: -7deg;
}

.section-circle .img-bg:nth-child(2) {
    rotate: -12deg;
}

.section-circle .number-element {
    color: #000;
    text-align: center;
    font-family: "Forma DJR Variable";
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 2.5vh;
}

.section-circle .title {
    color: #000;
    text-align: center;
    font-family: FatFrank;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2.5vh;
}

.section-circle .sub-title {
    color: #000;
    text-align: center;
    font-family: "Forma DJR Variable";
    font-size: 24px;
    font-weight: 300;
}

.cta-element.btn-offre.btn-gold {
    border: 2px solid rgba(239, 212, 96, 0.50);
    background: linear-gradient(90deg, #FFF 0%, #EFD460 100%);
    color: #0F0007;
}

.block-circle.block-circle-4 {
    max-height: 2600px;

    .svg-circle {
        width: max(400vh, 400vw);
        height: max(400vh, 400vw);
        transform-origin: top center;
        overflow: visible;
    }
}

.block-cta-after-circle {
    margin-top: 50px;
}

.block-circle-4 .container-icon-title-text {

    .title-block {
        margin-top: 200px;
        .title-icon-title-text {
            font-family: FatFrank;
            font-size: 5vh;
            font-weight: 900;
            text-transform: uppercase;
            text-align: center;
            color: #FEF2EC;
        }
    }
    .title {
        color: #FEF2EC;
    }
    .block-icon-title-text {
        margin-top: 50px;
        color: #FEF2EC;
    }
    .block-icon {
        display: flex;
        justify-content: center;
        color: #FEF2EC;
    }
    .text-content {
        text-align: center;
        font-size: max(1.5vw, 1.5vh, 25px);
        color: #FEF2EC;
    }
}

/* =========================================
   8. OFFRES SECTION
   ========================================= */
.section-offres {
    padding: 10vh 5vw;
    background: linear-gradient(135deg, rgba(119, 70, 149, 0.05) 0%, rgba(254, 242, 236, 0.8) 50%, rgba(239, 212, 96, 0.05) 100%), #FEF2EC;
    position: relative;
    overflow: hidden;
}

.titre-section {
    text-align: center;
    margin-bottom: 3vh;
    position: relative;
    z-index: 1;
}

.titre-section h2 {
    font-family: FatFrank;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #0F0007;
    line-height: 1.2;
}

.titre-section .gradient-text {
    background: linear-gradient(273deg, #774695 0%, #C185B5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sous-titre {
    font-family: 'Lohit Devanagari';
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #0F0007;
    margin-top: 2vh;
    font-weight: 400;
}

.container-offres {
    display: flex;
    justify-content: space-between;
    gap: 3vw;
    max-width: 1400px;
    margin: 8vh auto;
    padding: 0 2vw;
}

.carte-offre {
    font-family: FatFrank;
    position: relative;
    width: 33vw;
    height: 650px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 30px;
    background: #d9c7e5;
}

.carte-offre::before,
.carte-offre::after {
    content: '';
    pointer-events: none;
    background-size: cover;
    position: absolute;
    z-index: 0;
}

.carte-offre:nth-child(2)::before {
    background-image: url(../img/ponctuations/3traits/3traitsvioletfoncé.png);
    width: 200px;
    height: 200px;
    top: -150px;
    right: -150px;
}

.carte-offre:nth-child(1)::before {
    background-image: url(../img/pictogrammes/ampoule/ampoulerose.png);
    width: 300px;
    height: 300px;
    top: -41%;
    left: -32%;
    rotate: -25deg;
}

.carte-offre:nth-child(1)::after {
    background-image: url(../img/ponctuations/3traits/3traitsvioletfoncé.png);
    width: 200px;
    height: 200px;
    bottom: -23%;
    left: -23%;
    rotate: 180deg;
}

.block-carte-content {
    border-radius: 30px;
    padding: 3rem 2rem 0 2rem;
    display: flex;
    flex-direction: column;
    color: #FEF2EC;
    background-color: #d9c7e5;
    position: absolute;
    width: 100%;
    z-index: 2;
    box-sizing: border-box;
}

.carte-offre.populaire {
    transform: scale(1.05);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(239, 212, 96, 0.05) 100%);
    box-shadow: 0 15px 60px rgba(119, 70, 149, 0.2);
}

.carte-offre.populaire::after {
    content: 'LE PLUS VENDU 🔥';
    position: absolute;
    top: 3%;
    right: -12%;
    background: #EFD460;
    color: #0F0007;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.5rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.carte-offre:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(119, 70, 149, 0.25);
}

.carte-offre.populaire:hover {
    transform: scale(1.05) translateY(-10px);
}

.nom-offre {
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.prix-offre {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    position: relative;
}

.prix-offre .euro {
    font-size: 1.5rem;
    vertical-align: super;
}

.periode {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.liste-features {
    list-style: none;
    margin-bottom: 2rem;
}

.liste-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #fef2ecef;
}

.liste-features li .big-text {
    font-size: 1.6rem;
    padding: 0 6px;
    color: #fef2ec;
}

.liste-features li .start-text {
    padding-left: 0;
}

.liste-features li:last-child {
    border-bottom: none;
}

.icon-check {
    width: 40px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.icon-check::after {
    content: '-';
    color: #FEF2EC;
    font-weight: bold;
    font-size: 40px;
}

.carte-offre .btn-offre,
.btn-offre[type="submit"] {
    margin: auto;
    font-family: 'FatFrank', sans-serif;
    width: 230px;
    padding: 18px 10px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, #C185B5 0%, #774695 100%);
    color: #FEF2EC;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    translate: 0 50%;
    overflow: hidden;
    bottom: 0;
    z-index: 1;
    position: absolute;
    left: 50%;
    translate: -50% 50%;
    z-index: 3;
}

.btn-offre::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-offre:hover::before {
    width: 300px;
    height: 300px;
}

.btn-offre:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(119, 70, 149, 0.3);
}

/* =========================================
   9. FORMULAIRE SECTION
   ========================================= */
.section-formulaire {
    padding: 10vh 5vw;
    background: linear-gradient(180deg, #FEF2EC 0%, rgba(119, 70, 149, 0.05) 50%, #FEF2EC 100%), #FEF2EC;
    position: relative;
    overflow: hidden;
}

.forme-decorative {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float-deco 15s infinite ease-in-out;
}

.forme-decorative.forme-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.forme-decorative.forme-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes float-deco {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(20px, 20px) scale(1.05);
    }
}

.titre-section-form {
    text-align: center;
    margin-bottom: 6vh;
    position: relative;
    z-index: 4;
}

.titre-section-form h2 {
    font-family: 'FatFrank', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #0F0007;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.titre-section-form .gradient-text {
    background: linear-gradient(273deg, #774695 0%, #C185B5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sous-titre-form {
    font-family: 'Lohit Devanagari', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #0F0007;
    font-weight: 400;
}

.container-formulaire {
    max-width: 900px;
    margin: 0 auto 100px auto;
    background: #d9c7e5;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(119, 70, 149, 0.15);
}

.container-formulaire::before {
    content: '';
    pointer-events: none;
    background-image: url(../img/pictogrammes/ampoule/ampoulerose.png);
    background-size: cover;
    width: 300px;
    height: 300px;
    position: absolute;
    top: -30%;
    left: -20%;
    rotate: -25deg;
    z-index: 0;
}

.container-formulaire::after {
    content: '';
    pointer-events: none;
    background-image: url(../img/ponctuations/3traits/3traitsvioletfoncé.png);
    background-size: cover;
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -11%;
    right: -19%;
    z-index: 0;
    rotate: 61deg;
}

.container-formulaire .form-content {
    position: relative;
    z-index: 2;
    padding: 4rem 3rem;
    border-radius: 30px;
    background: #d9c7e5;
}

.offre-selectionnee {
    display: none;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(239, 212, 96, 0.1) 0%, rgba(119, 70, 149, 0.05) 100%);
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid #EFD460;
    position: relative;
    overflow: hidden;
}

.offre-selectionnee.visible {
    display: block;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offre-selectionnee::before {
    content: '✨';
    position: absolute;
    top: -5px;
    right: 20px;
    font-size: 2rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

.offre-nom {
    font-family: 'FatFrank', sans-serif;
    font-size: 1.5rem;
    color: #774695;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.offre-prix {
    font-size: 1.2rem;
    color: #0F0007;
    font-weight: 700;
}

.groupe-champs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.champ-formulaire {
    position: relative;
}

.champ-formulaire label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Lohit Devanagari', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FEF2EC;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.champ-formulaire input,
.champ-formulaire select,
.champ-formulaire textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    font-family: 'Lohit Devanagari', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: #0F0007;
    transition: all 0.3s ease;
}

.champ-formulaire input:focus,
.champ-formulaire select:focus,
.champ-formulaire textarea:focus {
    outline: none;
    border-color: #774695;
    box-shadow: 0 0 0 4px rgba(119, 70, 149, 0.1);
    transform: translateY(-2px);
}

.champ-formulaire textarea {
    min-height: 150px;
    resize: vertical;
}

.champ-pleine-largeur {
    grid-column: 1 / -1;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: #774695;
    font-size: 0.8rem;
}

.select-wrapper select {
    appearance: none;
    padding-right: 3rem;
    cursor: pointer;
}

.checkbox-group {
    grid-column: 1 / -1;
    display: flex;
    align-items: start;
    gap: 1rem;
    margin: 2rem 0;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #FEF2EC;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-input:checked~.checkbox-custom {
    background: #EFD460;
    border-color: #EFD460;
}

.checkbox-input:checked~.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0F0007;
    font-weight: bold;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #FEF2EC;
    line-height: 1.5;
}

.checkbox-label a {
    color: #FFF;
    text-decoration: underline;
}

.container-formulaire .btn-offre {
    border: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 3;
    width: 280px;
    padding: 18px 10px;
    margin: 0;
}

.cta-element {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-element:hover::before {
    width: 400px;
    height: 400px;
}

.cta-element:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(119, 70, 149, 0.3);
}

.message-succes {
    display: none;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(239, 212, 96, 0.2) 0%, rgba(119, 70, 149, 0.1) 100%);
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
}

.message-succes.visible {
    display: block;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.message-succes h3 {
    font-family: 'FatFrank', sans-serif;
    font-size: 2rem;
    color: #774695;
    margin-bottom: 1rem;
}

.message-succes p {
    font-size: 1.1rem;
    color: #0F0007;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container video.contain {
    object-fit: contain;
}

/* =========================================
   10. FOOTER
   ========================================= */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    padding: 4rem 2rem 2rem;
    z-index: 1;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-nav h4,
.footer-social h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    background: #6366f1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* =========================================
   11. GENERAL MEDIA QUERIES (Layout Fixes)
   ========================================= */

/* Tablette et petits laptops (max 1024px) */
@media (max-width: 1380px) {
    section.pain-point .container-icon-title-text {
        display: flex;
        flex-direction: column;
        height: auto;
        padding-bottom: 50px;
    }

    section.pain-point .block-icon-title-text {
        justify-content: center !important;
        margin-bottom: 40px;
        padding: 0 20px;
        text-align: center;
    }

    section.pain-point .block-position {
        width: 90%;
    }
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    .footer-content {
        text-align: center;
    }


    section.scale-svg .image-video.small {
        scale: 0.5;
    }

    section.scale-svg .image-video.middle {
        scale: 0.65;
    }

    section.scale-svg .image-video.big {
        scale: 0.8;
    }
}

/* Tablette et petits laptops (max 1024px) */
@media (max-width: 1024px) {
    .page-title {
        font-size: 5vw;
    }

    .container-offres {
        gap: 2vw;
    }

    .carte-offre {
        width: 32vw;
    }

    section.triangle .list-block-triangle .block-triangle .block-text .in-text-color-white,
    section.triangle .list-block-triangle .block-triangle .block-text .in-text-color-black {
        font-size: 5vw;
    }

    .section-circle .img-bg {
        height: 25vh;
        width: calc((9vh * 25) / 16);
        border-radius: 15px;
        background-color: #000;
    }

    .container-list-icon-text .block-icon-text {
        padding: 10px;
        flex-direction: column;
    }

    .list-logo {
        padding: 10vh 0;
    }

    .section-circle .title {
        font-size: 3vh;
    }
    .section-circle .sub-title {
        font-size: 18px;
    }
    .block-cta .cta-element {
        font-size: 14px;
    }
    section.hero .block-cta .cta-element {
        font-size: 17px !important;
    }
    .block-circle-4 .container-icon-title-text {
        .text-content {
            text-align: center;
            font-size: max(1.5vw, 1.5vh, 20px);
        }
    }
    section.pain-point .sub-title {
        font-size: 5.6vw;
    }
    .titre-section-form h2 {
        font-size: 5.3vw;
    }
}

/* Mobile et Tablettes Portrait (max 768px) */
@media (max-width: 768px) {

    /* Hero */
    .page-title {
        font-size: 4vw;
        padding: 0 10px;
    }

    .section-circle .container-images-title {
        width: 80%;
    }

    section.scale-svg .container-list-image-video .block-title-2 .title {
        font-size: 7.5vw;
    }

    section.scale-svg .block-title-2 .sub-title {
        font-size: 7vw;
    }

    .page-title br {
        display: none;
    }

    .container-player-vsl #vsl-video {
        width: 90vw;
    }

    .container-list-icon-text .block-icon-text {
        translate: 0 0 !important;
        opacity: 1 !important;
        justify-content: flex-start;
        gap: 10px;
        padding: 0;
    }

    .container-list-icon-text .list-icon-text {
        display: flex;
        gap: 3vw;
        list-style: none;
        padding: 0;
    }

    .container-list-icon-text .block-icon {
        height: 22px;
    }

    .container-list-icon-text .text-content {
        padding-top: 3px;
        font-size: 3vw;
    }

    .list-logo .container-list-loge {
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 20px;
    }

    .list-logo .container-list-loge img {
        height: 25px;
        width: auto;
    }

    /* Pain Points */
    section.pain-point .container-icon-title-text {
        display: flex;
        flex-direction: column;
        height: auto;
        padding-bottom: 50px;
    }

    section.pain-point .block-tel-cta {
        order: -1;
        margin-bottom: 50px;
        height: auto;
    }

    section.pain-point .block-iphone-video {
        position: relative;
        top: 0;
        height: auto;
        width: 80vw;
        max-width: 300px;
        display: flex;
        justify-content: center;
    }

    section.pain-point .block-bottom {
        position: relative;
        padding-bottom: 0;
        margin-top: 30px;
    }

    section.pain-point .block-icon-title-text {
        justify-content: center !important;
        margin-bottom: 40px;
        padding: 0 20px;
        text-align: center;
    }

    section.pain-point {

        .text-content,
        .block-position {
            font-size: clamp(17px, 4vw, 30px);
            width: 100%;
        }

        .title {
            font-size: clamp(19px, 5vw, 32px);
        }
    }

    section.pain-point .block-icon {
        margin: 0 auto 15px auto;
    }

    /* Scale SVG Mobile */
    section.scale-svg .container-list-image-video {
        padding: 0;
    }

    section.scale-svg .block-title-1 .cta-element {
        font-size: 15px !important;
    }

    section.scale-svg .block-title-1 .title {
        font-size: 7vw;
        width: 100vw;
    }

    /* Reorganisation videos mobile */
    section.scale-svg .image-video {
        width: 35vw;
        height: 60vw;
    }

    section.scale-svg .container-fondateur .fondeur {
        min-width: 70vw;

        .block-img img {
            width: 100%;
        }

        .text-content {
            font-size: 4.4vw;
        }
    }

    section.scale-svg .container-fondateur .list-fondeur {
        display: flex;
        justify-content: space-between;
        gap: 30vw;
    }

    section.scale-svg .image-video.small {
        scale: 0.8;
    }

    section.scale-svg .image-video.middle {
        scale: 0.9;
    }

    section.scale-svg .image-video.big {
        scale: 1;
    }

    section.scale-svg .image-video.left-2 {
        left: 15%;
        top: 22%;
    }

    section.scale-svg .image-video.left-8 {
        left: 58%;
        top: 24%;
    }

    section.scale-svg .image-video.left-5 {
        left: 36%;
        top: 40%;
        z-index: 5;
    }

    section.scale-svg .image-video.left-3 {
        left: 16%;
        top: 65%;
    }

    section.scale-svg .container-fondateur {
        .fondeur {

            .block-img img {
                border-radius: 10px;
                width: 25vh;
            }
        }

        .text-name {
            font-size: 4vw;
        }

        .text-sub-title {
            font-size: 3vw;
        }

        .text-content {
            font-size: 3vw;
        }
    }

    .container-player-vsl .volume-control {
        gap: 3vw;
        padding: 1vw 2vw;
    }


}

section.scale-svg .image-video.left-6 {
    left: 58%;
    top: 64%;
}

section.scale-svg .image-video.left-9 {
    left: 85%;
}
section.scale-svg .image-video.left-1 {
    left: 10%;
}

section.scale-svg .block-title-2 .title {
    font-size: 35px;
    line-height: 1.2;
    padding: 0 10px;
}

/* Offres Mobile */
.container-offres {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 40px;
}

.carte-offre,
.carte-offre.populaire {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: auto;
    transform: none !important;
}

.block-carte-content {
    position: relative;
    height: auto;
    padding-bottom: 80px;
}

.carte-offre .btn-offre {
    bottom: 20px;
    translate: -50% 0;
}

/* Formulaire Mobile */
.section-formulaire {
    padding: 10vh 20px;
}

.container-formulaire {
    margin-bottom: 60px;
}

.container-formulaire::before,
.container-formulaire::after {
    display: none;
}

.container-formulaire .form-content {
    padding: 2rem 1.5rem 4rem 1.5rem;
}

.groupe-champs {
    grid-template-columns: 1fr;
    gap: 1rem;
}



/* Very small screens */
@media (max-width: 380px) {
    .page-title {
        font-size: 4.5vw;
    }

    section.hero .block-cta .cta-element {
        font-size: 4vw !important;
    }

    .sub-title {
        font-size: 4.5vw !important;
    }
}