/* =========================================================
   CAMP+ — feuille de style
    1. Jetons          6. Solutions       11. Pied de page
    2. Base            7. Fonctionnement  12. Bande d'atouts
    3. En-tête         8. Comparaison     13. Duo texte / image
    4. Héros           9. Publics + appel 14. Conçu au Canada
    5. Bandeaux photo 10. Nous joindre    15. Sceau
   16. Bannière des pages internes        18. Listes à marqueurs
   17. Cartes de solutions                19. Citation + barre d'appel
   20. Animations / responsive
   ========================================================= */

/* 1. Jetons ---------------------------------------------- */
:root {
  --vert-900: #0d2e1a;
  --vert-850: #122418;
  --vert-700: #1a5232;
  --vert-600: #2a6b41;
  --vert-200: #cfe0d4;
  --vert-050: #eef4ef;

  --orange: #e07b28;
  --orange-fonce: #c46a1c;
  --orange-doux: #c87b36;

  --creme: #f2efe7;
  --blanc-casse: #fbfaf7;
  --blanc: #ffffff;

  --encre: #16211c;
  --encre-doux: #5b6660;
  --ligne: #e3dfd3;
  --rouge: #c0392b;

  --largeur: 1060px;
  --gouttiere: clamp(1.25rem, 4vw, 2.5rem);
  --entete-h: 68px;
  --transition: 220ms cubic-bezier(.4, 0, .2, 1);
  --police: "Inter", "Segoe UI Variable Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 2. Base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--entete-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--police);
  font-size: 16px;
  line-height: 1.65;
  color: var(--encre);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 3px; }

.conteneur { width: min(100% - (var(--gouttiere) * 2), var(--largeur)); margin-inline: auto; }

.lien-evitement {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  padding: .8rem 1.2rem; background: var(--vert-900); color: #fff;
  font-weight: 600; text-decoration: none;
}
.lien-evitement:focus { left: 1rem; top: 1rem; }

.icone {
  width: 24px; height: 24px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.erable { width: 15px; height: 15px; flex: none; color: var(--orange); }

/* Sections et titraille */
.section { padding-block: clamp(3.5rem, 7vw, 5.75rem); }
.section--creme { background: var(--creme); }
.section--blanc { background: var(--blanc-casse); }

.titraille { max-width: 46rem; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem); text-align: center; }

.surtitre {
  margin-bottom: .85rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--orange-doux);
}

.titre {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 800; line-height: 1.14; letter-spacing: -.025em;
}
.titre--gauche { text-align: left; }

.sous-titre { margin-top: 1rem; font-size: 1.02rem; color: var(--encre-doux); }

/* Boutons */
.bouton {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 1.9rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; white-space: nowrap;
  border: 1.5px solid transparent; border-radius: 4px; cursor: pointer;
  font-family: inherit;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
}
.bouton:hover { transform: translateY(-2px); }

