.user-is-tabbing a:focus,
.user-is-tabbing button:focus{
  outline: 3px solid var(--color-primary);
}

/* ================= RESET ================= */
*, *::before, *::after{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img{
  max-width: 100%;
  display: block;
}
ul{
  list-style: none;
  padding: 0!important;
}
a{
  text-decoration: none;
  color: inherit;
}
::selection{
  color: white;
  background-color: var(--color-primary);
}
/* ================= VARIABLES ================= */
:root{
  --color-primary: #079992;
  --color-primary-dark: #16897E;
  --color-secondary: #ff7300;
  --color-dark: #1E1E1E;
  --color-gray: #6B7280;
  --color-light: #F8F9FA;
  --color-white: #FFFFFF;
  --color-crema: #f4f1ec;

  --font-title: 'Lora', sans-serif;
  --font-text: 'Nunito', sans-serif;

  --container-width: 1280px;
  --radius: 12px;
  --radius-sm: 8px;

  --transition-fast: 0.25s ease;
  --transition: 0.4s ease;
}
/* ================= BASE ================= */
body{
  font-family: var(--font-text)!important;
  color: var(--color-dark);
  line-height: 1.6;
  background-color: var(--color-white);
}
h1, h2, h3{
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.2;
}
h1{
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
h2{
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
h3{
  font-size: 1.3rem;
}
p{
  color: var(--color-dark);
}

.container{
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
section{
  padding: 4.5rem 0;
}
.section-header{
  margin-bottom: 3rem;
  text-align: center;
}
/* ================= BUTTONS ================= */
.btn{
  display: inline-block;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}
.btn-green{
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  background: var(--color-primary);
  color: #fff;
  border: 1px solid #079992;
  border-radius: 12px;
  font-weight: 600;
  transition: color .45s ease;
  z-index: 1;
}
.btn-green::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-crema);
  transition: width .5s ease;
  z-index: -1;
}
.btn-green:hover::before{
  width: 100%;
}
.btn-green:hover{
  color: var(--color-primary);
}
.btn-crema{
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  background: var(--color-crema);
  color: var(--color-primary);
  border: 1px solid #079992;
  border-radius: 12px;
  font-weight: 600;
  transition: color .45s ease;
  z-index: 1;
}
.btn-crema::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-primary);
  transition: width .5s ease;
  z-index: -1;
}
.btn-crema:hover::before{
  width: 100%;
}
.btn-crema:hover{
  color: var(--color-crema);
}
.fa-hand-point-right:before{
  padding-right: 0.5rem;
}
.btn-lg{
  max-width: 570px;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
/* ================= HERO ================= */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.hero-title{
  color: var(--color-primary);
}
.hero-text {
  margin: 1.5rem 0 2rem;
  color: var(--color-dark);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
}
.commitment-visual{
    max-width: 15rem;
    margin: auto;
}
.hero-visual img{
  border-radius: var(--radius);
}
/* ================= ENERGY ================= */
.energy{
  background-color: var(--color-light);
}
.energy-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.energy-benefits{
  margin-top: 1.5rem;
}
.energy-benefits li{
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.energy-image img{
  border-radius: var(--radius);
}
/* ================= SOLUTIONS ================= */
.solution{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.solution.reverse{
  direction: rtl;
}
.solution.reverse > *{
  direction: ltr;
}
.solution-content p{
  margin: 1rem 0 1.5rem;
  text-align: justify;
}
.solution-image{
  max-width: 250px;
  margin: auto;
}
/* ================= COMMITMENTS ================= */
.commitments{
  padding-bottom: 0;
  background-color: #fdf7f1;
}
.commitments-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.commitment{
  /* background: var(--color-white); */
  padding: 2rem;
  /* border-radius: var(--radius); */
  /* box-shadow: 0 10px 40px rgba(0,0,0,0.04); */
}
.commitment p{
  text-align: justify;
}
/* ================= MISSION ================= */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.mission-image img{
  border-radius: var(--radius);
}
/* ================= REVIEWS ================= */
.reviews{
  position: relative;
  background-image: url('../../images/consumer/confiance.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#reviews-blur{
  position: absolute;
  bottom: 0;
  max-width: 100vw;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
}
#h2-confiance, #h3-confiance{
  color: var(--color-primary);
}
#container-reviews{
  position: relative;
}
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review{
  padding: 2rem;
  background:#ffffffab;
  border-radius: var(--radius);
}
.review p{
  color: black;
  height: 80%;
}
.review-author{
  color: var(--color-primary);
}
/* ==================================================
   PROJECTS CAROUSEL
================================================== */

.projects-carousel{
  padding: 6rem 0;
  background: #f8f9fa;
}
.projects-slider{
  position: relative;
}
.projects-slider__viewport{
  overflow: hidden;
}
.projects-slider__track{
  display: flex;
  gap: 2rem;
  transition: transform .7s cubic-bezier(.77,0,.18,1);
}
.project-slide{
  flex: 0 0 85%;
  display: grid;
  grid-template-columns: minmax(280px, 50%) 1fr;
  gap: 1.5rem;
  max-height: 300px;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
}
.project-slide__image{
  height: 300px;
}
/* .project-slide__image{
  height: 100%;
} */
.project-slide__image img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .6s ease;
}
.project-slide:hover img{
  transform: scale(1.04);
}
.project-slide__content{
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-slide__tag{
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(31,168,154,.12);
  color: var(--color-primary);
  font-size: .85rem;
  font-weight: 600;
}
.project-slide__content h3{
  margin-bottom: 1rem;
}
.project-slide__content p{
  margin-bottom: 1.5rem;
}
.project-slide__content ul{
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.projects-slider__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  z-index: 10;
}
.projects-slider__prev{
  left: -20px;
}
.projects-slider__next{
  right: -20px;
}
/* Tablet */
@media (max-width: 992px){
  .project-slide{
    grid-template-columns: 1fr;
    flex: 0 0 100%;
  }
  .project-slide__image{
    height: 350px;
  }
}
/* Mobile */
@media (max-width: 768px){
  .projects-slider__nav{
    display: none;
  }
  .project-slide__content{
    padding: 1.5rem;
  }

}
/* ==========================================================
   PROCESS
   ========================================================== */

.process {
    background-color: var(--color-crema);
    padding: 5rem 0;
}

/* ----------------------------------------------------------
   INTRODUCTION
   ---------------------------------------------------------- */

.process .section-header {
    max-width: 1100px;
    margin: 0 auto;
}

.process .section-header h2 {
    margin-bottom: 2.5rem;
}

#process-txt {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.7;
    font-size: 1rem;
}

/* ----------------------------------------------------------
   TIMELINE DES ÉTAPES
   ---------------------------------------------------------- */

.process-steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    max-width: 1000px;
    width: calc(100% - 2rem);

    margin: 5rem auto 2rem;

    /*
     * Le padding permet aux points de ne jamais
     * toucher les bords de la timeline.
     */
    padding: 0 0.5rem;
}

