:root {
    --primary-color: #0A1F44;
    --text-color: #0D0D0D;
    --secondary-color: #6B6B6B;
    --bg-color: #FFFFFF;
    --alt-bg-color: #F9F9F9;
    --accent-color: #B8962E;
}

::selection {
  background-color: var(--text-color);
  color: #fff;
}

.text-right {
  text-align: right;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 17px;
}

h1 {
    font-size: 48px;
    color: var(--primary-color);
}

h2 {
    font-size: 28px;
    color: var(--primary-color);
}

.marge-section {
    margin-bottom: 150px;
}

.btn-cta {
    background-color: transparent;
    border: none;
    border-left: 10px solid var(--accent-color);
    border-right: 5px solid var(--accent-color);
    font-size: 18px;
    font-weight: 500;
    color: var(--accent-color);
    border-radius: 4px;
}

.lien-cta {
    position: relative;
    display: inline-block; /* nécessaire pour transform */

    color: var(--accent-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    background-color: transparent;

    transition: 
        transform 180ms ease-out,
        box-shadow 180ms ease-out;
}

.lien-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    color: var(--accent-color);
    background-color: transparent;
}

.menu {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent; /* départ transparent */
    box-shadow: 0 0 0 rgba(0,0,0,0); /* départ sans shadow */
    transition: 
        background-color 200ms ease-out,
        box-shadow 200ms ease-out;
    padding: 20px 0;
    z-index: 100;
}

.menu-dkp {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-dkp > a > img {
    width: 60px;
    height: auto;
}

.menu-dkp > ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.menu-dkp > ul > li {
    display: inline;
}

.menu-mobile  {
    display: none;
}

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

.cont-act-menu > a > img {
    width: 60px;
    height: auto;
}

.cont-act-menu > button {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 600;
}

.cont-item-menu-mobile {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.08);
    backdrop-filter: blur(5px);
    z-index: 900;
}

.action-menu-mobile {
    display: grid;
    align-content: space-between;
    background-color: #fff;
    padding: 30px;
    border-radius: 40px 0 0 0;
    min-height: 100vh;
    overflow-y: auto;
    position: absolute;
    z-index: 901;
    bottom: 0;
    right: 0;
    top: 0;
}

.item-lien-menu {
    text-decoration: none;
    color: var(--text-color);
    position: relative; /* 🔥 IMPORTANT */
    display: inline-block; /* recommandé */
}

.item-lien-menu:hover {
    color: var(--text-color);
}

.item-lien-menu::after, .dropdown a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px; /* ajuste si besoin */
    width: 100%;
    height: 2px;
    background-color: var(--text-color);

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease-out;
}

.item-lien-menu:hover::after, .dropdown a:hover::after {
    transform: scaleX(1);
    color: var(--text-color);
}

.sep-item-md {
    margin: 0 20px;
    background-color: var(--text-color);
    border-radius: 100%;
    width: 6px;
    height: 6px;
    display: block;
}

/* parent */
.menu-item-dropdown {
    position: relative;
}

/* dropdown caché */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;

    background-color: #fff;
    padding: 10px;
    min-width: 180px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-radius: 10px;

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;

    transition: all 200ms ease-out;
    z-index: 999;
}

/* items */
.dropdown li {
    list-style: none;
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-color);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    margin: 10px 0;
    font-size: 14px;
}

.dropdown a i{
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
}

.dropdown a:hover {
    color: var(--text-color);
}

/* affichage au hover */
.menu-item-dropdown:hover .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.txt-footer {
    background-color: var(--primary-color);
    padding: 20px 50px;
    border-radius: 50px;
}

.copyright {
    color: var(--primary-color);
    text-align: center;
    margin: 20px 0;
    font-weight: 500;
}

.txt-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ft-logo {
    display: grid;
}

.ft-logo > img {
    width: 50px;
    height: auto;
}

.ft-logo > p {
    margin-bottom: 0;
    color: #fff;
}

.ft-ml {
    display: flex;
    align-items: center;
}

.sep-ml {
    margin: 0 20px;
    background-color: #fff;
    border-radius: 100%;
    width: 4px;
    height: 4px;
    display: block;
}

