/* =========================================================
   ÉvoluRH — Feuille de style
   Selon le Guide d'expérience de marque numérique (2026) :
   parcours en 8 pages, flèche = signature graphique,
   espace généreux, esprit Apple/Notion.
   Charte : nuit profond, marine ardoise, gris bleuté,
   givre, fond givre, crème.
   ========================================================= */

:root {
  --nuit: #111E2E;
  --marine: #2A4A6A;
  --gris-bleu: #7A8E9E;
  --blanc-givre: #C8D4E0;
  --givre: #EDF1F5;
  --creme: #FAF8F4;
  --blanc: #FFFFFF;

  --texte-fonce: #24384C;      /* texte courant sur fonds clairs (contraste AA) */
  --logo-bleu: #7585A6;        /* bleu du mot-symbole RH + barre du É (mesuré dans la charte) */
  --logo-blanc: #F9FAFA;       /* blanc du mot « Évolu » sur fond sombre (mesuré dans la charte) */
  --bordure-claire: rgba(42, 74, 106, 0.14);
  --erreur: #C4453E;           /* réservé aux états d'erreur du formulaire */
  --valide: #2E7D4F;           /* réservé aux états de validation */

  --police: "Plus Jakarta Sans", -apple-system, "Segoe UI", sans-serif;
  --police-signature: "Bodoni Moda", Georgia, serif;

  --nav-hauteur: 4.5rem;
  --rayon: 18px;
}

/* ===== Base ===== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--police);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--texte-fonce);
  background: var(--blanc);
}

/* Transition d'arrivée douce (parcours continu entre les pages) */
body { animation: page-entree 0.45s ease-out; }
@keyframes page-entree {
  from { opacity: 0; }
  to   { opacity: 1; }
}

img, svg { max-width: 100%; }

.container {
  width: min(100% - 3rem, 70rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--nuit);
  color: var(--blanc);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ===== Logo (HTML/CSS + SVG pour le H à flèche) ===== */

.logo {
  display: inline-block;
  font-family: var(--police);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* « Évolu » : trait léger. Blanc givré sur fond sombre, nuit profond sur fond clair. */
.logo-evolu {
  font-weight: 200;
  letter-spacing: 0.02em;
}
.logo--pale .logo-evolu { color: var(--logo-blanc); }
.logo--fonce .logo-evolu { color: var(--nuit); }

/* L'accent du É stylisé en macron (barre au-dessus du E) */
.logo-e {
  position: relative;
  display: inline-block;
}
/* Barre bleue au-dessus du E : exactement la largeur du E,
   épaisseur 4,5 % de la hauteur de capitale, écart serré (proportions de la charte) */
.logo-e::before {
  content: "";
  position: absolute;
  top: 0.033em;
  left: 0.1em;
  width: 0.46em;
  height: 0.034em;
  background: var(--logo-bleu);
}

/* Texte réservé aux lecteurs d'écran */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* « RH » : gris-bleuté appuyé, séparé d'Évolu par un espace */
.logo-rh {
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--logo-bleu);
  margin-left: 0.26em;
}

/* Le H : la barre transversale se prolonge en flèche dont la pointe,
   en couleur du fond, traverse le fût droit (jamais retirée) */
.logo-h {
  height: 0.745em; /* hauteur de capitale réelle de Plus Jakarta Sans */
  width: auto;
  display: inline-block;
  vertical-align: baseline;
  fill: currentColor;
  margin-left: 0.03em;
}
.logo-fleche { stroke: var(--nuit); }
.logo--fonce .logo-fleche { stroke: var(--blanc); }

.logo--nav { font-size: 1.35rem; }
.logo--footer { font-size: 1.6rem; }

/* ===== Navigation (claire, sobre, esprit wireframe) ===== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease-out;
}
.nav.est-defile { border-bottom-color: var(--bordure-claire); }

.nav-inner {
  height: var(--nav-hauteur);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-menu a {
  color: var(--marine);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.2s ease-out;
}
.nav-menu a:hover,
.nav-menu a:focus-visible { color: var(--nuit); }

.nav-menu a[aria-current="page"] {
  color: var(--nuit);
  border-bottom: 2px solid var(--logo-bleu);
  padding-bottom: 2px;
}

/* Bouton « Nous écrire → » : pastille sombre, la flèche avance au survol */
.nav-cta {
  background: var(--nuit);
  color: var(--blanc) !important;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border-bottom: none !important;
}
.nav-cta:hover,
.nav-cta:focus-visible { background: var(--marine); }

/* Bouton hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--nuit);
  border-radius: 2px;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* ===== La flèche — signature graphique ===== */

.fleche {
  display: inline-block;
  transition: transform 0.2s ease-out;
}
a:hover .fleche,
a:focus-visible .fleche,
button:hover .fleche { transform: translateX(4px); }

/* Séparateur de section : une flèche discrète qui marque la transition */
.separateur {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
  color: var(--gris-bleu);
}
.separateur::before,
.separateur::after {
  content: "";
  height: 1px;
  width: min(18vw, 9rem);
  background: var(--bordure-claire);
}

/* ===== Sections génériques ===== */

.section { padding: clamp(4rem, 9vw, 6.5rem) 0; }
.section--givre { background: var(--givre); }
.section--creme { background: var(--creme); }
.section--blanc { background: var(--blanc); }
.section--dark { background: var(--nuit); color: var(--blanc-givre); }

section[id] { scroll-margin-top: var(--nav-hauteur); }

.section-entete {
  max-width: 46rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.surligne {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gris-bleu);
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--police);
  line-height: 1.15;
  color: var(--marine);
}