/*
 * Ligne horizontale principale
 */

.process-steps::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0.5rem;
    right: 0.5rem;

    height: 1px;

    background-color: var(--color-gray);

    z-index: 0;
}

/* ----------------------------------------------------------
   ÉTAPE
   ---------------------------------------------------------- */

.step {
    position: relative;

    width: 100%;
    max-width: none;

    border: 0;

    text-align: center;

    font-weight: 500;

    z-index: 1;
}

/*
 * Cercle numéroté
 */

.point-step {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 2.15rem;
    height: 2.15rem;

    margin: -1.075rem auto 0;
    padding: 0;

    border-radius: 50%;

    background-color: var(--color-primary);
    color: var(--color-light);

    font-size: 0.95rem;
    font-weight: 700;

    line-height: 1;

    z-index: 2;
}

/*
 * Intitulé de l'étape
 */

.txt-step {
    margin: 1.25rem 0 0.75rem;

    color: var(--color-dark);

    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 700;

    padding: 0 0.5rem;
}

/*
 * Durée
 */

.time-step {
    margin: 0;

    font-size: 0.9rem;
    line-height: 1.4;
}

/* ----------------------------------------------------------
   TEXTE SOUS LA TIMELINE
   ---------------------------------------------------------- */

#process-details {
    max-width: 1000px;

    margin: 2.5rem auto 0;

    padding: 0 1rem;

    font-size: 0.8rem;
    line-height: 1.5;

    color: var(--color-dark);
}

/* ----------------------------------------------------------
   CTA
   ---------------------------------------------------------- */

.process-cta {
    margin-top: 2.5rem;

    text-align: center;
}

.process-cta .btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.5rem;
}


