/*
Theme Name: Windcom
Theme URI: https://wind-com.fr/
Author: Lisa Hernandez
Author URI: https://wind-com.fr/
Description: Thème sur mesure de Windcom — création de sites internet et référencement local. Sans page builder, sans dépendance, sans appel à un domaine externe. Polices auto-hébergées (conformité RGPD). Conçu pour l'éditeur Gutenberg : les sections s'insèrent depuis l'onglet Compositions.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: windcom
Tags: custom-colors, custom-menu, custom-logo, block-patterns, translation-ready, accessibility-ready
*/

/* Polices auto-hébergées en variable woff2.
   Aucun appel à fonts.googleapis.com / fonts.gstatic.com :
   - conformité RGPD (la CNIL considère l'appel au CDN Google comme un transfert de données),
   - une requête tierce en moins, donc un LCP plus rapide, donc un signal SEO favorable.
   Seul le sous-ensemble « latin » se charge en français ; « latin-ext » ne se télécharge
   que si un caractère le réclame.
   Archivo est la seule famille du site : une seule police, deux fichiers, 35 Ko. */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/archivo-latin-ext.woff2') 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;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/archivo-latin.woff2') 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;
}

/* ============================================================================
   WINDCOM — Système d'interface
   Site d'agence web moderne, dans les codes du métier, demandé explicitement
   par la cliente après le rejet de deux directions plus marquées.
   Références validées : bubocode.com, abcduweb.fr, simplebo.fr.

   Fond blanc, bandes alternées gris-bleu, bleu de marque pour la structure,
   orange de marque pour l'action. Sans-serif unique. Cartes aux angles
   arrondis, ombres douces, icônes, photographies réelles de la cliente.
   Aucune dépendance, aucun framework, aucun page builder.
   ==========================================================================*/


/* --- 1. Tokens ---------------------------------------------------------- */

:root {
  --white:      #FFFFFF;
  --section:    #F5F8FC;
  --border:     #E3E9F0;

  --blue-900:   #002B50;
  --blue:       #003C71;
  --blue-500:   #0071C5;
  --blue-50:    #E8F1FA;

  --orange:     #F7471E;
  --orange-btn: #D93B14;
  --orange-dark:#B22F0C;
  --orange-50:  #FEECE8;
  --gold:       #F5A623; /* étoiles de notation des avis, uniquement */

  --ink:        #16283A;
  --ink-soft:   #4A6076;
  --on-dark:    #FFFFFF;
  --on-dark-soft:#C6D8EA;

  --r-xs: 4px; --r-sm: 8px; --r: 12px; --r-lg: 20px; --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(0,60,113,.05), 0 4px 14px rgba(0,60,113,.07);
  --sh-2: 0 8px 28px rgba(0,60,113,.14);

  --ease: cubic-bezier(.16, 1, .3, 1);
  --measure: 68ch;
  --container: 1180px;

  --s-1: 8px;  --s-2: 16px; --s-3: 24px;
  --s-4: 40px; --s-5: 64px; --s-6: 96px;
}

/* --- 2. Base ------------------------------------------------------------ */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; color: var(--blue); text-wrap: balance; }
h1 { font-size: clamp(2rem, 4.4vw, 3.35rem); font-weight: 800; line-height: 1.1; letter-spacing: -.015em; }
h2 { font-size: clamp(1.625rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.18; letter-spacing: -.01em; }
h3 { font-size: 1.1875rem; font-weight: 700; line-height: 1.35; }
h4 { font-size: 1rem; font-weight: 700; line-height: 1.4; }

p, ul, ol { margin: 0 0 var(--s-3); max-width: var(--measure); }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

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

a { color: var(--blue-500); text-underline-offset: .2em; }
a:hover { color: var(--orange-btn); }

:focus-visible { outline: 3px solid var(--orange-btn); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--orange-50); color: var(--ink); }

.wc-skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--orange-btn); color: var(--on-dark);
  padding: 12px 20px; font-size: .875rem; font-weight: 700; text-decoration: none;
}
.wc-skip:focus { left: 16px; top: 16px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- 3. Structure ------------------------------------------------------- */

.wc-wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 900px) { .wc-wrap { padding-inline: 32px; } }

[id] { scroll-margin-top: 90px; }
.wc-sec { padding-block: var(--s-5); }
@media (min-width: 900px) { .wc-sec { padding-block: var(--s-6); } }

.wc-band { background: var(--section); }
.wc-band--blue { background: var(--blue); color: var(--on-dark); }
.wc-band--blue h2, .wc-band--blue h3 { color: var(--on-dark); }
.wc-band--blue p { color: var(--on-dark-soft); }

/* En-tête de section : plus d'air au-dessus qu'en dessous */
.wc-head { max-width: 42rem; margin-bottom: var(--s-4); }
.wc-head--center { margin-inline: auto; text-align: center; }
.wc-head p { color: var(--ink-soft); font-size: 1.0625rem; margin-top: var(--s-2); }
.wc-band--blue .wc-head p { color: var(--on-dark-soft); }