.ft-ml > a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
}

.ft-ml > a:hover {
    color: #fff;
}

.ft-rs {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ft-rs > i {
    color: var(--accent-color);
    font-size: 50px;
}

.ft-rs > div {
    display: grid;
}

.ft-rs > div > a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
}

.ft-rs > div > a:hover {
    color: #fff;
}

.point-titre {
    display: block;
    background-color: var(--accent-color);
    height: 15px;
    width: 15px;
}

.titre-sec {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.sec-offre {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 0;
}

.container-custom {
  width: 100%;
  padding-left: 1rem; 
  padding-right: clamp(2rem, 10vw, 12rem);
}

.item-part {
  text-align: center;
  border-bottom: 3px solid var(--accent-color);
}

.item-part > img {
  height: auto;
  width: 100%;
  font-size: 40px;
}

.cont-citation {
    position: relative;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

/* Fond doré incliné avec clip-path */
.cont-citation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);

    /* Parallélogramme : haut gauche + bas droite décalés */
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    z-index: -1;
}

.txt-citation {
    display: grid;
    justify-items: center;
}

.txt-citation > i {
    font-size: 80px;
    color: var(--primary-color);
}

.txt-citation > p {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0;
}

.ligne-cit {
    border-bottom: 5px solid var(--primary-color);
    width: 30vw;
    display: block;
    margin-bottom: 10px;
}

.txt-citation > div {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.item-offre {
    margin: 30px 0;
}

.act-offre {
    display: flex;
    align-items: center;
    gap: 10px; /* espace entre ligne et bouton */
}

/* Ligne horizontale avant le lien */
.act-offre > span:first-child {
    display: block;
    background-color: var(--accent-color);
    height: 2px;
    flex: 1; /* prend tout l'espace disponible */
}

/* Bouton */
.act-offre > a {
    border: 1px solid var(--accent-color);
    padding: 5px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative; /* pour le span du hover */
}

/* Texte “En savoir plus” caché */
.act-offre > a > span {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-5px);
    font-size: 14px;
    margin-left: 5px; /* léger décalage */
}

/* Au hover, le texte apparaît */
.act-offre > a:hover > span {
    opacity: 1;
    transform: translateX(0);
    display: inline-block;
}

.mr-offre {
 padding-right: 200px;
}

.ml-offre {
 padding-left: 200px;
}

.banner {
    margin-bottom: 100px;
}

.cont-banner {
  background-color: var(--alt-bg-color);
  padding-bottom: 50px;
}

.banner {
    height: 100%;
    width: 100%;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 80vh;            /* tu peux ajuster la hauteur */
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;             /* un peu plus large pour l’inclinaison */
    height: 100%;
    background-color: #ffffff; /* fond temporaire blanc */

    /* background-image: url('chemin/vers/image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */

    /* Fond incliné avec bas droit remonté et bas gauche arrondi/décalé */
    clip-path: polygon(
        0 0,          /* haut gauche */
        100% 0,       /* haut droit */
        100% 85%,     /* bas droit légèrement remonté */
        30px 100%     /* bas gauche arrondi / décalé vers la droite */
    );

    border-bottom-left-radius: 150px; /* arrondi supplémentaire si nécessaire */
    z-index: 0;
}

.hero-banner .container {
    position: relative;
    z-index: 1; 
    display: grid;
    height: 100%;
    align-content: space-between;
    padding-top: 150px;
    padding-bottom: 150px;
}

.hero-banner .container h5 {
    font-weight: 300;
}

.logo-banner img {
    height: 200px;
    width: auto;
}

.logo-banner p {
    color: var(--primary-color);
}

.stat-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.item-stat {
    display: grid;
    justify-items: center;
}

.item-stat > h3 {
    margin-bottom: 0;
    font-size: 50px;
}

.item-stat > p {
    margin-bottom: 0;
    font-size: 20px;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);  /* couleur de la ligne */
    text-decoration-thickness: 4px;  /* épaisseur de la ligne */
    text-underline-offset: 6px;      /* distance entre texte et ligne */
    text-align: center;
}

