/* ==========================================================================
   Chrono Plombier — Landing pages Google Ads
   Conception MOBILE FIRST : le style de base cible le téléphone,
   les media queries n'ajoutent que les adaptations tablette / desktop.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Police auto-hébergée
   ------------------------------------------------------------------------
   Manrope en fonte VARIABLE (axe 200-800) : un seul fichier couvre les
   graisses 600/800/900 utilisées (900 est ramené à 800 par le navigateur,
   exactement comme le faisait Google Fonts). Auto-hébergée pour retirer
   fonts.googleapis.com du chemin critique ET ne plus transmettre l'IP des
   visiteurs à Google (RGPD).
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2?v=1') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2?v=1') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --blue: #0a6ab1;
  --blue-dark: #06487a;
  --blue-deep: #0a3668;
  --ink: #0d1b26;
  --body: #465563;
  /* #5f6d7b et pas plus clair : 5,0:1 sur blanc, 4,7:1 sur --surface-2 —
     l'ancien #6d7b89 tombait à 4,33:1 / 4,06:1, sous le seuil AA de 4,5:1. */
  --muted: #5f6d7b;
  --line: #e4eaf0;
  /* Bordure des champs de saisie. --line (1,21:1) est concu pour des filets
     decoratifs : sur un champ de formulaire il devient quasi invisible en
     plein soleil, situation typique d'un depannage. 3,86:1 sur blanc, au-dessus
     du seuil de 3:1 exige pour un element d'interface (WCAG 1.4.11). */
  --line-field: #78838f;
  --surface: #ffffff;
  --surface-2: #f4f8fc;
  --blue-50: #eaf5ff;
  --blue-100: #d3e9fb;
  --blue-200: #aecde6;

  --amber: #ffab1f;
  --amber-dark: #e08c00;
  --green: #0f8a5f;
  --green-50: #e7f6ef;
  --red: #d0342c;
  --star: #fbbc04;

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1120px;
  --pad: 1.25rem;
  --sec: 3.25rem;
  --r: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(13, 27, 38, .06), 0 2px 8px rgba(13, 27, 38, .05);
  --sh: 0 4px 14px rgba(13, 27, 38, .08), 0 14px 34px rgba(13, 27, 38, .07);
  --sh-lg: 0 10px 28px rgba(10, 54, 104, .12), 0 28px 64px rgba(10, 54, 104, .16);
  --sh-amber: 0 6px 18px rgba(255, 171, 31, .42);

  --hdr: 62px;
  --bar: 74px; /* barre d'appel fixe en bas */
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr) + 12px);
  /* Sans cela, le focus clavier s'arretait SOUS la barre d'appel fixe :
     l'element actif etait invisible au milieu de la page. */
  scroll-padding-bottom: calc(var(--bar) + 12px);
  overflow-x: clip;
}