.wc-eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  /* Un cran plus sombre que le bouton : à 12px, l'orange d'action tombe à
     4,3:1 sur les bandes gris-bleu. */
  color: var(--orange-dark);
  margin: 0 0 var(--s-1);
}
.wc-band--blue .wc-eyebrow { color: #FF9B7D; }

.wc-lead { font-size: 1.1875rem; line-height: 1.6; color: var(--ink-soft); }

/* --- 4. Boutons --------------------------------------------------------- */

.wc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--orange-btn); color: var(--on-dark);
  font-family: inherit; font-size: 1rem; font-weight: 700; line-height: 1;
  text-decoration: none;
  padding: 17px 28px;
  border: 2px solid var(--orange-btn); border-radius: var(--r-sm);
  cursor: pointer;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease), transform 120ms var(--ease), box-shadow 160ms var(--ease);
}
.wc-btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--on-dark); transform: translateY(-2px); box-shadow: var(--sh-2); }
.wc-btn:active { transform: translateY(0); box-shadow: none; }
.wc-btn[disabled], .wc-btn[aria-disabled="true"] {
  background: #C7D2DE; border-color: #C7D2DE; color: #6D7F91;
  cursor: not-allowed; transform: none; box-shadow: none;
}

.wc-btn--ghost { background: transparent; color: var(--blue); border-color: var(--border); }
.wc-btn--ghost:hover { background: var(--orange-50); color: var(--orange-btn); border-color: var(--orange-btn); }

.wc-btn--white { background: var(--white); color: var(--blue); border-color: var(--white); }
.wc-btn--white:hover { background: var(--blue-50); color: var(--blue); border-color: var(--blue-50); }

.wc-btn--sm { padding: 12px 20px; font-size: .9375rem; }

.wc-btns { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.wc-head--center .wc-btns, .wc-btns--center { justify-content: center; }

/* Lien fléché */
.wc-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: .9375rem; text-decoration: none;
  color: var(--blue-500);
}
.wc-more::after { content: "→"; transition: transform 160ms var(--ease); }
.wc-more:hover { color: var(--orange-btn); }
.wc-more:hover::after { transform: translateX(4px); }

/* --- 5. En-tête et navigation ------------------------------------------- */

.wc-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
}
@supports (backdrop-filter: blur(10px)) {
  .wc-header { background: rgba(255,255,255,.88); backdrop-filter: blur(10px); }
}
.wc-header__in { display: flex; align-items: center; gap: 20px; min-height: 74px; }
.wc-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }

/* L'en-tête déborde volontairement de la largeur du contenu : le bouton de
   devis va chercher le bord de l'écran, et la navigation récupère la place
   ainsi libérée. Logo à gauche, menu au centre, action à droite. */
@media (min-width: 1040px) {
  .wc-header .wc-wrap { max-width: 1440px; }
  .wc-header__in { gap: 32px; }
  .wc-nav { flex: 1 1 auto; display: flex; justify-content: flex-end; min-width: 0; }
  .wc-header .wc-btn { flex: none; }
}
@media (min-width: 1040px) and (max-width: 1420px) {
  /* On resserre l'espacement plutôt que de laisser le menu se replier. */
  .wc-nav__list { gap: 18px; }
  .wc-nav__list > li > a { font-size: .875rem; }
  .wc-header__in { gap: 20px; }
}
@media (min-width: 1040px) and (max-width: 1180px) {
  .wc-nav__list { gap: 14px; }
  .wc-nav__list > li > a { font-size: .8125rem; }
}
.wc-logo img { height: 38px; width: auto; }
.wc-logo b { font-size: 1.125rem; font-weight: 800; color: var(--blue); letter-spacing: -.01em; }
.wc-logo span { font-size: .8125rem; color: var(--ink-soft); font-weight: 500; }

.wc-nav { display: none; }
@media (min-width: 1040px) { .wc-nav { display: block; } }

/* Filet : quel que soit le nom de classe posé par WordPress sur la liste,
   une navigation ne porte jamais de puces. */
.wc-nav ul, .wc-drawer ul, .wc-footer ul, .wc-crumbs ol {
  list-style: none; margin: 0; padding: 0;
}
.wc-nav > ul { display: flex; align-items: center; gap: 26px; flex-wrap: nowrap; }