/* ==========================================================
   TABLETTE
   ========================================================== */

/*
 * On conserve exactement la timeline horizontale.
 *
 * On réduit simplement légèrement les espacements et
 * les tailles de texte pour les tablettes.
 */

@media (max-width: 1024px) {

    .process {
        padding: 4rem 1.5rem;
    }

    #process-txt {
        font-size: 0.95rem;
    }

    .process-steps {
        margin-top: 4rem;
    }

    .txt-step {
        font-size: 0.82rem;
    }

    .time-step {
        font-size: 0.82rem;
    }
}


/* ==========================================================
   SMARTPHONE
   ========================================================== */

@media (max-width: 767px) {

    .process {
        padding: 3.5rem 1rem;
    }

    /*
     * Titre
     */

    .process .section-header h2 {
        margin-bottom: 1.5rem;

        font-size: clamp(1.6rem, 7vw, 2rem);
        line-height: 1.2;
    }

    /*
     * Texte introductif
     */

    #process-txt {
        margin: 0;

        font-size: 0.95rem;
        line-height: 1.65;

        text-align: left;
    }

    /*
     * ------------------------------------------------------
     * TIMELINE MOBILE
     * ------------------------------------------------------
     *
     * On passe d'une timeline horizontale à une timeline
     * verticale.
     */

    .process-steps {

        display: flex;
        flex-direction: column;

        width: 100%;

        margin: 3.5rem 0 2rem;

        padding: 0 0 0 3.5rem;
    }

    /*
     * Ligne verticale
     */

    .process-steps::before {

        top: 0;
        bottom: 0;

        left: 1.075rem;
        right: auto;

        width: 1px;
        height: auto;
    }

    /*
     * Chaque étape
     */

    .step {

        position: relative;

        display: grid;

        grid-template-columns: 1fr;

        min-height: 6.5rem;

        padding: 0 0 1.75rem;

        text-align: left;
    }

    /*
     * Numéro
     *
     * Il vient se placer sur la ligne verticale.
     */

    .point-step {

        position: absolute;

        top: 0;
        left: -3.5rem;

        width: 2.15rem;
        height: 2.15rem;

        margin: 0;
    }

    /*
     * Titre de l'étape
     */

    .txt-step {

        margin: 0 0 0.4rem;

        padding: 0;

        font-size: 0.95rem;
        line-height: 1.4;
    }

    /*
     * Durée
     */

    .time-step {

        font-size: 0.85rem;

        color: var(--color-dark);
        opacity: 0.8;
    }

    /*
     * Dernière étape :
     * pas besoin d'espace supplémentaire.
     */

    .step:last-child {
        min-height: auto;
        padding-bottom: 0;
    }

    /*
     * Détails
     */

    #process-details {

        margin-top: 2rem;

        padding: 0;

        font-size: 0.78rem;
    }

    /*
     * CTA
     */

    .process-cta {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .process-cta .btn-green {
        width: 100%;
        max-width: 320px;
    }
}


/* ==========================================================
   TRÈS PETITS SMARTPHONES
   ========================================================== */

@media (max-width: 400px) {

    .process {
        padding: 3rem 0.9rem;
    }

    .process-steps {
        padding-left: 3rem;
    }

    .process-steps::before {
        left: 0.95rem;
    }

    .point-step {
        left: -3rem;

        width: 1.9rem;
        height: 1.9rem;

        font-size: 0.8rem;
    }

    .txt-step {
        font-size: 0.9rem;
    }

    .time-step {
        font-size: 0.82rem;
    }
}

/* ================= FAQ ================= */
.accordion{
  max-width: var(--container-width);
  margin: auto;
}
.accordion-button:not(.collapsed) {
  color: #079992!important;
  background-color: #dfe4ea!important;
  box-shadow: none!important;
}
.accordion-button:focus{
  box-shadow: none!important;
}
/* ================= ARTICLES ================= */
.articles-grid{
  display: flex;
}
.article{
  max-width: 325px;
  height: 375px;
  margin: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  -webkit-box-shadow: 0px 0px 15px -3px #0000001c; 
  box-shadow: 0px 0px 15px -3px #0000001c;
}
.article-img{
  height: 150px;
  margin-top: 0.5rem;
  overflow: hidden;
}
.article-txt{
  position: relative;
  margin-top: 1.5rem;
}
.article-txt a{
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 125px;
  color: var(--color-primary);
}
.fa-long-arrow-alt-right{
  margin-left: 0.5rem;
}
/* ================= ANIMATIONS ================= */
.js-animate{
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}
.js-animate.is-visible{
  opacity: 1;
  transform: none;
}
.fade-left{
  transform: translateX(-30px);
}
.fade-right{
  transform: translateX(30px);
}
.scale-in{
  transform: scale(0.95);
}