h2 {
  font-weight: 800;
  font-size: clamp(1.7rem, 4.2vw, 2.4rem);
  letter-spacing: -0.015em;
}

.section--dark h2 { color: var(--blanc-givre); }

.section-intro {
  margin-top: 1.1rem;
  font-size: 1.05rem;
}

/* ===== Boutons ===== */

.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-family: var(--police);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease-out, color 0.2s ease-out,
              border-color 0.2s ease-out, transform 0.2s ease-out;
}
.btn:active { transform: translateY(1px); }

/* Bouton principal : sombre sur fond clair */
.btn--dark {
  background: var(--nuit);
  color: var(--blanc);
}
.btn--dark:hover,
.btn--dark:focus-visible { background: var(--marine); }

/* Bouton secondaire : contour */
.btn--ligne {
  border-color: rgba(42, 74, 106, 0.4);
  color: var(--marine);
}
.btn--ligne:hover,
.btn--ligne:focus-visible {
  border-color: var(--marine);
  background: rgba(42, 74, 106, 0.06);
}

/* Variante sur fond sombre */
.btn--pale {
  background: var(--blanc-givre);
  color: var(--nuit);
}
.btn--pale:hover,
.btn--pale:focus-visible { background: var(--blanc); }

.btn--pleine-largeur { width: 100%; }

/* ===== Hero de l'accueil ===== */

.hero {
  background: var(--givre);
  text-align: center;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.hero-surtitre {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gris-bleu);
}

.hero-titre {
  margin: 1.25rem auto 0;
  max-width: 21ch;
  font-weight: 800;
  font-size: clamp(2rem, 5.6vw, 3.6rem);
  letter-spacing: -0.02em;
  color: var(--marine);
}

.hero-sous-titre {
  margin: 1.4rem auto 0;
  max-width: 36rem;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
}

/* Les trois mots — liens (jamais en italique) */
.hero-mots {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}
.hero-mots a {
  color: var(--marine);
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease-out, border-color 0.2s ease-out;
}
.hero-mots a:hover,
.hero-mots a:focus-visible {
  color: var(--nuit);
  border-bottom-color: var(--logo-bleu);
}
.hero-mots .point { color: var(--logo-bleu); }

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* ===== Hero des pages intérieures ===== */

.page-hero {
  background: var(--givre);
  text-align: center;
  padding: clamp(4rem, 9vw, 6rem) 0;
}

.page-hero h1 {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -0.02em;
  color: var(--marine);
  max-width: 24ch;
  margin-inline: auto;
}

.page-hero-accroche {
  margin: 1.2rem auto 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 700;
  color: var(--marine);
}

.page-hero-texte {
  margin: 1.1rem auto 0;
  max-width: 38rem;
}

.page-hero .hero-actions { margin-top: 2.25rem; }

/* ===== Cartes ===== */

.carte {
  display: flex;
  flex-direction: column;
  background: var(--blanc);
  border: 1px solid var(--bordure-claire);
  border-radius: var(--rayon);
  padding: 2rem 1.75rem;
  transition: transform 0.25s ease-out, border-color 0.25s ease-out,
              box-shadow 0.25s ease-out;
}
.carte:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 74, 106, 0.32);
  box-shadow: 0 14px 34px rgba(17, 30, 46, 0.07);
}

