/* Défilement fluide vers les ancres + petit décalage haut */
html{ scroll-behavior: smooth; }
:target{ scroll-margin-top: 20px; }

/* ============================================================
   Nos métiers — même ossature que "Nos produits" :
   barre d'ancres latérale + zone de contenu
   ============================================================ */
.nos_metiers{
    display: flex;
    justify-content: center;
    gap: 4%;
    padding: 0 0 5% 0;
}

/* ===== Barre latérale d'ancres ===== */
.nos_metiers .ancres{
    width: 210px;
    background: #ffffff;
    padding: 30px 16px;
    align-self: flex-start;
    position: sticky;
    top: 90px;
}
.nos_metiers .ancres nav ul{
    list-style: none;
    margin: 0;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: rgb(245, 245, 245);
}
.nos_metiers .ancres nav li{ margin-bottom: 14px; }
.nos_metiers .ancres nav a{
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 14px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-align: center;
    color: #8a8a8a;
    text-decoration: none;
    transition: color .2s, background .2s;
}
.nos_metiers .ancres nav a:hover{ color: #111; }
.nos_metiers .ancres nav a.active{
    background: #fff;
    color: #111;
    text-shadow: 0 0 .6px currentColor, 0 0 .6px currentColor;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

/* ===== Zone de contenu ===== */
.nos_metiers .sections{
    width: 66%;
    padding-top: 2%;
}
.nos_metiers .sections > div + div{ margin-top: var(--espace-rubriques); }

/* Titre + trait, style commun à toutes les sections */
.nos_metiers .sections h2{
    margin: 0 0 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 34px;
    color: #2e9b8a;
}
.nos_metiers .sections hr{
    border: none;
    border-top: 1px solid #e3e3e3;
    margin: 0 0 22px;
}

/* Encadré d'introduction : simple aplat gris, sans liseré */
.nos_metiers .intro_accent{
    background: #f4f4f4;
    padding: 26px 30px;
}
.nos_metiers .intro_accent p{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #6a6a6a;
}
.nos_metiers .intro_accent strong{ color: #2e9b8a; }

/* ===== Carte d'un métier : icône + texte + lien ===== */
.nos_metiers .met_bloc{
    display: flex;
    align-items: center;
    gap: 30px;
}
.nos_metiers .met_icone{
    flex: 0 0 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f2f2;
    border-radius: 16px;
}
.nos_metiers .met_icone img{ width: 62px; height: 62px; object-fit: contain; }
.nos_metiers .met_texte p{
    margin: 0 0 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #7a7a7a;
}
.nos_metiers .met_lien{
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1c9b8e;
    text-decoration: none;
    transition: color .2s ease;
}
.nos_metiers .met_lien:hover{ color: #147a70; }

/* ===== Notre méthode : 4 étapes ===== */
.nos_metiers .etapes{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.nos_metiers .etape{
    flex: 1 1 0;
    min-width: 150px;
    background: #f7f7f7;
    border-top: 3px solid #8dc63f;
    padding: 24px 20px;
}
.nos_metiers .etape_num{
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #dfe6e5;
    line-height: 1;
    margin-bottom: 12px;
}
.nos_metiers .etape h5{
    margin: 0 0 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a8f7a;
}
.nos_metiers .etape p{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #8a8a8a;
}
