:root {
    --cobalt: #051E1E;
    --grege: #FAFAF5;
    --citrus: #ffeb64;
    --citrus-hover: #e3dc30;
    --fushia: #E6BEFF;
    --fushia-200: rgba(230, 190, 255, 0.2);
    --celeste: #AAE6F0;
    --celeste-200: rgba(170, 230, 240, 0.2);
    --font-boost: "Rethink Sans", serif;
    --table-border-raidus: 15px;
}

/*    FONT IMPORTS    */

.h1 {
    font-size: 4.375rem;
    font-weight: 800;
    line-height: 70;
}

.h2 {
    font-size: 2.813rem;
    font-weight: 800;
    line-height: 45;
}

.h3 {
    font-size: 2.188rem;
    font-weight: 800;
    line-height: 35;
}

.h4 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 24;
}

/*    GLOBAL STYLES   */

/* Reset des styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rethink Sans", cursive;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .body {
        margin-top: 0 !important;
    }
}

img {
    width: 100%;
    height: auto;
}


.hidden {
    list-style-type: none;
   }
   
/*
li{
    list-style: none;
}
*/

/*_______________    NAVIGATION    _____________*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--grege);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 2;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    margin-left: 10em;
}

.nav-links a {
    color: var(--cobalt);
    text-decoration: none;
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--cobalt);
    background: none;
    border: none;
    cursor: pointer;
}

@media screen and (max-width: 992px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--grege);
        width: 100vw;
        height: fit-content;
        position: fixed;
        padding: 0;
    }

    .menu-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 80%;
        z-index: 2;
        background-color: var(--grege);
    }

    .logo img {
        margin-top: 10px;
        height: 50px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        background-color: var(--grege);
        position: fixed;
        top: -100vh;
        right: 0;
        width: 100vw;
        height: 100vh;
        padding: 20px;
        transition: top 0.3s ease-in-out;
        z-index: 1;
        margin: 0;
        justify-content: flex-start;
    }

    .nav-links.active {
        top: 70px;
    }

    .menu-toggle {
        display: block;
    }
}

/*____________    HERO     __________*/
.hero {
    margin-top: 50px;
    padding-top:50px;
}

.hero img {
    width: auto;
}

#hero {
    background-color: var(--grege);
}

/* Hero blanc pour les pages offres */
.hero-offres #hero {
    background-color: #fff;
}

@media screen and (max-width: 1200px) {
    h1.page-title {
        font-size: 45px;
    }
}

@media screen and (max-width: 992px) {
    h1.page-title {
        font-size: 35px;
    }

    #hero img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        margin-top: 45px;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero h1,
    .hero p,
    .hero a {
        text-align: center;
    }

    .hero a {
        width: 100%;
    }

    .hero img {
        width: 100%;
    }
}

/*____________    TRUSTPILOT RATE     __________*/
#trustpilot-rate {
    background: var(--fushia);
    margin-bottom: 1em;
}

#trustpilot-rate img {
    width: 100px;
    position:relative;
    top:3px;
}
/*____________    CTA  CALL   __________*/
#cta-call {
    margin: 1em 0 6em 0;
}

@media screen and (max-width: 992px) {
    .btn {
        font-size: 12px !important;
        padding: 5px 20px;
    }
}

@media screen and (max-width: 578px) {
    #cta-call .container {
        padding: 15px;
    }
}

/*____________    WHY US  __________*/
@media screen and (max-width: 578px) {
    #why-us .container {
        padding: 15px;
    }
    
    #why-us h3.section-title-sm {
        text-align: center;
    }
}


/*____________    STATS   __________*/
#stats {
    background-color: var(--cobalt);
    padding: 5em 0;
    margin: 50px 0;
}

.boost-counter {
    font-size: 55px;
    font-weight: 800;
    padding: 0;
    line-height: 1;
}

@media screen and (max-width: 768px) {

    /* stats  */
    #stats .grid {
        grid-template-columns: 1fr;
    }
}

/*____________    IMAGE    __________*/
.section_img_inner {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.section_img_inner img {
    max-width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 4000ms cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    -webkit-transition: .3s ease-in-out;
}

.section_img:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.photo-wrapper {
    margin-top: 150px;
    position: relative;
}




.icons-portrait {
    position: absolute;
    top: -150px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    height: 200px;
    width: 300px;
    gap: 10px;
}

.icons-portrait.right {
    right: 0px;
}
.icons-portrait.left {
    left: 0px;
}

.icon-portrait .like img {
    width: 0px;
}

.icon-portrait .like .animated img {
    width: 85px;
}

.icon-portrait .follower img {
    display: block;
    width: 102px;
}

.icon-portrait .etoile img {
    display: block;
    width: 84px;
}



/*_______________    METHOD    _____________*/

#method .instagram-icon {
    right: 70px;
    top: -20px;
}

.tiktok-icon {
    top: -50px;
    right: -15px;
}

.youtube-icon {
    top: 40px;
    right: -5px;
}

#method .linear-logo {
    margin-left: -100px;
}

#method h2 {
    margin-left: -10px;
}

.method-step {
    padding: 0 50px;
}

.method-step div {
    padding: 1.5em;
    margin-bottom: 1.5em;
}

.method-step .number {
    font-size: 45px;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    #method .grid {
        grid-template-columns: 1fr;
    }

    #method .relative img {
        overflow: hidden;
    }

    #method img.instagram-icon,
    #method img.tiktok-icon,
    #method img.youtube-icon {
        width: 75px;
    }

    .method-step div {
        flex-direction: column;
    }
}

@media screen and (max-width: 578px) {
    .method-step {
        padding: 0 20px;
    }
}

/*_______________    CLIENTS    _____________*/
#clients {
    background: var(--grege);
    margin: 50px 0 0 0;
    padding: 100px 0;
}

#clients a.btn-yellow {
    height: fit-content;
}

#clients-logo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
}

#clients-logo div {
    display: flex;
    justify-content: center;
    align-items: center;
}

#clients-logo div img {
    width: 125px;
    height: auto;
}

@media screen and (max-width: 992px) {

    /*  clients  */
    #clients-logo {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    #proof .flex-row {
        flex-direction: column;
    }

    #proof .flex-row .btn.btn-yellow {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    #clients-logo {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 578px) {
    #clients #proof .flex.flex-row {
        flex-direction: column;
    }

    #clients #proof .card-title {
        margin-bottom: 25px;
    }
}

