/* ═══════════════════════════════════════════════════════════════════════════
   ConvertClic — Landing page agence
   Variables centralisées : ajustez la marque ici, tout le site suit.

   Parti pris visuel : typographie ample et resserrée, pastilles, coins
   généreux, ombres en couches, lueur douce derrière le hero. Aucune police
   téléchargée : la stack système préserve le 100/100 PageSpeed, qui est un
   argument de vente.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Palette : sobre et crédible, orientée B2B */
  --primary:        #1e40af;   /* bleu profond : confiance */
  --primary-dark:   #1e3a8a;
  --primary-vif:    #2563eb;   /* second ton du dégradé de marque */
  --primary-light:  #eff6ff;
  --ink:            #0f172a;   /* titres : presque noir, bleuté */
  --text:           #1f2937;
  --text-soft:      #475569;
  --text-faint:     #64748b;
  --bg:             #ffffff;
  --bg-alt:         #f6f8fc;
  --border:         #e6eaf2;
  --success:        #15803d;
  --error:          #b91c1c;

  /* Typo : stack système = zéro webfont à charger, rendu natif parfait */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius:      14px;
  --radius-lg:   20px;
  --radius-pill: 999px;
  --shadow:      0 1px 2px rgba(15, 23, 42, .05), 0 8px 24px rgba(15, 23, 42, .06);
  --shadow-lift: 0 2px 4px rgba(15, 23, 42, .06), 0 16px 40px rgba(30, 64, 175, .12);
  --maxw:        1080px;
}

/* ── Reset minimal ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; /* ancres sous le header sticky */ }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); }
h1, h2, h3 { color: var(--ink); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 720px; }

/* ── Boutons : pilules, la forme qui date le moins ────────────────────────── */
.btn {
  display: inline-block;
  padding: .8rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.01em;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .15s, transform .12s, box-shadow .15s;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--primary-vif); outline-offset: 2px; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-vif) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(30, 64, 175, .28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(30, 64, 175, .34); }
.btn-outline { background: var(--bg); color: var(--primary); border-color: #c7d4f0; }
.btn-outline:hover { border-color: var(--primary); background: var(--primary-light); }
.btn-sm { padding: .55rem 1.15rem; font-size: .9rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.08rem; }
.btn-full { width: 100%; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230, 234, 242, .8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 68px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.03em;
}
/* Le point bleu : signature discrète de la marque */
.logo::after { content: "."; color: var(--primary-vif); }
.nav { display: none; gap: 1rem; }
/* Menu affirmé : majuscules, noir, graisse forte. Taille contenue sous
   1000px pour que les cinq liens tiennent sur une ligne, amplifiée ensuite. */
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .12s;
}
.header-inner .btn { white-space: nowrap; }
.nav a:hover { color: var(--primary-vif); }

/* ── Hero : plus grand, plus aéré, lueur douce ────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5.5rem 0 4.5rem;
  /* Nappes de couleur : plusieurs halos doux superposes sur une grille en
     filigrane. Chaque halo est decale pour que les teintes se fondent. */
  background:
    radial-gradient(42rem 24rem at 12% -6%, rgba(37, 99, 235, .13), transparent 62%),
    radial-gradient(38rem 22rem at 90% 4%, rgba(56, 189, 248, .12), transparent 60%),
    radial-gradient(34rem 20rem at 55% 34%, rgba(99, 102, 241, .07), transparent 65%),
    linear-gradient(rgba(15, 23, 42, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .028) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 85%);
  background-size: auto, auto, auto, 56px 56px, 56px 56px, auto;
}
/* La grille s efface vers le bas pour ne pas quadriller le contenu */
.hero::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.3rem, 6.5vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--primary) 20%, var(--primary-vif) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 620px;
  margin: 1.4rem auto 2.2rem;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-soft);
}
/* Visuel du hero : scene en carte arrondie, posee au-dessus du CTA.
   La hauteur est bridee sur petit ecran pour que le bouton reste visible. */
.hero-visuel {
  display: block;
  margin: 0 auto 2rem;
  width: min(620px, 92vw);
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(30, 64, 175, .22), 0 4px 14px rgba(15, 23, 42, .08);
}
@media (max-height: 740px) {
  .hero-visuel { width: min(460px, 80vw); margin-bottom: 1.5rem; }
}
.hero-reassurance {
  margin-top: .9rem;
  font-size: .9rem;
  color: var(--text-faint);
}
/* Pastilles : la preuve sociale en forme de pilules */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-top: 2.1rem;
  list-style: none;
  font-size: .89rem;
  font-weight: 600;
  color: var(--text);
}
.hero-badges li {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .42rem 1rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
}
.hero-badges li::before { content: "✓ "; color: var(--success); font-weight: 800; }