.wc-nav__list { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.wc-nav__list > li { position: relative; flex: none; }
/* « Par métier » ne doit jamais devenir « Par » / « métier ». */
.wc-nav__list > li > a { white-space: nowrap; }

.wc-nav__list a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .9375rem; font-weight: 600; color: var(--ink); text-decoration: none;
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.wc-nav__list > li > a:hover { color: var(--orange-btn); border-color: var(--orange-btn); }
.wc-nav__list > li.current-menu-item > a,
.wc-nav__list > li.current-menu-ancestor > a,
.wc-nav__list > li.current_page_item > a { color: var(--blue); border-color: var(--orange); }

/* Chevron sur les entrées qui ouvrent un sous-menu */
.wc-nav__list .menu-item-has-children > a::after {
  content: ""; flex: none; width: 8px; height: 8px; margin-left: 2px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms var(--ease);
}
.wc-nav__list .menu-item-has-children:hover > a::after,
.wc-nav__list .menu-item-has-children:focus-within > a::after { transform: rotate(-135deg) translateY(-2px); }

/* Le panneau déroulant */
.wc-nav__list .sub-menu {
  position: absolute; top: calc(100% + 10px); left: -14px; z-index: 60;
  min-width: 250px; margin: 0; padding: 8px; list-style: none;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--sh-2);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease), visibility 160ms;
}
/* Pont invisible : la souris peut descendre sans que le panneau se ferme */
.wc-nav__list .sub-menu::before {
  content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
/* Survol ET focus clavier : un menu qui ne s'ouvre qu'à la souris exclut
   les personnes qui naviguent au clavier. */
.wc-nav__list > li:hover > .sub-menu,
.wc-nav__list > li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.wc-nav__list .sub-menu li { margin: 0; }
.wc-nav__list .sub-menu a {
  display: block; width: 100%;
  padding: 11px 12px; border: 0; border-radius: var(--r-sm);
  font-size: .9375rem; font-weight: 600; color: var(--ink); line-height: 1.35;
}
.wc-nav__list .sub-menu a:hover,
.wc-nav__list .sub-menu a:focus-visible { background: var(--orange-50); color: var(--orange-btn); }
.wc-nav__list .sub-menu .current-menu-item > a { color: var(--blue); background: var(--blue-50); }

.wc-burger {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 2px solid var(--border); border-radius: var(--r-sm);
  color: var(--blue); font-family: inherit; font-size: .875rem; font-weight: 700;
  padding: 10px 16px; cursor: pointer;
}
@media (min-width: 1040px) { .wc-burger { display: none; } }
.wc-burger:hover { border-color: var(--orange-btn); color: var(--orange-btn); }

.wc-drawer { display: none; background: var(--section); border-bottom: 1px solid var(--border); padding: 20px 0 28px; }
.wc-drawer[data-open="true"] { display: block; }
@media (min-width: 1040px) { .wc-drawer { display: none !important; } }
.wc-drawer ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 2px; max-width: none; }
/* Dans le tiroir, pas de déroulant : tout est déplié, c'est plus rapide au doigt */
.wc-drawer .sub-menu { margin: 2px 0 6px; padding-left: 16px; border-left: 2px solid var(--border); }
.wc-drawer .sub-menu a { font-weight: 500; font-size: .9375rem; padding: 11px 14px; }
.wc-drawer a {
  display: block; padding: 13px 16px; border-radius: var(--r-sm);
  background: var(--white); border: 1px solid var(--border);
  color: var(--ink); font-weight: 600; text-decoration: none;
}
.wc-drawer a:hover { color: var(--orange-btn); border-color: var(--orange-btn); }
.wc-drawer .wc-btn { width: 100%; }

/* --- 6. Premier écran --------------------------------------------------- */

.wc-hero { padding-block: var(--s-5) var(--s-5); }
@media (min-width: 900px) { .wc-hero { padding-block: var(--s-5) var(--s-6); } }
.wc-hero__grid { display: grid; gap: var(--s-4); align-items: center; }
@media (min-width: 960px) { .wc-hero__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }

.wc-hero h1 { margin-bottom: var(--s-3); }
.wc-hero__lead { font-size: 1.1875rem; line-height: 1.6; color: var(--ink-soft); max-width: 34rem; margin-bottom: var(--s-3); }

/* Bandeau de réassurance sous le titre */
.wc-checks { list-style: none; padding: 0; margin: 0 0 var(--s-4); display: grid; gap: 10px; max-width: 34rem; }
.wc-checks li { display: flex; align-items: flex-start; gap: 10px; font-size: .9375rem; font-weight: 600; color: var(--ink); }
.wc-checks svg { flex: none; width: 20px; height: 20px; margin-top: 2px; color: var(--orange-btn); }

.wc-hero__media { position: relative; }
.wc-hero__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--sh-2); }

/* Vignette chiffrée posée sur la photo */
.wc-badge {
  position: absolute; left: -10px; bottom: -18px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--sh-1);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  max-width: 19rem;
}
@media (max-width: 600px) { .wc-badge { position: static; margin-top: 16px; max-width: none; } }
.wc-badge__n { font-size: 1.5rem; font-weight: 800; color: var(--orange-btn); line-height: 1; white-space: nowrap; }
.wc-badge__t { font-size: .8125rem; font-weight: 600; color: var(--ink-soft); line-height: 1.35; }

/* --- 7. Bandeau de logos clients ---------------------------------------- */

.wc-logos { padding-block: var(--s-4); border-block: 1px solid var(--border); }
.wc-logos__t {
  text-align: center; font-size: 1.125rem; font-weight: 700;
  letter-spacing: 0; text-transform: none; color: var(--blue);
  margin-bottom: var(--s-4);
}
.wc-logos__row {
  list-style: none; padding: 0; margin: 0; max-width: none;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 28px 48px;
}
.wc-logos__row img {
  height: 42px; width: auto; opacity: .62;
  filter: grayscale(1);
  transition: opacity 200ms var(--ease), filter 200ms var(--ease);
}
.wc-logos__row li:hover img { opacity: 1; filter: none; }
.wc-logos__row a { display: inline-flex; line-height: 0; }

/* --- 8. Cartes ---------------------------------------------------------- */

.wc-grid { display: grid; gap: 20px; }
.wc-grid--2 { grid-template-columns: 1fr; }
.wc-grid--3 { grid-template-columns: 1fr; }
.wc-grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .wc-grid--2, .wc-grid--3, .wc-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .wc-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .wc-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.wc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--sh-1);
  display: flex; flex-direction: column;
}
.wc-card h3 { margin-bottom: 10px; }
.wc-card p { color: var(--ink-soft); font-size: .9375rem; }
.wc-card .wc-more { margin-top: auto; padding-top: 18px; }
a.wc-card { text-decoration: none; color: inherit; transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease); }
a.wc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--blue-50); }