/* Logo Carousel Styles */
.logo-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2em 0; 
    background: var(--grege); 
    margin-top: 2em; 
}

.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px; 
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--grege) 0%, rgba(250, 250, 245, 0) 100%); 
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--grege) 0%, rgba(250, 250, 245, 0) 100%); 
}

.logo-carousel {
    display: flex;
    width: calc(200px * 16); 
    animation: scroll 30s linear infinite;
}

.logo-item {
    flex: 0 0 200px; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px; 
    box-sizing: border-box;
}

.logo-item img {
    max-width: 100%;
    height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 8)); /* Scroll distance for original set */
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .logo-item {
        flex: 0 0 150px; /* Smaller width on smaller screens */
        padding: 0 20px;
    }
    .logo-carousel {
        width: calc(150px * 16);
        animation-duration: 25s; /* Adjust speed if needed */
    }
    .logo-item img {
        height: 50px; /* Retour à la taille d'origine pour mobile */
    }
    @keyframes scroll {
        100% {
            transform: translateX(calc(-150px * 8));
        }
    }
    .logo-carousel-wrapper::before,
    .logo-carousel-wrapper::after {
        width: 50px;
    }
}

@media screen and (max-width: 480px) {
    .logo-item {
        flex: 0 0 120px; /* Even smaller width */
        padding: 0 15px;
    }
    .logo-carousel {
        width: calc(120px * 16);
        animation-duration: 20s; /* Adjust speed */
    }
     @keyframes scroll {
        100% {
            transform: translateX(calc(-120px * 8));
        }
    }
}


/*_______________    SERVICES    _____________*/
.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-header .number {
    font-size: 25px;
    color: #fff;
    font-weight: 200;
    background: var(--cobalt);
    border-radius: 50px;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    top: -30px;
    left: 30px;
}

.service-card-header .picto {
    top: -40px;
    right: 40px;
}

.service-card-header img {
    background: var(--fushia);
    padding: 5px;
    border-radius: 50px;
}

@media screen and (max-width: 578px) {
    #services {
        padding: 4em 15px;
    }
}

/*_______________    PRICING    _____________*/

.absolute-price {
    position: absolute;
    bottom: -100px;
    text-align: center;
    width: 100%;
    left: 0;
    right: 0;
}

.pricing-card-header {
    text-align: center;
    border-radius: 50px;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    top: -25px;
    left: 0;
    right: 0;
}

.pricing-card-header span {
    padding: 5px 30px;
    border-radius: 50px;
}

.pricing-card .price {
    border: 1px solid var(--celeste);
    padding: 5px 30px;
    border-radius: 50px;

}

.pricing-card .price-fushia {
    border: 1px solid var(--fushia);
}

@media screen and (max-width: 992px) {
    #pricing .flex.flex-row {
        flex-direction: column;
    }
}

@media screen and (max-width: 764px) {
    #pricing .flex.flex-row {
        flex-direction: column;
    }
}

@media screen and (max-width: 578px) {
    #pricing {
        padding: 15px;
    }

    #pricing .flex.flex-row {
        flex-direction: column;
    }

    #pricing .pricing-card {
        padding: 1em;
    }

    #pricing .pricing-card .price {
        font-size: 18px;
        bottom: -19px;
    }
}



/*_______________    FOUNDER    _____________*/
#founder .grid.grid-cols-3 .rounded-lg {
    border: 2px solid var(--cobalt);
}

@media screen and (max-width: 992px) {
    #founder .grid.grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 578px) {
    #founder div.px-3 {
        padding: 15px;
    }
}

/*_______________    FAQ    _____________*/
.accordion .accordion-item {
    border: 1px solid var(--grege);
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
    font-size: 24px;
    padding: 20px;
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: 1px solid;
    border-radius: 50px;
    /* padding: 10px; */
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 18px;
    left: 10px;
    width: 19px;
    height: 1px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 10px;
    left: 19px;
    width: 1px;
    height: 16px;
    background: currentColor;
}

.accordion button[aria-expanded=true] {
    color: #03b5d2;
}

.accordion button[aria-expanded=true] .icon::after {
    width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: fit-content;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    padding: 0 20px;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}

@media screen and (max-width: 992px) {
    #faq .accordion-item .accordion-title {
        font-size: 18px;
        padding-left: 10px;
        line-height: 1.3;
        hyphens: auto;
    }

    #faq .accordion-content p {
        font-size: 14px;
    }

    #faq .accordion-item button {
        padding-right: 60px;
    }
    
    .accordion button .accordion-title {
        font-size: 18px;
        padding: 15px;
    }
}

@media screen and (max-width: 578px) {
    #faq {
        padding: 50px 15px;
    }

    #faq .accordion-item .accordion-title {
        font-size: 14px;
        padding-left: 10px;
        line-height: 1.3;
    }

    #faq .accordion-item button {
        padding-right: 50px;
        padding-left: 10px;
    }
    
    .accordion button .icon {
        right: 10px;
        width: 30px;
        height: 30px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .accordion button .icon::before {
        top: 14px;
        left: 7px;
        width: 15px;
    }
    
    .accordion button .icon::after {
        top: 7px;
        left: 14px;
        height: 14px;
    }
    
    .accordion button .accordion-title {
        font-size: 14px;
        padding: 12px 10px;
    }

    #faq .accordion-content p {
        font-size: 14px;
    }

    #faq .accordion button[aria-expanded=true]+.accordion-content {
        max-height: fit-content;
    }
}

@media screen and (max-width: 480px) {
    .accordion button .accordion-title {
        font-size: 13px;
        padding: 10px 5px;
        line-height: 1.2;
    }
    
    .accordion button {
        padding: 0.5em 0;
    }
    
    .accordion .accordion-content {
        padding: 0 10px;
    }
    
    .accordion .accordion-content p {
        margin: 1em 0;
    }
    
    .accordion button .icon {
        right: 5px;
        width: 25px;
        height: 25px;
    }
    
    .accordion button .icon::before {
        top: 12px;
        left: 6px;
        width: 13px;
    }
    
    .accordion button .icon::after {
        top: 6px;
        left: 12px;
        height: 12px;
    }
}



/*_______________    FOOTER    _____________*/
#footer a {
    text-decoration: none;
    color: var(--cobalt);
}

#footer .logo a {
    width: 80vw;
}

#footer .logo a img {
    width: auto;
}