.section--givre .carte,
.section--creme .carte { background: var(--blanc); }
.section--blanc .carte { background: var(--creme); }

.carte h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.carte p { font-size: 0.97rem; }

.carte-num {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gris-bleu);
  background: var(--givre);
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 1.2rem;
}

.carte-accroche {
  font-weight: 700;
  color: var(--marine);
  margin-bottom: 0.5rem;
}

.carte-lien {
  margin-top: auto;
  padding-top: 1.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--marine);
  text-decoration: none;
}
.carte-lien:hover,
.carte-lien:focus-visible { color: var(--nuit); }

/* Carte entièrement cliquable (défis, catégories) */
a.carte {
  text-decoration: none;
  color: inherit;
}

.tag-avenir {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gris-bleu);
  border: 1px solid var(--bordure-claire);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}
.carte h3 + .tag-avenir,
.carte p + .tag-avenir { margin-top: 1.2rem; }

/* ===== Grilles ===== */

.grille-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grille-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ===== Bande sombre (transition de parcours) ===== */

.bande {
  background: var(--nuit);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.bande-phrase {
  font-family: var(--police-signature);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--blanc-givre);
}

.bande-lien {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blanc);
  text-decoration: none;
}
.bande-lien:hover,
.bande-lien:focus-visible { color: var(--blanc-givre); }

/* ===== Portraits ÉvoluRH ===== */

.portrait-nom {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-bleu);
  margin-bottom: 0.9rem;
}

.portrait-duree {
  font-size: 0.85rem;
  color: var(--gris-bleu);
  margin-top: 0.9rem;
}

/* ===== Étapes reliées par la flèche ===== */

.etapes {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.etapes .carte { flex: 1; }

.etape-fleche {
  align-self: center;
  font-size: 1.5rem;
  color: var(--logo-bleu);
  flex-shrink: 0;
}

/* ===== Citation / texte clé en grand ===== */

.texte-cle {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--marine);
}

/* ===== MAGNÉTIK — univers distinct ===== */

.magnetik-hero {
  position: relative;
  overflow: hidden;
  background: var(--nuit);
  color: var(--blanc-givre);
  text-align: center;
  padding: clamp(5.5rem, 13vw, 9rem) 0;
}

/* Champ magnétique : anneaux concentriques discrets */
.magnetik-hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: repeating-radial-gradient(
    circle at 50% 115%,
    rgba(122, 142, 158, 0.14) 0,
    rgba(122, 142, 158, 0.14) 1px,
    transparent 1px,
    transparent 72px
  );
  animation: champ 14s ease-in-out infinite alternate;
}
@keyframes champ {
  from { transform: scale(1); opacity: 0.7; }
  to   { transform: scale(1.08); opacity: 1; }
}

.magnetik-hero > .container { position: relative; }

.magnetik-titre {
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--blanc);
  text-indent: 0.22em; /* compense l'espacement pour un centrage optique */
}

.magnetik-sous-titre {
  margin: 1.25rem auto 0;
  max-width: 30rem;
  color: var(--blanc-givre);
  font-size: 1.1rem;
}

.magnetik-surtitre {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gris-bleu);
  margin-bottom: 1.25rem;
}

/* ===== Impartition RH — gabarit magazine =====
   Chaque section respire : chiffre-choc → titre → texte →
   liste de mandats → grande marge (directives du guide). */

.mandat {
  padding: clamp(3rem, 7vw, 4.75rem) 0;
  border-top: 1px solid var(--bordure-claire);
}
.mandat:first-of-type { border-top: none; padding-top: 0; }

.mandat-entete {
  display: flex;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: flex-start;
}

/* Numérotation en grand chiffre pâle (signature visuelle) */
.mandat-numero {
  font-size: clamp(3.25rem, 9vw, 5.5rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--blanc-givre);
  flex-shrink: 0;
}

.mandat-accroche {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gris-bleu);
  margin-bottom: 0.8rem;
}

.mandat-titre {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--marine);
}

.mandat-phrase {
  margin-top: 0.6rem;
  font-style: italic;
}

.mandat-liste {
  list-style: none;
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 2.5rem;
  max-width: 44rem;
}

.mandat-liste li {
  font-size: 0.97rem;
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}
.mandat-liste li::before {
  content: "→";
  color: var(--logo-bleu);
  flex-shrink: 0;
}

