:root {
  --green: #005F52;
  --green-dark: #002922;
  --gold: #DDA73C;
  --gold-soft: rgba(221, 167, 60, 0.3);
  --green-soft: rgba(0, 95, 82, 0.4);
  --green-faint: rgba(0, 95, 82, 0.1);
  --cream: #FBFAF9;
  --panel: #F1F0EE;
  --panel-2: #F3F5F7;
  --border: #E4E2DE;
  --text: #1B1B1B;
  --text-muted: #6B6B6B;
  --radius: 12px;
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== REVEAL AU SCROLL ===== */
/* .reveal : masque + decale + reduit legerement l'element ; .is-visible (ajoutee par script.js via
   IntersectionObserver quand l'element entre dans le viewport) le fait apparaitre.
   Neutralise si l'utilisateur prefere moins d'animation, ou si JS est desactive (voir noscript ci-dessous). */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(36px) scale(.97);
    transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
  .reveal-1 { transition-delay: .1s; }
  .reveal-2 { transition-delay: .2s; }
  .reveal-3 { transition-delay: .3s; }
  .reveal-4 { transition-delay: .4s; }
}
@media (prefers-reduced-motion: no-preference) and (max-width: 560px) {
  /* Mobile : mouvement plus discret, l'ecran est deja petit — un gros deplacement y est plus brusque. */
  .reveal { transform: translateY(18px) scale(.99); }
}

/* ===== HOVER CARTES CLIQUABLES ===== */
/* solution-card et door sont des <a> pleine carte (voir HTML) : tout le bloc mene au meme
   endroit que son bouton/lien interne. process-step n'est pas cliquable (simple etape
   descriptive) : meme animation au survol, mais sans cursor:pointer. Feedback au survol
   uniquement sur les appareils avec un vrai pointeur (souris/trackpad) — evite l'etat
   "hover coince" au doigt sur tactile. */
