/* Hero Image Section */

.featured-content {
    background: url('../images/bg-features-section.svg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    width: 100vw;
    position: relative
}

.hero-static {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: visible;
}

.hero-static .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 0 24px 24px;
}

.hero-static .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-static .hero-overlay .hero-title {
    color: white;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    text-align: center;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
}

.hero-static .hero-caption {
    position: absolute;
    bottom: -12%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1290px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 20px 65px 5px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    text-align: justify;
    box-shadow: 0px 40px 70px 0px #1C261E14;
    backdrop-filter: blur(30px);
    border: 2px solid white;
    text-align: center;
}


/* Enjeux Section */

.enjeux-section {
    padding-top: 40px;
    padding-bottom: 20px;
    position: relative;
}

.enjeux-section .trace {
    position: absolute;
    top: -34%;
    right: -3%;
    transform: scale(.7);
}

.enjeux-section .container {
    max-width: 1300px;
    padding: 0;
}

.enjeux-section .enjeux-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

.enjeux-video-wrapper {
    position: relative;
    flex: 1 1 640px;
    padding: 0px
}

.enjeux-section .enjeux-video-box {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.enjeux-video-wrapper::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 146px;
    border-radius: 30px;
    background: var(--dark-brown);
    top: -18px;
    left: -18px;
    z-index: -1;
}

.enjeux-video-wrapper::after {
    content: '';
    position: absolute;
    width: 193px;
    height: 188px;
    border-radius: 30px;
    background: var(--primary-gold);
    bottom: -18px;
    right: -18px;
    z-index: -1;
}

.enjeux-section .video-thumbnail {
    width: 100%;
    height: 318px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 115% auto;
    position: relative;
    margin: 0 auto;
}

.enjeux-section .video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.enjeux-section .video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.enjeux-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    text-decoration: none;
}

.enjeux-section .play-icon {
    font-size: 24px;
    color: #57253A;
    margin-left: 5px;
    margin-top: 2px;
}

.enjeux-section .enjeux-content {
    flex: 1 1 40%;
    text-align: left;
}

.enjeux-section .enjeux-content .subtitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 20px;
    color: var(--text-light);
}

.enjeux-section .enjeux-content .title {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--dark-brown);
    margin-bottom: 25px;
}

.enjeux-section .enjeux-content .description {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-dark);
    text-align: justify;
}

.enjeux-section .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 2px solid var(--primary-gold);
    background-color: rgb(174, 153, 78, 0.08);
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary-gold);
    transition: background 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    margin-top: 80px;
}

.enjeux-section .download-btn:hover {
    background: var(--primary-gold);
    color: white;
}

.enjeux-section .download-btn:hover img {
    filter: brightness(0) invert(1);
}


/* Enjeux Slider Section */

.enjeux-swiper-section {
    padding: 100px 0 0px;
    position: relative;
}

.enjeux-swiper-section::before {
    content: "";
    position: absolute;
    right: 0;
    top: 35px;
    width: calc((100vw - 1300px) / 2 + 590px + 30px - 100px);
    height: 429px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    background-color: #F1F2F2;
}

.enjeux-swiper-section .container {
    max-width: 1300px;
    min-height: 429px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
}

.enjeux-swiper-section .enjeux-swiper-area {
    position: absolute;
    top: 90px;
    right: 0;
    left: calc((100vw - 1300px) / 2 + 590px + 30px);
    overflow: hidden;
    z-index: 1;
}

.enjeux-swiper-section .enjeux-swiper {
    overflow: visible;
}

.enjeux-swiper-section .swiper-wrapper {
    display: flex;
}

.enjeux-swiper-section .swiper-slide {
    width: 284px !important;
    flex-shrink: 0;
    margin-right: 20px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0px 10px 10px 0px #23378014; */
    border: 1px solid white;
    transition: transform 0.3s ease;
}

.enjeux-swiper-section .enjeux-content {
    width: 590px;
    margin-bottom: 30px;
    flex-shrink: 0;
    z-index: 2;
}

.enjeux-swiper-section .enjeux-content .subtitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 15px;
    color: var(--text-light);
}