.wc-ico {
  width: 46px; height: 46px; flex: none;
  border-radius: var(--r-sm);
  background: var(--orange-50); color: var(--orange-btn);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.wc-ico svg { width: 24px; height: 24px; }
.wc-ico--blue { background: var(--blue-50); color: var(--blue-500); }

/* Liste à puces cochées dans une carte */
.wc-ticks { list-style: none; padding: 0; margin: 0 0 var(--s-2); }
.wc-ticks li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: .9375rem; color: var(--ink-soft); }
.wc-ticks li:last-child { margin-bottom: 0; }
.wc-ticks li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 12px; height: 7px;
  border-left: 2px solid var(--orange-btn); border-bottom: 2px solid var(--orange-btn);
  transform: rotate(-45deg);
}

/* --- 9. Chiffres -------------------------------------------------------- */

.wc-stats { list-style: none; padding: 0; margin: 0; max-width: none; display: grid; gap: 24px; }
@media (min-width: 640px) { .wc-stats { grid-template-columns: repeat(3, 1fr); } }
.wc-stats li { text-align: center; }
.wc-stats b { display: block; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; line-height: 1; color: var(--orange); }
.wc-band--blue .wc-stats b { color: #FF9B7D; }
.wc-stats span { display: block; margin-top: 8px; font-size: .9375rem; color: var(--ink-soft); }
.wc-band--blue .wc-stats span { color: var(--on-dark-soft); }

/* --- 10. Étapes numérotées ---------------------------------------------- */

.wc-steps { list-style: none; padding: 0; margin: 0; max-width: none; counter-reset: st; display: grid; gap: 20px; }
@media (min-width: 640px) { .wc-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .wc-steps { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .wc-steps--4 { grid-template-columns: repeat(4, 1fr); } }
.wc-steps li {
  counter-increment: st;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px 26px 24px;
  box-shadow: var(--sh-1);
}
.wc-steps li::before {
  content: counter(st, decimal-leading-zero);
  display: block;
  font-size: 1.75rem; font-weight: 800; line-height: 1;
  color: var(--blue-50);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.wc-steps h3 { margin-bottom: 8px; }
.wc-steps p { color: var(--ink-soft); font-size: .9375rem; margin: 0; }

/* --- 11. Cartes secteur avec photo -------------------------------------- */

.wc-sector {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r); text-decoration: none;
  box-shadow: var(--sh-1);
  aspect-ratio: 4 / 3;
  background: var(--blue);
}
.wc-sector img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.wc-sector:hover img { transform: scale(1.05); }
.wc-sector__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 44px 20px 18px;
  /* Voile sombre : c'est lui qui garantit la lisibilité du titre sur la photo */
  background: linear-gradient(180deg, rgba(0,26,51,0) 0%, rgba(0,26,51,.82) 62%, rgba(0,26,51,.94) 100%);
  color: var(--on-dark);
}
.wc-sector__cap b { display: block; font-size: 1.0625rem; font-weight: 700; }
.wc-sector__cap span { display: block; font-size: .8125rem; color: var(--on-dark-soft); margin-top: 3px; }

/* --- 12. Bloc portrait / à propos --------------------------------------- */

.wc-about { display: grid; gap: var(--s-4); align-items: center; }
@media (min-width: 900px) { .wc-about { grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: 56px; } }
.wc-about__photo { border-radius: var(--r-lg); box-shadow: var(--sh-2); width: 100%; }
.wc-sign { display: flex; align-items: center; gap: 14px; margin-top: var(--s-3); }
.wc-sign img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.wc-sign b { display: block; font-size: .9375rem; color: var(--ink); }
.wc-sign span { display: block; font-size: .8125rem; color: var(--ink-soft); }

/* --- 13. Preuve chiffrée avec capture ----------------------------------- */

.wc-proof { display: grid; gap: var(--s-4); align-items: center; }
@media (min-width: 900px) { .wc-proof { grid-template-columns: 1fr 1fr; gap: 56px; } }
.wc-proof__shot {
  border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--sh-1); overflow: hidden; background: var(--white);
}
.wc-proof__shot img { width: 100%; }
.wc-proof__shot figcaption {
  font-size: .8125rem; color: var(--ink-soft);
  padding: 12px 16px; border-top: 1px solid var(--border); background: var(--section);
}

/* --- 14. FAQ (sans JavaScript) ------------------------------------------ */

.wc-faq { max-width: 52rem; margin-inline: auto; }
.wc-faq details {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  margin-bottom: 12px;
}
.wc-faq details[open] { border-color: var(--blue-50); box-shadow: var(--sh-1); }
.wc-faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  cursor: pointer; list-style: none;
  padding: 20px 22px;
  font-size: 1.0625rem; font-weight: 700; color: var(--blue);
}
.wc-faq summary::-webkit-details-marker { display: none; }
.wc-faq summary::after {
  content: ""; flex: none; width: 14px; height: 14px; margin-top: 6px;
  background:
    linear-gradient(var(--orange-btn), var(--orange-btn)) center/14px 2px no-repeat,
    linear-gradient(var(--orange-btn), var(--orange-btn)) center/2px 14px no-repeat;
  transition: transform 220ms var(--ease);
}
.wc-faq details[open] summary::after { transform: rotate(45deg); }
.wc-faq summary:hover { color: var(--orange-btn); }
.wc-faq__a { padding: 0 22px 20px; }
.wc-faq__a p { color: var(--ink-soft); font-size: .9375rem; }

/* --- 15. Formulaire ----------------------------------------------------- */