/* ── Bande de chiffres : la preuve marchande sous le hero ─────────────────── */
.bande-chiffres {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 1.5rem 0 1rem;
}
.chiffres { display: grid; gap: 1.6rem; text-align: center; }
.chiffre-valeur {
  display: block;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  background: linear-gradient(120deg, var(--primary) 20%, var(--primary-vif) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.chiffre-legende {
  display: block;
  margin-top: .35rem;
  font-size: .92rem;
  color: var(--text-soft);
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
.chiffres-source {
  margin-top: 1.1rem;
  text-align: center;
  font-size: .78rem;
  color: var(--text-faint);
}
@media (min-width: 700px) {
  .chiffres { grid-template-columns: repeat(3, 1fr); gap: 4.5rem; max-width: 900px; margin: 0 auto; }
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  letter-spacing: -.028em;
  text-align: center;
  line-height: 1.15;
  font-weight: 800;
}
.section-sub {
  text-align: center;
  color: var(--text-soft);
  max-width: 620px;
  margin: .9rem auto 2.8rem;
  font-size: 1.02rem;
}
.section-note {
  text-align: center;
  margin-top: 2rem;
  font-weight: 600;
  color: var(--text-soft);
}
.section-cta { text-align: center; margin-top: 2rem; }

/* Visuel de section : illustration posee entre le sous-titre et le contenu,
   chargee paresseusement puisque sous la ligne de flottaison */
.section-visuel {
  display: block;
  margin: 0 auto 2.6rem;
  width: min(560px, 90vw);
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(30, 64, 175, .16), 0 3px 10px rgba(15, 23, 42, .06);
}

/* Disposition en deux colonnes : contenu empile a gauche, visuel a droite.
   Sur mobile, tout s empile naturellement, l image en dernier. */
.split { display: grid; gap: 1.25rem; align-items: center; }
.split-cartes { display: grid; gap: 1.25rem; }
.split-visuel {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px rgba(30, 64, 175, .16), 0 3px 10px rgba(15, 23, 42, .06);
}
@media (min-width: 820px) {
  .split { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ── Grilles ──────────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

/* ── Cards : coins généreux, survol vivant ────────────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: #d5def0;
}
.card h3 { font-size: 1.08rem; margin-bottom: .55rem; letter-spacing: -.015em; }
.card p { font-size: .95rem; color: var(--text-soft); }

/* ── Liste à coches (offre) ───────────────────────────────────────────────── */
.check-list { list-style: none; display: grid; gap: .9rem; }
.check-list li {
  padding-left: 1.9rem;
  position: relative;
  color: var(--text-soft);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-list strong { color: var(--text); }

/* ── Process ──────────────────────────────────────────────────────────────── */
.step { text-align: left; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-vif) 100%);
  color: #fff;
  font-weight: 800;
  margin-bottom: .9rem;
  box-shadow: 0 4px 12px rgba(30, 64, 175, .22);
}
.step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.step p { font-size: .95rem; color: var(--text-soft); }

/* ── Réalisations & témoignages ───────────────────────────────────────────── */
.realisation {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.realisation-img {
  aspect-ratio: 16 / 9;
  background: repeating-linear-gradient(45deg, #eef2f7, #eef2f7 12px, #f6f8fb 12px, #f6f8fb 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: .85rem;
  font-family: monospace;
}
.realisation figcaption { padding: 1.1rem 1.3rem 1.3rem; }
.realisation h3 { font-size: 1rem; margin-bottom: .3rem; }
.realisation p { font-size: .9rem; color: var(--text-soft); }

.temoignages { margin-top: 2rem; }
.temoignage {
  background: var(--bg);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow);
}
.temoignage p { font-size: .97rem; font-style: italic; color: var(--text-soft); }
.temoignage cite {
  display: block;
  margin-top: .8rem;
  font-style: normal;
  font-weight: 700;
  font-size: .9rem;
}

/* ── Tarifs ───────────────────────────────────────────────────────────────── */
.grid-tarifs { margin-top: 1.2rem; row-gap: 1.6rem; }
.pricing { display: flex; flex-direction: column; text-align: left; position: relative; }
/* Étiquette de rôle : pastille teintée plutôt que capitales grises.
   width: fit-content pour que la pastille reste au format du texte même
   dans une carte non flex (cartes de la méthode). */
.card .role {
  align-self: flex-start;
  width: fit-content;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius-pill);
  padding: .22rem .7rem;
  margin-bottom: .35rem;
}
.pricing h3 { font-size: 1.32rem; margin: .15rem 0 0; letter-spacing: -.02em; }
.pricing .price {
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--primary);
  margin: .2rem 0 0;
  font-variant-numeric: tabular-nums;
}
.pricing .price small { font-size: .95rem; font-weight: 600; letter-spacing: 0; color: var(--text-faint); }
/* Prix barré : le « gratuit » qu'on aurait pu écrire, rayé au profit du vrai prix */
.pricing .price s {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-faint);
  text-decoration-thickness: .12em;
  margin-right: .35rem;
}
/* Trois mots collés au prix : l'œil doit comprendre le « 10 € » sans lire */
.pricing .price-raison {
  font-size: .95rem;
  font-weight: 600;
  color: var(--primary);
  margin: .1rem 0 .3rem;
}
/* Justification, sous la carte et non dedans. Alignée à gauche : à cette
   longueur, un texte centré devient pénible à lire. Le filet et le fond
   la rattachent visuellement à la carte sans l'y enfermer. */
.pourquoi-audit {
  max-width: 44rem;
  margin: 2.2rem auto 0;
  padding: 1.15rem 1.4rem;
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text-soft);
  text-align: left;
}
.pricing .delai { font-size: .88rem; color: var(--success); font-weight: 700; margin: .1rem 0 .9rem; }
.pricing .points { list-style: none; display: grid; gap: .5rem; font-size: .93rem; margin-bottom: 1.3rem; }
/* Carte close par la liste (forfaits maintenance) : padding bas symétrique */
.pricing .points:last-child { margin-bottom: 0; }
.pricing .points li { color: var(--text-soft); }
.pricing .points li::before { content: "✓ "; color: var(--success); font-weight: 800; }
.pricing .btn { margin-top: auto; }
.pricing.featured {
  border: 2px solid var(--primary-vif);
  box-shadow: 0 10px 34px rgba(30, 64, 175, .18);
}
.pricing.featured::before {
  content: "Le plus choisi";
  position: absolute;
  top: -.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-vif) 100%);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .22rem .9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(30, 64, 175, .3);
  white-space: nowrap;
}
.inclus-bar {
  margin: 2.2rem auto 0;
  max-width: 860px;
  background: var(--primary-light);
  border: 1px solid #dbe7fd;
  border-radius: var(--radius);
  padding: 1.05rem 1.5rem;
  font-size: .93rem;
  text-align: center;
}
/* row-gap et largeur alignés sur .grid-tarifs et .inclus-bar : même air pour
   le badge « Le plus choisi » en pile mobile, mêmes bords en desktop */