.bouton--orange { background: var(--orange); color: #fff; }
.bouton--orange:hover { background: var(--orange-fonce); }

.bouton--contour { border-color: rgba(255, 255, 255, .85); color: #fff; }
.bouton--contour:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.bouton--demo {
  padding: .82rem 1.4rem;
  font-size: .72rem;
  background: var(--vert-700);
  border-color: var(--vert-600);
  color: rgba(255, 255, 255, .82);
}
.bouton--demo:hover { background: var(--vert-600); color: #fff; }

.bouton--pleine { width: 100%; }

.groupe-boutons { display: flex; flex-wrap: wrap; gap: 1rem; }
.groupe-boutons--centre { justify-content: center; }

/* 3. En-tête --------------------------------------------- */
.entete {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.entete__interieur {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; height: var(--entete-h);
}

.entete.est-defile {
  background: rgba(242, 239, 231, .95);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(0, 0, 0, .06);
}

.logo {
  font-size: 1.42rem; font-weight: 800; letter-spacing: -.045em;
  text-decoration: none; color: #fff; transition: color var(--transition);
}
.logo span { color: var(--orange); margin-left: .1em; }
.entete.est-defile .logo { color: var(--vert-900); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__liste { display: flex; align-items: center; gap: 1.6rem; }

.nav__lien {
  position: relative; display: inline-block; padding: .4rem 0;
  font-size: .92rem; font-weight: 500; text-decoration: none;
  color: rgba(255, 255, 255, .88); white-space: nowrap;
  transition: color var(--transition);
}
.nav__lien::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--transition);
}
.nav__lien:hover { color: #fff; }
.nav__lien.est-actif::after { transform: scaleX(1); }

.entete.est-defile .nav__lien { color: var(--encre); }
.entete.est-defile .nav__lien:hover,
.entete.est-defile .nav__lien.est-actif { color: var(--vert-900); }

/* Sélecteur de langue */
.langues {
  display: inline-flex; align-items: center; gap: 2px;
  padding: 3px; flex: none;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  transition: background var(--transition), border-color var(--transition);
}

.langues__bouton {
  padding: .3rem .62rem;
  font-family: inherit; font-size: .72rem; font-weight: 700; letter-spacing: .07em;
  color: rgba(255, 255, 255, .72);
  background: none; border: 0; border-radius: 999px; cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.langues__bouton:hover { color: #fff; }
.langues__bouton.est-actif { background: var(--orange); color: #fff; }
.langues__bouton.est-actif:hover { background: var(--orange-fonce); color: #fff; }

.entete.est-defile .langues {
  background: rgba(13, 46, 26, .05);
  border-color: rgba(13, 46, 26, .16);
}
.entete.est-defile .langues__bouton { color: var(--encre-doux); }
.entete.est-defile .langues__bouton:hover { color: var(--vert-900); }
.entete.est-defile .langues__bouton.est-actif { color: #fff; }

.bascule {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 9px;
  background: none; border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 5px; cursor: pointer;
}
.bascule span { height: 2px; background: #fff; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.entete.est-defile .bascule { border-color: rgba(0, 0, 0, .18); }
.entete.est-defile .bascule span { background: var(--encre); }
.bascule[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bascule[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bascule[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 4. Héros ----------------------------------------------- */
.heros {
  position: relative;
  display: flex; align-items: center;
  min-height: 100vh;
  padding-block: calc(var(--entete-h) + 2rem) 6rem;
  /* La photo garde ses proportions et s'ancre à droite ; le dégradé ci-dessous
     fond son bord gauche dans le vert foncé pour éviter toute couture visible. */
  background: #14200f url("../img/heros.jpg") right center / auto 100% no-repeat;
  color: #fff;
  overflow: hidden;
}
.heros::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 28, 17, .94) 0%, rgba(10, 28, 17, .93) 30%,
                           rgba(10, 28, 17, .78) 40%, rgba(10, 28, 17, .5) 56%,
                           rgba(10, 28, 17, .28) 76%, rgba(10, 28, 17, .22) 100%),
    linear-gradient(180deg, rgba(10, 28, 17, .5) 0%, rgba(10, 28, 17, 0) 26%);
}
.heros > .conteneur { position: relative; }
.heros__interieur { max-width: 33rem; }

.heros__titre {
  font-size: clamp(2.3rem, 4.6vw, 3.5rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.032em;
}
.heros__texte {
  margin-block: 1.5rem 2.2rem;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  color: rgba(255, 255, 255, .85);
  max-width: 30rem;
}

.mention-canada {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .92rem; color: rgba(255, 255, 255, .88);
}
.heros .mention-canada { margin-top: 2.4rem; }

.defilement {
  position: absolute; left: 50%; bottom: 2.2rem;
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255, 255, 255, .6);
  border-radius: 12px;
  transform: translateX(-50%);
}
.defilement span {
  position: absolute; left: 50%; top: 8px;
  width: 3px; height: 7px; margin-left: -1.5px;
  background: rgba(255, 255, 255, .85); border-radius: 2px;
  animation: molette 1.9s ease-in-out infinite;
}
@keyframes molette {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(11px); opacity: .1; }
}

/* Grille d'atouts */
.atouts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
}
.atout { text-align: center; }
.atout .icone { width: 34px; height: 34px; margin: 0 auto 1.4rem; color: var(--vert-600); stroke-width: 1.4; }
.atout h3 { margin-bottom: .55rem; font-size: 1rem; font-weight: 700; line-height: 1.3; }
.atout p { font-size: .9rem; color: var(--encre-doux); line-height: 1.55; }

/* 5. Bandeaux photo -------------------------------------- */
.bande {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 7rem);
  background-size: cover; background-position: center;
  color: #fff; text-align: center;
}
.bande--lac   { background-image: url("../img/bande-lac.jpg"); }
.bande--foret { background-image: url("../img/bande-foret.jpg"); }
.bande::before { content: ""; position: absolute; inset: 0; background: rgba(9, 24, 15, .5); }
.bande__interieur { position: relative; max-width: 46rem; margin-inline: auto; }

.bande__titre {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800; line-height: 1.16; letter-spacing: -.025em;
}
.bande__texte { margin-block: 1.1rem 2.2rem; color: rgba(255, 255, 255, .88); }

/* Intro sombre */
.intro-sombre {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--vert-900); color: #fff; text-align: center;
}
.intro-sombre__titre {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800; line-height: 1.16; letter-spacing: -.025em;
}
.intro-sombre__texte {
  max-width: 42rem; margin: 1.1rem auto 0;
  color: rgba(255, 255, 255, .78);
}

/* 6. Solutions ------------------------------------------- */
.produits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.4rem);
}
.produit {
  display: flex; flex-direction: column;
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-radius: 8px; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.produit:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -26px rgba(13, 46, 26, .45); }
.produit img { width: 100%; height: auto; aspect-ratio: 237 / 182; object-fit: cover; }
.produit__corps { padding: 1.05rem 1.15rem 1.35rem; }
.produit__corps h3 { margin-bottom: .35rem; font-size: .98rem; font-weight: 700; }
.produit__corps p { font-size: .88rem; color: var(--encre-doux); line-height: 1.5; }

/* 7. Fonctionnement -------------------------------------- */
.etapes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.6rem);
}
.etape { position: relative; text-align: center; padding-top: .25rem; }

.etape__index {
  position: absolute; left: -.6rem; top: 3.1rem;
  font-size: .85rem; color: var(--encre-doux);
}
.etape__fleche {
  position: absolute; left: .8rem; top: 3.15rem;
  width: 22px; height: 14px;
  fill: none; stroke: var(--encre-doux); stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: .55;
}

.etape__cercle {
  position: relative;
  display: grid; place-items: center;
  width: 104px; height: 104px; margin: 0 auto 1.5rem;
  background: var(--blanc);
  border: 1.5px solid var(--vert-200);
  border-radius: 50%;
}
.etape__cercle .icone { width: 38px; height: 38px; color: var(--vert-600); stroke-width: 1.35; }

.etape__badge {
  position: absolute; right: 2px; bottom: 2px;
  display: grid; place-items: center;
  width: 26px; height: 26px;
  font-size: .74rem; font-weight: 700; color: #fff;
  background: var(--vert-700); border: 2px solid var(--creme); border-radius: 50%;
}

.etape h3 { margin-bottom: .5rem; font-size: .98rem; font-weight: 700; line-height: 1.3; }
.etape p { font-size: .88rem; color: var(--encre-doux); line-height: 1.55; }

/* 8. Comparaison ----------------------------------------- */
.comparaison {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2rem);
  max-width: 890px; margin-inline: auto;
}
.compare {
  background: var(--blanc);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 18px 40px -30px rgba(13, 46, 26, .5);
}
.compare__titre {
  padding: .95rem 1.5rem;
  font-size: 1.02rem; font-weight: 700; color: #fff; text-align: center;
}
.compare--sans .compare__titre { background: var(--vert-900); }
.compare--avec .compare__titre { background: var(--vert-600); }

.compare__liste { padding: .35rem 1.5rem 1.1rem; }
.compare__liste li {
  display: flex; align-items: center; gap: .75rem;
  padding-block: .85rem;
  font-size: .95rem;
  border-bottom: 1px solid var(--ligne);
}
.compare__liste li:last-child { border-bottom: 0; }
.compare__liste .icone { width: 19px; height: 19px; }
.compare--sans .icone { color: var(--rouge); }
.compare--avec .icone { color: var(--vert-600); }

/* Nos installations */
.groupe-sites + .groupe-sites { margin-top: 2.8rem; }
.groupe-sites__etiquette {
  display: flex; align-items: center; gap: .5rem;
  padding-bottom: .7rem; margin-bottom: 1.2rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--encre-doux);
  border-bottom: 1px solid var(--ligne);
}
.groupe-sites__etiquette span { opacity: .5; }