body {
  margin: 0;
  padding-bottom: var(--bar);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg, picture { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3 {
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.022em;
  text-wrap: balance;
}
h1 { font-size: clamp(1.85rem, 1.35rem + 2.3vw, 3.15rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem); }
h3 { font-size: 1.1rem; font-weight: 800; }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
a { color: var(--blue); text-underline-offset: 3px; }
strong { color: var(--ink); font-weight: 800; }
ul { margin: 0 0 1em; padding-left: 1.15em; }
li { margin-bottom: .35em; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.sr {
  position: absolute !important;
  width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* Lien d'évitement : invisible jusqu'au focus clavier, puis affiché en
   surimpression pour sauter directement au formulaire. */
a.sr:focus-visible {
  position: fixed !important;
  top: 12px; left: 12px;
  width: auto; height: auto; margin: 0;
  padding: .65rem 1.1rem;
  overflow: visible; clip: auto; white-space: nowrap;
  z-index: 200;
  background: var(--blue-dark); color: #fff;
  border-radius: var(--r);
  font-weight: 800; text-decoration: none;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap--sm { max-width: 720px; }

.sec { padding-block: var(--sec); }
.sec--tight { padding-block: 2.25rem; }
.sec--alt { background: var(--surface-2); }
.sec--ink { background: var(--blue-deep); color: rgba(255,255,255,.82); }
.sec--ink h2, .sec--ink h3 { color: #fff; }

.head { margin-bottom: 2rem; text-align: center; }
.head p { color: var(--muted); font-size: 1.02rem; }
.sec--ink .head p { color: rgba(255,255,255,.78); }

.tag {
  display: inline-block;
  margin-bottom: .85rem;
  padding: .38rem .85rem;
  border-radius: var(--r-pill);
  background: var(--blue-50);
  color: var(--blue-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.sec--ink .tag { background: rgba(255,255,255,.16); color: #fff; }

/* --------------------------------------------------------------------------
   3. Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  min-height: 54px;
  padding: .9rem 1.4rem;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .14s, box-shadow .14s, background-color .14s;
}
.btn:active { transform: scale(.985); }
.btn svg { width: 21px; height: 21px; flex: none; }

.btn--call {
  background: var(--amber);
  color: #1b1200;
  box-shadow: var(--sh-amber);
}
.btn--call:hover { background: #ffb93d; color: #1b1200; }

.btn--main {
  background: linear-gradient(96deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(10, 106, 177, .35);
}
.btn--main:hover { color: #fff; }

.btn--ghost { background: #fff; border-color: var(--blue-200); color: var(--blue-dark); }
.btn--ghost:hover { background: var(--blue-50); color: var(--blue-dark); }

.btn--light { background: #fff; color: var(--blue-dark); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,.14); color: #fff; }

.btns { display: grid; gap: .7rem; }
.note { margin-top: .8rem; font-size: .85rem; color: var(--muted); text-align: center; }
.sec--ink .note { color: rgba(255,255,255,.68); }

@media (min-width: 640px) {
  .btn { width: auto; }
  .btns { display: flex; flex-wrap: wrap; gap: .8rem; }
  .btns .btn { flex: 1 1 240px; }
}

/* --------------------------------------------------------------------------
   4. En-tête
   -------------------------------------------------------------------------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  /* Fond opaque : le backdrop-filter d'origine etait invisible derriere un
     fond deja a 95 % d'opacite, mais imposait une passe de composition GPU
     a chaque image du defilement — premier poste de saccade sur Android. */
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.hdr__in {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: var(--hdr);
}
.logo { display: flex; align-items: center; gap: .55rem; text-decoration: none; }
.logo__mark { width: 36px; height: 36px; flex: none; }
.logo__name {
  display: block;
  font-size: 1.06rem; font-weight: 900; letter-spacing: -.03em;
  color: var(--blue-deep); text-transform: uppercase; line-height: 1.05;
}
.logo__sub {
  display: block;
  font-size: .58rem; font-weight: 800; letter-spacing: .15em;
  /* Doré foncé par défaut : le --amber clair tombe à 1,89:1 de contraste
     sur le fond blanc de l'en-tête (bien sous le seuil de 4,5:1) — quasi
     illisible. Ce ton plus soutenu reste dans la même famille dorée. */
  color: #a56a00; text-transform: uppercase;
}
/* Sur le fond sombre du pied de page, le doré clair d'origine passe très
   bien (9,2:1) : on le restitue tel quel. */
.ftr .logo__sub { color: var(--amber); }
.hdr__call {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: .45rem;
  min-height: 44px; /* cible tactile — c'est le bouton de conversion n°1 */
  padding: .5rem .95rem;
  border-radius: var(--r-pill);
  background: var(--amber);
  color: #1b1200;
  font-size: .95rem; font-weight: 900; white-space: nowrap;
  text-decoration: none;
  box-shadow: var(--sh-amber);
}
.hdr__call svg { width: 17px; height: 17px; }
/* Le numéro reste visible à toutes les tailles : sous 420 px on compacte
   le logo et la pastille pour que tout tienne sur une ligne. */
@media (max-width: 419px) {
  .hdr__in { gap: .5rem; }
  .logo { gap: .45rem; }
  .logo__mark { width: 30px; height: 30px; }
  .logo__name { font-size: .92rem; }
  .logo__sub { font-size: .5rem; }
  .hdr__call { padding: .45rem .65rem; gap: .35rem; font-size: .82rem; }
  .hdr__call svg { width: 14px; height: 14px; }
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;          /* garde les fonds en z-index négatif dans la section */
  padding-block: 2.25rem 2.75rem;
  background: linear-gradient(168deg, var(--blue-50) 0%, #fff 62%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -140px; right: -110px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,106,177,.13), transparent 68%);
}
.hero > .wrap { position: relative; z-index: 1; }

/* ------------------------------------------------------------------------
   Photo de fond du hero
   ------------------------------------------------------------------------
   La photo est déclarée en CSS (et non par une balise <img>) parce qu'elle
   est décorative : elle ne doit être ni lue par un lecteur d'écran, ni
   indexée comme contenu.

   On la passe par la variable --hero-photo, posée en style inline sur
   l'élément. Si le fichier n'existe pas encore, rien ne casse : le dégradé
   de la section reste visible.

     <div class="hero__bg" style="--hero-photo:url('…/fond-hero.jpg')"></div>

   MOBILE (par défaut) : voile vertical, très opaque en haut. Un dégradé
   horizontal placerait la photo pile derrière le titre sur un écran étroit,
   et le texte deviendrait illisible.
   ------------------------------------------------------------------------ */
.hero__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(168deg, var(--blue-50) 0%, #fff 62%);
}

/* La photo de fond est déclarée ICI, et pas en style inline dans le
   HTML. Raison apprise à la dure : une url() relative transportée par une
   variable CSS définie dans la page est résolue par le navigateur par
   rapport à CETTE FEUILLE (assets/css/), pas par rapport à la page —
   le fichier était donc cherché dans assets/css/assets/img/… → 404, et la
   photo n'était jamais peinte. En déclarant la variable dans la feuille,
   « ../img/ » se résout sans ambiguïté, y compris en file://. */
/* ⚠️ Ces URLs doivent rester caractère pour caractère identiques aux
   <link rel="preload"> des pages HTML, sinon double téléchargement. */
.hero__bg--nice  { --hero-photo: url(../img/photos/fond-hero-nice.jpg?v=13); }

/* La photo est affichée à PLEINE OPACITÉ, recouverte d'un voile blanc en
   dégradé — la technique du site d'origine.

   Pourquoi pas une simple opacité réduite sur la photo ? Parce que cette
   photo est presque entièrement blanche (mur, climatiseur) : atténuée à
   38 % sur un fond blanc, elle disparaissait purement et simplement.
   Ici les zones sous le texte sont protégées par le voile, et le reste de
   la photo garde ses couleurs réelles — donc reste visible.

   Photo carrée (844×844) recadrée en bandeau : on remonte l'ancrage pour
   ne pas couper la tête du technicien, situé à droite du cadre.

   MOBILE : voile vertical, dense derrière le titre, qui s'éclaircit vers
   le bas (48 % au plus fort de la photo) puis se referme en blanc pour se
   fondre dans la page. */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 480px;
  background-image:
    linear-gradient(180deg,
      rgba(255, 255, 255, .88) 0%,
      rgba(255, 255, 255, .72) 26%,
      rgba(255, 255, 255, .52) 50%,
      rgba(255, 255, 255, .30) 72%,
      #fff 100%),
    var(--hero-photo, none);
  background-size: cover, cover;
  /* Le décalage en px pousse la photo vers la droite et vers le haut.
     Les bords ainsi libérés (24 px à gauche, 24 px en bas) tombent sous
     les zones où le voile est le plus dense : rien ne se voit. */
  background-position: center, calc(52% + 24px) calc(16% - 24px);
  background-repeat: no-repeat, no-repeat;
  opacity: var(--hero-photo-force, 1);
}

/* DESKTOP : le rendu de l'original — voile blanc plein jusqu'à 37 % de la
   largeur, puis transparence progressive : la photo est franchement
   visible à droite. Le masque fond le bas de la bande dans la page. */
@media (min-width: 900px) {
  .hero__bg::after {
    height: 680px;
    background-image:
      linear-gradient(90deg,
        #fff 0%,
        #fff 37%,
        rgba(255, 255, 255, .72) 58%,
        rgba(255, 255, 255, .15) 80%,
        rgba(255, 255, 255, 0) 95%),
      var(--hero-photo, none);
    /* Décalage : 48 px vers la droite (le technicien vient s'appuyer sur le
       bord de l'écran) et 40 px vers le haut. */
    background-position: center, calc(100% + 48px) calc(18% - 40px);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
  }

  /* Le texte du hero reste dans la zone blanche du voile, comme la colonne
     de gauche du site d'origine. Formulaire et cadre photo, plus bas,
     gardent toute la largeur. */
  .hero .gnote, .hero h1, .hero .hero__lead, .hero .usp { max-width: 620px; }
}

/* Économie de données activée : on n'affiche pas la photo. */
@media (prefers-reduced-data: reduce) {
  .hero__bg::after { background-image: none; }
}

.hero h1 { margin-bottom: .45em; color: var(--blue-deep); }
.hero h1 .kick {
  display: block;
  margin-bottom: .5rem;
  font-size: .4em;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--blue);
}
/* --blue-dark et non --blue : sur la photo de fond en mobile, le bleu clair
   tombait a 4,12:1 (seuil 4,5:1) — et c'est le paragraphe qui porte la
   promesse commerciale. Le voile de la photo n'est volontairement PAS
   densifie ici : son reglage actuel est un choix visuel valide. */
.hero__lead { font-size: 1.06rem; color: var(--blue-dark); }
/* Les passages en gras du sous-titre restent dans la famille de bleus,
   un ton plus soutenu pour garder la hiérarchie. */
.hero__lead strong { color: var(--blue-dark); }
.hero__lead .city { color: var(--blue-dark); font-weight: 800; }

.stars { display: inline-flex; gap: 2px; color: var(--star); }
.stars svg { width: 16px; height: 16px; }

.gnote {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-bottom: 1.1rem; padding: .45rem .95rem .45rem .55rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-pill); box-shadow: var(--sh-sm);
}
.gnote__g { width: 22px; height: 22px; flex: none; }
.gnote__txt { font-size: .82rem; font-weight: 800; color: var(--ink); line-height: 1.25; }
.gnote__txt small { display: block; font-weight: 600; color: var(--muted); font-size: .74rem; }

.usp { display: grid; gap: .55rem; margin: 1.4rem 0; padding: 0; list-style: none; }
.usp li {
  display: flex; align-items: flex-start; gap: .6rem;
  margin: 0; font-size: .98rem; font-weight: 700; color: var(--blue-deep);
}
.usp li strong { color: inherit; }
/* Icône de validation reprise telle quelle du site clim-master.fr : disque vert
   clair + coche pleine vert foncé. Les deux couleurs sont écrites dans le SVG
   lui-même (icône bicolore), `color` n'a donc plus d'effet ici. */
.usp svg { width: 23px; height: 23px; flex: none; margin-top: .04em; }

/* --------------------------------------------------------------------------
   6. Formulaire
   -------------------------------------------------------------------------- */
.fcard {
  margin-top: 1.75rem;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.fcard__hd { margin-bottom: 1.1rem; }
.fcard__hd h2 { font-size: 1.28rem; margin-bottom: .3rem; }
.fcard__hd p { font-size: .9rem; color: var(--muted); margin: 0; }
.fcard__ft {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .84rem; color: var(--muted); text-align: center;
  line-height: 1.75;
}
/* Numéro insécable et bien visible, sur sa propre ligne. */
.fcard__tel { white-space: nowrap; font-size: 1.05rem; color: var(--blue-dark); }

.form { display: grid; gap: .85rem; }
.row { display: grid; gap: .85rem; }
@media (min-width: 560px) { .row--2 { grid-template-columns: 1fr 1fr; } }

.f { display: grid; gap: .3rem; }
.f > label { font-size: .82rem; font-weight: 800; color: var(--ink); }
.f .rq { color: var(--red); }
.f input, .f select, .f textarea {
  width: 100%;
  min-height: 52px;
  padding: .8rem .95rem;
  border: 1.5px solid var(--line-field);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 1rem; /* 16px minimum : évite le zoom auto sur iOS */
  color: var(--ink);
  transition: border-color .14s, box-shadow .14s;
}
.f textarea { min-height: 96px; resize: vertical; }
.f select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d7b89' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 17px;
  padding-right: 2.5rem;
}
.f input:focus, .f select:focus, .f textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10,106,177,.14);
}
.f--err input, .f--err select, .f--err textarea { border-color: var(--red); }
.f__err { display: none; font-size: .79rem; font-weight: 700; color: var(--red); }
.f--err .f__err { display: block; }

/* Choix visuels du type de projet */
.picks { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.pick { position: relative; }
.pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.pick span {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .35rem; height: 100%; min-height: 76px;
  padding: .7rem .5rem;
  border: 1.5px solid var(--line-field); border-radius: 12px;
  background: #fff;
  font-size: .82rem; font-weight: 800; color: var(--body);
  text-align: center; line-height: 1.25; cursor: pointer;
  transition: all .14s;
}
.pick svg { width: 24px; height: 24px; color: var(--blue); }
.pick input:checked + span {
  border-color: var(--blue);
  background: var(--blue-50);
  color: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(10,106,177,.13);
}
.pick input:focus-visible + span { outline: 3px solid var(--blue); outline-offset: 2px; }

.consent {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .79rem; color: var(--muted); line-height: 1.5;
}
.consent input { width: 22px; height: 22px; margin: .1rem 0 0; flex: none; accent-color: var(--blue); }

.hp { position: absolute !important; left: -9999px; opacity: 0; pointer-events: none; }

.status { display: none; padding: .85rem 1rem; border-radius: 12px; font-size: .9rem; font-weight: 700; }
.status.on { display: block; }
.status--ok { background: var(--green-50); color: #0a5f43; border: 1px solid #b3e2cd; }
.status--ko { background: #fdecea; color: #93231d; border: 1px solid #f5c2be; }

/* --------------------------------------------------------------------------
   7. Bandeau de confiance
   -------------------------------------------------------------------------- */
.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.trust > div {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .2rem; padding: 1.1rem .75rem; background: #fff; text-align: center;
}
.trust svg { width: 24px; height: 24px; color: var(--blue); margin-bottom: .2rem; }
.trust b { font-size: 1.15rem; font-weight: 900; color: var(--ink); line-height: 1.1; }
.trust span { font-size: .78rem; color: var(--muted); line-height: 1.3; }
@media (min-width: 720px) { .trust { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------------------------------------------
   7 bis. Bandeau assurances (degat des eaux)
   ------------------------------------------------------------------------
   Image unique fournie par l'utilisateur (logos sur fond blanc). Statique :
   pas de defilement -- l'information est la prise en charge, pas les marques.
   -------------------------------------------------------------------------- */
.assur {
  margin-top: 1rem;
  padding: 1.15rem 1.2rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  text-align: center;
}
.assur__t {
  margin: 0 0 .9rem;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
}
.assur img { margin-inline: auto; width: 100%; max-width: 640px; height: auto; }
.assur small { display: block; margin-top: .7rem; font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* --------------------------------------------------------------------------
   8. Offres
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 1rem; }
/* 2 colonnes dès le mobile (2×2), 4 colonnes sur grand écran. */
.grid--2 { grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
/* Sur petit écran, les cartes deviennent des rectangles compacts et
   uniformes : icône + titre + prix, centrés. Le paragraphe et la liste
   de points sont réservés aux écrans larges — en colonne de 160 px ils
   s'étirent sur 8 lignes et rendent la section interminable. */
@media (max-width: 619px) {
  .grid--2 { gap: .7rem; }
  .grid--2 .offer { padding: 1rem .7rem .85rem; text-align: center; }
  .grid--2 .offer__ic { width: 42px; height: 42px; margin: 0 auto .6rem; border-radius: 12px; }
  .grid--2 .offer__ic svg { width: 23px; height: 23px; }
  .grid--2 .offer h3 { font-size: .95rem; line-height: 1.3; margin-bottom: 0; }
  .grid--2 .offer p,
  .grid--2 .offer ul { display: none; }
  .grid--2 .offer__price { margin-top: auto; padding-top: .6rem; font-size: .8rem; }
}

.offer {
  display: flex; flex-direction: column;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.offer__ic {
  display: grid; place-items: center;
  width: 52px; height: 52px; margin-bottom: 1rem;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--blue-50), var(--blue-100));
  color: var(--blue-dark);
}
.offer__ic svg { width: 28px; height: 28px; }
.offer h3 { margin-bottom: .45rem; }
.offer p { font-size: .93rem; }
.offer ul { margin: .85rem 0 1rem; padding: 0; list-style: none; font-size: .88rem; }
.offer ul li { display: flex; gap: .45rem; align-items: flex-start; margin-bottom: .35rem; }
.offer ul svg { width: 16px; height: 16px; flex: none; margin-top: .28em; color: var(--green); }
.offer__price {
  /* margin-top auto : le prix se cale en bas de la carte, donc tous les
     prix d'une même rangée sont alignés quelle que soit la longueur des
     textes au-dessus. */
  margin-top: auto; padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-size: .88rem; font-weight: 900; color: var(--blue-dark);
}

/* --------------------------------------------------------------------------
   8 bis. Bande des marques installées
   ------------------------------------------------------------------------
   Les logos sont des PNG sur fond blanc : chaque cellule est donc blanche,
   sinon on verrait un rectangle clair sur fond gris. Couleurs d'origine
   conservées — désaturer un logo revient à modifier une marque déposée.
   -------------------------------------------------------------------------- */
.mq {
  margin-top: 1.1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  /* Fondu sur les bords : les logos entrent et sortent en douceur au lieu
     d'être coupés net par le cadre. */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.mq__t {
  margin: 0;
  padding: .75rem 1rem .1rem;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.mq__piste {
  display: flex;
  width: max-content;
  padding-block: .55rem .9rem;
  animation: mq-defile 24s linear infinite;
}
/* On suspend au survol et au focus clavier : un défilement permanent
   empêche de lire tranquillement une marque. */
.mq:hover .mq__piste,
.mq:focus-within .mq__piste { animation-play-state: paused; }

.mq__set { display: flex; align-items: center; margin: 0; padding: 0; list-style: none; }
/* L'écart est porté par chaque élément (et non par un `gap` sur la piste) :
   la largeur d'un groupe inclut ainsi son propre espacement final, ce qui
   fait tomber la translation de -50 % exactement sur un raccord invisible. */
.mq__set li { flex: none; margin: 0; padding-inline: 1.2rem; }
.mq__set img { width: 92px; height: auto; display: block; }

@keyframes mq-defile {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (min-width: 720px) {
  .mq__set li { padding-inline: 1.6rem; }
  .mq__set img { width: 130px; }
}

/* Mouvement réduit : plus d'animation, la bande devient simplement
   déroulable à la main. Le doublon n'aurait alors plus de raison d'être. */
@media (prefers-reduced-motion: reduce) {
  .mq { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .mq__piste { animation: none; }
  .mq__set + .mq__set { display: none; }
}

/* --------------------------------------------------------------------------
   9. Photos
   -------------------------------------------------------------------------- */
.shots { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
@media (min-width: 760px) { .shots { grid-template-columns: repeat(4, 1fr); } }

.photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(140deg, var(--blue-100), var(--blue-200));
  box-shadow: var(--sh-sm);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }

/* Certaines photos du site sont des médaillons circulaires sur fond blanc.
   Dans un cadre 4/3, leurs coins blancs ressortiraient. Un zoom de 1,32
   suffit à repousser le bord du disque hors du cadre : c'est le facteur
   minimal pour qu'un rectangle 4/3 tienne entièrement dans le disque
   (diagonale 0,625d ramenée sous le rayon 0,5d). */
.photo--zoom img { transform: scale(1.32); }
.photo__ph { position: absolute; inset: 0; display: none; }
.photo__ph svg { width: 100%; height: 100%; }
/* Affiché tant que la vraie photo n'est pas déposée dans assets/img/ */
.photo--ph .photo__ph { display: block; }
.photo__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem .7rem .55rem;
  background: linear-gradient(transparent, rgba(9,20,29,.82));
  color: #fff; font-size: .74rem; font-weight: 800; line-height: 1.3;
}

.hero__shot {
  margin-top: 1.6rem;
  aspect-ratio: 16 / 11;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.hero__shot .photo__cap { font-size: .82rem; padding: 2rem 1rem .8rem; }

/* --------------------------------------------------------------------------
   10. Avis Google
   -------------------------------------------------------------------------- */
.gbox {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  margin-bottom: 1.5rem; padding: 1.25rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm); text-align: center;
}
.gbox__score { font-size: 2.4rem; font-weight: 900; color: var(--ink); line-height: 1; }
.gbox__src { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--muted); font-weight: 700; }
.gbox__src svg { width: 17px; height: 17px; }

.rev {
  display: flex; flex-direction: column;
  padding: 1.25rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
}
.rev__top { display: flex; align-items: center; gap: .7rem; margin-bottom: .85rem; }
.rev__av {
  display: grid; place-items: center;
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  background: linear-gradient(140deg, var(--blue), var(--blue-deep));
  color: #fff; font-weight: 900; font-size: .92rem;
  position: relative; overflow: hidden;
}
/* Photo de profil posée par lp.js par-dessus les initiales ; si le fichier
   manque, l'image est retirée et les initiales colorées réapparaissent. */
.rev__av img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.rev__id { flex: 1; min-width: 0; }
.rev__nm { display: block; font-size: .92rem; font-weight: 800; color: var(--ink); line-height: 1.25; }
.rev__dt { display: block; font-size: .76rem; color: var(--muted); }
.rev__g { width: 18px; height: 18px; flex: none; }
.rev blockquote { margin: 0; font-size: .92rem; }
.rev .stars { margin-bottom: .55rem; }
.rev .stars svg { width: 15px; height: 15px; }

/* Carrousel d'avis : défilement natif (balayage tactile inclus), lp.js se
   contente d'avancer d'une carte toutes les 3 s et de brancher les flèches. */
.revs { position: relative; }
.revs__piste {
  display: flex; gap: .9rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: .15rem .15rem .35rem;
  scrollbar-width: none;                 /* la barre est remplacée par les flèches */
}
.revs__piste::-webkit-scrollbar { display: none; }
.revs__piste:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: var(--r); }
.revs__piste .rev { flex: 0 0 min(86%, 330px); scroll-snap-align: start; }
@media (min-width: 900px) {
  .revs__piste .rev { flex-basis: calc((100% - 1.8rem) / 3); }
}
.revs__nav { display: flex; justify-content: center; gap: .55rem; margin-top: .9rem; }
.revs__btn {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%; /* 44 px : cible tactile */
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm);
  color: var(--ink); cursor: pointer;
  transition: color .15s, border-color .15s;
}
.revs__btn:hover { color: var(--blue); border-color: var(--blue); }
.revs__btn svg { width: 18px; height: 18px; }
/* Bouton pause/lecture (WCAG 2.2.2) : l'icône bascule selon l'état. */
.revs__btn .ico-lecture { display: none; }
.revs__btn.is-actif .ico-pause { display: none; }
.revs__btn.is-actif .ico-lecture { display: block; }
.revs__btn.is-actif { color: var(--blue); border-color: var(--blue); }

/* --------------------------------------------------------------------------
   11. Étapes
   -------------------------------------------------------------------------- */
.steps { counter-reset: s; display: grid; gap: 1.35rem; }
.step { position: relative; padding-left: 3.5rem; }
.step::before {
  counter-increment: s;
  content: counter(s);
  position: absolute; left: 0; top: 0;
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(96deg, var(--blue), var(--blue-dark));
  color: #fff; font-size: 1.05rem; font-weight: 900;
}
.sec--ink .step::before { background: #fff; color: var(--blue-dark); }
.step h3 { font-size: 1.02rem; margin-bottom: .25rem; }
.step p { font-size: .92rem; margin: 0; }
@media (min-width: 900px) { .steps--4 { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------------------------------------------
   12. Zone d'intervention
   -------------------------------------------------------------------------- */
.cities { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; list-style: none; }
.cities li { margin: 0; }
.cities span {
  display: inline-block;
  padding: .38rem .8rem;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: #fff; font-size: .83rem; font-weight: 700; color: var(--body);
}
.sec--ink .cities span { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.9); }

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: .6rem; }
.faq__i { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: .85rem;
  width: 100%; min-height: 56px; padding: .95rem 1.1rem;
  border: 0; background: none;
  font: inherit; font-size: .97rem; font-weight: 800; color: var(--ink);
  text-align: left; cursor: pointer;
}
.faq__q svg { width: 19px; height: 19px; flex: none; color: var(--blue); transition: transform .2s; }
.faq__q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq__a > div { overflow: hidden; }
.faq__i.on .faq__a { grid-template-rows: 1fr; }
.faq__a p { margin: 0; padding: 0 1.1rem 1.1rem; font-size: .92rem; }

/* --------------------------------------------------------------------------
   14. Encadrés & CTA
   -------------------------------------------------------------------------- */
.callout {
  display: flex; gap: .85rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--r);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
}
.callout svg { width: 23px; height: 23px; flex: none; color: var(--blue); }
.callout p { font-size: .92rem; margin: 0; }

.cta {
  position: relative;
  padding: 2rem 1.4rem;
  border-radius: var(--r-lg);
  background: linear-gradient(96deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: rgba(255,255,255,.88);
  text-align: center;
  overflow: hidden;
}
.cta h2 { color: #fff; }
.cta p { margin-inline: auto; max-width: 52ch; }
.cta .btns { margin-top: 1.4rem; }
.cta::after {
  content: ""; position: absolute; right: -70px; bottom: -90px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.07);
}

/* --------------------------------------------------------------------------
   15. Barre d'appel fixe (mobile) + pied de page
   -------------------------------------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem;
  padding: .6rem var(--pad) calc(.6rem + env(safe-area-inset-bottom));
  /* Idem en-tete : fond deja opaque a 97 %, le flou ne se voyait pas et
     coutait une seconde passe de composition a chaque defilement. */
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(13,27,38,.09);
}
.callbar .btn { min-height: 50px; font-size: .95rem; padding-inline: .8rem; }

.ftr { background: var(--ink); color: rgba(255,255,255,.6); font-size: .86rem; }
/* Mobile : le bloc logo + présentation occupe toute la largeur, puis
   « Nous contacter » et « Informations » se partagent la ligne suivante. */
.ftr__in { padding-block: 2.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; }
.ftr__in > div:first-child { grid-column: 1 / -1; }
.ftr h3 { color: #fff; font-size: .76rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; margin-bottom: .85rem; }
.ftr ul { margin: 0; padding: 0; list-style: none; }
.ftr li { margin-bottom: .5rem; display: flex; gap: .55rem; align-items: flex-start; }
.ftr svg { width: 16px; height: 16px; flex: none; margin-top: .22em; color: var(--amber); }
.ftr a { color: rgba(255,255,255,.6); text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr__tel { color: #fff !important; font-size: 1.08rem; font-weight: 900; white-space: nowrap; }
@media (max-width: 759px) { .ftr__tel { font-size: .95rem; } }
.ftr__bot {
  padding-block: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.11);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
  align-items: center; justify-content: space-between;
  /* .55 et pas .45 : le composite tombe à 5,6:1 sur --ink (AA), l'ancien
     réglage était à 4,45:1, juste sous le seuil. */
  font-size: .78rem; color: rgba(255,255,255,.55);
}
/* « Gérer mes cookies » est un <button> (action, pas navigation) stylé
   comme les liens voisins du pied de page. */
.ftr__bot button[data-cc-open] {
  background: none; border: 0; padding: 0;
  font: inherit; color: rgba(255,255,255,.6);
  cursor: pointer; text-underline-offset: 3px;
}
.ftr__bot button[data-cc-open]:hover { color: #fff; text-decoration: underline; }
.ftr__bot nav { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; }
@media (min-width: 760px) {
  .ftr__in { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
  .ftr__in > div:first-child { grid-column: auto; }
}

/* --------------------------------------------------------------------------
   16. Apparition au scroll (activée uniquement par le JS)
   -------------------------------------------------------------------------- */
/* Sur les sections a fond bleu fonce et dans le bloc CTA, le contour de focus
   bleu se confondait avec le fond (contraste 1,00:1) : l'utilisateur au clavier
   ne voyait plus du tout ou il se trouvait. */
.sec--ink :focus-visible,
.cta :focus-visible,
.ftr :focus-visible { outline-color: #fff; }

.rv-on .rv { opacity: 0; transform: translateY(16px); transition: opacity .5s, transform .5s; }
.rv-on .rv.seen { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .rv-on .rv { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   17. Bandeau de consentement (RGPD / Consent Mode v2)
   ------------------------------------------------------------------------
   Volontairement NON bloquant : pas de voile sombre, pas de modale plein
   écran. Deux raisons —
   1. Google Ads dégrade l'expérience de page en présence d'un interstitiel
      intrusif qui masque le contenu à l'arrivée ;
   2. l'appel téléphonique ne nécessite aucun consentement : le bouton
      « Appeler » doit rester atteignable pendant l'affichage du bandeau.
   -------------------------------------------------------------------------- */
.cc {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 0 .7rem calc(.7rem + env(safe-area-inset-bottom));
  animation: cc-in .3s ease both;
}
/* Posé au-dessus de la barre d'appel quand elle existe */
body.has-callbar .cc { bottom: var(--bar); padding-bottom: .5rem; }
.cc[hidden] { display: none; }

@keyframes cc-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.cc__box {
  max-width: 680px;
  margin-inline: auto;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 -2px 10px rgba(13, 27, 38, .08), 0 16px 42px rgba(13, 27, 38, .24);
}
.cc__t { margin: 0 0 .3rem; font-size: 1rem; font-weight: 900; color: var(--ink); }
.cc__p { margin: 0 0 .95rem; font-size: .84rem; line-height: 1.55; color: var(--body); }
.cc__p a { font-weight: 700; }

/* Refuser et accepter : géométrie strictement identique.
   La CNIL exige que refuser soit aussi simple qu'accepter — même niveau,
   même nombre de clics, et un design qui n'oriente pas le choix. */
.cc__acts { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.cc__btn {
  min-height: 48px;
  padding: .7rem .9rem;
  border: 2px solid var(--blue-dark);
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--blue-dark);
  font: inherit;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color .14s, color .14s;
}
.cc__btn:hover { background: var(--blue-50); }
.cc__btn:active { transform: scale(.985); }

.cc__more {
  display: block;
  width: 100%;
  margin-top: .7rem;
  padding: .4rem;
  border: 0;
  background: none;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cc__more:hover { color: var(--blue-dark); }

/* Réglages détaillés */
.cc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.cc__panel > div { overflow: hidden; }
.cc.is-open .cc__panel { grid-template-rows: 1fr; }

.cc__opt {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  padding: .8rem 0;
  border-top: 1px solid var(--line);
}
.cc__opt:first-child { margin-top: .9rem; }
.cc__opt input { width: 22px; height: 22px; margin: .15rem 0 0; flex: none; accent-color: var(--blue); }
.cc__opt input:disabled { opacity: .55; }
.cc__opt b { display: block; font-size: .88rem; color: var(--ink); }
.cc__opt span { display: block; font-size: .78rem; color: var(--muted); line-height: 1.45; }

.cc__save {
  width: 100%;
  min-height: 46px;
  margin-top: .85rem;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--blue-dark);
  color: #fff;
  font: inherit;
  font-size: .93rem;
  font-weight: 800;
  cursor: pointer;
}

/* Lien « Gérer mes cookies » du pied de page : masqué tant qu'aucun
   traceur n'est configuré, pour ne pas annoncer un réglage inexistant. */
[data-cc-open][hidden] { display: none; }

@media (min-width: 620px) {
  .cc__box { display: grid; grid-template-columns: 1fr auto; gap: .25rem 1.5rem; align-items: center; }
  .cc__t, .cc__p { grid-column: 1; }
  .cc__p { margin-bottom: 0; }
  .cc__acts { grid-column: 2; grid-row: 1 / span 2; grid-template-columns: 1fr; min-width: 200px; }
  .cc__more { grid-column: 1 / -1; text-align: left; }
  .cc__panel { grid-column: 1 / -1; }
}

/* --------------------------------------------------------------------------
   18. Impression
   ------------------------------------------------------------------------
   Un prospect imprime (ou exporte en PDF) la page pour comparer les offres :
   on retire les éléments d'interface fixes, on déplie les réponses FAQ et
   on repasse les sections sombres en noir sur blanc — par défaut les
   navigateurs n'impriment pas les fonds, le texte blanc disparaîtrait.
   -------------------------------------------------------------------------- */
@media print {
  .callbar, .cc, .revs__nav, .hdr__call, .mq { display: none !important; }
  body { padding-bottom: 0; }
  .faq__a { grid-template-rows: 1fr !important; }
  .sec--ink, .cta, .ftr { background: #fff !important; color: #000 !important; }
  .sec--ink *, .cta *, .ftr * { color: #000 !important; }
}

/* Bandeau cookies — version compacte sur telephone.
   Sur un ecran de 390 px, la version d'origine occupait ~40 % de la hauteur
   et masquait les arguments du hero puis les champs du formulaire. Pour du
   depannage d'urgence, chaque element qui s'interpose entre le visiteur et
   le bouton d'appel coute des appels : on reduit le texte et les marges,
   sans jamais toucher a la parite refuser/accepter exigee par la CNIL. */
@media (max-width: 560px) {
  .cc__box { padding: .7rem .8rem; border-radius: 14px; }
  .cc__t { font-size: .9rem; margin-bottom: .15rem; }
  .cc__p { font-size: .76rem; line-height: 1.35; margin-bottom: .6rem; }
  .cc__p .cc__long { display: none; }
  .cc__btn { padding: .6rem .5rem; font-size: .84rem; }
  .cc__acts { gap: .45rem; }
  .cc__more { margin-top: .35rem; font-size: .78rem; }
}

/* Promesse dans le H1 : c'est le seul argument que les concurrents remois
   ne peuvent pas copier (aucun n'affiche ses prix). Elle doit etre lue avant
   tout defilement, donc elle vit dans le titre — juste assez detachee pour
   se distinguer du nom du service. */
.h1-promesse { color: var(--blue); }

/* Promesse d'appel repetee au-dessus du formulaire : c'est le meme argument
   que dans le hero, a l'endroit ou le visiteur hesite entre appeler et ecrire. */
.devis__promesse { margin: .35rem 0 1rem; font-size: .95rem; line-height: 1.5; color: var(--blue-dark); }

/* Information RGPD sous le bouton : elle remplace la case a cocher, qui
   ajoutait un tap sur mobile pour un consentement qui n'est pas la base
   legale de ce traitement (voir confidentialite.html). */
.consent-note { margin: .7rem 0 0; font-size: .78rem; line-height: 1.45; color: var(--muted, #6b7783); text-align: center; }

/* Horaires hors ouverture, juste sous le numero : c'est la que le visiteur
   du soir decide s'il vaut la peine d'envoyer le formulaire. La meme
   information existe dans la FAQ, mais il n'y descend pas. */
.fcard__hors { display: inline-block; margin-top: .35rem; font-size: .82rem; line-height: 1.4; color: var(--muted, #6b7783); }