.grid-forfaits { margin: 2.5rem auto 0; max-width: 860px; row-gap: 1.6rem; }
.forfait { border-top: 3px solid var(--primary); }
.forfait .price { font-size: 1.65rem; }
.pricing .engagement { font-size: .85rem; color: var(--text-faint); margin: 0 0 .8rem; }
/* Quand la mention suit le bouton (carte audit), l'écart passe au-dessus */
.pricing .btn + .engagement { margin: .8rem 0 0; }
.apres { margin: 2.5rem auto 0; max-width: 860px; }
.apres .card h3 { color: var(--primary); }
.cout3ans {
  max-width: 720px;
  margin: 2.5rem auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.cout3ans .cout-head { background: var(--primary-dark); color: #fff; padding: .8rem 1.2rem; font-weight: 700; text-align: center; }
.cout3ans .cout-cols { display: grid; grid-template-columns: 1fr; }
.cout3ans .cout-col { padding: 1.2rem 1.4rem; }
.cout3ans .cout-col + .cout-col { border-top: 1px solid var(--border); }
.cout3ans .cout-col p { font-size: .93rem; color: var(--text-soft); }
.cout3ans .montant { font-size: 1.7rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.cout3ans .montant.ok { color: var(--success); }
.cout3ans .montant.ko { color: var(--error); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
/* Audit et FAQ sont deux sections à fond blanc qui se suivent : sans
   changement de couleur pour marquer la frontière, le double padding se lit
   comme un trou. On resserre cette jonction précise. */
#audit { padding-bottom: 4rem; }
#audit + #faq { padding-top: 3rem; }
/* Pas de sous-titre dans cette section : on redonne au premier encadré
   l'écart titre-contenu de 2.8rem que .section-sub fournit partout ailleurs */
.section h2 + .faq-item { margin-top: 2.8rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .8rem;
  background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
}
.faq-item:hover { border-color: #d5def0; }
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  padding: 1.05rem 1.35rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.6rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 1.35rem 1.15rem; color: var(--text-soft); font-size: .96rem; }

/* ── Formulaire de contact ────────────────────────────────────────────────── */
.section-contact { background: var(--bg-alt); }
#contact-form { margin-top: .5rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1rem; }
.form-field { margin-bottom: 1rem; }
/* Dans une rangée, le gap de la grille suffit : sans quoi la marge des champs
   s'y additionne et l'empilement mobile double l'écart nom-email */
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: .35rem;
}
.form-field .optional { font-weight: 400; color: var(--text-faint); }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: .78rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  transition: border-color .12s, box-shadow .12s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-vif);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);
}
.form-field input.invalid,
.form-field textarea.invalid { border-color: var(--error); }

