/* ============================================================
   ReStruct'In — style.css  v21
   
   TABLE DES MATIÈRES
   ------------------
   1.  Variables (tokens)
   2.  Reset & base
   3.  Layout utilitaires
   4.  Apostrophe & filtres
   5.  Composants typographiques
   6.  Boutons
   7.  Header & navigation
   8.  Hero
   9.  Bandeau CTA hero
   10. Crédibilité
   11. Profil cible
   12. Diagnostic
   13. Expertise
   14. Solution / Piliers
   15. Mandat
   16. Formules
   17. Effet
   18. Certification
   19. Cadrage
   20. Contact
   21. Footer & sources
   22. Responsive (1024 → 768 → 420)
   ============================================================ */


/* ── 1. VARIABLES ─────────────────────────────────────────── */
:root {
  /* Couleurs */
  --bx   : #901731;
  --bxd  : #7a1228;
  --bxp  : rgba(144,23,49,.08);
  --noir : #1A1614;
  --gt   : #4A4540;
  --gm   : #E0DAD5;
  --gf   : #F5F3F1;
  --ac   : #8A8A8A;
  --wh   : #ffffff;
  /* Géométrie */
  --r    : 8px;
  --max  : 1180px;
  --pad  : clamp(24px,6%,80px);
  /* Polices */
  --f-brand : 'Outfit', sans-serif;
  --f-title : 'Urbanist', sans-serif;
  --f-body  : 'Montserrat', sans-serif;
}


/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--f-body);
  background: var(--wh);
  color: var(--noir);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.75;
}
img { max-width: 100%; display: block; }
a   { color: inherit; }


/* ── 3. LAYOUT UTILITAIRES ────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}
.sp   { padding: 104px 0; }
.sps  { padding:  64px 0; }

/* Fonds de section */
.bg-wh { background: var(--wh);   }
.bg-gf { background: var(--gf);   }
.bg-no { background: var(--noir); }
.bg-bx { background: var(--bx);   }

/* CTA de fin de bloc — toujours aligné à gauche */
.section-cta { margin-top: 44px; }


/* ── 4. APOSTROPHE & FILTRES ──────────────────────────────── */
/* Le PNG est en RGBA avec fond transparent */
.apo    { display: inline-block; width: 7px; height: 15px; object-fit: contain; flex-shrink: 0; vertical-align: middle; }
.apo-sm { width: 6px;  height: 13px; }
.apo-lg { width: 9px;  height: 19px; }

/* Filtre pour adapter l'apostrophe selon le fond */
.filter-white { filter: brightness(0) invert(1); }                                                          /* → blanc  (fonds sombres/bordeaux) */
.filter-bx    { filter: invert(14%) sepia(90%) saturate(700%) hue-rotate(318deg) brightness(80%); }        /* → bordeaux (btn-wh fond blanc) */


/* ── 5. COMPOSANTS TYPOGRAPHIQUES ─────────────────────────── */