@media (max-width: 40rem) {
  .mandat-entete { flex-direction: column; gap: 0.9rem; }
  .mandat-liste { grid-template-columns: 1fr; }
}

/* ===== Formulaire ===== */

.formulaire {
  background: var(--blanc);
  border: 1px solid var(--bordure-claire);
  border-radius: var(--rayon);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  display: grid;
  gap: 1.25rem;
}

.champ-cache { display: none; }

.champ label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--marine);
  margin-bottom: 0.45rem;
}

.champ input,
.champ textarea {
  width: 100%;
  font-family: var(--police);
  font-size: 1rem;
  color: var(--texte-fonce);
  background: var(--blanc);
  border: 1px solid rgba(42, 74, 106, 0.3);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
  resize: vertical;
}

.champ input:focus,
.champ textarea:focus {
  outline: none;
  border-color: var(--marine);
  box-shadow: 0 0 0 3px rgba(42, 74, 106, 0.14);
}

.champ input[aria-invalid="true"],
.champ textarea[aria-invalid="true"] {
  border-color: var(--erreur);
}

.champ input.est-valide,
.champ textarea.est-valide {
  border-color: rgba(46, 125, 79, 0.6);
}

.champ-erreur {
  min-height: 1.1rem;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--erreur);
}

/* Coordonnées (page Nous écrire) */

.coordonnees {
  list-style: none;
  display: grid;
  gap: 1.1rem;
}

.coordonnees li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.coordonnees svg {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--gris-bleu);
  flex-shrink: 0;
}

.coordonnees a {
  color: var(--marine);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(42, 74, 106, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease-out;
}
.coordonnees a:hover,
.coordonnees a:focus-visible { text-decoration-color: var(--marine); }

.contact-grille {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

/* ===== Pied de page ===== */

.footer {
  background: var(--nuit);
  color: var(--blanc-givre);
  padding: clamp(3.5rem, 8vw, 5rem) 0 2rem;
}

.footer-grille {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Phrase signature — Bodoni Moda italique (moment de marque) */
.footer-signature {
  margin-top: 1.4rem;
  max-width: 20rem;
  font-family: var(--police-signature);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--blanc-givre);
}

.footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-bleu);
  margin-bottom: 1.1rem;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer ul a {
  color: var(--blanc-givre);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease-out;
}
.footer ul a:hover,
.footer ul a:focus-visible { color: var(--blanc); }

.footer address {
  font-style: normal;
  font-size: 0.92rem;
  display: grid;
  gap: 0.55rem;
}
.footer address a {
  color: var(--blanc-givre);
  text-decoration: none;
}
.footer address a:hover { color: var(--blanc); }

.footer-bas {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 212, 224, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gris-bleu);
}

/* ===== Apparitions au scroll (sobres, ease-out) ===== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal.est-visible {
  opacity: 1;
  transform: none;
}

.grille-2 .reveal:nth-child(2),
.grille-3 .reveal:nth-child(2),
.etapes .carte:nth-child(3) { transition-delay: 0.1s; }
.grille-2 .reveal:nth-child(3),
.grille-3 .reveal:nth-child(3),
.etapes .carte:nth-child(5) { transition-delay: 0.2s; }
.grille-2 .reveal:nth-child(4) { transition-delay: 0.1s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { animation: none; }
  .magnetik-hero::before { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * { transition-duration: 0.01ms !important; }
}

/* ===== Responsive ===== */

@media (max-width: 68rem) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: absolute;
    top: var(--nav-hauteur);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--blanc);
    border-bottom: 1px solid var(--bordure-claire);
    padding: 0.5rem 1.5rem 1.25rem;
    display: none;
  }
  .nav-menu.est-ouvert { display: flex; }

  .nav-menu a {
    padding: 0.85rem 0.25rem;
    font-size: 1.02rem;
    border-bottom: 1px solid rgba(42, 74, 106, 0.08);
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-menu a[aria-current="page"] {
    border-bottom: 1px solid rgba(42, 74, 106, 0.08);
    color: var(--nuit);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border-radius: 999px;
  }
}

@media (max-width: 56rem) {
  .grille-3 { grid-template-columns: 1fr; }
  .grille-2 { grid-template-columns: 1fr; }
  .contact-grille { grid-template-columns: 1fr; }
  .footer-grille { grid-template-columns: 1fr; }

  .etapes { flex-direction: column; }
  .etape-fleche {
    align-self: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 40rem) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 20rem; }
}