/* Honeypot : hors écran, invisible pour les humains */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

#form-status { margin-top: .9rem; font-weight: 600; text-align: center; min-height: 1.5em; }
#form-status.ok { color: var(--success); }
#form-status.err { color: var(--error); }
/* ── Commande de l'audit : fenêtre modale, deux étapes annoncées ──────────── */
.audit-modal {
  border: none;
  padding: 0;
  background: transparent;
  width: min(600px, calc(100vw - 2.5rem));
  /* Le reset global écrase le margin: auto du navigateur, qui centre les
     fenêtres modales : on le repose, sans quoi la boîte se colle en haut
     à gauche de l'écran. */
  margin: auto;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
}
/* Sans JavaScript, la fenêtre reste un bloc affiché dans la page */
.audit-modal:not(:modal) { position: static; margin: 1.5rem auto 0; }
.audit-modal::backdrop { background: rgba(15, 23, 42, .5); }
.audit-commande { text-align: left; position: relative; }
@keyframes pop-commande {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.audit-modal[open] .audit-commande { animation: pop-commande .3s ease-out; }
.modal-fermer {
  position: absolute;
  top: .55rem;
  right: .8rem;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--text-faint);
  cursor: pointer;
  padding: .2rem;
}
.modal-fermer:hover { color: var(--ink); }
.audit-commande h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.audit-etapes { font-size: .95rem; color: var(--text-soft); margin-bottom: 1.2rem; line-height: 1.65; }
#audit-status, #souscrire-status { margin-top: .9rem; font-weight: 600; text-align: center; min-height: 1.5em; }
#audit-status.ok, #souscrire-status.ok { color: var(--success); }
#audit-status.err, #souscrire-status.err { color: var(--error); }
#audit-status .btn { margin: .8rem 0 .5rem; }
#audit-status .audit-note, #souscrire-status .audit-note { display: block; font-weight: 400; font-size: .88rem; color: var(--text-soft); margin-top: .3rem; }

.rdv-alt {
  text-align: center;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.rdv-alt p { color: var(--text-soft); margin-bottom: .9rem; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.2rem 0;
  font-size: .88rem;
  color: var(--text-faint);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  text-align: center;
}
.footer-logo { font-weight: 800; color: var(--ink); }
.footer-logo::after { content: "."; color: var(--primary-vif); }
.footer a { color: var(--text-soft); text-decoration: none; }
.footer a:hover { color: var(--primary); }

/* ── Desktop ──────────────────────────────────────────────────────────────── */
@media (min-width: 700px) {
  .nav { display: flex; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-forfaits { grid-template-columns: 1fr 1fr; }
  .apres { grid-template-columns: 1fr 1fr; }
  .cout3ans .cout-cols { grid-template-columns: 1fr 1fr; }
  .cout3ans .cout-col + .cout-col { border-top: none; border-left: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .section { padding: 6rem 0; }
  .hero { padding: 6.5rem 0 5rem; }
  .nav { gap: 2.4rem; }
  .nav a { font-size: .95rem; letter-spacing: .05em; }
}

/* ── Accessibilité : réduction de mouvement ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .faq-item, .form-field input, .form-field textarea { transition: none; }
  .card:hover, .btn-primary:hover { transform: none; }
  .audit-modal[open] .audit-commande { animation: none; }
}