.enjeux-swiper-section .enjeux-content h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.enjeux-swiper-section .enjeux-content .description {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-dark);
    text-align: justify;
}

.enjeux-swiper-section .enjeux-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.enjeux-swiper-section .enjeux-card .card-text {
    padding: 15px 25px;
    min-height: 110px;
}

.enjeux-swiper-section .enjeux-card .card-text p {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    margin-bottom: 10px;
    color: var(--text-light)
}

.enjeux-swiper-section .enjeux-card .card-text h3 {
    color: var(--dark-brown);
    opacity: 0.7;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

.enjeux-swiper .swiper-button-prev::after,
.enjeux-swiper .swiper-button-next::after {
    font-size: 16px;
}

.enjeux-swiper-section .swiper-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.enjeux-swiper-section .voir-plus-btn {
    color: #57253A;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.enjeux-swiper-section .voir-plus-btn:hover {
    text-decoration: underline;
}

.enjeux-swiper-section .navigation-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.enjeux-swiper-section .swiper-button-next,
.enjeux-swiper-section .swiper-button-prev {
    position: static;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #D4D2E3;
    color: #8d8ba7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 0px;
}

.enjeux-swiper-section .swiper-button-next::after,
.enjeux-swiper-section .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
    color: #5D5A88;
}


/* Values Section */

.values-section {
    background-color: #F1F2F2;
    padding: 45px 80px 10px;
    position: relative
}

.values-section .trace {
    position: absolute;
    left: -32px;
    top: 0;
    transform: scale(.8) translateY(-91%);
}

.values-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    padding: 0
}

.values-section .card {
    flex: 1 1 45%;
    max-width: 583px;
    text-align: left;
    border-radius: 30px;
    padding-bottom: 20px;
    background-color: transparent;
    border: 0
}

.values-section .card img {
    width: 100%;
    max-height: 290px;
    border-radius: 30px;
    display: block;
    object-fit: cover;
}

.values-section .card h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--dark-brown);
    margin: 35px 10px 15px 30px;
}

.values-section .card p {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin: 0 30px 0 35px;
    color: var(--text-dark);
}


/* Missions Section */

.missions-section {
    padding-top: 55px;
    background-color: white;
    padding: 50px 90px;
    position: relative;
}

.missions-section .trace {
    position: absolute;
    top: -83px;
    right: -39px;
    transform: scale(.75);
}

.missions-section .container {
    max-width: 1137px;
    padding: 0;
}

.missions-section .card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: white;
    gap: 55px;
    background: transparent;
    border: 0;
    padding: 0;
}

.missions-section .card.reverse {
    flex-direction: row-reverse !important;
    margin-top: 30px;
}

.missions-section .card-image {
    height: 261px;
    min-width: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    display: block;
}

.missions-section .card-text h2 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--dark-brown)
}

.missions-section .card-text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-dark)
}


/* Politique Section */

.politique-section {
    width: 100%;
    height: 600px;
    background: url("../images/politique-bg.webp") no-repeat center;
    background-size: cover;
}

.politique-section .container {
    max-width: 1300px;
    height: 600px;
    padding: 0;
    position: relative;
}

.politique-section .card {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 50px 0 40px 0;
    width: 525px;
    text-align: center;
    border: 2px solid white;
}

.politique-section .card .title {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--dark-brown);
    margin-bottom: 30px;
}

.politique-section .card .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: var(--text-dark);
    max-width: 427px;
    margin: 0 auto
}

.bio-section {
    width: 100%;
    padding: 50px 0 0px;
    background: #fff;
    position: relative;
}

.bio-section .trace {
    position: absolute;
    top: -3%;
    right: 2px;
    transform: scale(.75);
}

.bio-section .trace.bottom {
    position: absolute;
    bottom: 1%;
    left: 0;
    top: auto;
}

.bio-section .container {
    max-width: 1300px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 30px 0;
}