.solution-card, .door { cursor: pointer; }
@media (hover: hover) and (pointer: fine) {
  .solution-card, .door, .process-step {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .solution-card:hover, .door:hover, .process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -24px rgba(0, 41, 34, 0.35);
    border-color: var(--gold);
  }
  .solution-card:hover .card-icon, .bring-item:hover .card-icon { background: var(--gold); color: #fff; transition: background .25s ease, color .25s ease; }
  .solution-card:hover .card-link, .door:hover .btn-primary { text-decoration: underline; }
}

/* ===== HEADER ===== */
.site-header {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 32px; width: auto; display: block; }
.logo-lockup { height: 36px; width: auto; display: block; color: #FFFFFF; }
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  color: #E8F1EE;
  font-size: 15px;
  font-weight: 500;
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: var(--gold); font-weight: 700; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  background:
    radial-gradient(640px circle at 12% 8%, rgba(221, 167, 60, 0.16), transparent 60%),
    radial-gradient(560px circle at 88% 92%, rgba(0, 149, 128, 0.35), transparent 60%),
    var(--green-dark);
  padding: 64px 0 96px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.hero-copy h1 {
  font-family: var(--font-head);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
}
.hero-copy h1 .muted { color: #9FC7BE; }
.hero-lead {
  color: #D6E5E1;
  font-size: 16px;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 28px;
}
.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #EFEDE7;
  font-size: 15px;
  font-weight: 500;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* ===== FORM CARD ===== */
.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 30px 60px -20px rgba(0,20,15,0.35);
}
.steps-bar { display: flex; justify-content: space-between; margin-bottom: 10px; }
.step-item { display: flex; align-items: center; gap: 8px; opacity: .45; transition: opacity .2s; }
.step-item.active, .step-item.done { opacity: 1; }
.step-circle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #D9D6D0;
  color: #6B6B6B;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex: none;
}
.step-item.active .step-circle, .step-item.done .step-circle {
  background: var(--green); color: #fff;
}
.step-label { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; }
.steps-track { height: 3px; background: #EDEBE7; border-radius: 3px; margin-bottom: 24px; overflow: hidden; }
.steps-progress { height: 100%; width: 33.33%; background: var(--green); transition: width .3s ease; }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px);} to { opacity: 1; transform: translateY(0);} }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-faint);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #A9A6A0; }
.form-field label .optional { font-weight: 400; color: #A9A6A0; }

.dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  border: 1.5px dashed #C9C6C0;
  border-radius: 12px;
  padding: 36px 16px;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.dropzone:hover, .dropzone.dragover { border-color: var(--green); background: var(--green-faint); }
.dropzone svg { color: var(--green); }
.dropzone.dropzone-error { border-color: #C0392B; background: none; color: #C0392B; }
.dropzone.dropzone-error svg { color: #C0392B; }
.hint { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

.form-footer {
  display: flex; align-items: center; justify-content: flex-end; gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 6px;
}
.btn-link {
  background: none; border: none;
  color: var(--text-muted);
  font-size: 14px; font-weight: 600;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s ease, transform .1s ease;
}
.btn-primary:hover { background: #00473e; }
.btn-primary:active { transform: scale(0.98); }
.step-hint { text-align: right; font-size: 12px; color: var(--text-muted); margin: 10px 0 0; }
.success-panel {
  text-align: center;
  padding: 24px 8px 12px;
  animation: fadeIn .3s ease;
}
.success-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--green-faint);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.success-panel h3 {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
}
.success-panel p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}
.success-panel strong { color: var(--green); }

/* ===== CALL BAR ===== */
.call-bar { background: var(--panel-2); padding: 22px 0; }
.call-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.call-bar-inner p {
  display: flex; align-items: center; gap: 10px;
  margin: 0; font-size: 15px; color: var(--text);
}
.call-bar-inner .icon { color: var(--green); flex: none; }
.call-bar .btn-primary { padding: 12px 22px; }

/* ===== SOLUTIONS ===== */
.solutions { padding: 96px 0; text-align: center; }
.eyebrow {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.solutions h2 {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 1.25;
}
.section-lead {
  max-width: 620px;
  margin: 0 auto 56px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green-faint);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 6px;
}
.solution-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  margin: 0 0 12px;
}
.solution-card p:not(.card-eyebrow) {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 20px;
}
.card-link { color: var(--green); font-weight: 700; font-size: 14.5px; }
.card-link:hover { text-decoration: underline; }

.card-specs {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 13px; }
.spec-row span { color: var(--text-muted); }
.spec-row strong { color: var(--text); font-weight: 700; text-align: right; }

/* ===== CAPITAL / LTV ===== */
.capital { background: var(--panel); padding: 96px 0; }
.capital-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ltv-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 15px;
}
.bar-1 { background: var(--green-faint); color: var(--green-dark); }
.bar-2 { background: var(--gold-soft); color: var(--green-dark); }
.bar-3 { background: var(--green-soft); color: var(--green-dark); }
.bar-4 { background: var(--green); color: #fff; }
.capital-col h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 18px;
}
.capital-col p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 16px;
  font-size: 15px;
}
.capital-col strong { color: var(--text); }

/* ===== BRAXTON LAB ===== */
.lab { background: #fff; padding: 80px 0; border-top: 1px solid var(--border); }
.lab-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.lab-copy { max-width: 620px; }
.lab-copy h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 14px;
}
.lab-copy p { color: var(--text-muted); line-height: 1.7; font-size: 15px; margin: 0; }
.lab .calendly-cta { flex: none; }

/* ===== PAGE HERO (home / lab / mentions / confidentialite) ===== */
.page-hero { background: var(--green); padding: 72px 0 64px; text-align: center; }
.page-hero-inner { max-width: 760px; margin: 0 auto; }
/* Halo degrade : reserve aux pages editoriales (accueil, lab) via cette classe additionnelle.
   Les pages legales gardent .page-hero seul, en aplat, plus sobre. */