/* Puce-titre de section */
.sec-label      { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.sec-label-txt  { font-family: var(--f-brand); font-size: .95rem; font-weight: 700; color: var(--bx); }
/* Variante fond sombre */
.sec-label-dk .sec-label-txt { color: rgba(255,255,255,.5); }
.sec-label-dk .apo           { filter: brightness(0) invert(1); opacity: .4; }

/* Règle décorative */
.rule    { width: 36px; height: 2px; background: var(--bx); opacity: .28; margin-bottom: 26px; }
.rule-wh { background: #fff; opacity: .2; }

/* Titres
   Outfit   → marque (sec-label, hero-brand)
   Urbanist → H1, H2, titres de cartes
   Montserrat → corps, boutons, labels */
.h1    { font-family: var(--f-title); font-size: clamp(2.2rem,4.8vw,3.8rem); font-weight: 900; line-height: 1.05; letter-spacing: -.5px; color: var(--noir); margin-bottom: 20px; }
.h1 em { color: var(--bx); font-style: normal; }
.h2    { font-family: var(--f-title); font-size: clamp(1.7rem,2.8vw,2.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -.3px; color: var(--noir); margin-bottom: 18px; }
.h2 em { color: var(--bx); font-style: normal; }
.h2-wh    { color: #fff; }
.h2-wh em { color: var(--bx); }

/* Corps de texte */
.lead    { font-size: 1.05rem; color: var(--gt);             line-height: 1.78; margin-bottom: 16px; }
.body    { font-size: 1rem;    color: var(--gt);             line-height: 1.75; margin-bottom: 14px; }
.body-dk { font-size: 1rem;    color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 14px; }
.body-dk strong { color: rgba(255,255,255,.92); font-weight: 700; }

/* Utilitaires couleur/graisse */
.bx   { color: var(--bx); }
.bold { font-weight: 700; }


/* ── 6. BOUTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  text-decoration: none;
  border-radius: var(--r);
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-p        { background: var(--bx);  color: #fff;        padding: 15px 30px; }
.btn-p:hover  { background: var(--bxd); }
.btn-o        { border: 2px solid var(--bx); color: var(--bx); padding: 13px 26px; background: transparent; }
.btn-o:hover  { background: var(--bx); color: #fff; }
.btn-wh       { background: #fff; color: var(--bx); padding: 15px 30px; font-weight: 800; }
.btn-wh:hover { background: rgba(255,255,255,.92); }


/* ── 7. HEADER & NAVIGATION ──────────────────────────────── */
.hdr {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 78px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gm);
  z-index: 1000;
}
.hdr-i {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  height: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
/* Logo — border-radius respecte les coins arrondis du PNG */
.logo { height: 52px; width: auto; border-radius: var(--r); }

/* Nav desktop */
.nav   { display: flex; gap: 22px; align-items: center; list-style: none; flex-wrap: nowrap; }
.nav a {
  font-family: var(--f-body); font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gt); text-decoration: none;
  transition: color .2s; white-space: nowrap;
}
.nav a:hover  { color: var(--bx); }
.nav-cta      { background: var(--bx); color: #fff !important; padding: 10px 18px; border-radius: var(--r); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; text-decoration: none; transition: background .2s; white-space: nowrap; }
.nav-cta:hover { background: var(--bxd); }

/* Bouton hamburger */
.hbg      { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hbg span { display: block; width: 22px; height: 2px; background: var(--noir); border-radius: 2px; }

/* Menu mobile */
.mnav {
  display: none; position: fixed; top: 78px; left: 0; right: 0;
  background: #fff; border-bottom: 2px solid var(--bx);
  padding: 20px var(--pad) 28px;
  flex-direction: column; z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.mnav a {
  font-size: .9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  color: var(--gt); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid var(--gm);
  display: block; transition: color .2s;
}
.mnav a:hover          { color: var(--bx); }
.mnav a:last-of-type   { border-bottom: none; }
/* Le CTA dans le menu mobile est centré — c'est voulu */
.mnav .nav-cta { border-bottom: none; margin-top: 16px; text-align: center; display: block; padding: 14px; font-size: .8rem; }
.mnav.open     { display: flex; }


/* ── 8. HERO ──────────────────────────────────────────────── */
.hero {
  display: block;          /* garantit que la section occupe 100% de la largeur */
  width: 100%;
  padding: 116px 0 80px;
  background: #FAFAF9;
  position: relative; overflow: hidden;
}
/* Le .wrap dans le hero prend toute la largeur disponible */
.hero > .wrap {
  width: 100%;
  max-width: var(--max);
}

/* Éléments décoratifs */
.hero-deco {
  position: absolute; right: 2%; top: 8%;
  width: 64px; height: 80%;
  background: var(--bx);
  clip-path: polygon(20% 0%,100% 0%,80% 100%,0% 100%);
  opacity: .04; pointer-events: none;
}
.hero-corner {
  position: absolute; top: 84px; left: var(--pad);
  width: 14px; height: 14px;
  border-top: 2px solid rgba(144,23,49,.18);
  border-left: 2px solid rgba(144,23,49,.18);
  pointer-events: none;
}

/* Contenu hero */
.hero-accroche { font-size: 1.2rem; font-style: italic; color: var(--ac); margin-bottom: 20px; }
.hero-brand    { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.hero-brand-txt { font-family: var(--f-brand); font-size: 1.2rem; font-weight: 700; color: var(--bx); }
.hero-sub      { font-size: 1.08rem; color: var(--gt); font-weight: 500; line-height: 1.6; margin-bottom: 28px; }
.hero-pills    { display: flex; gap: 10px; margin: 24px 0 32px; flex-wrap: wrap; }
.hero-pill     { font-family: var(--f-body); background: var(--bx); color: #fff; padding: 11px 22px; border-radius: var(--r); font-size: .84rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }
.hero-body     { font-size: 1rem; color: var(--gt); line-height: 1.75; margin-bottom: 14px; }
.hero-body2    { font-size: 1rem; color: var(--gt); line-height: 1.75; }
.scroll-hint   { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-size: .68rem; font-weight: 600; color: var(--ac); text-transform: uppercase; letter-spacing: 2px; text-decoration: none; }


/* ── 9. BANDEAU CTA HERO ─────────────────────────────────── */
.hero-cta-band {
  background: var(--gf);
  border-top: 1px solid var(--gm);
  border-bottom: 1px solid var(--gm);
  padding: 32px 0;
}


/* ── 10. CRÉDIBILITÉ ─────────────────────────────────────── */
.cred-outer { padding: 48px 0; }
.cred-band  {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-radius: var(--r); overflow: hidden;
}
/* Centrage volontaire : les chiffres sont centrés dans leur cellule */
.cred-i {
  padding: 44px 24px; text-align: center;
  background: var(--noir);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .25s;
}
.cred-i:hover       { background: #1f1917; }
.cred-i:last-child  { border-right: none; }
.cred-n    { font-family: var(--f-title); font-size: 2.8rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 10px; letter-spacing: -1px; }
.cred-n em { color: var(--bx); font-style: normal; }
.cred-l    { font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: 1.2px; line-height: 1.55; }

/* Compteur animé */
.cred-prefix { font-family: var(--f-title); font-weight: 900; color: #fff; }
.cred-count  { font-family: var(--f-title); font-weight: 900; color: var(--bx); font-style: normal; display: inline-block; }


/* ── 11. PROFIL CIBLE ────────────────────────────────────── */
.pv-header { margin-bottom: 40px; }
.pv-intro  { font-size: 1rem; color: var(--gt); line-height: 1.75; font-style: italic; }

/* Liste 2 colonnes */
.pv-list                          { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 32px; }
.pv-item                          { display: flex; align-items: flex-start; gap: 12px; padding: 20px 24px 20px 0; border-bottom: 1px solid var(--gm); transition: background .2s; }
.pv-item:nth-child(1),
.pv-item:nth-child(2)             { border-top: 1px solid var(--gm); }
.pv-item:hover                    { background: rgba(144,23,49,.06); }
.pv-item:nth-child(odd)           { padding-right: 32px; border-right: 1px solid var(--gm); }
.pv-item:nth-child(even)          { padding-left: 32px; padding-right: 0; }
/* Dernier élément si nombre impair */
.pv-item:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: none; padding-right: 0; max-width: 50%; }

.pv-title { font-size: 1rem;    font-weight: 800; color: var(--noir); line-height: 1.3; margin-bottom: 5px; }
.pv-desc  { font-size: .95rem;  color: var(--gt); line-height: 1.7; }

/* Encadré conclusion */
.pv-anchor   { padding: 22px 26px; background: var(--bxp); border-left: 3px solid var(--bx); border-radius: 0 var(--r) var(--r) 0; }
.pv-anchor p { font-size: .95rem; color: var(--bx); font-weight: 700; line-height: 1.6; margin: 0; }


/* ── 12. DIAGNOSTIC ──────────────────────────────────────── */
.diag-intro { margin-bottom: 48px; }

.diag-g {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; background: rgba(255,255,255,.08);
  border-radius: var(--r); overflow: hidden; margin-bottom: 40px;
}
.diag-c {
  padding: 36px 32px; background: var(--noir);
  border-left: 3px solid rgba(144,23,49,.48);
  transition: background .25s, border-color .25s;
}
.diag-c:hover      { background: #1f1917; border-left-color: var(--bx); }
.diag-n            { font-size: .6rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--bx); margin-bottom: 12px; }
.diag-c h3         { font-family: var(--f-title); font-size: .95rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; color: #fff; margin-bottom: 14px; }
.diag-c p          { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,.52); margin-bottom: 20px; }
.diag-stats        { display: flex; gap: 20px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; }
.diag-stat-item    { flex: 1; min-width: 110px; }
.stat-num          { font-family: var(--f-title); font-size: 1.8rem; font-weight: 900; color: var(--bx); line-height: 1; display: block; margin-bottom: 6px; }
.stat-label        { font-size: .8rem; color: rgba(255,255,255,.45); font-style: italic; line-height: 1.5; }

/* Bloc conclusion diagnostic — texte pleine largeur + CTA en dessous */
.diag-ft   { padding: 32px 36px; background: rgba(144,23,49,.1); border: 1px solid rgba(144,23,49,.25); border-radius: var(--r); }
.diag-ft p { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.72); line-height: 1.72; margin-bottom: 0; }
.diag-ft em { color: var(--bx); font-style: normal; font-weight: 700; }


/* ── 13. EXPERTISE ───────────────────────────────────────── */
.exp-g {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 64px; align-items: start;
}
.exp-left {
  display: flex; flex-direction: column; gap: 20px;
  position: sticky; top: 90px;
}
.exp-photo {
  width: 100%; aspect-ratio: 3/4;
  background: rgba(144,23,49,.08); border-radius: var(--r);
  overflow: hidden; border: 1px solid rgba(144,23,49,.15);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.exp-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.exp-ph        { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.exp-ic        { width: 88px; height: 88px; border-radius: 50%; background: rgba(144,23,49,.14); border: 2px solid rgba(144,23,49,.22); display: flex; align-items: center; justify-content: center; }
.exp-ic span   { font-family: var(--f-brand); font-size: 1.6rem; font-weight: 700; color: var(--bx); }
/* Centrage volontaire du label sous la photo */
.exp-ph-lbl    { font-size: .68rem; font-weight: 600; color: rgba(144,23,49,.4); text-transform: uppercase; letter-spacing: 2px; text-align: center; padding: 0 16px; line-height: 1.6; }
.exp-citation   { padding: 20px 22px; border-left: 3px solid var(--bx); background: var(--bxp); border-radius: 0 var(--r) var(--r) 0; }
.exp-citation p { font-size: .9rem; font-style: italic; color: var(--gt); line-height: 1.65; margin: 0; }
.exp-bio p         { font-size: 1rem; color: var(--gt); line-height: 1.78; margin-bottom: 18px; }
.exp-bio p strong  { color: var(--noir); font-weight: 700; }


/* ── 14. SOLUTION / PILIERS ──────────────────────────────── */
.sol-intro { margin-bottom: 52px; }
.pil-g {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--gm); border-radius: var(--r); overflow: hidden;
}
.pil-c {
  background: var(--wh); padding: 44px 36px;
  border-top: 4px solid transparent;
  transition: border-color .2s, background .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.pil-c:hover  { border-top-color: var(--bx); background: #fdfbfa; box-shadow: 0 6px 24px rgba(144,23,49,.1); }
.pil-n        { font-size: .6rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ac); margin-bottom: 14px; }
.pil-c h3     { font-family: var(--f-title); font-size: 1.25rem; font-weight: 800; color: var(--noir); margin-bottom: 14px; line-height: 1.25; }
.pil-c p      { font-size: 1rem; color: var(--gt); line-height: 1.72; flex: 1; }
.pil-arr      { font-size: .88rem; font-weight: 700; color: var(--bx); margin-top: 22px; }


/* ── 15. MANDAT ──────────────────────────────────────────── */
.man-hd   { margin-bottom: 52px; }
.man-stat {
  font-size: .92rem; color: var(--ac); font-style: italic; line-height: 1.7;
  padding: 18px 24px; background: var(--bxp);
  border-left: 3px solid var(--bx); border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 44px;
}
.man-ft { font-size: 1rem; font-weight: 700; color: var(--noir); margin-bottom: 20px; }
.man-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 48px; }
.man-f  {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 20px 0; border-bottom: 1px solid var(--gm);
  font-size: 1rem; color: var(--gt); line-height: 1.72;
  transition: background .2s;
}
.man-f:nth-child(1), .man-f:nth-child(2) { border-top: 1px solid var(--gm); }
.man-f:nth-child(odd)  { padding-right: 40px; border-right: 1px solid var(--gm); }
.man-f:nth-child(even) { padding-left: 40px; }
.man-f:hover           { background: rgba(144,23,49,.06); }
.man-cta   { padding: 52px 44px; background: var(--noir); border-radius: var(--r); }
.man-cta h3    { font-family: var(--f-title); font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 24px; line-height: 1.25; }
.man-cta h3 em { color: var(--bx); font-style: normal; }
.man-cta p     { font-size: 1rem; color: rgba(255,255,255,.56); line-height: 1.75; max-width: 600px; margin-bottom: 32px; }


/* ── 16. FORMULES ────────────────────────────────────────── */
.form-note {
  font-size: 1rem; color: var(--gt); line-height: 1.75;
  padding: 18px 24px; background: var(--bxp);
  border-left: 3px solid var(--bx); border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 44px;
}
.form-layout     { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--gm); border-radius: var(--r); overflow: hidden; }
.form-sel-col    { background: var(--gf); }
.form-sel-btn    {
  display: block; width: 100%; padding: 28px;
  background: transparent; border: none; cursor: pointer; text-align: left;
  border-bottom: 1px solid var(--gm); transition: background .2s;
  font-family: var(--f-body);
}
.form-sel-btn:last-child  { border-bottom: none; }
.form-sel-btn:hover       { background: rgba(144,23,49,.04); }
.form-sel-btn.active      { background: var(--wh); border-left: 3px solid var(--bx); }
.form-sel-btn.active .fsb-num { color: var(--bx); }
.fsb-num     { font-size: .62rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ac); margin-bottom: 8px; display: block; }
.fsb-title   { font-family: var(--f-title); font-size: 1.2rem; font-weight: 800; color: var(--noir); line-height: 1.2; margin-bottom: 8px; }
.fsb-tagline { font-size: .92rem; color: var(--gt); line-height: 1.5; }
.form-detail-col    { background: var(--wh); padding: 40px 36px; min-height: 420px; }
.form-panel         { display: none; }
.form-panel.active  { display: block; }
.form-panel-title   { font-family: var(--f-title); font-size: 1.25rem; font-weight: 800; color: var(--bx); margin-bottom: 20px; line-height: 1.2; }
.form-panel-body    { font-size: 1rem; color: var(--gt); line-height: 1.78; margin-bottom: 18px; }
.form-panel-ideal   { font-size: .95rem; font-weight: 700; color: var(--bx); padding: 14px 18px; background: var(--bxp); border-radius: var(--r); margin-bottom: 24px; line-height: 1.6; }
.form-panel-ideal::before { content: "✓ Idéal si : "; font-weight: 800; }
.form-phases        { margin-top: 4px; }
.form-phase         { padding: 18px 0; border-bottom: 1px solid var(--gm); }
.form-phase:last-child { border-bottom: none; padding-bottom: 0; }
.form-phase-title   { font-size: .92rem; font-weight: 800; color: var(--noir); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.form-phase-lbl     { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--bx); }
.form-phase-desc    { font-size: .95rem; color: var(--gt); line-height: 1.7; margin-bottom: 8px; }
.form-phase-liv     { font-size: .88rem; font-weight: 700; color: var(--bx); display: flex; align-items: center; gap: 8px; }


/* ── 17. EFFET ───────────────────────────────────────────── */
.eff-intro { margin-bottom: 52px; }
.eff-g {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 2px; background: var(--gm); border-radius: var(--r); overflow: hidden;
}
.eff-c {
  background: var(--wh); padding: 40px 36px;
  border-top: 4px solid transparent;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.eff-c:hover      { border-top-color: var(--bx); background: #fdfbfa; box-shadow: 0 6px 24px rgba(144,23,49,.1); }
.eff-lbl          { font-family: var(--f-brand); font-size: .62rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--bx); margin-bottom: 14px; }
.eff-c h3         { font-family: var(--f-title); font-size: 1.1rem; font-weight: 800; color: var(--noir); margin-bottom: 12px; line-height: 1.3; }
.eff-c p          { font-size: 1rem; color: var(--gt); line-height: 1.72; }
.eff-stat-row     { display: flex; align-items: flex-start; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--gm); }
.eff-stat-num     { font-family: var(--f-title); font-size: 1.6rem; font-weight: 900; color: var(--bx); line-height: 1; flex-shrink: 0; }
.eff-stat-txt     { font-size: .85rem; color: var(--ac); line-height: 1.55; font-style: italic; }


/* ── 18. CERTIFICATION ───────────────────────────────────── */
.cert-wrap          { background: var(--wh); border-radius: var(--r); overflow: hidden; border: 1px solid var(--gm); }
.cert-hd            { padding: 40px 44px; border-bottom: 1px solid var(--gm); }
.cert-hd h3         { font-family: var(--f-title); font-size: 1.4rem; font-weight: 800; color: var(--noir); margin-bottom: 12px; line-height: 1.2; }
.cert-hd h3 em      { color: var(--bx); font-style: normal; }
.cert-hd p          { font-size: 1rem; color: var(--gt); line-height: 1.75; }
.cert-steps-g       { display: grid; grid-template-columns: repeat(3,1fr); }
.cert-sc            { background: var(--wh); padding: 32px 36px; border-right: 1px solid var(--gm); transition: background .25s; }
.cert-sc:hover      { background: var(--bxp); }
.cert-sc:last-child { border-right: none; }
.cert-sn            { font-family: var(--f-title); font-size: 2rem; font-weight: 900; color: var(--bx); opacity: .2; line-height: 1; margin-bottom: 12px; }
.cert-sc strong     { display: block; font-size: .95rem; font-weight: 800; color: var(--noir); margin-bottom: 8px; }
.cert-sc p          { font-size: .95rem; color: var(--gt); line-height: 1.7; }
.cert-ft            { padding: 28px 44px; background: var(--bx); display: flex; align-items: center; gap: 16px; }
.cert-ft p          { font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.6; }


/* ── 19. CADRAGE ─────────────────────────────────────────── */
.cad-deco  {
  position: absolute; right: 2%; top: 6%;
  width: 70px; height: 86%;
  background: rgba(255,255,255,.07);
  clip-path: polygon(20% 0%,100% 0%,80% 100%,0% 100%);
  pointer-events: none;
}
.cad-lead  { font-size: 1.05rem; color: rgba(255,255,255,.78); line-height: 1.78; margin-bottom: 44px; }
.cad-pts   { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 44px; }
.cad-pt    { padding: 24px 22px; background: rgba(255,255,255,.1); border-radius: var(--r); border-top: 1px solid rgba(255,255,255,.2); transition: background .2s, transform .2s; }
.cad-pt:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }
.cad-pt h4 { font-family: var(--f-title); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 10px; }
.cad-pt p  { font-size: .95rem; color: rgba(255,255,255,.68); line-height: 1.7; }
.cad-close { font-size: 1.05rem; color: rgba(255,255,255,.82); line-height: 1.78; margin-bottom: 40px; font-style: italic; }


/* ── 20. CONTACT ─────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--gm); border-radius: var(--r); overflow: hidden; }
.contact-l    { background: var(--wh); padding: 52px 48px; display: flex; flex-direction: column; }
.contact-r    { background: var(--gf); padding: 52px 48px; display: flex; flex-direction: column; }
.contact-h2    { font-family: var(--f-title); font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; margin-bottom: 10px; white-space: nowrap; }
.contact-h2 em { color: var(--bx); font-style: normal; }
.contact-sub   { font-size: 1rem; color: var(--gt); margin-bottom: 32px; line-height: 1.65; }
.ci     { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 1rem; color: var(--gt); }
.ci a   { color: var(--gt); text-decoration: none; transition: color .2s; }
.ci a:hover { color: var(--bx); }
.contact-cta  { margin-top: auto; padding-top: 28px; border-top: 1px solid var(--gm); }
.addr-t       { font-family: var(--f-brand); font-size: .68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--bx); margin-bottom: 16px; }
.addr-p       { font-size: 1rem; color: var(--gt); line-height: 1.8; }
.contact-info-block { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gm); }


/* ── 21. FOOTER & SOURCES ────────────────────────────────── */
.ft-logo  { height: 52px; width: auto; border-radius: var(--r); opacity: .9; margin-bottom: 20px; }
.ft-g     { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; padding: 60px 0 52px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-brand { font-size: .92rem; color: rgba(255,255,255,.38); line-height: 1.75; margin-bottom: 24px; }
.ft-ct    { font-family: var(--f-brand); font-size: .62rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.ft-col ul       { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ft-col ul a     { font-size: .92rem; color: rgba(255,255,255,.44); text-decoration: none; transition: color .2s; }
.ft-col ul a:hover { color: #fff; }
.ft-ci    { font-size: .92rem; color: rgba(255,255,255,.42); margin-bottom: 10px; line-height: 1.6; }
.ft-ci a  { color: rgba(255,255,255,.42); text-decoration: none; transition: color .2s; }
.ft-ci a:hover { color: #fff; }
.ft-bot   { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding: 28px 0 36px; font-size: .78rem; color: rgba(255,255,255,.28); }
.ft-bot a { color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s; }
.ft-bot a:hover { color: rgba(255,255,255,.65); }
.ft-soc   { display: flex; gap: 8px; }
.ft-sb    { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: .76rem; font-weight: 700; text-decoration: none; transition: border-color .2s, color .2s; }
.ft-sb:hover { border-color: rgba(255,255,255,.36); color: #fff; }

/* Sources — très petit, alignées à droite */
/* ── Sources par bloc — alignées à droite sous la section ─ */
.src-bloc        { padding: 12px 0 16px; border-top: 1px solid rgba(255,255,255,.1); }
.src-bloc ol     { list-style: none; display: flex; flex-direction: column; gap: 2px; text-align: right; }
.src-bloc li     { font-size: .58rem; color: rgba(255,255,255,.28); line-height: 1.5; letter-spacing: .1px; }
/* 2 colonnes quand il y a beaucoup de sources (diagnostic : 8 sources) */
.src-bloc.src-cols ol  { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 32px; }
.src-bloc.src-cols li  { text-align: right; }
/* Sur fond clair (Mandat, Effet) */
.src-bloc.src-light              { border-top-color: rgba(0,0,0,.08); }
.src-bloc.src-light li           { color: var(--ac); }
/* Responsive mobile : 1 colonne */
@media (max-width: 768px) {
  .src-bloc.src-cols ol { grid-template-columns: 1fr; }
}


/* ── 22. RESPONSIVE ──────────────────────────────────────── */

/* Tablette large (≤ 1024px) */
@media (max-width: 1024px) {
  /* Navigation → hamburger */
  .nav  { display: none; }
  .hbg  { display: flex; }
  .mnav { top: 78px; }

  /* Grilles → 1 colonne ou 2 colonnes réduites */
  .pil-g         { grid-template-columns: 1fr 1fr; }
  .exp-g         { grid-template-columns: 240px 1fr; gap: 44px; }
  .exp-left      { position: static; }
  .man-g2        { grid-template-columns: 1fr; }
  .man-f:nth-child(odd)  { border-right: none; padding-right: 0; }
  .man-f:nth-child(even) { padding-left: 0; }
  .man-f:nth-child(1), .man-f:nth-child(2) { border-top: none; }
  .man-f:first-child                       { border-top: 1px solid var(--gm); }
  .form-layout   { grid-template-columns: 1fr; }
  .eff-g         { grid-template-columns: 1fr 1fr; }
  .cad-pts       { grid-template-columns: 1fr 1fr; }
  .cert-steps-g  { grid-template-columns: 1fr; }
  .cert-sc       { border-right: none; border-bottom: 1px solid var(--gm); padding: 24px 28px; }
  .cert-sc:last-child { border-bottom: none; }
  .cert-hd, .cert-ft  { padding: 28px 32px; }
  .contact-wrap  { grid-template-columns: 1fr; }
  .ft-g          { grid-template-columns: 1fr 1fr; }

  /* Crédibilité → 2×2 */
  .cred-band { grid-template-columns: 1fr 1fr; }
  .cred-i    { border-bottom: 1px solid rgba(255,255,255,.08); }
  .cred-i:nth-child(odd)            { border-right: 1px solid rgba(255,255,255,.08); }
  .cred-i:nth-child(even)           { border-right: none; }
  .cred-i:nth-child(3),
  .cred-i:nth-child(4)              { border-bottom: none; }

  /* Profil cible → liste 1 colonne */
  .pv-list                           { grid-template-columns: 1fr; }
  .pv-item:nth-child(odd)            { border-right: none; padding-right: 0; }
  .pv-item:nth-child(even)           { padding-left: 0; }
  .pv-item:nth-child(1),
  .pv-item:nth-child(2)              { border-top: none; }
  .pv-item:first-child               { border-top: 1px solid var(--gm); }
  .pv-item:last-child:nth-child(odd) { grid-column: 1; max-width: 100%; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  :root { --pad: 18px; }
  body  { font-size: 14px; }

  /* Header */
  .hdr  { height: 64px; }
  .logo { height: 42px; }
  .mnav { top: 64px; }

  /* Hero */
  .hero            { padding: 84px 0 60px; }
  .hero-deco,
  .hero-corner     { display: none; }
  .scroll-hint     { display: none; }
  .h1              { font-size: clamp(1.9rem,7vw,2.5rem); }
  .hero-sub        { font-size: .95rem; }
  .hero-pills      { gap: 8px; margin: 20px 0 28px; }
  .hero-pill       { padding: 10px 16px; font-size: .78rem; }

  /* Crédibilité */
  .cred-i          { padding: 28px 14px; border-bottom: 1px solid rgba(255,255,255,.08); border-right: none !important; }
  .cred-i:nth-child(odd)            { border-right: 1px solid rgba(255,255,255,.08) !important; }
  .cred-i:nth-child(3),
  .cred-i:nth-child(4)              { border-bottom: none !important; }
  .cred-n          { font-size: 2rem; }

  /* Grilles → 1 colonne */
  .pv-list         { grid-template-columns: 1fr; }
  .diag-g          { grid-template-columns: 1fr; }
  .diag-c          { padding: 28px 20px; }
  .diag-stats      { flex-direction: column; gap: 14px; }
  .diag-ft         { padding: 24px 20px; }
  .exp-g           { grid-template-columns: 1fr; }
  .exp-left        { position: static; }
  .exp-photo       { max-width: 220px; margin: 0 auto; }
  .pil-g, .eff-g   { grid-template-columns: 1fr; }
  .pil-c, .eff-c   { padding: 28px 24px; }
  .form-sel-btn    { padding: 20px 18px; }
  .form-detail-col { padding: 24px 20px; min-height: auto; }
  .cad-deco        { display: none; }
  .cad-pts         { grid-template-columns: 1fr; }
  .cert-hd, .cert-ft { padding: 22px 20px; }
  .cert-sc         { padding: 20px 18px; }
  .cert-ft         { flex-direction: column; gap: 10px; }
  .contact-l, .contact-r { padding: 36px 24px; }

  /* Footer */
  .ft-g            { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 32px; }
  .ft-bot          { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 0 28px; }

  /* Mandat */
  .man-hd          { margin-bottom: 36px; }
  .man-cta         { padding: 32px 24px; }
  .man-cta h3      { font-size: 1.2rem; }

  /* Utilitaires */
  .sp              { padding: 64px 0; }
  .sps             { padding: 44px 0; }
  .h2              { font-size: clamp(1.5rem,5vw,1.9rem); }

}

/* Petit mobile (≤ 420px) */
@media (max-width: 420px) {
  :root        { --pad: 14px; }
  .h1          { font-size: 1.75rem; }
  .h2          { font-size: 1.45rem; }
  .hero-pill   { padding: 9px 13px; font-size: .72rem; }
  .btn-p,
  .btn-wh      { padding: 13px 20px; font-size: .76rem; }
  .cred-n      { font-size: 1.8rem; }
  .fsb-title   { font-size: 1.05rem; }
}

/* ── Utilitaires complémentaires ─────────────────────────────────────────── */
/* Positionnement des apostrophes dans les listes */
.apo-list-item  { margin-top: 4px; flex-shrink: 0; }
.apo-man-item   { margin-top: 5px; flex-shrink: 0; }
/* Modificateurs de texte */
.body-highlight { color: rgba(255,255,255,.8); font-weight: 600; }
/* Modificateurs de section */
.cad-inner      { position: relative; z-index: 2; }
/* LinkedIn band */
.li-band-inner  { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.li-band-title  { font-family: var(--f-title); font-size: 1.05rem; font-weight: 700; color: var(--noir); margin-bottom: 8px; }
.li-band-text   { font-size: 1rem; color: var(--gt); }
/* Contact réseaux lien */
.contact-li-link { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--bx); text-decoration: none; transition: opacity .2s; }
.contact-li-link:hover { opacity: .8; }
/* Adresse footer */
.ft-ci-addr { line-height: 1.7; }

/* ── Classes issues de la migration des styles inline ─────────────────────── */
.h2-exp     { margin-bottom: 48px; }
.h2-contact { margin-bottom: 44px; }
.txt-upper  { text-transform: uppercase; }
.btn-mt     { margin-top: 8px; }
.btn-sm     { font-size: .74rem !important; padding: 12px 20px !important; }
.mb-xl      { margin-bottom: 44px; }
.mb-lg      { margin-bottom: 32px; }
.mb-sm      { margin-bottom: 16px; }
.form-panel-ideal--mt { margin-top: 20px; }
.apo-dim    { opacity: .5; }
.sec-label-txt--dim { color: rgba(255,255,255,.5); }
.cad-section { position: relative; overflow: hidden; }
.li-band     { border-bottom: 1px solid var(--gm); }
/* Utilitaires de section */
.sec-mb-lf  { margin-bottom: 40px; }

/* ══ MODALE MENTIONS LÉGALES ══════════════════════════════ */
.ml-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: var(--pad);
}
.ml-modal[hidden] { display: none; }

.ml-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(26,22,20,.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.ml-modal-box {
  position: relative; z-index: 1;
  background: var(--wh);
  border-radius: var(--r);
  width: 100%; max-width: 720px;
  max-height: 88vh;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
  overflow: hidden;
}
.ml-modal-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--gm);
  flex-shrink: 0;
}
.ml-modal-title {
  font-family: var(--f-title);
  font-size: 1.15rem; font-weight: 800;
  color: var(--noir); margin: 0;
}
.ml-modal-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--ac);
  padding: 4px 8px; border-radius: 4px;
  transition: color .2s, background .2s;
  line-height: 1;
}
.ml-modal-close:hover { color: var(--bx); background: var(--bxp); }

.ml-modal-body {
  padding: 28px 32px 36px;
  overflow-y: auto;
  flex: 1;
}
.ml-s { margin-bottom: 28px; }
.ml-s:last-of-type { margin-bottom: 0; }
.ml-s h3 {
  font-family: var(--f-title);
  font-size: .85rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--bx); margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gm);
}
.ml-s p { font-size: .88rem; color: var(--gt); line-height: 1.7; }
.ml-s a { color: var(--bx); text-decoration: none; }
.ml-s a:hover { text-decoration: underline; }
.ml-t {
  width: 100%; border-collapse: collapse;
  font-size: .85rem; color: var(--gt);
}
.ml-t td {
  padding: 7px 12px;
  border-bottom: 1px solid var(--gm);
  vertical-align: top; line-height: 1.55;
}
.ml-t tr:last-child td { border-bottom: none; }
.ml-t td:first-child {
  font-weight: 700; color: var(--noir);
  width: 36%; white-space: nowrap;
  padding-left: 0;
}
.ml-p-mt { margin-top: 8px; }
.ml-date {
  margin-top: 24px; padding-top: 16px;
  border-top: 1px solid var(--gm);
  font-size: .75rem; color: var(--ac);
  font-style: italic; text-align: right;
}
@media (max-width: 600px) {
  .ml-modal-hdr  { padding: 18px 20px; }
  .ml-modal-body { padding: 20px 20px 28px; }
  .ml-modal-title { font-size: 1rem; }
  .ml-t td:first-child { width: auto; white-space: normal; }
}


/* ══ MODALE FORMULAIRE RDV ════════════════════════════════ */
/* ══ MODALE FORMULAIRE CADRAGE ══════════════════════════════════════════════ */

/* Overlay + conteneur */
.frm-modal {
  position: fixed; inset: 0; z-index: 2100;
  display: flex; align-items: center; justify-content: center;
  padding: var(--pad);
}
.frm-modal[hidden] { display: none; }
.frm-overlay {
  position: absolute; inset: 0;
  background: rgba(26,22,20,.80);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.frm-box {
  position: relative; z-index: 1;
  background: var(--wh);
  border-radius: var(--r);
  width: 100%; max-width: 680px;
  max-height: 92vh;
  display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  overflow: hidden;
}

/* En-tête bordeaux */
.frm-hdr {
  background: var(--bx);
  padding: 28px 32px 24px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  flex-shrink: 0;
}
.frm-sec-label {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.frm-sec-label span {
  font-family: var(--f-brand); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,.6);
}
.frm-title {
  font-family: var(--f-title); font-size: 1.45rem; font-weight: 800;
  color: #fff; line-height: 1.15; margin: 0;
}
.frm-title em { color: rgba(255,255,255,.65); font-style: normal; }
.frm-close {
  background: rgba(255,255,255,.12); border: none; cursor: pointer;
  color: #fff; font-size: 1rem; padding: 6px 10px;
  border-radius: 4px; transition: background .2s; flex-shrink: 0;
  margin-top: 2px; line-height: 1;
}
.frm-close:hover { background: rgba(255,255,255,.25); }

/* Corps scrollable */
.frm-body {
  padding: 28px 32px 32px;
  overflow-y: auto; flex: 1;
}
.frm-intro {
  font-size: .95rem; color: var(--gt);
  line-height: 1.65; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid var(--gm);
  font-style: italic;
}

/* Champs */
.frm-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.frm-field { margin-bottom: 20px; }
.frm-field label {
  display: block; font-size: .78rem; font-weight: 700;
  color: var(--noir); margin-bottom: 7px; letter-spacing: .2px;
}
.frm-req { color: var(--bx); }
.frm-opt { color: var(--ac); font-weight: 400; }

.frm-field input[type="text"],
.frm-field input[type="email"],
.frm-field input[type="tel"],
.frm-field textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gm);
  border-radius: var(--r);
  font-family: var(--f-body); font-size: .92rem; color: var(--noir);
  background: var(--wh);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.frm-field input:focus,
.frm-field textarea:focus {
  border-color: var(--bx);
  box-shadow: 0 0 0 3px rgba(144,23,49,.1);
}
.frm-field input::placeholder,
.frm-field textarea::placeholder { color: var(--ac); }
.frm-field textarea { resize: vertical; min-height: 88px; line-height: 1.6; }

/* Select custom */
.frm-select-wrap { position: relative; }
.frm-select-wrap select {
  width: 100%; padding: 11px 36px 11px 14px;
  border: 1.5px solid var(--gm);
  border-radius: var(--r);
  font-family: var(--f-body); font-size: .92rem; color: var(--noir);
  background: var(--wh);
  appearance: none; -webkit-appearance: none;
  cursor: pointer; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.frm-select-wrap select:focus {
  border-color: var(--bx);
  box-shadow: 0 0 0 3px rgba(144,23,49,.1);
}
.frm-select-wrap select:invalid { color: var(--ac); }
.frm-chevron {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%) rotate(90deg);
  font-size: 1.1rem; color: var(--bx); pointer-events: none; font-style: normal;
}

/* Radio groupe */
.frm-radio-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.frm-radio {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid var(--gm); border-radius: var(--r);
  cursor: pointer; transition: border-color .2s, background .2s;
  font-size: .88rem; color: var(--gt);
}
.frm-radio:hover { border-color: var(--bx); background: var(--bxp); }
.frm-radio input[type="radio"] { accent-color: var(--bx); width: 15px; height: 15px; }
.frm-radio:has(input:checked) {
  border-color: var(--bx); background: var(--bxp); color: var(--bx); font-weight: 700;
}

/* Erreur */
.frm-error {
  font-size: .85rem; color: var(--bx); font-weight: 600;
  padding: 10px 14px; background: rgba(144,23,49,.06);
  border-left: 3px solid var(--bx); border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 16px;
}

/* Actions */
.frm-actions { margin-top: 8px; }
.frm-submit { width: 100%; justify-content: center; padding: 16px 24px; font-size: .85rem; }
.frm-privacy {
  text-align: center; font-size: .72rem; color: var(--ac);
  margin-top: 10px; font-style: italic;
}

/* ── Confirmation ─────────────────────────────────────────────────────────── */
.frm-confirm {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 48px 40px;
}
[hidden] { display: none !important; }
.frm-confirm-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bx);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.frm-confirm-title {
  font-family: var(--f-title); font-size: 1.45rem; font-weight: 800;
  color: var(--noir); line-height: 1.2; margin-bottom: 20px;
}
.frm-confirm-msg {
  font-size: 1rem; color: var(--gt); line-height: 1.72; margin-bottom: 14px;
  max-width: 480px;
}
.frm-confirm-hint {
  font-size: .88rem; color: var(--ac); font-style: italic;
  line-height: 1.65; margin-bottom: 32px; max-width: 420px;
}
.frm-li-btn { background: var(--bx); color: #fff; padding: 14px 28px; }
.frm-li-btn:hover { background: var(--bxd); }
.frm-confirm-apo { width: 28px; height: 60px; filter: brightness(0) invert(1); }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .frm-hdr     { padding: 22px 20px 18px; }
  .frm-body    { padding: 22px 20px 28px; }
  .frm-title   { font-size: 1.2rem; }
  .frm-row-2   { grid-template-columns: 1fr; gap: 0; }
  .frm-confirm { padding: 36px 24px; }
  .frm-confirm-title { font-size: 1.2rem; }
}