.wc-form { display: grid; gap: 18px; max-width: 34rem; }
.wc-field { display: grid; gap: 6px; }
.wc-field label { font-size: .875rem; font-weight: 700; color: var(--ink); }
.wc-field input, .wc-field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 14px 16px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.wc-field textarea { min-height: 140px; resize: vertical; }
.wc-field input:focus, .wc-field textarea:focus {
  outline: none; border-color: var(--orange-btn); box-shadow: 0 0 0 3px var(--orange-50);
}
.wc-field input::placeholder, .wc-field textarea::placeholder { color: var(--ink-soft); }
.wc-field[data-invalid="true"] input, .wc-field[data-invalid="true"] textarea { border-color: var(--orange-dark); }
.wc-field__err { font-size: .875rem; font-weight: 600; color: var(--orange-dark); }
.wc-form__note { font-size: .875rem; color: var(--ink-soft); }

/* --- 16. Appel à l'action final ----------------------------------------- */

.wc-cta { text-align: center; }
.wc-cta h2 { max-width: 22ch; margin-inline: auto; }
.wc-cta p { max-width: 44ch; margin-inline: auto; margin-top: var(--s-2); }
.wc-cta .wc-btns { justify-content: center; margin-top: var(--s-4); }

/* --- 17. Notes de production (à retirer avant mise en ligne) ------------- */

.wc-todo {
  display: inline-block;
  font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--on-dark); background: var(--orange-dark);
  padding: 3px 9px; border-radius: 4px;
}
.wc-note { color: var(--ink-soft); font-size: .9375rem; }

/* --- 18. Pied de page --------------------------------------------------- */

.wc-footer { background: var(--blue-900); color: var(--on-dark); padding-block: var(--s-5) var(--s-3); }
.wc-footer__grid { display: grid; gap: var(--s-4); }
@media (min-width: 780px) { .wc-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.wc-footer h2 { font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #FF9B7D; margin-bottom: 16px; }
.wc-footer p { color: var(--on-dark-soft); font-size: .9375rem; }
.wc-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.wc-footer a { color: var(--on-dark); text-decoration: none; font-size: .9375rem; }
.wc-footer a:hover { color: #FF9B7D; text-decoration: underline; }
.wc-footer__logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.wc-footer__logo img { height: 40px; width: auto; }
.wc-footer__logo b { font-size: 1.125rem; font-weight: 800; color: var(--on-dark); }
.wc-footer__legal {
  margin-top: var(--s-4); padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: .875rem; color: var(--on-dark-soft);
}
.wc-footer__legal a { color: var(--on-dark-soft); font-size: .875rem; }

/* --- 19. Fil d'ariane --------------------------------------------------- */

.wc-crumbs { font-size: .8125rem; color: var(--ink-soft); padding-top: 20px; }
.wc-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; max-width: none; }
.wc-crumbs a { color: var(--ink-soft); text-decoration: none; }
.wc-crumbs a:hover { color: var(--orange-btn); text-decoration: underline; }
.wc-crumbs li + li::before { content: "›"; margin-right: 8px; opacity: .7; }

/* --- 20. Utilitaires ---------------------------------------------------- */

.wc-stack-2 { margin-top: var(--s-2); }
.wc-stack-3 { margin-top: var(--s-3); }
.wc-stack-4 { margin-top: var(--s-4); }
.wc-prose h2 { margin-top: var(--s-5); margin-bottom: var(--s-2); }
.wc-prose h2:first-child { margin-top: 0; }
.wc-prose h3 { margin-top: var(--s-3); margin-bottom: 6px; }
.wc-prose p, .wc-prose li { color: var(--ink-soft); }
.wc-prose ul { padding-left: 22px; }
.wc-prose li { margin-bottom: 8px; }

/* --- 21. Bloc d'offre et de tarif --------------------------------------- */

/* Deux niveaux : l'abonnement au site, et l'accompagnement SEO dédié.
   Le premier est mis en avant, le second doit rester clairement distinct :
   c'est ce qui empêche le visiteur de croire que 69 € couvrent tout. */
.wc-offer { display: grid; gap: 20px; align-items: start; }
@media (min-width: 900px) { .wc-offer { grid-template-columns: 1.15fr 1fr; gap: 24px; } }

.wc-price {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  padding: 32px;
  display: flex; flex-direction: column; height: 100%;
}
.wc-price--lead { border-color: var(--blue); border-width: 2px; box-shadow: var(--sh-2); }
.wc-price h3 { font-size: 1.375rem; margin-bottom: 6px; }
.wc-price__kicker { font-size: .9375rem; color: var(--ink-soft); margin-bottom: 24px; }
.wc-price .wc-btn { width: 100%; margin-top: auto; }

.wc-price__free {
  display: inline-block;
  background: var(--orange-50); color: var(--orange-dark);
  font-size: .8125rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
  align-self: flex-start;  /* sans quoi le conteneur en colonne l'étire sur toute la largeur */
  margin-bottom: 18px;
}
.wc-price__amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.wc-price__amount b { font-size: clamp(2rem, 4.4vw, 3.35rem); font-weight: 800; line-height: 1; color: var(--blue); letter-spacing: -.02em; }
.wc-price__amount span { font-size: 1.0625rem; font-weight: 600; color: var(--ink-soft); }
.wc-price__sub { font-size: .9375rem; color: var(--ink-soft); margin-bottom: 24px; }
.wc-price ul { margin-bottom: 28px; }
.wc-price__quote { font-size: 1.375rem; font-weight: 800; color: var(--blue); line-height: 1.2; margin-bottom: 6px; }
.wc-price .wc-btn { width: 100%; }
.wc-price__foot { margin-top: 16px; font-size: .8125rem; color: var(--ink-soft); text-align: center; }


/* ============================================================================
   22. Intégration WordPress / Gutenberg
   Ces règles n'existent pas dans le brouillon statique : elles alignent les
   blocs natifs de l'éditeur sur le système, pour que ce que vous voyez en
   rédigeant soit ce que verra le visiteur.
   ==========================================================================*/

/* Largeur de contenu gérée par le thème, pas par WordPress */
.entry-content > * { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 900px) { .entry-content > * { padding-inline: 32px; } }
/* Une section pleine largeur reprend la main */
.entry-content > .alignfull,
.entry-content > .wc-sec,
.entry-content > .wc-hero,
.entry-content > .wc-band { max-width: none; padding-inline: 0; }

/* Le bloc Bannière natif sert aux vignettes métier : même rendu que le brouillon */
.wp-block-cover.wc-sector { border-radius: var(--r); overflow: hidden; min-height: 0; aspect-ratio: 4/3; }
.wp-block-cover.wc-sector .wp-block-cover__inner-container { padding: 0; }

/* Le bloc Détails natif porte la FAQ */
.wp-block-details { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 12px; padding: 0; }
.wp-block-details[open] { border-color: var(--blue-50); box-shadow: var(--sh-1); }
.wp-block-details summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 20px 22px; cursor: pointer; list-style: none;
  font-size: 1.0625rem; font-weight: 700; color: var(--blue);
}
.wp-block-details summary::-webkit-details-marker { display: none; }
.wp-block-details summary::after {
  content: ""; flex: none; width: 14px; height: 14px; margin-top: 6px;
  background:
    linear-gradient(var(--orange-btn), var(--orange-btn)) center/14px 2px no-repeat,
    linear-gradient(var(--orange-btn), var(--orange-btn)) center/2px 14px no-repeat;
  transition: transform 220ms var(--ease);
}
.wp-block-details[open] summary::after { transform: rotate(45deg); }
.wp-block-details summary:hover { color: var(--orange-btn); }
.wp-block-details > *:not(summary) { padding: 0 22px; }
.wp-block-details > *:last-child { padding-bottom: 20px; }

/* Boutons natifs habillés comme ceux du thème */
.wp-block-button__link { border-radius: var(--r-sm); font-weight: 700; padding: 17px 28px; }
.is-style-outline .wp-block-button__link { border-width: 2px; }

/* Images alignées et légendes */
.wp-block-image img { border-radius: var(--r); }
.wp-block-image figcaption { font-size: .875rem; color: var(--ink-soft); text-align: left; }

/* Barre d'administration : l'en-tête collant doit se décaler */
body.admin-bar .wc-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .wc-header { top: 46px; } }

