/* ============================================================
   MONOP'CONSULTING FZCO — Design system
   Palette dérivée du logo : vert forêt profond + bordeaux (accent) + blanc cassé.
   Aucune ressource externe (perf / Lighthouse).
   ============================================================ */

:root {
  /* Couleurs de marque */
  --green-900: #1c3016;
  --green-800: #233a1a;
  --green-700: #2f5122;
  --green-600: #3d6b2c;
  --green-100: #eaf0e4;
  --burgundy: #7a1f1f;
  --burgundy-600: #6a1919;
  --burgundy-100: #f3e7e5;

  /* Neutres */
  --paper: #f8f6f0;
  --paper-2: #f1eee5;
  --white: #ffffff;
  --ink: #1b1c19;
  --muted: #5f6259;
  --line: #e2ded2;
  --line-strong: #cfc9b8;

  /* Rôles */
  --bg: var(--paper);
  --fg: var(--ink);
  --accent: var(--burgundy);
  --brand: var(--green-800);

  /* Typo */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* Échelle */
  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0: clamp(1rem, 0.97rem + 0.15vw, 1.08rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.45rem, 1.3rem + 0.7vw, 1.9rem);
  --step-3: clamp(1.8rem, 1.5rem + 1.5vw, 2.6rem);
  --step-4: clamp(2.3rem, 1.8rem + 2.6vw, 3.6rem);
  --step-5: clamp(2.8rem, 2rem + 4vw, 4.6rem);

  --wrap: 1180px;
  --wrap-narrow: 760px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 1px 2px rgba(28, 30, 25, 0.04), 0 8px 30px rgba(28, 30, 25, 0.06);
  --shadow-lg: 0 24px 60px rgba(28, 30, 25, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--green-900); }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p { text-wrap: pretty; }
::selection { background: var(--green-800); color: #fff; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 200; background: #fff; padding: 0.6rem 1rem; border-radius: var(--radius); box-shadow: var(--shadow); }
:focus-visible { outline: 2px solid var(--green-600); outline-offset: 2px; border-radius: 2px; }

.eyebrow {
  font-family: var(--sans); font-size: var(--step--1); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 0.9rem;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; font-size: var(--step-0); letter-spacing: 0.01em;
  border: 1px solid transparent; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 0.6rem 1.05rem; font-size: var(--step--1); }
.btn__arrow, .btn .btn__arrow { transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn--primary { background: var(--burgundy); color: #fff; }
.btn--primary:hover { background: var(--burgundy-600); }
.btn--ghost { background: transparent; color: var(--green-900); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--green-800); background: rgba(35,58,26,0.04); }
.btn--light { background: #fff; color: var(--green-900); }
.btn--light:hover { background: var(--paper-2); }

/* ---------- Header (deux niveaux, centré) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--line), 0 6px 20px rgba(28,30,25,0.05);
  transition: transform .35s var(--ease);
  will-change: transform;
}
/* Header « intelligent » : en défilant vers le bas, le bandeau logo se rétracte
   au-dessus de l'écran et la barre de menu (verte) se cale en haut. */
.site-header.compact { transform: translateY(calc(-1 * var(--bar-h, 170px))); }

/* Barre du haut (zone LOGO, fond clair) : lang · logo centré · CTA */
.header-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; padding: 0.3rem 0; }
.header-bar__side { display: flex; align-items: center; gap: 0.8rem; }
.header-bar__left { justify-content: flex-start; }
.header-bar__right { justify-content: flex-end; }

.brand { display: flex; align-items: center; justify-content: center; justify-self: center; }
/* Logo fixe (aucune animation au défilement — header stable, pas de saut de mise en page). */
/* La marge négative rogne l'espace transparent intégré à l'image (haut/bas) pour un header plus compact. */
.brand__logo { width: 210px; max-width: 58vw; height: auto; object-fit: contain; margin: -0.7rem 0; }
/* Wordmark : conservé pour le pied de page uniquement (retiré du header). */
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.06em; line-height: 1; display: inline-flex; align-items: baseline; gap: 0.14em; }
.brand__name b { color: var(--green-700); font-weight: 700; }
.brand__name--light, .brand__name--light b { color: #fff; }

/* Barre de navigation (zone MENU) : bande verte pleine largeur, séparation de couleur avec le logo */
.header-nav { display: flex; align-items: center; justify-content: center; gap: 0.15rem; flex-wrap: wrap; background: var(--green-800); padding: 0.4rem 1rem; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); }
.nav__link { position: relative; padding: 0.55rem 0.9rem; border-radius: var(--radius); font-size: 0.94rem; font-weight: 500; color: var(--ink); transition: color .2s var(--ease); white-space: nowrap; display: inline-flex; align-items: center; gap: 0.28em; }
.nav__link::after { content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.3rem; height: 1.5px; background: var(--accent); transform: scaleX(0); transform-origin: center; transition: transform .28s var(--ease); }
.nav__link:hover { color: var(--green-800); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--green-800); }
.nav__caret { font-size: 0.7em; opacity: 0.7; }
.nav__ext { font-size: 0.82em; color: var(--accent); }

