/* Polices auto-hébergées — voir plan Task 2 ; le reste du style arrive en Task 4 */

@font-face {
  font-family: 'Titan One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/titan-one-400.woff2') format('woff2');
}

/* Inter est livree par Google Fonts comme police variable : les trois graisses
   pointent vers le meme fichier ; le navigateur choisit l'instance de l'axe
   "wght" a partir du font-weight fixe declare dans chaque regle. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}

/* Idem pour Montserrat : police variable, un seul fichier pour les trois graisses. */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-variable.woff2') format('woff2');
}

/* ==========================================================================
   Task 4 — palette, base, sections, responsive (mobile-first), animations
   Breakpoints : ≤720 px = planche Mobile ; ≥721 px puis ≥1024 px = planche Main
   ========================================================================== */

:root {
  --bleu: #1A3A5F; --vert: #2E8B57; --vert-fonce: #1F6B3E; --lime: #7DB43A;
  --jaune: #D8E114; --fond: #F3F7EE; --encre: #0B1320; --texte-2: #4F5F70;
  --bordure: #E3E9DF; --blanc: #ffffff;
  --gouttiere: 20px;
  --police-titres: 'Titan One', 'Arial Rounded MT Bold', sans-serif;
  --police-labels: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body { margin: 0; font-family: 'Inter', system-ui, sans-serif; color: var(--bleu); background: var(--blanc); -webkit-font-smoothing: antialiased; }

.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }

h1, h2, h3, p { margin: 0; }
img { max-width: 100%; }
a { color: var(--bleu); }
a:hover { color: var(--vert-fonce); }

:focus-visible { outline: 2px solid var(--vert); outline-offset: 2px; }
.cta-panneau :focus-visible { outline-color: var(--jaune); }

/* Compléments de libellés visibles seulement en desktop (planche Main) */
.lg-only { display: none; }

/* --------------------------------------------------------------------------
   Éléments partagés
   -------------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--police-labels);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--vert-fonce);
}

.section-tete { display: flex; flex-direction: column; gap: 12px; }

.section-titre {
  font-family: var(--police-titres);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.08;
  color: var(--bleu);
}

.fond-rouge { background: #FBE7E7; }
.fond-bleu { background: #E3EEF8; }
.fond-vert { background: #E6F2E9; }

/* --------------------------------------------------------------------------
   En-tête
   -------------------------------------------------------------------------- */

.entete {
  height: 76px;
  padding: 0 var(--gouttiere);
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.entete-logo { display: flex; align-items: center; }
.entete-logo img { width: 44px; height: 44px; object-fit: contain; }

.entete-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: var(--police-labels);
  font-weight: 600;
  font-size: 15px;
}

.nav-lien { display: none; text-decoration: none; }

.btn-nav {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  background: var(--bleu);
  color: var(--blanc);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.btn-nav:hover { background: var(--vert-fonce); color: var(--blanc); }

/* --------------------------------------------------------------------------
   Héros
   -------------------------------------------------------------------------- */

.hero {
  padding: 24px var(--gouttiere) 48px;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-texte { display: flex; flex-direction: column; gap: 20px; }

.hero-titre {
  font-family: var(--police-titres);
  font-weight: 400;
  font-size: clamp(38px, 11vw, 50px);
  line-height: 1.05;
  color: var(--bleu);
  text-wrap: balance;
}
.accent { color: var(--vert); }

.hero-accroche { font-size: 18px; line-height: 1.55; color: var(--texte-2); text-wrap: pretty; }

.hero-mentions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  font-size: 14px;
  color: var(--texte-2);
}
.hero-sep { color: #C3CCC0; }

/* Badges stores */
.badges { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; }

.badge-store {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  padding: 0 22px;
  background: var(--encre);
  color: var(--blanc);
  border-radius: 14px;
  text-decoration: none;
}
.badge-store svg { flex-shrink: 0; }
.badge-lignes { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.badge-sur { font-size: 11px; letter-spacing: 0.06em; }
.badge-nom { font-size: 19px; font-weight: 600; }

/* Panneau visuel du héros */
.hero-visuel {
  position: relative;
  height: 470px;
  margin-top: 16px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--vert) 0%, var(--lime) 55%, var(--jaune) 100%);
  overflow: hidden;
}

.hero-filigrane {
  position: absolute;
  right: -60px;
  bottom: -50px;
  width: 280px;
  height: 280px;
  object-fit: contain;
  opacity: 0.18;
  pointer-events: none;
}

.telephone {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  width: 220px;
  height: 460px;
  padding: 9px;
  background: var(--encre);
  border-radius: 36px;
  box-shadow: 0 30px 60px rgba(11, 19, 32, 0.35);
}

.telephone-ecran {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: #E9F1E4;
  overflow: hidden;
}
.telephone-ecran img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carte-alerte {
  position: absolute;
  padding: 14px 16px;
  background: var(--blanc);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(11, 19, 32, 0.2);
  display: flex;
  gap: 12px;
  align-items: center;
}
.carte-caillassage { left: 16px; right: 16px; bottom: 24px; }
.carte-eau { display: none; }

.carte-icone {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carte-lignes { display: flex; flex-direction: column; gap: 2px; }
.carte-titre { font-weight: 600; font-size: 15px; color: var(--bleu); }
.carte-sous { font-size: 13px; color: var(--texte-2); }

/* --------------------------------------------------------------------------
   Bande décorative pointillée
   -------------------------------------------------------------------------- */

.bande-deco { height: 36px; background: var(--bleu); display: flex; align-items: center; }
.bande-deco-ligne {
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--blanc) 0 28px, transparent 28px 50px);
}