.bio-section .images-column {
    width: 560px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bio-section .images-column .img {
    min-width: 268px;
    border-radius: 30px;
    object-fit: cover;
}

.bio-section .images-column .img.top {
    height: 161px;
    margin-bottom: 20px;
}

.bio-section .images-column .img.bottom {
    height: 260px;
}

.bio-section .images-column .img-wrapper {
    width: 268px;
    height: 308px;
    position: relative;
    z-index: 0;
}

.bio-section .images-column .img-wrapper .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-section .images-column .img-wrapper::after {
    content: '';
    position: absolute;
    width: 193px;
    height: 188px;
    border-radius: 30px;
    background: var(--primary-gold);
    bottom: -20px;
    right: -20px;
    z-index: -1;
}

.bio-section .text-column {
    width: 50%;
    position: relative;
    z-index: 1;
}

.bio-section .text-column h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.bio-section .text-column p {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: var(--text-dark);
    margin-bottom: 30px;
    width: 524px;
}

/* Certifications Slider Section */

.certifications-slider-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 0;
    background: #F9F9F9;
    overflow: hidden;
}

.certifications-swiper {
    width: 100%;
    overflow: visible;
}

.certifications-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.certifications-swiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.certifications-swiper .swiper-slide img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.certifications-swiper .swiper-slide img:hover {
    transform: scale(1.1);
}

.certifications-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.certifications-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.certifications-nav:hover {
    background: var(--dark-brown);
    color: white;
    border-color: var(--dark-brown);
}

.certifications-nav-prev {
    left: 30px;
}

.certifications-nav-next {
    right: 30px;
}

@media (min-width: 1280px) and (max-width: 1400px) {
    .enjeux-section .container {
        max-width: 1200px;
    }
    .enjeux-section .trace {
        right: -5%;
    }
    .enjeux-swiper-section::before {
        width: calc((100vw - 1200px) / 2 + 500px + 30px - 100px);
    }
    .enjeux-swiper-section .container {
        max-width: 1200px;
    }
    .enjeux-swiper-section .enjeux-content {
        width: 500px;
    }
    .enjeux-swiper-section .enjeux-swiper-area {
        left: calc((100vw - 1200px) / 2 + 500px + 30px);
    }
    .values-section .container {
        max-width: 1200px;
    }
    .values-section .card {
        max-width: 530px;
    }
    .politique-section .container {
        max-width: 1200px;
    }
    .bio-section .container {
        max-width: 1200px;
    }
    .bio-section .trace {
        position: absolute;
        top: 2%;
        right: -77px;
        transform: scale(.6);
    }
    .bio-section .text-column {
        width: 45%;
    }
}