.sites { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; }
.site {
  display: flex; align-items: flex-start; gap: .95rem;
  padding: 1.2rem 1.3rem;
  background: var(--blanc);
  border: 1px solid var(--ligne);
  border-left: 3px solid var(--vert-600);
  border-radius: 8px;
}
.site__icone {
  display: grid; place-items: center; flex: none;
  width: 38px; height: 38px;
  background: var(--vert-050); border-radius: 50%;
}
.site__icone .icone { width: 20px; height: 20px; color: var(--vert-600); }
.site h3 { margin-bottom: .3rem; font-size: .95rem; font-weight: 700; }
.site p { font-size: .86rem; color: var(--encre-doux); line-height: 1.5; }

/* 9. Publics + appel ------------------------------------- */
.publics {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--vert-850) url("../img/fond-feuillage.jpg") center / cover no-repeat;
  color: #fff;
}
.publics::before { content: ""; position: absolute; inset: 0; background: rgba(11, 26, 17, .72); }
.publics > .conteneur { position: relative; }

.publics__titre {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800; line-height: 1.16; letter-spacing: -.025em; text-align: center;
}

.publics__liste {
  display: grid; grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 1rem;
  margin-block: clamp(2.5rem, 5vw, 3.5rem);
}
.publics__liste li { display: flex; flex-direction: column; align-items: center; gap: .8rem; text-align: center; }
.publics__liste .icone { width: 28px; height: 28px; stroke-width: 1.3; color: rgba(255, 255, 255, .92); }
.publics__liste span { font-size: .8rem; line-height: 1.35; color: rgba(255, 255, 255, .85); }