/* --------------------------------------------------------------------------
   Bande chiffres
   -------------------------------------------------------------------------- */

.stats {
  padding: 48px var(--gouttiere);
  max-width: 1440px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.stat { display: flex; flex-direction: column; gap: 4px; align-items: center; text-align: center; }

.stat-chiffre {
  font-family: var(--police-titres);
  font-size: clamp(28px, 8.8vw, 34px);
  line-height: 1;
  color: var(--vert);
}
.stat-libelle { font-size: 13px; color: var(--texte-2); }

/* --------------------------------------------------------------------------
   Fonctionnalités
   -------------------------------------------------------------------------- */

.features {
  padding: 24px var(--gouttiere) 64px;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.features-grille { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }

.feature-carte {
  padding: 24px;
  border: 1px solid var(--bordure);
  border-radius: 24px;
  background: var(--blanc);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icone {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-carte h3 { font-family: var(--police-labels); font-weight: 700; font-size: 21px; color: var(--bleu); }
.feature-carte p { font-size: 16px; line-height: 1.6; color: var(--texte-2); }

/* --------------------------------------------------------------------------
   Comment ça marche
   -------------------------------------------------------------------------- */

.steps { background: var(--fond); padding: 64px var(--gouttiere); }

.steps-int {
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.steps-grille { display: flex; flex-direction: column; gap: 32px; }

.step { display: flex; gap: 20px; align-items: flex-start; }

.step-num { flex-shrink: 0; width: 44px; }

.step-chiffre {
  font-family: var(--police-titres);
  font-size: 52px;
  line-height: 1;
  color: var(--vert);
}

.step-trait { display: none; }

.step-corps { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.step-corps h3 { font-family: var(--police-labels); font-weight: 700; font-size: 20px; color: var(--bleu); }
.step-corps p { font-size: 16px; line-height: 1.6; color: var(--texte-2); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
  padding: 56px var(--gouttiere) 0;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-liste {
  width: 100%;
  max-width: 840px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item { border: 1px solid var(--bordure); border-radius: 28px; background: var(--blanc); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--police-labels);
  font-weight: 700;
  font-size: 16px;
  color: var(--bleu);
  border-radius: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }

/* Chevron dessiné en CSS, qui pivote à l'ouverture */
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-right: 2px solid var(--vert-fonce);
  border-bottom: 2px solid var(--vert-fonce);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(225deg); }

.faq-reponse { padding: 0 24px 22px; }
.faq-reponse p { font-size: 16px; line-height: 1.6; color: var(--texte-2); }

/* --------------------------------------------------------------------------
   Bande CTA télécharger
   -------------------------------------------------------------------------- */

.cta { padding: 56px var(--gouttiere); max-width: 1440px; margin-inline: auto; }

.cta-panneau {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--bleu);
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-filigrane {
  position: absolute;
  right: -70px;
  top: -40px;
  width: 240px;
  height: 240px;
  object-fit: contain;
  opacity: 0.12;
  pointer-events: none;
}

/* Le contenu passe au-dessus du filigrane positionné */
.cta-titre, .cta-texte, .cta .badges { position: relative; }

.cta-titre {
  font-family: var(--police-titres);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.05;
  background: linear-gradient(90deg, #3FA86B 0%, #A9CF2A 55%, #FCEA10 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-texte { font-size: 17px; line-height: 1.55; color: #D5DEE8; }

.badge-cta { border: 1px solid #3A5677; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact {
  padding: 8px var(--gouttiere) 64px;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-texte { font-size: 17px; line-height: 1.6; color: var(--texte-2); }

.contact-mail {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding-top: 8px;
}

.contact-mail-icone {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  padding: 24px;
  border: 1px solid var(--bordure);
  border-radius: 28px;
  background: var(--blanc);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-rangee { display: flex; flex-direction: column; gap: 20px; }

.champ { display: flex; flex-direction: column; gap: 8px; min-width: 0; }

.champ label {
  font-family: var(--police-labels);
  font-weight: 600;
  font-size: 14px;
  color: var(--bleu);
}

.champ input,
.champ select,
.champ textarea {
  width: 100%;
  border: 1px solid #C9D3C6;
  border-radius: 12px;
  background: var(--blanc);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  color: var(--bleu);
}
.champ input, .champ select { height: 52px; padding: 0 16px; }
.champ textarea { min-height: 160px; padding: 14px 16px; resize: vertical; }

.btn-envoyer {
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--bleu);
  color: var(--blanc);
  font-family: var(--police-labels);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.btn-envoyer:hover { background: var(--vert-fonce); }
.btn-envoyer:disabled { background: #AEB9C4; cursor: not-allowed; }

.form-status { font-size: 15px; font-weight: 600; }
.form-status.succes { color: var(--vert-fonce); }
.form-status.erreur { color: #C93434; }

.form-note { font-size: 13px; line-height: 1.5; color: var(--texte-2); }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */

.footer {
  padding: 40px var(--gouttiere) 48px;
  max-width: 1440px;
  margin-inline: auto;
  border-top: 1px solid var(--bordure);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo { width: 96px; height: auto; object-fit: contain; }

.footer-copy { font-size: 14px; color: var(--texte-2); order: 1; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  font-size: 15px;
}
.footer-nav a { text-decoration: none; color: var(--texte-2); padding: 10px 0; }
.footer-nav a:hover { color: var(--vert-fonce); }

/* --------------------------------------------------------------------------
   Bandeau cookies (injecté par le JS de la tâche 5)
   -------------------------------------------------------------------------- */

.bandeau-cookies {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--encre);
  color: var(--blanc);
  font-size: 14px;
  line-height: 1.5;
  padding: 16px var(--gouttiere);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(11, 19, 32, 0.25);
}
.bandeau-cookies a { color: var(--blanc); text-decoration: underline; }
.bandeau-cookies a:hover { color: var(--jaune); }

.bandeau-cookies-boutons { display: flex; flex-wrap: wrap; gap: 12px; }

.bandeau-cookies button {
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--police-labels);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.bandeau-accepter { background: var(--vert-fonce); color: var(--blanc); border: 0; }
.bandeau-refuser { background: transparent; color: var(--blanc); border: 1px solid var(--blanc); }

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */

@keyframes lever {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* Héros en cascade au chargement */
.hero > * { animation: lever .6s ease-out both; }
.hero > :nth-child(1) { animation-delay: 0s; }

.hero-texte > * { animation: lever .6s ease-out both; }
.hero-texte > :nth-child(1) { animation-delay: 0s; }
.hero-texte > :nth-child(2) { animation-delay: .1s; }
.hero-texte > :nth-child(3) { animation-delay: .2s; }
.hero-texte > :nth-child(4), .hero-texte > :nth-child(5) { animation-delay: .3s; }
.hero > .hero-visuel { animation-delay: .2s; }

/* Apparition au défilement (classe .vu posée par le JS de la tâche 5) */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease-out, transform .6s ease-out; }
.reveal.vu { opacity: 1; transform: none; }

/* Survols : léger soulèvement (via translate, pour ne pas écraser le transform du reveal) */
.feature-carte { transition: opacity .6s ease-out, transform .6s ease-out, translate .2s ease, box-shadow .2s ease; }
.feature-carte:hover { translate: 0 -2px; box-shadow: 0 12px 28px rgba(11, 19, 32, 0.1); }

.badge-store { transition: translate .2s ease, box-shadow .2s ease; }
.badge-store:hover { color: var(--blanc); translate: 0 -2px; box-shadow: 0 14px 28px rgba(11, 19, 32, 0.28); }

/* --------------------------------------------------------------------------
   ≥ 721 px — sortie de la planche Mobile
   -------------------------------------------------------------------------- */

@media (min-width: 721px) {
  :root { --gouttiere: 40px; }

  .lg-only { display: inline; }

  .section-tete { align-items: center; text-align: center; gap: 16px; }
  .section-titre { font-size: 46px; }

  .nav-lien { display: inline; }

  .badges { flex-direction: row; }

  .hero-mentions { justify-content: flex-start; gap: 8px 20px; font-size: 15px; }

  /* Panneau héros encore en pleine largeur : la carte s'ancre en bas à droite */
  .carte-caillassage { left: auto; right: 24px; bottom: 24px; width: 320px; max-width: calc(100% - 48px); }

  .stat-libelle { font-size: 15px; }
  .stat:nth-child(2) { border-left: 1px solid var(--bordure); border-right: 1px solid var(--bordure); }

  .features-grille { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

  .steps-grille { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
  .step { flex-direction: column; gap: 16px; }
  .step-num { display: flex; align-items: center; gap: 16px; width: auto; align-self: stretch; }
  .step-chiffre { font-size: 72px; }
  .step-trait {
    display: block;
    flex-grow: 1;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--bleu) 0 18px, transparent 18px 30px);
  }
  .step:last-child .step-trait { display: none; }
  .step-corps { gap: 16px; }
  .step-corps h3 { font-size: 24px; }

  .cta-panneau { padding: 64px 48px; }

  .contact-info, .contact-form { width: 100%; max-width: 640px; margin-inline: auto; }
  .form-rangee { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

  .footer { flex-direction: row; text-align: left; gap: 28px; }
  .footer-copy { order: 0; font-size: 15px; }
  .footer-nav { margin-left: auto; justify-content: flex-end; gap: 32px; }
  .footer-nav a { padding: 0; }

  .bandeau-cookies { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; }
  .bandeau-cookies-boutons { flex-wrap: nowrap; }
}

/* --------------------------------------------------------------------------
   ≥ 1024 px — planche Main (1440 px)
   -------------------------------------------------------------------------- */

@media (min-width: 1024px) {
  :root { --gouttiere: 80px; }

  .eyebrow { font-size: 14px; }
  .section-titre { font-size: 56px; line-height: 1.05; }

  .entete { height: 96px; }
  .entete-logo img { width: 52px; height: 52px; }
  .btn-nav { height: 48px; padding: 0 24px; font-size: 15px; }

  .hero {
    padding: 40px var(--gouttiere) 96px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    align-items: center;
  }
  .hero-texte { gap: 28px; }
  .hero-titre { font-size: clamp(52px, 5vw, 72px); line-height: 1.02; }
  .hero-accroche { font-size: 21px; max-width: 540px; }
  .hero-mentions { font-size: 15px; }

  .hero-visuel { height: 640px; margin-top: 0; border-radius: 40px; }
  .hero-filigrane { right: -90px; bottom: -80px; width: 460px; height: 460px; }
  .telephone { top: 56px; width: 300px; height: 620px; padding: 12px; border-radius: 48px; box-shadow: 0 40px 80px rgba(11, 19, 32, 0.35); }
  .telephone-ecran { border-radius: 38px; }

  .carte-alerte {
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(11, 19, 32, 0.18);
    max-width: calc(100% - 32px);
  }
  .carte-caillassage { left: 36px; right: auto; top: 150px; bottom: auto; width: 300px; }
  .carte-eau { display: flex; right: 36px; bottom: 120px; width: 280px; }

  .bande-deco { height: 56px; }
  .bande-deco-ligne { height: 5px; background: repeating-linear-gradient(90deg, var(--blanc) 0 44px, transparent 44px 80px); }

  .stats { padding-block: 72px; gap: 32px; }
  .stat { gap: 6px; }
  .stat-chiffre { font-size: 64px; }
  .stat-libelle { font-size: 17px; }

  .features { padding: 40px var(--gouttiere) 112px; gap: 56px; }
  .feature-carte { padding: 36px; border-radius: 28px; gap: 16px; }
  .feature-icone { width: 60px; height: 60px; border-radius: 18px; }
  .feature-carte h3 { font-size: 24px; }
  .feature-carte p { font-size: 17px; }

  .steps { padding: 104px var(--gouttiere); }
  .steps-int { gap: 64px; }
  .steps-grille { gap: 48px; }

  .faq { padding: 104px var(--gouttiere) 0; gap: 56px; }
  .faq-item summary { padding: 24px 32px; font-size: 18px; }
  .faq-reponse { padding: 0 32px 28px; }

  .cta { padding: 112px var(--gouttiere); }
  .cta-panneau { border-radius: 40px; padding: 88px 96px; gap: 24px; align-items: flex-start; }
  .cta-filigrane { right: 40px; top: 50%; margin-top: -210px; width: 420px; height: 420px; }
  .cta-titre { font-size: 72px; line-height: 1.02; max-width: 760px; }
  .cta-texte { font-size: 20px; max-width: 560px; }
  .cta .badges { padding-top: 16px; }

  .contact {
    padding: 0 var(--gouttiere) 112px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    align-items: start;
  }
  .contact-info, .contact-form { max-width: none; margin-inline: 0; }
  .contact-texte { font-size: 19px; }
  .contact-form { padding: 40px; }

  .footer { padding: 48px var(--gouttiere); }
  .footer-logo { width: 100px; }
}

/* --------------------------------------------------------------------------
   Préférence de mouvement réduit
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