.sep-stat {
    background-color: var(--primary-color);
    width: 2px;
    height: 50px;
    display: block;
}

.hero-banner-s {
    position: relative;
    width: 100%;
    height: 60vh;            /* tu peux ajuster la hauteur */
    overflow: hidden;
}

.hero-banner-s::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;              /* on décale à gauche car width:120% */
    width: 120%;
    height: 100%;
    background-color: var(--alt-bg-color);

    clip-path: polygon(
        0 0,           /* haut gauche */
        100% 0,        /* haut droit */
        calc(100% - 30px) 100%, /* bas droit décalé */
        0 85%          /* bas gauche remonté */
    );

    border-bottom-right-radius: 150px; /* ⚠️ inversé aussi */
    z-index: 0;
}

.hero-banner-s .container {
    position: relative;
    z-index: 1; 
    display: grid;
    height: 100%;
    align-content: space-between;
    align-content: center;
}

.hero-banner-s .container h3 {
    margin-bottom: 0;
}

.cont-citation-ab {
    position: relative;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
    margin-top: -50px;
}

.cont-citation-ab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);

    clip-path: polygon(
        0 0,        /* haut gauche */
        100% 10%,   /* haut droit descendu */
        100% 100%,  /* bas droit */
        0 90%       /* bas gauche remonté */
    );

    z-index: -1;
}

.cont-fond {
    background-color: var(--alt-bg-color);
    padding: 30px 0 50px 0;
}

.cont-pp-fond {
    text-align: center;
}

.cont-pp-fond > img {
    font-size: 250px;
    margin-top: -150px;
}

.fonct-profil {
    margin-bottom: 50px;
}

.fonct-profil > h3 {
    color: var(--primary-color);
}

.fonct-profil > span {
    border-bottom: 5px solid var(--accent-color);
    height: 5px;
    width: 20vw;
    display: block;
}

.cont-form-contact {
    background-color: var(--alt-bg-color);
    border-radius: 15px;
    padding:50px;
}

.champ {
    width: 100%;
    background-color: transparent;
    border: none;
    outline: transparent;
    padding: 10px 15px;
    border-left: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.form-group {

}

.item-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.item-contact > i {
    color: var(--accent-color);
    font-size: 30px;
}

.item-contact > a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 3px solid var(--primary-color);
}

.cont-rs {
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.08);
    border-radius: 30px;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cont-rs > i {
    font-size: 50px;
    color: var(--accent-color);
}

.cont-rs > div {
    display: grid;
}

.cont-rs > div > a {
    text-decoration: none;
    color: var(--text-color);
}

.cont-rs > div > a:hover {
    color: var(--text-color);
}

.cont-reponse {
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.08);
    border-radius: 30px;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: center;
}

.cont-reponse > i {
    font-size: 50px;
}

.sep-tg-h {
    background-color: var(--accent-color);
    width: 50vw;
    height: 5px;
    display: block;
}

.sep-tg-b {
    background-color: var(--accent-color);
    width: 50vw;
    height: 5px;
    display: block;
}

.use-case-offer {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.use-case-offer > span {
    display: block;
    background-color: var(--primary-color);
    width: 3px;
    height: 200px;
}

.cont-img-offer {
    background: var(--alt-bg-color);
    height: 450px;
    width: 100%;
    border-radius: 0 50px 0 50px;
}

.item-offer {
    margin: 10px 0;
}

.cont-t-item-offer {
    background-color: var(--primary-color);
    padding: 15px ;
    color: #fff;
    margin-bottom: 10px;
}

.cont-t-item-offer > h4 {
    margin-bottom: 0;
}

.item-team {
    display: grid;
    justify-items: center;
    gap: 30px;
}

.cont-pp-team {
    height: 250px;
    width: 60%;
    display: block;
    border-radius: 0 50px 0 50px;
}

.txt-team {
    text-align: center;
}

.txt-team > h5 {
    font-weight: 600;
    color: var(--accent-color);
}

.txt-team > p {
    margin-bottom: 0;
}

.rs-team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rs-team > a {
    color: var(--accent-color);
    font-size: 25px;
    text-decoration: none;
}

.rs-team > a:hover {
    color: var(--accent-color);
}