/* Article de blog : une colonne lisible */
.wc-article { max-width: 44rem; margin-inline: auto; }
.wc-article h2 { margin-top: var(--s-5); margin-bottom: var(--s-2); }
.wc-article h3 { margin-top: var(--s-3); margin-bottom: 6px; }
.wc-article p, .wc-article li { color: var(--ink-soft); }
.wc-article ul, .wc-article ol { padding-left: 22px; }
.wc-article li { margin-bottom: 8px; }
.wc-article img { border-radius: var(--r); }

/* Liste d'articles */
.wc-meta { font-size: .875rem; color: var(--ink-soft); margin-bottom: 10px; }
.wc-pagination { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: var(--s-4); }
.wc-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 12px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  color: var(--blue); text-decoration: none; font-weight: 700;
}
.wc-pagination .page-numbers:hover { border-color: var(--orange-btn); color: var(--orange-btn); }
.wc-pagination .page-numbers.current { background: var(--blue); border-color: var(--blue); color: var(--on-dark); }

/* Formulaire de recherche */
.wc-search { display: flex; gap: 10px; max-width: 30rem; }
.wc-search input[type="search"] {
  flex: 1; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px 16px;
}
.wc-search input[type="search"]:focus { outline: none; border-color: var(--orange-btn); box-shadow: 0 0 0 3px var(--orange-50); }

/* Titre d'une carte-article dans la liste du blog : même pas que le titre de
   carte, mais porté par un h2 (hiérarchie correcte dans une liste). */
.wc-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--blue);
  margin-bottom: 10px;
}
a.wc-card:hover .wc-card__title { color: var(--orange-btn); }

/* Le bloc Bannière natif, quand il sert de vignette métier dans l'éditeur */
.wp-block-cover.wc-sector::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 70%;
  background: linear-gradient(180deg, rgba(0,26,51,0) 0%, rgba(0,26,51,.82) 62%, rgba(0,26,51,.94) 100%);
  pointer-events: none;
}
.wp-block-cover.wc-sector .wp-block-cover__inner-container { position: relative; z-index: 1; align-self: end; padding: 0 20px 18px; }


/* ============================================================================
   23. Cohabitation avec Elementor pendant la migration

   Tant qu'Elementor reste actif, sa feuille de style globale impose sa couleur
   de lien à TOUS les <a> de la page, boutons compris : le texte du bouton
   orange tombait à 2,05:1 au lieu de 4,5:1 minimum.

   Cette section reprend la main par une spécificité supérieure, sans recourir
   à !important. Elle devient inutile une fois Elementor désactivé, et peut
   être supprimée à ce moment-là — mais la laisser ne coûte rien.
   ==========================================================================*/