@media screen and (max-width: 992px) {
    #footer .container {
        max-width: 95vw;
    }

    #footer .grid.grid-cols-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}


/*_____   Button   _____*/
a.btn {
    text-decoration: none;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #797979;
    -webkit-transition: ease-out 0.4s;
    -moz-transition: ease-out 0.4s;
    transition: ease-out 0.4s;
}

.btn {
    padding: 5px 50px;
    border-radius: 25px;
    width: fit-content;
    font-size: 16px;
}

.btn-yellow.slide_diagonal:hover {
    color: #fff;
    box-shadow: inset 400px 50px 0 0 var(--cobalt);
}

.btn-celeste.slide_diagonal {
    transition: all 0.6s ease;
}

.btn-celeste.slide_diagonal:hover {
    color: #fff;
    box-shadow: inset 400px 50px 0 0 var(--cobalt);
}

.btn-fushia.slide_diagonal {
    transition: all 0.6s ease;
}

.btn-fushia.slide_diagonal:hover {
    color: #fff;
    box-shadow: inset 400px 50px 0 0 var(--cobalt);
}

.btn.btn-yellow {
    color: #333333;
    background: var(--citrus);
}

.btn.btn-yellow:hover {
    background: var(--citrus-hover);
}

.btn.btn-black {
    color: var(--grege);
    background: var(--cobalt);
    margin: auto;
}

.btn-black.slide_diagonal:hover {
    color: #fff;
    box-shadow: inset 400px 50px 0 0 var(--fushia);
}


@media screen and (max-width: 578px) {
    .btn {
        padding: 12px 40px !important;
        border-radius: 25px;
        width: fit-content;
        font-size: 16px;
        min-width: 200px;
    }
    
    /* Styles spécifiques pour les boutons btn-yellow sur mobile */
    .btn.btn-yellow {
        font-size: 18px !important;
        font-weight: 600;
        padding: 14px 45px !important;
        min-width: 220px;
        line-height: 1.2;
    }
    
    /* Styles pour les boutons btn-yellow avec effet slide_diagonal sur mobile */
    .btn.btn-yellow.slide_diagonal {
        font-size: 18px !important;
        font-weight: 600;
        padding: 14px 45px !important;
        min-width: 220px;
        line-height: 1.2;
    }
}

/* Styles pour les écrans très petits (moins de 480px) */
@media screen and (max-width: 480px) {
    .btn.btn-yellow,
    .btn.btn-yellow.slide_diagonal {
        font-size: 16px !important;
        padding: 12px 35px !important;
        min-width: 200px;
    }
}

/*_____   Title   _____*/
.page-title {
    font-weight: 800;
    font-size: 69px;
    line-height: 1;
    z-index: 0;
}

.section-title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1;
}

.section-title-sm {
    font-weight: 800;
    font-size: 35px;
    line-height: 1;
}

.card-number {
    background-color: var(--citrus);
    height: 65px;
    width: 65px;
    font-size: 25px;
    padding: 15px;
    border-radius: 50px;
}

.card-icones {
    display: flex;
    justify-content: space-between;
}

.card-icon img {
    width: 60px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width: 992px) {

    .section-title-sm br,
    .section-title br {
        display: none;
    }
}

@media screen and (max-width: 578px) {
    .section-title {
        font-size: 25px;
    }

    .section-title-sm {
        font-size: 25px;
    }

    .section-title-sm br,
    .section-title br {
        display: none;
    }
}


/* Styles pour les petits écrans */
@media (max-width: 768px) {

    /*  why us  */
    #why-us .grid {
        grid-template-columns: 1fr;
    }

    /* general  */
    .page-title {
        font-size: 50px;
    }

    .section-title {
        font-size: 35px;
    }
}



/*------  SURLIGNAGE FEUTRE   -----*/
/* Élément à animer */
.anim-highlight {
    position: relative;
    background-color: transparent;
    z-index: 0;
    display: inline-block;
}

/* Surlignage initial, invisible */
.anim-highlight::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 100%;
    transform: rotate(-2deg);
    z-index: -1;
    background-color: transparent;
    /* sécurité */
}

/* Quand WOW.js ajoute .highlighted : animation déclenchée */
.highlighted.anim-highlight::before {
    animation: highlight 2s forwards;
}

/* Variantes de couleurs */
.anim-highlight.citrus::before {
    background-color: var(--citrus);
}

.anim-highlight.fushia::before {
    background-color: var(--fushia);
}

.anim-highlight.celeste::before {
    background-color: var(--celeste);
}

.anim-highlight.white::before {
    background-color: #fff;
}

/* Animation de surlignage */
@keyframes highlight {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/*------  SURLIGNAGE CRAYON   -----*/
.scribble-underline {
    position: relative;
    z-index: 0;
    transform: rotate(15deg);
}

.scribble-underline:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 10px;
    background: url(".boostads-main/boostads/assets/images/line1.svg") repeat-x;
    background-size: contain;
    transform: rotate(-2deg);
    animation: underline 0.2s forwards;
}

@keyframes underline {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .short-logo {
        display: none;
    }
}

/*___________     TABLEAU    ________*/
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    text-align: left;
    border-radius: var(--table-border-raidus);
}

th,
td {
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

table thead {
    border-radius: var(--table-border-raidus);
}

thead {
    height: 80px;
    border-radius: var(--table-border-raidus);
}

thead tr {
    border-radius: var(--table-border-raidus);
}

thead tr th {
    text-align: center;
}

thead tr th:nth-child(1) {
    border-radius: var(--table-border-raidus) 0 0 0;
}

thead tr th:last-child {
    border-radius: 0 var(--table-border-raidus) 0 0;
}

tbody tr {
    text-align: center;
    height: 80px;
}

tbody tr td:nth-child(1) {
    text-align: left;
    padding-left: 35px;
}

tbody tr:last-child td:first-child {
    border-radius: 0 0 0 var(--table-border-raidus);
}

tbody tr:last-child td:last-child {
    border-radius: 0 0 var(--table-border-raidus) 0;
}

tbody tr:nth-child(even) {
    background-color: var(--celeste-200);
}

tbody tr:hover {
    background-color: var(--celeste);
}

/*______________     CARD PAGE RESULTAT      ___________*/
.card {
    position: relative;
    height: 250px;
    background: #fff;
    display: flex;
    width: 100%;
    margin: 30px 0;
    border-radius: 10px;
    border: none;
    box-shadow: 1px 5px 30px rgba(0, 0, 0, 0.1)
}

.card:hover {
    cursor: pointer;
    box-shadow: 1px 5px 35px rgba(0, 0, 0, 0.1);
}

.card .imgBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: #FDCEB9;*/
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    border-radius: 10px;
}