@media (min-width: 1025px) and (max-width: 1279px) {
    .hero-static .hero-caption {
        max-width: 900px;
    }
    .enjeux-section .container {
        max-width: 950px;
    }
    .enjeux-section .trace {
        top: -39%;
        right: -7%;
        transform: scale(.65);
    }
    .enjeux-section .enjeux-wrapper {
        flex-wrap: nowrap;
    }
    .enjeux-video-wrapper {
        flex: 1 1 500px;
    }
    .enjeux-section .enjeux-content {
        flex: 1 1 400px;
    }
    .enjeux-swiper-section::before {
        width: calc((100vw - 950px) / 2 + 400px + 30px - 100px);
    }
    .enjeux-swiper-section .container {
        max-width: 950px;
    }
    .enjeux-swiper-section .enjeux-content {
        width: 400px;
    }
    .enjeux-swiper-section .enjeux-swiper-area {
        left: calc((100vw - 950px) / 2 + 400px + 30px);
    }
    .values-section .container {
        max-width: 950px;
    }
    .values-section .trace {
        left: -57px;
        transform: scale(.65) translateY(-100%);
    }
    .values-section .card {
        max-width: 400px;
    }
    .missions-section .container {
        max-width: 950px;
    }
    .missions-section .trace {
        position: absolute;
        top: -144px;
        right: -77px;
        transform: scale(.5);
    }
    .missions-section .card-image {
        height: auto;
        width: 400px;
        min-width: unset;
    }
    .politique-section .container {
        max-width: 950px;
    }
    .bio-section {
        padding: 100px 0 0;
    }
    .bio-section .container {
        max-width: 950px;
    }
    .bio-section .trace {
        position: absolute;
        top: 0%;
        right: -30px;
        transform: scale(.85);
    }
    .bio-section .images-column {
        width: 500px;
        gap: 20px;
    }
    .bio-section .text-column {
        width: 430px;
    }
    .bio-section .text-column p {
        width: unset;
    }
    .bio-section .images-column .img {
        min-width: unset;
        width: 220px !important
    }
    .bio-section .images-column .img-wrapper::after {
        bottom: -15px;
        right: 25px;
    }
    .bio-section .certifications {
        gap: 25px;
    }
    .bio-section .certifications img {
        height: 90px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-static .hero-caption {
        max-width: 700px;
    }
    .enjeux-section {
        padding-top: 20px;
    }
    .enjeux-section .container {
        max-width: 750px;
    }
    .enjeux-section .enjeux-wrapper {
        flex-wrap: nowrap;
        gap: 25px;
    }
    .enjeux-video-wrapper {
        flex: 1 1 300px;
    }
    .enjeux-video-wrapper::after,
    .enjeux-video-wrapper::before {
        display: none;
    }
    .enjeux-section .video-thumbnail {
        height: 220px;
    }
    .enjeux-section .enjeux-content .title {
        font-size: 18px;
        margin-bottom: 18px;
    }
    .enjeux-section .enjeux-content .description {
        line-height: 120%;
    }
    .enjeux-section .enjeux-content {
        flex: 1 1 300px;
    }
    .enjeux-section .trace {
        top: -60%;
        right: -14%;
        transform: scale(.5);
    }
    .enjeux-swiper-section::before {
        width: calc((100vw - 750px) / 2 + 300px + 30px - 100px);
    }
    .enjeux-swiper-section .container {
        max-width: 750px;
    }
    .enjeux-swiper-section .enjeux-content {
        width: 300px;
    }
    .enjeux-swiper-section .enjeux-swiper-area {
        left: calc((100vw - 750px) / 2 + 300px + 30px);
    }
    .values-section {
        padding: 60px;
    }
    .values-section .container {
        max-width: 750px;
    }
    .values-section .trace {
        position: absolute;
        left: -35px;
        top: 0;
        transform: scale(.75) translateY(-75%);
    }
    .values-section .card {
        max-width: 300px;
    }
    .missions-section {
        padding: 60px;
    }
    .missions-section .container {
        max-width: 750px;
    }
    .missions-section .trace {
        position: absolute;
        top: -170px;
        right: -53px;
        transform: scale(.65);
    }
    .missions-section .card-image {
        height: auto;
        width: 300px;
        min-width: unset;
    }
    .missions-section .card-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .politique-section {
        height: 500px;
    }
    .politique-section .container {
        max-width: 750px;
        height: 500px;
    }
    .politique-section .card {
        padding: 35px;
        width: 400px;
    }
    .politique-section .card .description {
        font-size: 16px;
        margin-bottom: 0;
    }
    .bio-section {
        padding: 100px 0 0;
    }
    .bio-section .container {
        max-width: 750px;
    }
    .bio-section .trace {
        position: absolute;
        top: 0%;
        right: -30px;
        transform: scale(.85);
    }
    .bio-section .images-column {
        width: 300px;
        gap: 10px;
    }
    .bio-section .text-column {
        width: 370px;
    }
    .bio-section .text-column p {
        width: unset;
    }
    .bio-section .images-column .img {
        min-width: unset;
        width: 170px !important
    }
    .bio-section .images-column .img-wrapper::after {
        display: none;
    }
    .certifications-slider-section {
        padding: 40px 0;
    }
    .certifications-swiper .swiper-slide {
        padding: 0 30px;
    }
    .certifications-swiper .swiper-slide img {
        height: 80px;
    }
    .certifications-nav {
        width: 40px;
        height: 40px;
    }
    .certifications-nav-prev {
        left: 15px;
    }
    .certifications-nav-next {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .featured-content {
        position: relative;
        padding: 50px 0 0;
        width: 100vw;
        z-index: 1;
        background: none;
    }
    .featured-content::before {
        content: "";
        position: absolute;
        top: -200px;
        left: 0;
        right: 0;
        height: calc(100% + 200px);
        background: url(../images/bg-features-section-mobile.svg) no-repeat center center;
        background-size: cover;
        z-index: -1;
    }
    .hero-static {
        height: 750px;
        margin-top: -60px;
        margin-bottom: 90px;
    }
    .hero-static .hero-caption {
        bottom: -15%;
        max-width: 90%;
        padding: 20px 16px;
        font-size: 16px;
        text-align: center;
    }
    .hero-static .hero-overlay .hero-title {
        font-size: 36px;
        line-height: 120%;
    }
    .enjeux-section {
        padding-top: 40px;
        margin-top: 0;
    }
    .enjeux-section .trace {
        display: none;
    }
    .enjeux-section .container {
        max-width: 90%;
    }
    .enjeux-section .enjeux-wrapper {
        gap: 60px;
        flex-wrap: wrap-reverse;
    }
    .enjeux-section .enjeux-content {
        text-align: center;
    }
    .enjeux-section .enjeux-content .subtitle {
        margin-bottom: 15px;
    }
    .enjeux-section .enjeux-content .title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .enjeux-section .enjeux-content .description {
        line-height: 120%;
    }
    .enjeux-section .video-thumbnail {
        height: 175px;
    }
    .enjeux-video-wrapper::before {
        width: 82px;
        height: 82px;
        top: -10px;
        left: -10px;
    }
    .enjeux-video-wrapper::after {
        width: 103px;
        height: 103px;
        bottom: -10px;
        right: -10px;
    }
    .enjeux-swiper-section {
        padding: 40px 0 25px;
    }
    .enjeux-swiper-section::before {
        display: none;
    }
    .enjeux-swiper-section .enjeux-swiper {
        overflow: hidden;
    }
    .enjeux-swiper-section .enjeux-content {
        display: none;
    }
    .enjeux-swiper-section .container {
        max-width: 100%;
        min-height: unset;
        overflow: hidden;
    }
    .enjeux-swiper-section .enjeux-swiper-area {
        position: unset;
        top: unset;
        left: unset;
        right: unset;
        overflow: unset;
    }
    .enjeux-swiper .swiper-slide {
        border-radius: 0;
        border: none;
        width: 100% !important;
        max-height: 558px;
        margin-right: 0;
    }
    .enjeux-swiper-section .glass-overlay {
        background: rgba(255, 255, 255, 0.76);
        backdrop-filter: blur(12px);
        border: 2px solid white;
        border-radius: 30px;
        padding: 40px 25px;
        color: var(--text-dark);
        margin: 20px;
        font-weight: 500;
        font-size: 16px;
        line-height: 21px;
        text-align: center;
    }
    .enjeux-swiper-section .glass-overlay h3 {
        color: var(--dark-brown);
        opacity: 0.7;
        margin-bottom: 15px;
        font-family: "DM Sans", sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 22px;
        text-align: center;
    }
    .enjeux-swiper-section .glass-overlay .subtitle {
        color: var(--text-light);
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 14px;
        text-align: center;
    }
    .enjeux-swiper-section .swiper-pagination-bullet {
        background: #333;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        opacity: 1
    }
    .enjeux-swiper-section .swiper-pagination-bullet-active {
        opacity: 1;
        width: 18px;
        border-radius: 20px;
    }
    .enjeux-card {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .values-section .trace {
        display: none;
    }
    .values-slider .card {
        border: 0;
    }
    .values-slider .card-text {
        padding: 35px 35px 60px;
        background-color: #F1F2F2;
    }
    .values-slider .card-text h3,
    .values-slider .card-text h2 {
        font-weight: 700;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.2px;
        text-transform: uppercase;
        color: var(--dark-brown);
        margin-bottom: 20px;
    }
    .values-slider .card-text p {
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        color: var(--text-dark)
    }
    .values-slider .swiper-pagination {
        position: relative;
        margin-top: -50px;
        text-align: center;
        z-index: 1;
    }
    .values-slider .swiper-pagination-bullet {
        background: #333;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        opacity: 1
    }
    .values-slider .swiper-pagination-bullet-active {
        opacity: 1;
        width: 18px;
        border-radius: 20px;
    }
    .politique-section {
        margin-top: -60px;
        height: 480px;
    }
    .politique-section .container {
        max-width: 100%;
        height: 800px;
    }
    .politique-section .slide-inner {
        width: 100%;
        max-width: 100%;
    }
    .politique-section .card {
        position: absolute;
        top: 35.5%;
        left: 50%;
        padding: 40px 20px;
        width: 90%;
        right: unset;
        transform: translate(-50%, -50%);
    }
    .politique-section .card .title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .politique-section .card .description {
        font-weight: 400;
        max-width: unset;
        font-size: 16px;
        line-height: 22px;
        text-align: center;
        margin-bottom: 0;
    }
    .politique-section .swiper-pagination {
        bottom: 15%;
        left: 0;
        width: -webkit-fill-available;
    }
    .bio-section {
        padding: 50px 0 100px
    }
    .bio-section .trace {
        display: none;
    }
    .bio-section .container {
        max-width: 90%;
        flex-direction: column;
        gap: 30px
    }
    .bio-section .images-column {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    .bio-section .images-column .img {
        min-width: 160px;
        width: 160px;
    }
    .bio-section .images-column .img.top {
        height: 183px;
        margin-bottom: 10px;
    }
    .bio-section .images-column .img.bottom {
        height: 183px;
    }
    .bio-section .images-column .img-wrapper {
        width: 160px;
        height: 376px;
    }
    .bio-section .images-column .img-wrapper::after {
        display: none;
    }
    .bio-section .text-column {
        width: 100%;
    }
    .bio-section .text-column h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .bio-section .text-column p {
        font-size: 16px;
        line-height: 125%;
        margin-bottom: 30px;
        width: unset;
    }
    .certifications-slider-section {
        padding: 30px 0;
    }
    .certifications-swiper .swiper-slide {
        padding: 0 20px;
    }
    .certifications-swiper .swiper-slide img {
        height: 70px;
    }
    .certifications-nav {
        width: 36px;
        height: 36px;
    }
    .certifications-nav svg {
        width: 18px;
        height: 18px;
    }
    .certifications-nav-prev {
        left: 10px;
    }
    .certifications-nav-next {
        right: 10px;
    }
}

/* =========================================================
   RTL (arabe) — miroir de la section « enjeux » (carrousel)
   Texte à droite, cartes à gauche, fond gris à gauche.
   Scopé [dir="rtl"] : n'affecte pas la version FR/LTR.
   ========================================================= */
[dir="rtl"] .enjeux-swiper-section::before {
    right: auto;
    left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

[dir="rtl"] .enjeux-swiper-section .enjeux-swiper-area {
    right: calc((100vw - 1300px) / 2 + 590px + 30px);
    left: 0;
}

[dir="rtl"] .enjeux-swiper-section .swiper-slide {
    margin-right: 0;
    margin-left: 20px;
}

[dir="rtl"] .enjeux-swiper-section .enjeux-content,
[dir="rtl"] .enjeux-swiper-section .enjeux-content .subtitle {
    text-align: right;
}

[dir="rtl"] .enjeux-swiper-section .enjeux-card .card-text {
    text-align: right;
}

/* Flèches : boutons hors du conteneur Swiper -> glyphes non retournés
   automatiquement. On inverse les chevrons pour pointer dans le sens
   du défilement (‹ à gauche, › à droite). */
[dir="rtl"] .enjeux-swiper-section .swiper-button-prev::after {
    content: 'next';
}

[dir="rtl"] .enjeux-swiper-section .swiper-button-next::after {
    content: 'prev';
}

@media (min-width: 1280px) and (max-width: 1400px) {
    [dir="rtl"] .enjeux-swiper-section .enjeux-swiper-area {
        right: calc((100vw - 1200px) / 2 + 500px + 30px);
        left: 0;
    }
}

@media (min-width: 1025px) and (max-width: 1279px) {
    [dir="rtl"] .enjeux-swiper-section .enjeux-swiper-area {
        right: calc((100vw - 950px) / 2 + 400px + 30px);
        left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    [dir="rtl"] .enjeux-swiper-section .enjeux-swiper-area {
        right: calc((100vw - 750px) / 2 + 300px + 30px);
        left: 0;
    }
}