.appel {
  padding: clamp(2.2rem, 4.5vw, 3.2rem);
  background: linear-gradient(135deg, #1c5636 0%, #144227 100%);
  border-radius: 10px; text-align: center;
}
.appel__titre { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -.02em; }
.appel__texte { margin-block: .9rem 1.9rem; color: rgba(255, 255, 255, .82); }

/* 10. Nous joindre --------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}
.contact__texte { margin-top: 1.2rem; color: var(--encre-doux); max-width: 30rem; }
.contact__lieu { display: flex; align-items: flex-start; gap: .75rem; margin-top: 2rem; font-size: .93rem; }
.contact__lieu .icone { width: 21px; height: 21px; margin-top: 2px; color: var(--orange); }
.contact__lieu span { color: var(--encre-doux); }
.contact__lieu strong { color: var(--encre); }

.formulaire {
  padding: clamp(1.6rem, 3vw, 2.3rem);
  background: var(--blanc);
  border-radius: 10px;
  box-shadow: 0 26px 60px -38px rgba(13, 46, 26, .55);
}
.duo-champs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.champ { display: grid; gap: .4rem; margin-bottom: 1.05rem; }
.champ label { font-size: .84rem; font-weight: 600; }
.champ input, .champ select, .champ textarea {
  width: 100%; padding: .72rem .85rem;
  font: inherit; font-size: .93rem; color: var(--encre);
  background: var(--blanc-casse);
  border: 1px solid var(--ligne); border-radius: 6px;
  transition: border-color var(--transition), background var(--transition);
}
.champ textarea { resize: vertical; min-height: 104px; }
.champ input:focus, .champ select:focus, .champ textarea:focus {
  background: #fff; border-color: var(--vert-600);
  outline: 2px solid rgba(42, 107, 65, .16); outline-offset: 0;
}
.formulaire__note { margin-top: .9rem; font-size: .82rem; color: var(--encre-doux); text-align: center; }
.formulaire__note--succes { color: var(--vert-600); font-weight: 600; }

/* 11. Pied de page --------------------------------------- */
.pied { padding-block: 1.6rem; background: var(--vert-900); color: rgba(255, 255, 255, .7); }
.pied__interieur {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.pied__marque { display: flex; align-items: center; gap: 1.75rem; }
.pied__marque .logo { font-size: 1.28rem; color: #fff; }
.pied__droits { font-size: .86rem; }

.pied__nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.pied__nav a {
  font-size: .88rem; text-decoration: none;
  color: rgba(255, 255, 255, .7); transition: color var(--transition);
}
.pied__nav a:hover { color: #fff; }

/* 12. Bande d'atouts ------------------------------------- */
.bande-atouts {
  padding-block: clamp(1.8rem, 3.5vw, 2.6rem);
  background: var(--vert-900); color: #fff;
}
.bande-atouts__liste {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25rem; text-align: center;
}
.bande-atouts__liste li { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.bande-atouts .icone { width: 30px; height: 30px; stroke-width: 1.3; color: rgba(255, 255, 255, .92); }
.bande-atouts span { font-size: .88rem; line-height: 1.4; color: rgba(255, 255, 255, .9); }

.bande-atouts__liste--separee { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.bande-atouts__liste--separee li + li { border-left: 1px solid rgba(255, 255, 255, .14); }

/* 13. Duo texte / image ---------------------------------- */
.pile-duos { display: grid; gap: clamp(3rem, 6vw, 5rem); }

.duo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.duo--image-gauche .duo__image { order: -1; }

.titre--moyen { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.duo__paragraphe { margin-top: 1.3rem; color: var(--encre-doux); max-width: 34rem; }
.duo__paragraphe strong { color: var(--encre); }

.duo__image { margin: 0; }
.duo__image img {
  width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: 14px; box-shadow: 0 30px 60px -42px rgba(13, 46, 26, .65);
}

.lien-fleche {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.6rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; color: var(--orange);
  transition: color var(--transition);
}
.lien-fleche .icone { width: 18px; height: 18px; stroke-width: 2; transition: transform var(--transition); }
.lien-fleche:hover { color: var(--orange-fonce); }
.lien-fleche:hover .icone { transform: translateX(4px); }

/* 14. Conçu au Canada ------------------------------------ */
.canada { padding-block: clamp(3.2rem, 6vw, 5rem); background: var(--vert-900); color: #fff; }
.canada__interieur {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem);
}
.canada__erable { width: clamp(84px, 11vw, 138px); height: auto; color: #d8232a; }
.canada__titre {
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-weight: 800; line-height: 1.26; letter-spacing: -.02em;
}
.canada__paragraphe {
  margin-top: 1.1rem; max-width: 34rem;
  font-size: .95rem; line-height: 1.6; color: rgba(255, 255, 255, .76);
}

/* 15. Sceau « Fièrement canadien » ----------------------- */
.sceau { width: clamp(104px, 13vw, 146px); }
.sceau svg { display: block; width: 100%; height: auto; }
.sceau__anneau { fill: none; stroke: rgba(255, 255, 255, .55); stroke-width: 2; }
.sceau__anneau--fin { stroke: rgba(255, 255, 255, .26); stroke-width: 1; }
.sceau__texte {
  fill: #fff; font-family: var(--police);
  font-size: 14px; font-weight: 700; letter-spacing: .12em; text-anchor: middle;
}
.sceau__erable { color: #fff; overflow: visible; }

/* 16. Bannière des pages internes ------------------------ */
.heros-page {
  position: relative; display: flex; align-items: center;
  min-height: clamp(300px, 40vw, 420px);
  padding-block: calc(var(--entete-h) + 2.5rem) 3rem;
  background: var(--vert-900) center / cover no-repeat;
  color: #fff; overflow: hidden;
}
.heros-page::before { content: ""; position: absolute; inset: 0; }
.heros-page > .conteneur { position: relative; }
.heros-page__interieur { max-width: 34rem; }
.heros-page__titre {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -.028em;
}
.heros-page__texte {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.3vw, 1.1rem); line-height: 1.6;
  color: rgba(255, 255, 255, .85);
}

/* Photo ancrée à droite comme le héros ; le dégradé fond son bord gauche dans
   le vert, ce qui évite une couture visible là où la photo commence. */
.heros-page--apropos {
  background-image: url("../../img/cote_drapeau.jpg");
  background-position: right center; background-size: auto 100%;
}
.heros-page--apropos::before {
  background:
    linear-gradient(90deg, rgba(9, 26, 16, .95) 0%, rgba(9, 26, 16, .94) 45%,
                           rgba(9, 26, 16, .88) 62%, rgba(9, 26, 16, .45) 76%,
                           rgba(9, 26, 16, .2) 89%, rgba(9, 26, 16, .12) 100%),
    linear-gradient(180deg, rgba(9, 26, 16, .5) 0%, rgba(9, 26, 16, 0) 32%);
}

.heros-page--solutions {
  background-image: url("../../img/casier_banniere.jpg");
  background-position: right center; background-size: auto 108%;
}
.heros-page--solutions::before {
  background: linear-gradient(90deg, rgba(10, 32, 19, .98) 0%, rgba(10, 32, 19, .95) 32%,
                                     rgba(10, 32, 19, .62) 52%, rgba(10, 32, 19, .1) 76%,
                                     rgba(10, 32, 19, .04) 100%);
}

/* 17. Cartes de solutions -------------------------------- */
.offres {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.6vw, 2rem);
}
.offre {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--blanc); border: 1px solid var(--ligne); border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.offre:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -34px rgba(13, 46, 26, .5); }
.offre img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.offre__corps { display: flex; flex-direction: column; flex: 1; padding: 1.3rem 1.35rem 1.5rem; }
.offre__titre { font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.offre__corps p { margin-top: .6rem; font-size: .9rem; line-height: 1.55; color: var(--encre-doux); }
.offre .lien-fleche { margin-top: auto; padding-top: 1.2rem; font-size: .72rem; }

/* 18. Listes à marqueurs --------------------------------- */
.marqueurs {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem 1.2rem; margin-top: 2.2rem; text-align: center;
}
.marqueurs--quatre { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.marqueurs li { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.marqueurs .icone { width: 32px; height: 32px; stroke-width: 1.35; color: var(--vert-700); }
.marqueurs span { font-size: .84rem; line-height: 1.4; font-weight: 600; }
.erable--marqueur { width: 32px; height: 32px; color: var(--vert-700); }

.coches { display: grid; gap: .75rem; margin-top: 1.7rem; }
.coches li { display: flex; align-items: center; gap: .7rem; font-size: .93rem; }
.coches .icone { width: 21px; height: 21px; stroke-width: 1.6; color: var(--vert-600); }

/* 19. Citation et barre d'appel -------------------------- */
.citation { padding-block: clamp(2.6rem, 5vw, 3.6rem); background: var(--vert-900); color: #fff; }
.citation__interieur {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.citation__texte {
  max-width: 40rem; margin: 0; text-align: center;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem); font-weight: 600; line-height: 1.45;
}
.citation__guillemets {
  margin-right: .2rem; color: var(--orange);
  font-size: 1.7em; line-height: 0; vertical-align: -.28em;
}
.citation__erable { width: clamp(40px, 5vw, 58px); height: auto; color: #fff; flex: none; }

.barre-appel {
  padding-block: clamp(2.2rem, 4vw, 3rem);
  background: var(--vert-850); border-top: 1px solid rgba(255, 255, 255, .08);
}
.barre-appel__interieur {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.barre-appel__titre {
  font-size: .82rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255, 255, 255, .85);
}
.bouton--contour-sombre { border-color: rgba(255, 255, 255, .42); }

/* Bandeau photo avec sceau (page Solutions) */
.bande--sceau { text-align: left; }
.bande__interieur--large { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; max-width: none; }
.bande__titre--gauche { text-align: left; }
.bande__signature { display: flex; align-items: center; gap: 1.2rem; }
.bande__signature p { font-size: clamp(.95rem, 1.4vw, 1.1rem); font-weight: 700; line-height: 1.35; }
.bande__signature .plus { color: var(--orange); }

/* 20. Animations / responsive ---------------------------- */
[data-anim] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.22, 1, .36, 1);
}
[data-anim].est-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-anim] { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .publics__liste { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.6rem 1rem; }
}

/* Barre de navigation resserrée avant le passage au menu mobile. */
@media (min-width: 981px) and (max-width: 1180px) {
  .nav { gap: 1.1rem; }
  .nav__liste { gap: 1.05rem; }
}

@media (max-width: 980px) {
  .bascule { display: flex; }

  .nav {
    position: fixed; inset: var(--entete-h) 0 auto;
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: calc(100dvh - var(--entete-h));
    padding: 1rem var(--gouttiere) 1.75rem;
    overflow-y: auto;
    background: var(--creme);
    border-bottom: 1px solid var(--ligne);
    box-shadow: 0 22px 40px -28px rgba(13, 46, 26, .5);
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }
  .nav.est-ouverte { opacity: 1; visibility: visible; transform: none; }

  .nav__liste { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__liste li + li { border-top: 1px solid var(--ligne); }
  .nav__lien { display: block; padding: .9rem 0; font-size: 1rem; color: var(--encre); }
  .nav__lien::after { display: none; }
  .nav__lien.est-actif { color: var(--vert-700); font-weight: 700; }
  .nav .bouton--demo { margin-top: 1rem; width: 100%; padding: .95rem 1.4rem; font-size: .78rem; color: #fff; }

  .nav .langues {
    align-self: flex-start; margin-top: 1.2rem;
    background: rgba(13, 46, 26, .05); border-color: rgba(13, 46, 26, .16);
  }
  .nav .langues__bouton { padding: .42rem .95rem; font-size: .8rem; color: var(--encre-doux); }
  .nav .langues__bouton.est-actif { color: #fff; }

  .atouts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .produits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sites { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }

  .etapes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 1.5rem; }
  .etape__index, .etape__fleche { display: none; }

  .bande-atouts__liste,
  .bande-atouts__liste--separee { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.9rem 1rem; }
  .bande-atouts__liste--separee li + li { border-left: 0; }

  .duo { grid-template-columns: 1fr; }
  .duo--image-gauche .duo__image { order: 0; }

  .canada__interieur { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .canada__paragraphe { margin-inline: auto; }

  .offres { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .marqueurs--quatre { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .citation__interieur { flex-direction: column; }
  .barre-appel__interieur { flex-direction: column; align-items: flex-start; }
  .bande__interieur--large { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .heros { background-position: 70% center; min-height: 88vh; }
  .atouts { grid-template-columns: 1fr; gap: 2.4rem; }
  .produits { grid-template-columns: 1fr; }
  .comparaison { grid-template-columns: 1fr; }
  .etapes { grid-template-columns: 1fr; }
  .publics__liste { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .duo-champs { grid-template-columns: 1fr; gap: 0; }
  .groupe-boutons .bouton { flex: 1 1 100%; }
  .pied__interieur { flex-direction: column; align-items: flex-start; }
  .pied__marque { flex-direction: column; align-items: flex-start; gap: .75rem; }

  .bande-atouts__liste,
  .bande-atouts__liste--separee { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offres { grid-template-columns: 1fr; }
  .marqueurs, .marqueurs--quatre { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .heros-page { min-height: 0; padding-block: calc(var(--entete-h) + 2.5rem) 2.5rem; }
  .barre-appel__interieur .groupe-boutons { width: 100%; }
}