a.wc-btn.wc-btn { color: var(--on-dark); }
a.wc-btn.wc-btn:hover { color: var(--on-dark); }
a.wc-btn--ghost.wc-btn--ghost { color: var(--blue); }
a.wc-btn--ghost.wc-btn--ghost:hover { color: var(--orange-btn); }
a.wc-btn--white.wc-btn--white { color: var(--blue); }
a.wc-btn--white.wc-btn--white:hover { color: var(--blue); }

a.wc-more.wc-more { color: var(--blue-500); }
a.wc-more.wc-more:hover { color: var(--orange-btn); }

.wc-header .wc-nav a { color: var(--ink-soft); }
.wc-header .wc-nav a:hover,
.wc-header .wc-nav a[aria-current="page"] { color: var(--blue); }
.wc-header a.wc-logo { color: var(--blue); }

.wc-footer a.wc-footer-link, .wc-footer ul a, .wc-footer p a { color: var(--on-dark); }
.wc-footer a:hover { color: var(--orange-onblue); }
.wc-footer__legal a { color: var(--on-dark-soft); }

a.wc-sector.wc-sector { color: var(--on-dark); text-decoration: none; }
a.wc-card.wc-card { color: var(--ink); text-decoration: none; }
a.wc-card.wc-card .wc-card__title { color: var(--blue); }

.wc-crumbs a.wc-crumbs-link, .wc-crumbs a { color: var(--ink-soft); }
.wc-crumbs a:hover { color: var(--orange-action); }

/* Elementor et OceanWP posent parfois une largeur ou un fond sur .entry-content :
   nos sections pleine largeur doivent rester pleine largeur. */
.entry-content > .wc-sec,
.entry-content > .wc-hero,
.entry-content > .wc-band { width: auto; max-width: none; margin-inline: 0; }


/* ============================================================================
   24. Grille « tout est inclus » et avis clients (landing commerciale)
   ==========================================================================*/

.wc-features { list-style:none; padding:0; margin:0; max-width:none;
  display:grid; gap:14px; grid-template-columns:1fr; }
@media (min-width:600px){ .wc-features{ grid-template-columns:1fr 1fr; } }
@media (min-width:980px){ .wc-features{ grid-template-columns:1fr 1fr 1fr; } }
.wc-features li { display:flex; gap:14px; align-items:flex-start;
  background:var(--white); border:1px solid var(--border); border-radius:var(--r);
  padding:18px 20px; box-shadow:var(--sh-1); }
.wc-features svg { flex:none; width:22px; height:22px; color:var(--orange-btn); margin-top:1px; }
.wc-features b { display:block; color:var(--blue); font-size:1rem; font-weight:700; line-height:1.3; }
.wc-features span { display:block; color:var(--ink-soft); font-size:.875rem; margin-top:3px; line-height:1.5; }

.wc-reviews { list-style:none; padding:0; margin:0; max-width:none;
  display:grid; gap:20px; grid-template-columns:1fr; }
@media (min-width:700px){ .wc-reviews{ grid-template-columns:1fr 1fr 1fr; } }
.wc-review { background:var(--white); border:1px solid var(--border); border-radius:var(--r);
  padding:24px; box-shadow:var(--sh-1); display:flex; flex-direction:column; }
.wc-stars { display:flex; gap:2px; margin-bottom:12px; color:var(--gold); font-size:1.05rem; letter-spacing:2px; }
.wc-review p { color:var(--ink); font-size:.9375rem; line-height:1.6; margin:0 0 16px; }
.wc-review footer { margin-top:auto; display:flex; align-items:center; gap:10px; }
.wc-review__who b { display:block; color:var(--blue); font-size:.9375rem; }
.wc-review__who span { display:block; color:var(--ink-soft); font-size:.8125rem; }
.wc-review__src { margin-left:auto; font-size:.75rem; font-weight:700; color:var(--ink-soft); }


/* ============================================================================
   25. Formulaire multi-étapes (questionnaire de conversion)
   Front-end sur mesure, sans dépendance. L'envoi se fait en AJAX vers
   admin-ajax.php (handler dans inc/form.php) : aucun plugin requis.
   ==========================================================================*/

.wc-formwrap { }
.wc-form-multi {
  max-width: 660px; margin-inline: auto;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-2); padding: 28px;
}
@media (min-width: 620px) { .wc-form-multi { padding: 40px; } }

.wc-form__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.wc-form__time { display: inline-flex; align-items: center; gap: 7px; font-size: .8125rem; font-weight: 700; color: var(--orange-dark); }
.wc-form__count { font-size: .8125rem; font-weight: 700; color: var(--ink-soft); }
.wc-progress { height: 8px; border-radius: 999px; background: var(--border); overflow: hidden; margin-bottom: 28px; }
.wc-progress__fill { height: 100%; width: 100%; transform: scaleX(.2); transform-origin: left; border-radius: 999px; background: var(--orange-btn); transition: transform 300ms var(--ease); }