.page-hero-glow {
  background:
    radial-gradient(640px circle at 15% 10%, rgba(221, 167, 60, 0.16), transparent 60%),
    radial-gradient(560px circle at 85% 95%, rgba(0, 149, 128, 0.35), transparent 60%),
    var(--green-dark);
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.15;
  margin: 0;
  /* Hauteur reservee pour 2 lignes : meme le libelle le plus court (une seule ligne) s'aligne
     sur la meme ligne de base que "Toutes typologies", qui en prend deux. */
  min-height: 74px;
  display: flex;
  align-items: flex-end;
  /* Centre par defaut (coherent avec le text-align:center des sections .solutions) ;
     .hero, en desaccord avec ce defaut, repasse explicitement a gauche ci-dessous. */
  justify-content: center;
}
.stat-label {
  font-size: 13px;
  color: #B7D6CF;
  line-height: 1.4;
  margin: 6px 0 0;
}
.stats-bar-3 { grid-template-columns: repeat(3, 1fr); }
.hero .stats-bar { text-align: left; }
.hero .stat-number { justify-content: flex-start; }
.page-hero .stats-bar { text-align: center; }
.page-hero .stat-number { justify-content: center; }
.page-hero p.eyebrow { color: #B7D6CF; justify-content: center; }
.page-hero h1 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  margin: 10px 0 18px;
}
.page-hero-lead { color: #D7E7E2; font-size: 17px; line-height: 1.65; margin: 0 auto 28px; max-width: 620px; }
.page-hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  transition: border-color .15s ease, background .15s ease;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ===== DOORS (home) ===== */
.doors { padding: 72px 0 96px; }
.doors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.door {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.door:hover { box-shadow: 0 24px 48px -24px rgba(0,20,15,0.25); transform: translateY(-2px); }
.door-accent { width: 40px; height: 4px; border-radius: 2px; margin-bottom: 22px; }
.door-a .door-accent { background: var(--green); }
.door-b .door-accent { background: var(--gold); }
.door h2 { font-family: var(--font-head); font-size: 23px; font-weight: 800; margin: 0 0 12px; }
.door p { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin: 0 0 26px; flex: 1; }
.door .btn-primary { align-self: flex-start; }

/* ===== CE QUE NOUS APPORTONS (lab) ===== */
.bring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px 24px;
  margin-top: 40px;
}
.bring-item { text-align: center; }
.bring-item .card-icon { margin: 0 auto 14px; }
.bring-item h3 { font-size: 16.5px; font-weight: 700; margin: 0 0 8px; }
.bring-item p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; margin: 0; }