/* ==========================================================
   SOLAR CAROUSEL
   ========================================================== */
.solar-carousel{
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    overflow: hidden;
}
/* HEADER */
.solar-carousel__heading{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 4rem;
}
.solar-carousel__heading p{
    max-width: 420px;
}
/* ==========================================================
   SOLAR SLIDER
   ========================================================== */

.solar-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}


/* ==========================================================
   VIEWPORT
   ========================================================== */

.solar-slider__track-wrapper {
    width: 100%;
    max-width: 100%;

    overflow: hidden;

    /*
     * On évite que l'ombre des cartes soit coupée.
     */
    padding: 0.5rem;
    margin: -0.5rem;
}


/* ==========================================================
   TRACK
   ========================================================== */

.solar-slider__track {
    display: flex;
    align-items: stretch;

    gap: 2rem;

    width: 100%;

    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);

    will-change: transform;
}


/* ==========================================================
   CARD / SLIDE
   ========================================================== */

.solar-slide {
    /*
     * Sur grand écran, on laisse volontairement apparaître
     * une partie de la carte suivante.
     */
    flex: 0 0 calc(100% - 120px);

    width: calc(100% - 120px);

    /*
     * Important :
     * on ne limite plus la carte à 50vw.
     */
    max-width: none;

    min-width: 0;

    display: flex;
    align-items: stretch;

    gap: 2rem;

    background: var(--color-white);

    border-radius: 32px;

    padding: 1.5rem;

    min-height: 520px;

    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.04);

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/*
.solar-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}
*/


/* ==========================================================
   PARTIE VISUELLE
   ========================================================== */

.solar-slide__visual {
    position: relative;

    flex: 0 0 38%;

    min-width: 0;

    align-self: stretch;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 28px;

    padding: 2rem;

    overflow: hidden;

    background-color: var(--color-primary);
}


.solar-slide__visual img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 300px;

    object-fit: contain;

    transition: transform 0.5s ease;
}


.solar-slide:hover .solar-slide__visual img {
    transform: scale(1.05);
}


/* ==========================================================
   BADGE
   ========================================================== */

.solar-badge {
    position: absolute;

    top: 1rem;
    left: 1rem;

    z-index: 2;

    display: inline-flex;
    align-items: center;

    background: var(--color-white);

    color: var(--color-primary);

    padding: 0.5rem 0.9rem;

    border-radius: 999px;

    font-size: 0.75rem;
    font-weight: 700;

    line-height: 1;
}


/* ==========================================================
   CONTENU
   ========================================================== */

.solar-slide__content {
    flex: 1;

    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.solar-slide__header {
    margin-bottom: 1.5rem;

    min-width: 0;
}


.solar-slide__header h3 {
    margin: 0 0 0.5rem;

    font-size: clamp(1.5rem, 2.5vw, 2rem);

    line-height: 1.2;

    overflow-wrap: break-word;
}


.solar-slide__header p {
    margin: 0;

    overflow-wrap: break-word;
}


/* ==========================================================
   CARACTÉRISTIQUES
   ========================================================== */

.solar-features {
    display: flex;
    flex-direction: column;

    gap: 0.75rem;

    width: 100%;

    margin: 0;

    padding: 0 !important;

    list-style: none;
}


.solar-features li {
    position: relative;

    min-width: 0;

    padding-left: 1rem;

    line-height: 1.45;

    overflow-wrap: break-word;
}


.solar-features li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.65em;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--color-primary);
}


/* ==========================================================
   BOUTON CTA
   ========================================================== */

.solar-slide__cta {
    align-self: flex-start;

    margin-top: 1.5rem;

    max-width: 100%;
}


/* ==========================================================
   FLÈCHES DE NAVIGATION
   ========================================================== */