/* Liens de la bande verte : texte clair, souligné sable */
.header-nav .nav__link { color: rgba(255,255,255,0.86); }
.header-nav .nav__link:hover, .header-nav .nav__link.is-active { color: #fff; background: transparent; }
.header-nav .nav__link::after { background: #d9c9a0; left: 0.9rem; right: 0.9rem; }
.header-nav .nav__ext { color: #d9c9a0; }
.header-nav .nav__caret { color: rgba(255,255,255,0.7); }
.nav__group { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + 4px); left: 50%; min-width: 190px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 0.4rem; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translate(-50%, 6px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__group:hover .nav__menu, .nav__group:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__menu a { padding: 0.55rem 0.8rem; border-radius: var(--radius); font-size: 0.92rem; color: var(--ink); transition: background .15s, color .15s; }
.nav__menu a:hover { background: var(--green-100); color: var(--green-800); }

.lang-switch { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; padding: 0.4rem 0.55rem; border: 1px solid var(--line-strong); border-radius: var(--radius); color: var(--muted); transition: color .2s, border-color .2s; }
.lang-switch:hover { color: var(--green-800); border-color: var(--green-800); }

.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: #fff; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--green-900); transition: transform .25s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav { border-top: 1px solid var(--line); padding: 1rem 0 1.5rem; }
.mobile-nav[hidden] { display: none; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav .nav__link, .mobile-nav .nav__menu a { display: block; padding: 0.8rem 0.2rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.mobile-nav .nav__link::after { display: none; }
.mobile-nav .nav__group { position: static; }
.mobile-nav .nav__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 1rem; background: transparent; }
.mobile-nav .btn { margin-top: 1.2rem; width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero--home {
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 55%, #26411d 100%);
  color: #fff; padding: clamp(4rem, 3rem + 8vw, 8rem) 0 clamp(3.5rem, 2rem + 6vw, 6rem);
}
.hero--home::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(255,255,255,0.08), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 59h60M59 0v60' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
}
.hero--home .wrap { position: relative; z-index: 1; max-width: 900px; }
.hero--home h1 { color: #fff; font-size: var(--step-5); }
.hero--home .eyebrow { color: #d9c9a0; }
.hero__lead { font-size: var(--step-1); color: rgba(255,255,255,0.82); margin-top: 1.4rem; max-width: 58ch; font-family: var(--sans); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero--home .btn--ghost, .hero--page .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.hero--home .btn--ghost:hover, .hero--page .btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

.hero--page { background: var(--green-900); color: #fff; padding: clamp(3rem, 2.2rem + 5vw, 5.5rem) 0 clamp(2.6rem, 2rem + 3vw, 4rem); position: relative; }
.hero--page::after { content:""; position:absolute; inset:0; background: radial-gradient(100% 100% at 80% 0%, rgba(255,255,255,0.06), transparent 55%); }
.hero--page .wrap { position: relative; z-index: 1; max-width: 820px; }
.hero--page h1 { color: #fff; }
.hero--page .eyebrow { color: #d9c9a0; }
.hero--page .hero__lead { font-size: var(--step-1); }

/* ---------- Réassurance ---------- */
.reassure { background: var(--green-900); color: #fff; border-top: 1px solid rgba(255,255,255,0.08); }
.reassure__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.reassure__item { display: flex; flex-direction: column; gap: 0.2rem; padding: 1.6rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.reassure__item:last-child { border-right: none; }
.reassure__k { font-family: var(--serif); font-size: var(--step-2); color: #fff; }
.reassure__v { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 2.5rem + 5vw, 6.5rem) 0; }
.section--tint { background: var(--white); }
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--green-900); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 640px; margin-bottom: 3rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__intro { font-size: var(--step-1); color: var(--muted); margin-top: 1rem; }
.section--dark .section__intro { color: rgba(255,255,255,0.75); }

.prose { max-width: var(--wrap-narrow); }
.prose p { margin-bottom: 1.1rem; color: var(--ink); }
.prose h3 { margin: 2rem 0 0.8rem; }
.prose ul { margin: 0 0 1.1rem 1.1rem; }
.prose li { margin-bottom: 0.4rem; }
.prose--wide { max-width: 900px; }

/* ---------- Cartes ---------- */
.cards { display: grid; gap: 1.2rem; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem 1.6rem 3.4rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card__kicker { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); }
.card__title { font-size: var(--step-1); }
.card__text { color: var(--muted); font-size: 0.98rem; }
.card__meta { font-size: 0.85rem; color: var(--green-700); font-weight: 600; margin-top: 0.3rem; }
.card__go { position: absolute; bottom: 1.5rem; left: 1.6rem; font-size: 1.3rem; color: var(--accent); transition: transform .2s var(--ease); }
.card:hover .card__go { transform: translateX(5px); }
.card--ext { background: linear-gradient(180deg, var(--green-100), #fff 55%); border-color: #dbe4d2; }
.card--ext:hover .card__go { transform: translate(4px, -4px); }

/* ---------- Problème ---------- */
.problems { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 2.5rem; }
.problems__item { padding-left: 1.4rem; border-left: 2px solid var(--burgundy); }
.problems__item h3 { font-size: var(--step-0); font-family: var(--sans); font-weight: 700; color: var(--green-900); margin-bottom: 0.3rem; }
.problems__item p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Étapes ---------- */
.steps { list-style: none; padding: 0; display: grid; gap: 0; counter-reset: s; }
.steps__item { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding: 1.6rem 0; border-top: 1px solid var(--line); align-items: start; }
.steps__item:last-child { border-bottom: 1px solid var(--line); }
.steps__num { font-family: var(--serif); font-size: var(--step-2); color: var(--green-600); line-height: 1; min-width: 2.4rem; }
.steps__item h3 { font-size: var(--step-1); margin-bottom: 0.3rem; }
.steps__item p { color: var(--muted); }

/* ---------- Checklist / outcome ---------- */
.checklist { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.checklist li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.35em; width: 1.1rem; height: 1.1rem;
  background: var(--green-100); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 10.6 3.8 8l-1 1 3.7 3.6L14 5.1l-1-1z' fill='%232f5122'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 1.1rem;
}
.outcome { background: var(--green-100); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid #dbe4d2; }
.outcome h3 { margin-bottom: 1rem; }

/* ---------- Audience ---------- */
.audience { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; }
.audience h3 { margin-bottom: 0.9rem; font-size: var(--step-1); }
.audience ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.audience li { padding-left: 1.3rem; position: relative; color: var(--ink); }
.audience li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

/* ---------- Deux colonnes ---------- */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }

/* ---------- Note / mention discrète (petit texte, filet léger — pas d'encadré d'alerte) ---------- */
.note, .note--info, .note--warn {
  display: block; font-size: 0.82rem; line-height: 1.65; color: var(--muted);
  margin: 2rem 0 0.4rem; padding: 0.85rem 0 0; border: none; border-top: 1px solid var(--line);
  border-radius: 0; background: none;
}
.note strong { color: var(--green-700); font-weight: 600; }
.section--dark .note, .section--dark .note--info, .section--dark .note--warn { color: rgba(255,255,255,0.6); border-top-color: rgba(255,255,255,0.15); }
.section--dark .note strong { color: rgba(255,255,255,0.8); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq > h2 { margin-bottom: 1.6rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0; position: relative; font-weight: 600; font-size: var(--step-1); font-family: var(--serif); color: var(--green-900); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); font-family: var(--sans); transition: transform .2s; }
.faq__item[open] summary::after { content: "–"; }
.faq__a { padding: 0 0 1.3rem; color: var(--muted); max-width: 68ch; }
.faq__a p { margin-bottom: 0.7rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--green-900), var(--green-700)); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(2.5rem, 2rem + 3vw, 4rem) 0; flex-wrap: wrap; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.8); margin-top: 0.6rem; max-width: 46ch; }
.cta-band .btn--primary { background: #fff; color: var(--green-900); }
.cta-band .btn--primary:hover { background: var(--paper-2); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.85rem; color: var(--muted); padding: 1rem 0 0; }
.breadcrumb a:hover { color: var(--green-800); }
.breadcrumb span { color: var(--line-strong); margin: 0 0.4rem; }

/* ---------- Formulaire ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 0.4rem; }
.form__row--2 { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form label { font-size: 0.88rem; font-weight: 600; color: var(--green-900); }
.form .req { color: var(--accent); font-weight: 700; }
.form input, .form select, .form textarea {
  font: inherit; padding: 0.8rem 0.9rem; border: 1px solid var(--line-strong);
  border-radius: var(--radius); background: #fff; color: var(--ink); width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--green-600); outline: none; box-shadow: 0 0 0 3px rgba(61,107,44,0.15); }
.form textarea { min-height: 120px; resize: vertical; }
.form__consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.form__consent input { width: auto; margin-top: 0.25rem; }
.form__note { font-size: 0.82rem; color: var(--muted); }
.contact-aside { background: var(--green-900); color: #fff; border-radius: var(--radius-lg); padding: 2.2rem; }
.contact-aside h3 { color: #fff; }
.contact-aside a { color: #d9c9a0; }
.contact-aside ul { list-style: none; padding: 0; display: grid; gap: 1.1rem; margin-top: 1.2rem; }
.contact-aside li { display: grid; gap: 0.15rem; }
.contact-aside .k { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }

/* ---------- Ressources / articles ---------- */
.article-list { display: grid; gap: 1.2rem; }
.article-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; transition: box-shadow .2s, transform .2s; }
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.article-card .tag { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 700; }
.article-card h3 { margin: 0.4rem 0; }
.article-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.72); padding: clamp(3rem, 2rem + 4vw, 5rem) 0 2rem; margin-top: auto; }
.footer__top { display: grid; grid-template-columns: 1.1fr 2fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__brand p { margin-top: 1rem; max-width: 34ch; font-size: 0.95rem; }
.footer__addr { color: rgba(255,255,255,0.5) !important; font-size: 0.85rem !important; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.footer__col h4 { color: #fff; font-family: var(--sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer__col a { font-size: 0.93rem; color: rgba(255,255,255,0.72); }
.footer__col a:hover { color: #fff; }
.footer__disclaimer { font-size: 0.8rem; color: rgba(255,255,255,0.5); padding: 1.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); line-height: 1.6; }
.footer__disclaimer strong { color: rgba(255,255,255,0.7); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .2s; }
.wa-float:hover { transform: scale(1.06); }

/* ---------- Cookie ---------- */
.cookie { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 120; max-width: 560px; margin-inline: auto; background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.1rem 1.3rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.cookie[hidden] { display: none; }
.cookie p { font-size: 0.88rem; color: var(--muted); flex: 1 1 260px; }
.cookie a { color: var(--green-800); text-decoration: underline; }
.cookie__actions { display: flex; gap: 0.6rem; margin-left: auto; }

/* ---------- Reveal animation (ne s'active que si JS présent : .js) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Entrée du hero au chargement ---------- */
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.js .hero .eyebrow, .js .hero h1, .js .hero__lead, .js .hero__actions {
  opacity: 0; animation: heroIn .8s var(--ease) forwards;
}
.js .hero .eyebrow { animation-delay: .05s; }
.js .hero h1 { animation-delay: .16s; }
.js .hero__lead { animation-delay: .30s; }
.js .hero__actions { animation-delay: .44s; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .header-nav, .header-cta { display: none; }
  .burger { display: block; }
  .brand__logo { width: clamp(120px, 34vw, 240px); max-width: none; }
  .header-bar { padding: 0.5rem 0; }
  .cards--3, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .form-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .twocol { grid-template-columns: 1fr; gap: 1.5rem; }
  .reassure__grid { grid-template-columns: repeat(2, 1fr); }
  .reassure__item:nth-child(2) { border-right: none; }
}
@media (max-width: 620px) {
  .cards--2, .cards--3, .cards--4 { grid-template-columns: 1fr; }
  .problems { grid-template-columns: 1fr; }
  .form__row--2 { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .reassure__item { border-right: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .js .hero .eyebrow, .js .hero h1, .js .hero__lead, .js .hero__actions { opacity: 1 !important; }
}