.card:hover .imgBx {
    width: 100px;
    height: 100px;
    left: -50px;
    top: calc(50% - 75px);
    transition: 0.5s ease-in-out;
    /*background: #ff0057;*/
    /*background: #7897AB;*/
}

.card:hover .imgBx:before {
    font-size: 1em;
}

.card .imgBx:before {
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 5em;
    color: rgba(255, 255, 255, .5);
    font-weight: 700;
    z-index: 2;
    transition: 0.5s ease-in-out;
}

.card .imgBx img {
    width: auto;
    height: 100%;
    transition: 0.5s ease-in-out;
    transform: scale(0.8);
}

.card:hover .imgBx img {
    transition: 0.5s ease-in-out;
}

.card .content {
    position: absolute;
    left: 0;
    width: calc(100% - 25px);
    height: fit-content;
    padding: 2em 0.5em 2em 4em;
    color: #000;
}

.card .content .degree span {
    font-size: 16px;
    /*background: #7897AB;*/
    background: var(--cobalt);
    color: #fff;
    padding: 5px 15px;
}

.card .content .course_name {
    display: flex;
    margin-top: 0.8em;
    font-size: 1em;
    font-weight: 500;
}

.card .content .course_name span {
    padding-right: 15px;
}

/*______________     CARD PAGE RESULTAT      ___________*/
.form {
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form {
    background-color: #f7f7f7;
    position: relative;
}

.contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--fushia);
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

form {
    padding: 2.3rem 2.2rem;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.input-container {
    position: relative;
    margin: 1rem 0;
}

.input {
    font-family: 'Poppins', cursive;
    width: 100%;
    outline: none;
    /*border: 2px solid #fafafa;*/
    border: 2px solid rgba(0, 0, 0, 0.2);
    background: none;
    padding: 0.6rem 1.2rem;
    /*color: #fff;*/
    color: #1e1e1e;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: 0.3s;
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 4px;
    resize: none;
    overflow-y: auto;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #1e1e1e;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    background: #fff;
}

.input:focus + label,
.input:not(:placeholder-shown) + label {
    top: -0.7em;
    left: 10px;
    font-size: 0.75rem;
    color: var(--cobalt);
    background: #fff;
    padding: 0 0.3em;
    z-index: 1001;
}

.input {
    background: #fff;
}

.input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.submit_btn_box {
    position: relative;
    margin: 3em auto;
}

.submit_btn_box span:hover {
    cursor: pointer;
}

.submit_btn {
    padding: 0.6rem 1.3rem;
    /*background-color: #fff;*/
    /*border: 2px solid #fafafa;*/
    background-color: #f7f7f7;
    border: none;
    font-size: 0.95rem;
    font-family: 'Poppins', cursive;
    font-weight: 600;
    /*color: #1abc9c;*/
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.input-container span:before,
.input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    /*background-color: #1abc9c;*/
    background-color: var(--fushia);
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.icon {
    width: 28px;
    margin-right: 0.7rem;
}

.social-media {
    padding: 2rem 0 0 0;
}

.social-media p {
    color: #333;
}

.social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    /*background: linear-gradient(45deg, #1abc9c, #149279);*/
    background-color: #7897AB;
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.05);
}

.square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}


@media screen and (max-width: 850px) {
    .sm-d-none {
        display: none !important;
    }

    .lg-d-none {
        display: block !important;
    }
}

@media screen and (min-width: 851px) {
    .sm-d-none {
        display: block !important;
    }

    .lg-d-none {
        display: none !important;
    }
}

@media (max-width: 850px) {
    .form {
        grid-template-columns: 1fr;
    }

    .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }

    .text {
        margin: 1rem 0 1.5rem 0;
    }

    .social-media {
        padding: 1.5rem 0 0 0;
    }
}

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

    .contact-info:before {
        display: none;
    }

    .square,
    .big-circle {
        display: none;
    }

    form,
    .contact-info {
        padding: 1.7rem 1.6rem;
    }

    .text,
    .information,
    .social-media p {
        font-size: 0.8rem;
    }

    .title {
        font-size: 1.15rem;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .icon {
        width: 23px;
    }

    .input {
        padding: 0.45rem 1.2rem;
    }

    .submit_btn {
        padding: 0.45rem 1.2rem;
    }
}

html {
    scroll-behavior: smooth;
}


/*CUSTOM */

/* Ajoute ces classes si elles n'existent pas déjà ou ajuste les valeurs */

.text-sm {
    font-size: 14px;
    /* Taille intermédiaire si besoin */
}

.mr-2 {
    margin-right: 0.5rem;
    /* 8px si la base est 16px */
}

.ml-1 {
    margin-left: 0.25rem;
    /* 4px */
}

.mb-1 {
    margin-bottom: 0.25rem;
    /* 4px */
}

.py-1 {
    padding-top: 0.25rem;
    /* 4px */
    padding-bottom: 0.25rem;
    /* 4px */
}

.px-2 {
    padding-left: 0.5rem;
    /* 8px */
    padding-right: 0.5rem;
    /* 8px */
}

.rounded {
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.border-t {
    border-top-width: 1px;
}

/* Définit une couleur de bordure grise légère si elle n'est pas déjà définie */
.border-gray-200 {
    border-color: #e5e7eb;
    /* Exemple de gris clair */
    /* Ou utilise une variable si tu en as une : border-color: rgba(var(--cobalt-rgb), 0.1); */
}

/* Ajoute des transitions pour les effets de survol si souhaité */
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    /* Durée standard, ajuste si besoin */
}

.duration-200 {
    transition-duration: 200ms;
}

.hover\:text-celeste:hover {
    color: var(--celeste);
}

/* Classe pour s'assurer que flex-grow fonctionne si nécessaire */
.flex-grow {
    flex-grow: 1;
}

/* S'assurer que les images dans la carte ne dépassent pas */
.card-boostads img {
    display: block;
    /* Enlève l'espace blanc potentiel sous l'image */
}

/* Classe pour flex-wrap si elle manque */
.flex-wrap {
    flex-wrap: wrap;
}

/* Classe de base pour la carte pour des styles spécifiques si besoin */
.card-boostads {
    border: 1px solid #eee;
    /* Ajoute une bordure très légère si l'ombre seule ne suffit pas */
}