.solar-slider__nav {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: var(--color-white);

    color: var(--color-dark);

    font-size: 1.3rem;

    line-height: 1;

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.solar-slider__nav:hover {
    transform: translateY(-50%) scale(1.08);

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}


.solar-slider__nav:focus-visible {
    outline: 3px solid var(--color-primary);

    outline-offset: 3px;
}


.solar-slider__prev {
    left: -26px;
}


.solar-slider__next {
    right: -26px;
}


/* ==========================================================
   TABLETTE LARGE
   901px → 1100px
   ========================================================== */

@media (max-width: 1100px) {

    .solar-slide {
        /*
         * On conserve une petite partie de la carte
         * suivante, mais moins importante que sur desktop.
         */
        flex: 0 0 calc(100% - 70px);

        width: calc(100% - 70px);

        gap: 1.5rem;

        padding: 1.25rem;

        min-height: 480px;
    }


    .solar-slide__visual {
        flex: 0 0 35%;

        padding: 1.5rem;
    }


    .solar-slide__visual img {
        max-width: 240px;
    }


    .solar-slide__header h3 {
        font-size: 1.6rem;
    }


    .solar-features {
        gap: 0.65rem;
    }


    .solar-features li {
        font-size: 0.95rem;
    }


    .solar-slider__nav {
        width: 46px;
        height: 46px;
    }


    .solar-slider__prev {
        left: -12px;
    }


    .solar-slider__next {
        right: -12px;
    }
}


/* ==========================================================
   TABLETTE PORTRAIT
   769px → 900px
   ========================================================== */

@media (max-width: 900px) {

    .solar-slide {
        /*
         * À partir de cette taille :
         * une carte complète par écran.
         */
        flex: 0 0 100%;

        width: 100%;

        max-width: 100%;
        min-width: 100%;

        flex-direction: column;

        gap: 1.5rem;

        min-height: 0;
    }


    .solar-slide__visual {
        flex: none;

        width: 100%;

        min-width: 0;

        min-height: 260px;

        padding: 1.5rem;
    }


    .solar-slide__visual img {
        max-width: 260px;

        max-height: 220px;
    }


    .solar-slide__content {
        width: 100%;

        min-width: 0;
    }


    .solar-slider__prev {
        left: 10px;
    }


    .solar-slider__next {
        right: 10px;
    }
}


/* ==========================================================
   MOBILE
   0 → 768px
   ========================================================== */

@media (max-width: 768px) {

    /*
     * ------------------------------------------------------
     * CONTENEUR
     * ------------------------------------------------------
     */

    .solar-slider {
        width: 100%;
        max-width: 100%;

        /*
         * On réserve une zone sous la carte pour
         * les flèches.
         */
        padding-bottom: 3.75rem;

        overflow: visible;
    }


    /*
     * ------------------------------------------------------
     * VIEWPORT
     * ------------------------------------------------------
     */

    .solar-slider__track-wrapper {
        width: 100%;
        max-width: 100%;

        padding: 0;
        margin: 0;

        overflow: hidden;
    }


    /*
     * ------------------------------------------------------
     * TRACK
     * ------------------------------------------------------
     */

    .solar-slider__track {
        width: 100%;

        /*
         * Très important :
         * aucune séparation entre les cartes sur mobile.
         */
        gap: 0;
    }


    /*
     * ------------------------------------------------------
     * CARTE
     * ------------------------------------------------------
     */

    .solar-slide {
        flex: 0 0 100%;

        width: 100%;
        min-width: 100%;
        max-width: 100%;

        padding: 1rem;

        border-radius: 24px;

        gap: 1.25rem;

        overflow: hidden;
    }


    /*
     * ------------------------------------------------------
     * CONTENU
     * ------------------------------------------------------
     */

    .solar-slide__content {
        width: 100%;
        max-width: 100%;

        min-width: 0;

        overflow: hidden;
    }


    .solar-slide__header {
        width: 100%;
        max-width: 100%;

        margin-bottom: 1.25rem;
    }


    .solar-slide__header h3 {
        width: 100%;
        max-width: 100%;

        font-size: 1.5rem;

        line-height: 1.2;

        overflow-wrap: anywhere;
        word-break: normal;
    }


    .solar-slide__header p {
        width: 100%;
        max-width: 100%;

        font-size: 0.9rem;

        overflow-wrap: anywhere;
    }


    /*
     * ------------------------------------------------------
     * CARACTÉRISTIQUES
     * ------------------------------------------------------
     */

    .solar-features {
        width: 100%;
        max-width: 100%;

        gap: 0.6rem;

        padding: 0 !important;
        margin: 0;
    }


    .solar-features li {
        width: 100%;
        max-width: 100%;

        padding-left: 1rem;

        font-size: 0.9rem;

        line-height: 1.4;

        overflow-wrap: anywhere;
        word-break: normal;
    }


    /*
     * ------------------------------------------------------
     * VISUEL
     * ------------------------------------------------------
     */

    .solar-slide__visual {
        width: 100%;
        max-width: 100%;

        min-width: 0;

        min-height: 220px;

        padding: 1.25rem;

        border-radius: 20px;
    }


    .solar-slide__visual img {
        width: auto;
        max-width: 100%;

        max-height: 180px;
    }


    /*
     * ------------------------------------------------------
     * BADGE
     * ------------------------------------------------------
     */

    .solar-badge {
        top: 0.75rem;
        left: 0.75rem;

        padding: 0.4rem 0.7rem;

        font-size: 0.7rem;
    }


    /*
     * ------------------------------------------------------
     * CTA
     * ------------------------------------------------------
     */

    .solar-slide__cta {
        width: 100%;
        max-width: 100%;

        justify-content: center;

        text-align: center;
    }


    /*
     * ------------------------------------------------------
     * FLÈCHES
     * ------------------------------------------------------
     *
     * IMPORTANT :
     * Elles ne sont plus positionnées au milieu de la carte.
     * Elles sont sous la carte afin de ne jamais masquer
     * le contenu.
     */

    .solar-slider__nav {
        top: auto;
        bottom: 0;

        transform: none;

        width: 42px;
        height: 42px;

        font-size: 1rem;
    }


    .solar-slider__nav:hover {
        transform: scale(1.08);
    }


    .solar-slider__prev {
        left: 0;
    }


    .solar-slider__next {
        right: 0;
    }
}


/* ==========================================================
   PETIT MOBILE
   481px → 576px
   ========================================================== */

@media (max-width: 576px) {

    .solar-slider {
        padding-bottom: 3.5rem;
    }


    .solar-slide {
        padding: 0.9rem;

        border-radius: 22px;

        gap: 1rem;
    }


    .solar-slide__visual {
        min-height: 200px;

        border-radius: 18px;
    }


    .solar-slide__visual img {
        max-width: 180px;

        max-height: 160px;
    }


    .solar-slide__header h3 {
        font-size: 1.4rem;
    }


    .solar-features li {
        font-size: 0.87rem;
    }


    .solar-slider__nav {
        width: 40px;
        height: 40px;
    }
}


/* ==========================================================
   TRÈS PETIT MOBILE
   ≤ 480px
   ========================================================== */

@media (max-width: 480px) {

    .solar-slider {
        padding-bottom: 3.25rem;
    }


    .solar-slide {
        padding: 0.85rem;

        border-radius: 20px;
    }


    .solar-slide__visual {
        min-height: 190px;

        border-radius: 16px;

        padding: 1rem;
    }


    .solar-slide__visual img {
        max-width: 170px;

        max-height: 150px;
    }


    .solar-slide__header h3 {
        font-size: 1.3rem;
    }


    .solar-features {
        gap: 0.55rem;
    }


    .solar-features li {
        font-size: 0.84rem;
    }


    .solar-slider__nav {
        width: 38px;
        height: 38px;
    }
}


/* ==========================================================
   TOUT PETIT ÉCRAN
   ≤ 360px
   ========================================================== */

@media (max-width: 360px) {

    .solar-slide {
        padding: 0.75rem;
    }


    .solar-slide__visual {
        min-height: 175px;
    }


    .solar-slide__visual img {
        max-width: 150px;
        max-height: 135px;
    }


    .solar-slide__header h3 {
        font-size: 1.2rem;
    }


    .solar-features li {
        font-size: 0.8rem;
    }


    .solar-slider__nav {
        width: 36px;
        height: 36px;
    }
}
/* ================= CERTIFICATIONS ================= */
.hero-trust{
  max-width: var(--container-width);
  margin: auto;
}
.ul-hero-trust{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8rem;
  margin-top: 1.5rem;
  margin-bottom: 4.5rem;
}
.hero-trust li{
  max-width: 85px;
  width: 100%;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .hero-grid,
  .energy-grid,
  .solution,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .commitments-grid,
  .reviews-grid,
  .projects-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }
}