/* ===== COMMENT CA MARCHE (lab) ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.process-step { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px 22px; }
.process-step .step-num { font-family: var(--font-head); font-size: 13px; font-weight: 800; color: var(--gold); letter-spacing: 1px; }
.process-step h3 { font-size: 15.5px; font-weight: 700; margin: 10px 0 8px; }
.process-step p { color: var(--text-muted); font-size: 13.5px; line-height: 1.6; margin: 0; }
.process-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ===== NOS REALISATIONS - ONGLETS (lab) ===== */
.solutions-dark { background: var(--green-dark); }
.solutions-dark .eyebrow { color: #B7D6CF; }
.solutions-dark h2 { color: #fff; }
.solutions-dark .section-lead { color: #D7E7E2; }

.case-tabs {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.case-tabs::-webkit-scrollbar { display: none; }
.case-tab {
  flex: none;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #D7E7E2;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  white-space: nowrap;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.case-tab[aria-selected="true"] { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
.case-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (hover: hover) and (pointer: fine) {
  .case-tab:hover { border-color: var(--gold); }
}
.case-panel { margin-top: 40px; }
.case-panel h3 { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: #fff; margin: 0 0 12px; line-height: 1.3; }
.case-panel-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; color: #fff; font-weight: 700; font-size: 14.5px; }

/* Logo de l'operateur, en haut a gauche du panneau, a cote du titre (l'un des seuls
   blocs de la section a rompre volontairement le text-align:center herite de .solutions). */
.case-panel-head { display: flex; align-items: center; justify-content: flex-start; gap: 14px; margin-bottom: 12px; }
.case-panel-head h3 { margin: 0; text-align: left; }
.case-logo-badge { flex: none; display: flex; align-items: center; background: #fff; border-radius: 10px; padding: 6px 12px; }
.case-logo-badge img { display: block; width: auto; }
.logo-alfred-hotels { height: 20px; }
.logo-urban-pro { height: 40px; }

/* Cartes 01/02/03 avec photo : l'image occupe toute la largeur en haut de la carte
   (coins arrondis herites via overflow:hidden), le texte reprend le padding standard
   juste en dessous. Meme ratio pour toutes les photos, quel que soit l'operateur. */
.process-step-photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.process-step-photo .case-photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.process-step-photo .process-step-body { padding: 22px 22px 28px; }
@media (hover: hover) and (pointer: fine) {
  .case-panel-link:hover { text-decoration: underline; }
}

/* ===== FAQ (lab) ===== */
.faq { padding: 72px 0; }
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 4px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 16px; font-weight: 700; color: var(--text); cursor: pointer;
  font-family: inherit;
}
.faq-question .chevron { transition: transform .2s ease; flex: none; color: var(--text-muted); }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; margin: 0 0 20px; padding: 0 4px; }


/* ===== LEGAL PAGES ===== */
.legal-page { padding: 64px 0 96px; }
.legal-page .container { max-width: 760px; }
.legal-page h1 { font-family: var(--font-head); font-size: 32px; font-weight: 800; margin: 0 0 8px; }
.legal-page .updated { color: var(--text-muted); font-size: 13px; margin: 0 0 40px; }
.legal-page h2 { font-family: var(--font-head); font-size: 19px; font-weight: 700; margin: 36px 0 12px; }
.legal-page p, .legal-page li { color: var(--text); font-size: 15px; line-height: 1.7; }
.legal-page ul { padding-left: 20px; }
.legal-page .placeholder { background: var(--gold-soft); border-radius: 4px; padding: 1px 6px; font-weight: 600; }

/* ===== COOKIE NOTICE ===== */
.cookie-notice {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  max-width: 640px;
  margin: 0 auto;
  background: var(--green-dark);
  color: #EFEDE7;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.35);
}
.cookie-notice p { margin: 0; font-size: 13.5px; line-height: 1.55; flex: 1 1 320px; }
.cookie-notice a { color: var(--gold); text-decoration: underline; }
.cookie-notice-ok {
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  flex: none;
}
.cookie-notice-ok:hover { background: #E8B958; }

/* ===== FOOTER ===== */
.site-footer { background: var(--green); padding: 36px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: #C9DEDA; font-size: 14px; }
.footer-nav a:hover { color: var(--gold); }
.footer-copy { color: #8FB6AF; font-size: 13px; margin: 0; width: 100%; text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .capital-inner { grid-template-columns: 1fr; gap: 40px; }
  .cards-grid { grid-template-columns: 1fr; }
  .doors-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  /* 3 stats dans une grille a 2 colonnes laisserait le 3e isole dans la colonne de
     gauche (non centre) : on repasse cette variante en 1 colonne. */
  .stats-bar-3 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-copy h1 { font-size: 30px; }
  .hero-points { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .solutions h2 { font-size: 26px; }
  .form-card { padding: 20px; }
  .step-label { display: none; }
  .header-inner { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 10px 20px; }
  .main-nav { width: 100%; justify-content: center; gap: 16px; }
  .main-nav a { font-size: 14px; }
  .page-hero h1 { font-size: 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .door { padding: 28px 22px; }
  .lab-inner .btn-primary { white-space: normal; width: 100%; text-align: center; }
}