/* Styles additionnels potentiels si non présents dans ton CSS */
.object-cover {
    object-fit: cover;
}

.h-64 {
    height: 16rem;
}

/* 256px */
.lg\:col-span-2 {
    grid-column: span 2 / span 2;
}

.lg\:col-span-1 {
    grid-column: span 1 / span 1;
}

.sticky {
    position: sticky;
}

.list-disc {
    list-style-type: disc;
}

.list-inside {
    list-style-position: inside;
}

.shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

/* Exemple */
.text-link-color {
    color: #3B82F6;
}

/* Exemple de couleur pour lien */
.hover\:underline:hover {
    text-decoration: underline;
}

.space-y-1> :not([hidden])~ :not([hidden]) {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.space-y-2> :not([hidden])~ :not([hidden]) {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.space-y-3> :not([hidden])~ :not([hidden]) {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.space-y-4> :not([hidden])~ :not([hidden]) {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ml-0 {
    margin-left: 0;
}

.ml-4 {
    margin-left: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.md\:mb-0 {
    margin-bottom: 0;
}

.md\:mb-8 {
    margin-bottom: 2rem;
}

/* Assure-toi que tes breakpoints sont corrects */
.md\:mb-10 {
    margin-bottom: 2.5rem;
}

.md\:p-6 {
    padding: 1.5rem;
}

.md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.p-relative {
    position: relative;
}

.p-top-100 {
    padding-top: 100px;
}

/* Vérifie si cette classe est utilisée comme prévu */
.bg-white {
    background-color: #fff;
}

.rounded-lg {
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.md\:flex-row {
    flex-direction: row;
}

/* Assure-toi que tes breakpoints sont corrects */
.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Ajuste max-width et padding */
.page-title {
    font-size: 69px;
    font-weight: 800;
    line-height: 1;
}

/* Utilise tes classes existantes */
.text-center {
    text-align: center;
}

/* Classe pour le sous-titre du hero - aligné à gauche sur desktop, centré sur mobile */
.hero-subtitle {
    text-align: left;
}

@media (max-width: 768px) {
    .hero-subtitle {
        text-align: center;
    }
}

.anim-highlight.celeste::before {
    background-color: var(--celeste, #AAE6F0);
}

/* Assure-toi que var(--celeste) est défini */
.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.text-lg {
    font-size: 1.125rem;
}

/* 18px */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Assure-toi que tes breakpoints sont corrects */
.gap-6 {
    gap: 1.5rem;
}

.md\:gap-8 {
    gap: 2rem;
}

.text-black {
    color: #000;
}

/* Ou var(--cobalt) ? */
.text-base {
    font-size: 1rem;
}

/* 16px */
.font-normal {
    font-weight: 400;
}

.border-l-4 {
    border-left-width: 4px;
}

.border-yellow {
    border-color: var(--citrus, #ffeb64);
}

/* Assure-toi que var(--citrus) est défini */
.italic {
    font-style: italic;
}

.text-sm {
    font-size: 0.875rem;
}

/* 14px */
.font-semibold {
    font-weight: 600;
}

.hidden {
    display: none;
}

.md\:block {
    display: block;
}

/* Assure-toi que tes breakpoints sont corrects */
.block {
    display: block;
}

.w-full {
    width: 100%;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.h-full {
    height: 100%;
}

.opacity-80 {
    opacity: 0.8;
}

.bg-cobalt {
    background-color: var(--cobalt, #051E1E);
}

.bg-grege {
    background-color: var(--grege, #FAFAF5);
}

.bg-yellow {
    background-color: var(--citrus, #ffeb64);
}

.btn {
    padding: 5px 50px;
    border-radius: 25px;
    width: fit-content;
    font-size: 16px;
}

/* Ajuste selon ta classe .btn */
.btn-black {
    color: var(--grege, #FAFAF5);
    background: var(--cobalt, #051E1E);
    margin: auto;
}



.nav-links li a {
    text-decoration: none;
    /* Pas de soulignement par défaut */
    position: relative;
    /* Nécessaire pour positionner le pseudo-élément */
    padding-bottom: 5px;
    /* Espace pour la ligne en dessous */
}

.nav-links li .outline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #FFC107;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.nav-links li .outline:hover::after {
    width: 100%;
}

/* Style pour les liens actifs */
.nav-links li .outline.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #FFC107;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
    z-index: -1;
}

/* Empêche les liens de dépasser de la section dans les études de cas */
.bg-grege ul li a {
  word-break: break-all;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .bg-grege ul li a {
    font-size: 14px;
  }
}

/* Styles pour les listes dans les mentions légales */
.mentions-legales ul {
    list-style-type: none;
    padding-left: 40px;
    margin-left: 20px;
}

.mentions-legales ul li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .section-title-sm.text-center {
      display: block;
      margin-top: 30px;
      width: 100%;
    }
    .section-title-sm.text-center .anim-highlight {
      display: inline-block;
    }
}

/* Style pour les cartes case studies */
#etudes-de-cas .card-boostads,
#etudes-de-cas .card-boostads *,
#etudes-de-cas .card-boostads *:not(svg) {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
}
/* Suppression du style WebKit */
a:-webkit-any-link {
    text-decoration: none !important;
}

/* Suppression du style de survol */
a:hover {
    text-decoration: none !important;
}

/* Inverse l'ordre des colonnes sur mobile pour .reverse-mobile */
@media (max-width: 767px) {
  .reverse-mobile {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .reverse-mobile > * {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .responsive-table {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    font-size: 1rem;
  }
  .responsive-table thead tr {
    display: flex;
    background: transparent;
    border: none;
  }
  .responsive-table thead th {
    flex: 1 1 33%;
    text-align: center;
    color: #181c20;
    background: transparent;
    border: none;
    font-size: 1.1em;
    padding: 18px 0 12px 0;
    font-weight: 700;
  }
  .responsive-table tbody tr {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
    padding: 0 0.5em;
  }
  .responsive-table td {
    flex: 1 1 33%;
    text-align: left;
    color: #181c20;
    background: transparent;
    border: none;
    padding: 18px 0;
    font-size: 0.98em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .responsive-table td:nth-child(2),
  .responsive-table td:nth-child(3) {
    justify-content: center;
  }
  .responsive-table i.fa-check-circle,
  .responsive-table i.fa-xmark,
  .responsive-table i.fa-question-circle {
    background: none;
    border-radius: 50%;
    font-size: 1.7em;
    padding: 2px;
  }
  .responsive-table td:first-child {
    font-size: 0.71em;
    font-weight: 500;
    text-align: left;
    justify-content: flex-start;
    color: #181c20;
    padding-left: 10px;
    padding-right: 16px;
    line-height: 1.5;
    word-break: break-word;
    max-width: 180px;
  }
  .responsive-table td {
    align-items: flex-start;
  }
  .responsive-table {
    border-radius: 18px;
    overflow: hidden;
  }
}

/* Dropdown menu for navbar */
.nav-links li.dropdown {
    position: relative;
}

/* Dropdown arrow (desktop) - Chevron pointant vers le haut */
.dropdown-arrow {
    display: inline-block;
    margin-left: 8px;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--cobalt);
    border-bottom: 2px solid var(--cobalt);
    transform: rotate(-135deg); /* Pointant vers le haut (^) */
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.nav-links li.dropdown:hover > .dropdown-toggle .dropdown-arrow,
.nav-links li.dropdown:focus-within > .dropdown-toggle .dropdown-arrow {
    transform: rotate(45deg); /* Pointant vers le bas (v) */
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--grege);
    box-shadow: 0 8px 24px rgba(5,30,30,0.10);
    border-radius: 15px;
    padding: 8px 0 0.4em 0;
    margin-top: -5px;
    z-index: 10;
    pointer-events: auto;
    list-style: none;
}

.nav-links .dropdown-menu li {
    position: static;
}

.nav-links .dropdown-menu li {
    list-style: none;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 0.5em 1.2em;
    color: var(--cobalt);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    position: relative;
    overflow: hidden;
}

.nav-links .dropdown-menu a::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: var(--citrus);
    border-radius: 2px;
    transition: width 0.25s cubic-bezier(0.4,0,0.2,1), left 0.25s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
    transform: translateX(-50%);
}

.nav-links .dropdown-menu a:hover::after {
    width: 80%;
}

.nav-links li.dropdown:hover > .dropdown-menu,
.nav-links li.dropdown:focus-within > .dropdown-menu,
.nav-links li.dropdown .dropdown-menu:hover,
.nav-links li.dropdown .dropdown-menu:hover .dropdown-submenu:hover .dropdown-submenu-list {
    display: block;
}

/* Sous-menu Social Ads */
.dropdown-submenu {
    position: static;
}

.submenu-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.submenu-arrow {
    margin-left: 8px;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.dropdown-submenu:hover .submenu-arrow {
    transform: translateX(3px);
}

.dropdown-submenu-list {
    display: none;
    position: fixed;
    min-width: 200px;
    background: var(--grege);
    box-shadow: 0 8px 24px rgba(5,30,30,0.15);
    border-radius: 0 8px 8px 0;
    padding: 8px 0 0.4em 0;
    z-index: 1001;
    list-style: none;
    pointer-events: auto;
}

.dropdown-submenu-list:hover {
    box-shadow: 0 8px 24px rgba(5,30,30,0.15);
}

/* Zone invisible pour faciliter la navigation entre les menus */
.dropdown-submenu::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    width: 20px;
    height: 100%;
    z-index: 1000;
    background: transparent;
}

/* S'assurer que le menu principal reste ouvert */
.nav-links li.dropdown .dropdown-menu:hover,
.nav-links li.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-submenu-list li {
    list-style: none;
}

.dropdown-submenu-list a {
    display: block;
    padding: 0.5em 1.2em;
    color: var(--cobalt);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.dropdown-submenu-list a:hover {
    background: rgba(5,30,30,0.05);
}

.dropdown-submenu-list a::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: var(--citrus);
    border-radius: 2px;
    transition: width 0.25s cubic-bezier(0.4,0,0.2,1), left 0.25s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
    transform: translateX(-50%);
}

.dropdown-submenu-list a:hover::after {
    width: 80%;
}

@media (max-width: 992px) {
    .nav-links .dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        min-width: 100%;
        border-radius: 0;
        background: var(--grege);
        max-height: none;
    }
    .nav-links .dropdown-menu a {
        padding: 0.8em 1.2em;
        font-size: 0.95rem;
    }
    
    .dropdown-submenu-list {
        display: none;
        position: static;
        box-shadow: none;
        margin-left: 0;
        margin-top: 0;
        padding-left: 1.5em;
        background: rgba(5,30,30,0.05);
        border-radius: 0;
        min-width: auto;
        width: 100%;
    }
    
    .dropdown-submenu.active .dropdown-submenu-list {
        display: block;
    }
    
    .dropdown-submenu-list a {
        font-size: 0.9rem;
        padding: 0.7em 1.2em;
        white-space: normal;
    }
    
    .submenu-arrow {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }
    
    .dropdown-submenu.active .submenu-arrow {
        transform: rotate(-90deg);
    }
}

.badge-ressource {
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 2;
    display: inline-block;
    padding: 0.5em 1em;
    border:1px solid var(--cobalt);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-transform: uppercase;
}
.badge-formation {
    background: var(--celeste);
    color: var(--cobalt);
}
.badge-checklist {
    background: var(--fushia);
    color: var(--cobalt);
}
.badge-quizz {
    background: var(--citrus);
    color: var(--cobalt);
}
.ressource-img {
    width: 100%;
    height: 210px;
    background: #f4f4f4;
    border-radius: 18px 18px 0 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.ressource-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    display: block;
}
.card-boostads {
    border-radius: 18px;
}
.btn-celeste {
    background-color: var(--celeste);
    color: var(--cobalt);
    border: 2px solid var(--celeste);
    transition: all 0.3s ease;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    transform: scale(0.95);
    cursor: pointer;
}
.btn-celeste:hover {
    background-color: var(--celeste-200);
    color: var(--cobalt);
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(170, 230, 240, 0.3);
}
.btn-fushia {
    background-color: var(--fushia);
    color: var(--cobalt);
    border: 2px solid var(--fushia);
    transition: all 0.3s ease;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    transform: scale(0.95);
    cursor: pointer;
}
.btn-fushia:hover {
    background-color: var(--fushia-200);
    color: var(--cobalt);
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(230, 190, 255, 0.3);
}
@media (max-width: 768px) {
    #ressources .grid {
        grid-template-columns: 1fr;
    }
    .card-boostads {
        margin-bottom: 2rem;
    }
    .badge-ressource {
        left: 50%;
        transform: translateX(-50%);
        top: 12px;
    }
    .ressource-img {
        height: 160px;
        border-radius: 18px 18px 0 0;
    }
    .ressource-img img {
        border-radius: 18px 18px 0 0;
    }
}

/* MODALE NEWSLETTER */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}
.modal-newsletter {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-width: 420px;
  width: 90vw;
  padding: 2.5rem 2rem 2rem 2rem;
  position: relative;
  animation: modalFadeIn 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 1010;
  text-align: center;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-newsletter .close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  z-index: 1020;
  transition: color 0.2s;
}
.modal-newsletter .close-modal:hover {
  color: var(--cobalt);
}
@media (max-width: 600px) {
  .modal-newsletter {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
  }
}

/* MODALE NEWSLETTER - BOUTONS */
.modal-newsletter .modal-btns {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.modal-newsletter .btn {
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1 1 0;
  min-width: 0;
  padding: 0.8em 0;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.modal-newsletter .btn-celeste {
  background: var(--celeste);
  color: var(--cobalt);
  border: 2px solid var(--celeste);
}
.modal-newsletter .btn-celeste:hover {
  background: #fff;
  color: var(--celeste);
  border: 2px solid var(--celeste);
}
.modal-newsletter .btn-outline {
  background: #fff;
  color: var(--cobalt);
  border: 2px solid var(--cobalt);
}
.modal-newsletter .btn-outline:hover {
  background: var(--celeste-200);
  color: var(--cobalt);
  border: 2px solid var(--celeste);
}
@media (max-width: 600px) {
  .modal-newsletter .modal-btns {
    flex-direction: column;
    gap: 0.7rem;
  }
  .modal-newsletter .btn {
    width: 100%;
    font-size: 1rem;
  }
}

/* Mobile dropdown simple - Chevron pointant vers le haut */
.mobile-arrow {
    display: none;
    margin-left: 8px;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--cobalt);
    border-bottom: 2px solid var(--cobalt);
    transform: rotate(-135deg); /* Pointant vers le haut (^) */
    transition: transform 0.3s ease;
    vertical-align: middle;
}

/* Masquer la flèche desktop sur mobile */
@media (max-width: 992px) {
    .dropdown-arrow {
        display: none;
    }
    
    .mobile-arrow {
        display: inline-block;
    }
    
    .mobile-dropdown .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        background: var(--grege);
        margin: 0;
        border-radius: 0;
        padding: 0;
        list-style: none;
    }
    
    .mobile-dropdown .dropdown-menu li {
        border-bottom: 1px solid rgba(5,30,30,0.1);
    }
    
    .mobile-dropdown .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .mobile-dropdown .dropdown-menu a {
        padding: 12px 20px;
        color: var(--cobalt);
        text-decoration: none;
        display: block;
        font-size: 0.9rem;
    }
    
    .mobile-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mobile-dropdown.active .mobile-arrow {
        transform: rotate(45deg); /* Pointant vers le bas (v) */
    }
    
    .mobile-dropdown .dropdown-submenu-list {
        display: none;
        position: static;
        box-shadow: none;
        margin-left: 0;
        margin-top: 0;
        padding-left: 2em;
        background: rgba(5,30,30,0.05);
        border-radius: 0;
    }
    
    .mobile-dropdown .dropdown-submenu:hover .dropdown-submenu-list,
    .mobile-dropdown .dropdown-submenu.active .dropdown-submenu-list {
        display: block;
    }
    
    .mobile-dropdown .dropdown-submenu-list a {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/*_______________    STARTER PACK LISTES    _____________*/
.starter-pack-list {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.starter-pack-list li {
    font-weight: 600;
    margin-bottom: 0.5rem;
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Règles spécifiques pour mobile */
@media (max-width: 768px) {
    .starter-pack-list {
        list-style: none !important;
        list-style-type: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .starter-pack-list li {
        list-style: none !important;
        list-style-type: none !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        background: none !important;
    }
}

.no-markers {
    list-style: none !important;
    list-style-type: none !important;
}

.no-markers li {
    list-style: none !important;
    list-style-type: none !important;
}

.no-markers li::marker {
    display: none !important;
}

/* Numéro en haut à droite des problem-cards, toujours visible et jamais collé à l'icône */
.problem-card {
    position: relative;
    padding-top: 2.5rem;
    padding-right: 1.5rem;
}
.problem-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 0;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    font-weight: bold;
    font-family: var(--font-boost);
}
@media (max-width: 600px) {
    .problem-card {
        padding-top: 2.8rem;
        padding-right: 0.8rem;
    }
    .problem-number {
        top: 0.5rem;
        right: 0.5rem;
        min-width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
@media (max-width: 768px) {
  #digital-increase .row {
    flex-direction: column !important;
  }
  #digital-increase .col-12.col-md-6 > div {
    width: 100vw !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    box-sizing: border-box;
    border-radius: 16px;
  }
}

/* Stepper/timeline pour bloc-2 (Starter Pack) */
.stepper-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}
.stepper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  width: 100%;
  max-width: 900px;
}
.step {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.step-dot {
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-right: 1.2rem;
  margin-top: 0.1rem;
  z-index: 2;
}
.step-dot-fushia { background: var(--fushia); color: var(--cobalt); }
.step-dot-celeste { background: var(--celeste); color: var(--cobalt); }
.step-dot-yellow { background: var(--citrus); color: var(--cobalt); }
.step-dot-cobalt { background: var(--cobalt); color: #fff; }
.step-content {
  background: #fff;
  border-radius: 12px;
  padding: 1.1rem 1.5rem 1.1rem 1.2rem;
  box-shadow: 0 2px 12px rgba(5,30,30,0.04);
  text-align: left;
  flex: 1;
}
.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--cobalt);
}
.step-content p {
  font-size: 1rem;
  color: #222;
  margin: 0;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 52px;
  width: 3px;
  height: calc(100% - 52px);
  background: var(--celeste);
  z-index: 1;
}
@media (min-width: 900px) {
  .stepper {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
  }
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    margin: 0 0.5rem;
  }
  .step-dot {
    margin: 0 auto 1rem auto;
  }
  .step-content {
    padding: 1.1rem 1.1rem 1.1rem 1.1rem;
    min-width: 180px;
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 48px;
    width: calc(100% + 1rem);
    height: 3px;
    background: var(--celeste);
    z-index: 1;
    transform: translateX(24px);
  }
}
@media (max-width: 600px) {
  .step-content {
    padding: 1rem 0.7rem 1rem 0.7rem;
    font-size: 0.97rem;
  }
  .step-dot {
    min-width: 38px;
    min-height: 38px;
    max-width: 38px;
    max-height: 38px;
    font-size: 1.1rem;
  }
}

/* Animation fadeInUp pour stepper (Starter Pack) */
.fadeInUp { animation: fadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) both; }
@keyframes fadeInUp {
  from { opacity:0; transform: translate3d(0,40px,0); }
  to { opacity:1; transform:none; }
}

/* Stepper vertical pour bloc-2 (Starter Pack) */
.stepper-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  margin: 2.5rem auto 2rem auto;
  /* Ajouté pour forcer le centrage horizontal */
  margin-left: auto;
  margin-right: auto;
}
.step-vertical {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  max-width: 420px;
  position: relative;
}
.step-dot-vertical {
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-right: 1.2rem;
  margin-top: 0.1rem;
  position: relative;
  z-index: 1;
  color: var(--cobalt);
  background: #fff;
  border: 4px solid var(--celeste);
  transition: background 0.3s, color 0.3s, border 0.3s;
}
.step-dot-fushia { border-color: var(--fushia); }
.step-dot-celeste { border-color: var(--celeste); }
.step-dot-yellow { border-color: var(--citrus); }
.step-dot-cobalt { border-color: var(--cobalt); }
.step-dot-vertical span {
  position: relative;
  z-index: 3;
  color: var(--cobalt);
  transition: color 0.3s;
}
.step-dot-filled.step-dot-fushia { background: var(--fushia) !important; }
.step-dot-filled.step-dot-celeste { background: var(--celeste) !important; }
.step-dot-filled.step-dot-yellow { background: var(--citrus) !important; }
.step-dot-filled.step-dot-cobalt { background: var(--cobalt) !important; }
.step-dot-filled.step-dot-fushia span,
.step-dot-filled.step-dot-celeste span,
.step-dot-filled.step-dot-cobalt span { color: #fff !important; }
.step-dot-filled.step-dot-yellow span { color: var(--cobalt) !important; }

/* Trait progressif entre les pastilles */
.step-vertical:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 56px;
  width: 3px;
  height: calc(100% - 56px);
  background: var(--celeste);
  z-index: 0;
  transition: background 0.3s;
}
.step-vertical.progressed-line:not(:last-child)::after {
  background: var(--cobalt);
}

/* Styles responsive pour stepper vertical */
.step-vertical-content {
  background: #fff;
  border-radius: 12px;
  padding: 1.1rem 1.5rem 1.1rem 1.2rem;
  box-shadow: 0 2px 12px rgba(5,30,30,0.04);
  text-align: left;
  flex: 1;
}
.step-vertical-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--cobalt);
}
.step-vertical-content p {
  font-size: 1rem;
  color: #222;
  margin: 0;
}

@media (min-width: 900px) {
  .stepper-vertical {
    align-items: center; /* Était flex-start, on centre aussi sur desktop */
    margin: 2.5rem auto 2rem auto;
  }
  .step-vertical {
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .step-vertical-content {
    padding: 1rem 0.7rem 1rem 0.7rem;
    font-size: 0.97rem;
  }
  .step-dot-vertical {
    min-width: 38px;
    min-height: 38px;
    max-width: 38px;
    max-height: 38px;
    font-size: 1.1rem;
    margin-right: 1rem;
  }
  .step-vertical:not(:last-child)::after {
    left: 19px;
    top: 46px;
    height: calc(100% - 46px);
  }
  .step-vertical-content h4 {
    font-size: 1rem;
  }
  .step-vertical-content p {
    font-size: 0.95rem;
  }
}

/*_______________    BREADCRUMB INLINE    _____________*/
.breadcrumb-inline {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: flex-start;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: rgba(5, 30, 30, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  font-weight: 400;
}

.breadcrumb-item a:hover {
  color: var(--celeste);
  text-decoration: none;
}

.breadcrumb-item.active span {
  color: rgba(5, 30, 30, 0.35);
  font-weight: 400;
  font-size: 0.85rem;
}

.breadcrumb-separator {
  color: rgba(5, 30, 30, 0.25);
  margin: 0 0.3rem;
  opacity: 0.6;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .breadcrumb-item a,
  .breadcrumb-item.active span {
    font-size: 0.75rem;
  }
  
  .breadcrumb-separator {
    font-size: 0.7rem;
    margin: 0 0.25rem;
  }
}

/*_______________    BENEFIT CARDS    _____________*/
.benefit-card {
  background: var(--grege);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--celeste-200);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(5, 30, 30, 0.08);
}

/* Première carte avec celeste */
.benefit-card:nth-child(1) .benefit-card-icon {
  background: var(--celeste);
  box-shadow: 0 4px 15px rgba(170, 230, 240, 0.4);
}

.benefit-card:nth-child(1):hover {
  border-color: var(--celeste);
  background: var(--celeste-200);
}

.benefit-card:nth-child(1):hover .benefit-card-icon {
  box-shadow: 0 6px 20px rgba(170, 230, 240, 0.6);
}

/* Deuxième carte avec fushia */
.benefit-card-fushia {
  border-color: var(--fushia-200) !important;
}

.benefit-card-fushia .benefit-card-icon {
  background: var(--fushia) !important;
  box-shadow: 0 4px 15px rgba(230, 190, 255, 0.4) !important;
}

.benefit-card-fushia:hover {
  border-color: var(--fushia) !important;
  background: var(--fushia-200) !important;
}

.benefit-card-fushia:hover .benefit-card-icon {
  box-shadow: 0 6px 20px rgba(230, 190, 255, 0.6) !important;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(5, 30, 30, 0.15);
}

.benefit-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card-icon i {
  font-size: 2.5rem;
  color: var(--cobalt);
  position: relative;
  z-index: 1;
}

.benefit-card-content {
  position: relative;
  z-index: 1;
}

.benefit-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cobalt);
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-card-title {
  color: var(--cobalt);
}

@media (max-width: 768px) {
  .benefit-card {
    padding: 2rem 1.5rem;
  }
  
  .benefit-card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.2rem;
  }
  
  .benefit-card-icon i {
    font-size: 2rem;
  }
  
  .benefit-card-title {
    font-size: 1.2rem;
  }
}