.wc-step { display: none; }
.wc-step[data-active="true"] { display: block; animation: wc-fade 300ms var(--ease); }
@keyframes wc-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.wc-step > h3 { font-size: 1.375rem; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.wc-step > p { color: var(--ink-soft); font-size: .9375rem; margin-bottom: 22px; }

.wc-fields { display: grid; gap: 16px; }
.wc-fields--2 { grid-template-columns: 1fr; }
@media (min-width: 520px) { .wc-fields--2 { grid-template-columns: 1fr 1fr; } }

.wc-form-multi label.wc-lbl { display: block; font-size: .875rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.wc-form-multi input[type=text], .wc-form-multi input[type=email], .wc-form-multi input[type=tel],
.wc-form-multi textarea, .wc-form-multi select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 13px 15px; transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.wc-form-multi textarea { min-height: 96px; resize: vertical; }
.wc-form-multi input:focus, .wc-form-multi textarea:focus, .wc-form-multi select:focus {
  outline: none; border-color: var(--orange-btn); box-shadow: 0 0 0 3px var(--orange-50);
}
.wc-form-multi [aria-invalid="true"] { border-color: var(--orange-dark); }
.wc-err { font-size: .8125rem; font-weight: 600; color: var(--orange-dark); margin-top: 6px; display: none; }
.wc-err[data-show="true"] { display: block; }

/* Choix en cartes cliquables (radio / checkbox) */
.wc-choices { display: grid; gap: 10px; }
.wc-choices--2 { grid-template-columns: 1fr; }
@media (min-width: 520px) { .wc-choices--2 { grid-template-columns: 1fr 1fr; } }
.wc-choice { position: relative; display: flex; align-items: center; gap: 11px; cursor: pointer;
  border: 1px solid var(--border); border-radius: var(--r-sm); padding: 13px 15px;
  font-size: .9375rem; font-weight: 600; color: var(--ink);
  transition: border-color 160ms var(--ease), background-color 160ms var(--ease); }
.wc-choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.wc-choice .wc-tick { flex: none; width: 20px; height: 20px; border-radius: var(--r-xs); border: 2px solid var(--border);
  display: grid; place-items: center; transition: all 160ms var(--ease); }
.wc-choice input[type=radio] ~ .wc-tick { border-radius: 50%; }
.wc-choice:hover { border-color: var(--orange-btn); }
.wc-choice:has(input:checked) { border-color: var(--orange-btn); background: var(--orange-50); }
.wc-choice:has(input:checked) .wc-tick { background: var(--orange-btn); border-color: var(--orange-btn); }
.wc-choice .wc-tick svg { width: 13px; height: 13px; color: #fff; opacity: 0; }
.wc-choice:has(input:checked) .wc-tick svg { opacity: 1; }
.wc-choice input:focus-visible ~ .wc-tick { box-shadow: 0 0 0 3px var(--orange-50); }

.wc-cond { display: none; margin-top: 14px; }
.wc-cond[data-show="true"] { display: block; }

.wc-form__nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 28px; }
.wc-form__nav .wc-prev { visibility: hidden; }
.wc-form__nav .wc-prev[data-show="true"] { visibility: visible; }

/* Récapitulatif + double action */
.wc-recap { background: var(--section); border: 1px solid var(--border); border-radius: var(--r); padding: 20px 22px; margin-bottom: 20px; }
.wc-recap b { color: var(--blue); }
.wc-consent { display: flex; align-items: flex-start; gap: 11px; font-size: .875rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 20px; }
.wc-consent input { margin-top: 3px; flex: none; width: 18px; height: 18px; accent-color: var(--orange-btn); }
.wc-consent a { color: var(--blue-500); }
.wc-final { display: grid; gap: 12px; }
@media (min-width: 520px) { .wc-final { grid-template-columns: 1fr 1fr; } }
.wc-final .wc-btn { width: 100%; }

.wc-form__done { text-align: center; padding: 20px 0; }
.wc-form__done .wc-done-ic { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--orange-50); color: var(--orange-btn); display: grid; place-items: center; }
.wc-form__done .wc-done-ic svg { width: 28px; height: 28px; }
.wc-form__done h3 { font-size: 1.375rem; color: var(--blue); margin-bottom: 8px; }
.wc-form__done p { color: var(--ink-soft); max-width: 42ch; margin-inline: auto; }


/* ============================================================================
   26. Pages légales (colonne de lecture étroite)
   ==========================================================================*/
.wc-legal { max-width: 52rem; margin-inline: auto; }
.wc-legal h2 { font-size: 1.375rem; margin-top: var(--s-5); margin-bottom: var(--s-2); }
.wc-legal h2:first-child { margin-top: 0; }
.wc-legal h3 { font-size: 1.0625rem; margin-top: var(--s-3); margin-bottom: 6px; }
.wc-legal p, .wc-legal li { color: var(--ink-soft); }
.wc-legal ul { padding-left: 22px; }
.wc-legal li { margin-bottom: 8px; }
.wc-legal__note { background: var(--orange-50); border: 1px solid var(--orange); border-radius: var(--r); padding: 18px 22px; margin-bottom: var(--s-4); }
.wc-legal__note p { color: var(--ink); margin: 0; font-size: .9375rem; }
.wc-legal__date { color: var(--ink-soft); font-size: .875rem; margin-bottom: var(--s-4); }

/* Paragraphe d'introduction, un cran plus grand (18px) */
.wc-intro-lead { font-size: 1.125rem; line-height: 1.7; }

/* Preuve chiffrée : figure pleine largeur sous le titre */
.wc-proof__shot--wide { margin: 24px 0 32px; max-width: 900px; }
.wc-proof__shot--wide img { width: 100%; }
