/* ==========================================================================
   LANDING REFONTE — « Carnet d'atelier » (feat/landing-refonte)
   Source du plan : ~/projects/aa-analyse-landing/RAPPORT.md §3.1–§3.5.

   Fichier NEUF, scopé body.aa-landing — tokens.css reste intouchable, et ce
   complément consomme uniquement ses variables (kraft/papier/ardoise, serif
   système --font-display, ocre --accent). Zéro webfont, zéro couleur en dur
   hors ombres. Charge APRÈS vitrine-da.css (cascade : peut surcharger).

   Principes (brief CEO) :
   - Scroll STRUCTURÉ : sous-nav sticky à ancres + sections bornées.
   - Typo généreuse : corps ≥ 18px, H1 clamp(2.5rem,5vw,3.75rem), aération.
   - Reveal NET (opacity + translateY via vitrine-anime.js), ZÉRO blur.
   - Composition étagée nette dans le hero (frames + carte flottante + tampon).
   - Tarifs cumulatifs + tableau comparatif à coches.
   - Mobile-first, contraste AAA (variables tokens déjà calibrées AAA),
     prefers-reduced-motion respecté.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Base typographique landing — « le CEO trouve les polices trop petites ».
      Corps ≥ 18px, interligne ample. Les sections refonte héritent de ça ;
      les anciens inline 14–15px des composants conservés restent localisés.
   -------------------------------------------------------------------------- */
body.aa-landing {
  font-size: 18px;
  line-height: 1.6;
}

/* Conteneur de section standard + rythme vertical ample. */
body.aa-landing .aa-lr-section {
  padding: clamp(64px, 9vw, 112px) 24px;
}
body.aa-landing .aa-lr-wrap {
  max-width: 1160px;
  margin: 0 auto;
}
body.aa-landing .aa-lr-wrap--narrow { max-width: 820px; }

body.aa-landing .aa-lr-bloc { background: var(--bg-bloc); }

/* En-tête de section : eyebrow tampon + titre serif + chapô ≥ 1.25rem. */
body.aa-landing .aa-lr-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
body.aa-landing .aa-lr-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 14px 0 0;
  text-wrap: balance;
}
body.aa-landing .aa-lr-h2 em { font-style: italic; color: var(--accent); }
body.aa-landing .aa-lr-lede {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 18px auto 0;
  max-width: 640px;
}

/* --------------------------------------------------------------------------
   1. SOUS-NAV STICKY À ANCRES — apparaît après le hero (tue le scroll infini).
      Masquée par défaut ; landing-refonte.js pose .is-shown au passage du hero.
      Sticky SOUS le header (top = hauteur header ~ 64px). Backdrop opaque
      (zéro blur, exigence CEO). Scrollspy : lien actif via .is-active.
   -------------------------------------------------------------------------- */
body.aa-landing .aa-subnav {
  position: sticky;
  /* Se cale SOUS le header sticky (top affiné en JS via header.offsetHeight ;
     fallback ~ hauteur header desktop). z-index < header (40). */
  top: 72px;
  z-index: 38;
  background: color-mix(in srgb, var(--bg-card) 97%, transparent);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: opacity 220ms var(--ease-standard, ease),
              transform 220ms var(--ease-standard, ease);
}
body.aa-landing .aa-subnav.is-shown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
body.aa-landing .aa-subnav__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 24px;
  min-height: 52px;
}
body.aa-landing .aa-subnav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
body.aa-landing .aa-subnav__links::-webkit-scrollbar { display: none; }
body.aa-landing .aa-subnav__link {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms ease, background-color 150ms ease;
}
body.aa-landing .aa-subnav__link:hover { color: var(--text-primary); background: var(--bg-bloc); }
body.aa-landing .aa-subnav__link.is-active {
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}
body.aa-landing .aa-subnav__cta {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--fill-on);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms ease, transform 100ms ease;
}
body.aa-landing .aa-subnav__cta:hover { background: var(--accent-hover); }
body.aa-landing .aa-subnav__cta:active { transform: scale(0.97); }
@media (max-width: 600px) {
  body.aa-landing .aa-subnav__cta { display: none; }
  body.aa-landing .aa-subnav__inner { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  body.aa-landing .aa-subnav { transition: none; }
}
/* Ancres : décalage pour ne pas passer sous le header+sous-nav stickys. */
body.aa-landing [id="comment"],
body.aa-landing [id="fonctionnalites"],
body.aa-landing [id="voxa"],
body.aa-landing [id="tarifs"],
body.aa-landing [id="demo"],
body.aa-landing [id="conformite"] {
  scroll-margin-top: 140px;
}

/* --------------------------------------------------------------------------
   2. HEADER — retrait du blur (exigence CEO « ZÉRO blur »). On garde un fond
      translucide quasi opaque qui se solidifie au scroll (classe existante).
   -------------------------------------------------------------------------- */
body.aa-landing .aa-landing-header {
  background: color-mix(in srgb, var(--bg-primary) 92%, transparent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
[data-theme="dark"] body.aa-landing .aa-landing-header {
  background: color-mix(in srgb, var(--bg-primary) 92%, transparent);
}
body.aa-landing .aa-landing-header-scrolled,
[data-theme="dark"] body.aa-landing .aa-landing-header-scrolled {
  background: var(--bg-card);
}

/* --------------------------------------------------------------------------
   3. HERO — composition étagée NETTE. Grille 2 colonnes ≥ 960px
      (texte gauche / composition droite), empilée en mobile.
   -------------------------------------------------------------------------- */
body.aa-landing .aa-hero2 {
  padding: clamp(96px, 12vw, 132px) 24px clamp(64px, 8vw, 96px);
}
body.aa-landing .aa-hero2__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 960px) {
  body.aa-landing .aa-hero2__grid { grid-template-columns: 1.02fr 0.98fr; }
}
body.aa-landing .aa-hero2__copy { text-align: center; }
@media (min-width: 960px) {
  body.aa-landing .aa-hero2__copy { text-align: left; }
}

/* H1 plus généreux (brief §3.5 : clamp(2.5rem,5vw,3.75rem), emphase italique). */
body.aa-landing .aa-hero2__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.06;
  font-weight: 650;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 0 0 22px;
  text-wrap: balance;
}
body.aa-landing .aa-hero2__title em { font-style: italic; color: var(--accent); }
body.aa-landing .aa-hero2__lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 32px;
  max-width: 560px;
}
@media (max-width: 959px) {
  body.aa-landing .aa-hero2__lede { margin-left: auto; margin-right: auto; }
}
body.aa-landing .aa-hero2__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 959px) {
  body.aa-landing .aa-hero2__cta-row { justify-content: center; }
}
body.aa-landing .aa-hero2__reassure {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---- Composition (scène) : pile de cadres détourés + ombres NETTES ------- */
body.aa-landing .aa-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  /* hauteur réservée pour éviter le CLS : ratio constant */
  aspect-ratio: 5 / 5.2;
}
@media (max-width: 520px) {
  body.aa-landing .aa-stage { aspect-ratio: 5 / 5.8; max-width: 400px; }
}

/* Halo papier réglé derrière la scène (motif crayon léger, pas de blur). */
body.aa-landing .aa-stage::before {
  content: "";
  position: absolute;
  inset: -6% -4% -2% -6%;
  border-radius: 28px;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 27px,
      color-mix(in srgb, var(--accent) 7%, transparent) 27px,
      color-mix(in srgb, var(--accent) 7%, transparent) 28px),
    radial-gradient(ellipse 80% 70% at 60% 30%,
      color-mix(in srgb, var(--accent) 9%, transparent) 0%, transparent 70%);
  z-index: 0;
}

/* Cadre « app carnet » (desktop) — pièce de fond de la scène. */
body.aa-landing .aa-stage__desktop {
  position: absolute;
  top: 4%;
  left: 0;
  width: 82%;
  z-index: 1;
}
/* Cadre iPhone superposé (dictée terrain) — au premier plan, bas-droite. */
body.aa-landing .aa-stage__phone {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34%;
  z-index: 3;
}
/* Carte « devis Factur-X » flottante détourée — haut-droite. */
body.aa-landing .aa-stage__float {
  position: absolute;
  top: -2%;
  right: -2%;
  width: 46%;
  z-index: 2;
}
@media (max-width: 520px) {
  body.aa-landing .aa-stage__desktop { width: 86%; }
  body.aa-landing .aa-stage__phone { width: 38%; }
  body.aa-landing .aa-stage__float { width: 52%; }
}

/* --------------------------------------------------------------------------
   4. FRAMES RÉUTILISABLES — cadres premium DA Carnet (ombres nettes).
      .aa-frame-desktop : bezel kraft, barre de titre à pastilles.
      .aa-frame-phone   : châssis iPhone (encoche îlot).
      .aa-capture       : visuel interne (img réelle OU placeholder étiqueté).
   -------------------------------------------------------------------------- */
body.aa-landing .aa-frame-desktop {
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 48px -22px rgba(31, 26, 18, 0.32),
              0 6px 14px -8px rgba(31, 26, 18, 0.18);
  overflow: hidden;
}
[data-theme="dark"] body.aa-landing .aa-frame-desktop {
  box-shadow: 0 24px 48px -22px rgba(0, 0, 0, 0.62),
              0 6px 14px -8px rgba(0, 0, 0, 0.5);
}
body.aa-landing .aa-frame-desktop__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: var(--bg-bloc);
  border-bottom: 1px solid var(--border);
}
body.aa-landing .aa-frame-desktop__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border-strong);
}
body.aa-landing .aa-frame-phone {
  border-radius: 26px;
  background: var(--text-primary);
  padding: 7px;
  box-shadow: 0 26px 50px -20px rgba(31, 26, 18, 0.42),
              0 8px 16px -8px rgba(31, 26, 18, 0.28);
  position: relative;
}
[data-theme="dark"] body.aa-landing .aa-frame-phone {
  box-shadow: 0 26px 50px -20px rgba(0, 0, 0, 0.7),
              0 8px 16px -8px rgba(0, 0, 0, 0.55);
}
body.aa-landing .aa-frame-phone__screen {
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
}
body.aa-landing .aa-frame-phone__island {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 12px;
  border-radius: 999px;
  background: var(--text-primary);
  z-index: 4;
}

/* Visuel interne — image réelle (object-fit) ou placeholder étiqueté. */
body.aa-landing .aa-capture {
  display: block;
  width: 100%;
  height: auto;
}
body.aa-landing .aa-capture-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 28px 18px;
  min-height: 168px;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in srgb, var(--border) 40%, transparent) 0,
      color-mix(in srgb, var(--border) 40%, transparent) 1px,
      transparent 1px, transparent 11px),
    var(--bg-bloc);
  color: var(--text-muted);
}
body.aa-landing .aa-capture-ph svg { color: var(--accent); opacity: 0.85; }
body.aa-landing .aa-capture-ph__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}
body.aa-landing .aa-capture-ph__hint { font-size: 12px; color: var(--text-muted); }

/* Carte flottante générique (devis détouré) + tampon DA. */
body.aa-landing .aa-float-card {
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 40px -18px rgba(31, 26, 18, 0.36);
  padding: 16px 18px;
}
[data-theme="dark"] body.aa-landing .aa-float-card {
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.66);
}

/* Tampon « Agréé Factur-X » — encre brique posée à -4°, entrée overshoot. */
body.aa-landing .aa-stamp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border: 2px solid var(--success);
  color: var(--success);
  border-radius: 6px;
  background: color-mix(in srgb, var(--success-bg) 86%, transparent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}
body.aa-landing .aa-stamp svg { flex-shrink: 0; }
body.aa-landing .aa-stage__stamp {
  position: absolute;
  left: -3%;
  bottom: 14%;
  z-index: 4;
}

/* --------------------------------------------------------------------------
   5. BANDEAU CONFIANCE (sous le hero) — métiers + gages, déjà stylé par les
      utilitaires du template ; ici on borne la bande par des filets.
   -------------------------------------------------------------------------- */
body.aa-landing .aa-trustband {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-bloc);
}

/* --------------------------------------------------------------------------
   6. COMMENT ÇA MARCHE — pipeline numéroté 1→4 (cœur différenciant).
   -------------------------------------------------------------------------- */
body.aa-landing .aa-pipeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: aa-step;
}
@media (min-width: 760px) {
  body.aa-landing .aa-pipeline { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
body.aa-landing .aa-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
/* Trait de liaison entre étapes (desktop) — pointillé crayon. */
@media (min-width: 760px) {
  body.aa-landing .aa-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 46px;
    right: -11px;
    width: 22px;
    height: 0;
    border-top: 2px dashed var(--border-strong);
    z-index: 1;
  }
}
body.aa-landing .aa-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
body.aa-landing .aa-step__title {
  font-size: 18px;
  font-weight: 650;
  color: var(--text-primary);
  margin: 0 0 8px;
}
body.aa-landing .aa-step__desc {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

/* --------------------------------------------------------------------------
   7. PILIERS FONCTIONNELS — alternance gauche/droite (image / texte).
   -------------------------------------------------------------------------- */
body.aa-landing .aa-pillar {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
body.aa-landing .aa-pillar + .aa-pillar { margin-top: clamp(56px, 9vw, 104px); }
@media (min-width: 880px) {
  body.aa-landing .aa-pillar { grid-template-columns: 1fr 1fr; }
  /* Alternance : pilier pair → visuel à droite (ordre inversé). */
  body.aa-landing .aa-pillar--flip .aa-pillar__media { order: 2; }
}
body.aa-landing .aa-pillar__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
body.aa-landing .aa-pillar__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 14px;
}
body.aa-landing .aa-pillar__body {
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text-secondary);
  margin: 0 0 18px;
}
body.aa-landing .aa-pillar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
body.aa-landing .aa-pillar__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
body.aa-landing .aa-pillar__list li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
body.aa-landing .aa-pillar__caption {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   8. VOXA — section premium (staging ardoise + accent). Installe l'Expert.
   -------------------------------------------------------------------------- */
body.aa-landing .aa-voxa {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%,
      color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 60%),
    var(--bg-bloc);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] body.aa-landing .aa-voxa {
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%,
      color-mix(in srgb, var(--accent) 16%, transparent) 0%, transparent 60%),
    var(--bg-primary);
}
body.aa-landing .aa-voxa__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 64px);
  align-items: center;
}
@media (min-width: 920px) {
  body.aa-landing .aa-voxa__grid { grid-template-columns: 1fr 1.05fr; }
}
body.aa-landing .aa-voxa__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--fill-on);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
body.aa-landing .aa-voxa__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 16px;
}
body.aa-landing .aa-voxa__title em { font-style: italic; color: var(--accent); }
body.aa-landing .aa-voxa__body {
  font-size: 1.125rem;
  line-height: 1.62;
  color: var(--text-secondary);
  margin: 0 0 20px;
}
body.aa-landing .aa-voxa__list {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: grid; gap: 12px;
}
body.aa-landing .aa-voxa__list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1.0625rem; line-height: 1.5; color: var(--text-secondary);
}
body.aa-landing .aa-voxa__list li strong { color: var(--text-primary); font-weight: 650; }
body.aa-landing .aa-voxa__list li svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
body.aa-landing .aa-voxa__note {
  font-size: 14px;
  color: var(--text-muted);
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

/* Colonne visuelle Voxa : conversation + carte de tournée empilées. */
body.aa-landing .aa-voxa__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.aa-landing .aa-voxa__map { margin: 0; }
body.aa-landing .aa-voxa__map .aa-pillar__caption { margin-top: 10px; }

/* Mini-conversation Voxa (mock SSR — pas de fausse donnée client). */
body.aa-landing .aa-voxa__panel {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 48px -22px rgba(31, 26, 18, 0.3);
}
[data-theme="dark"] body.aa-landing .aa-voxa__panel {
  box-shadow: 0 24px 48px -22px rgba(0, 0, 0, 0.62);
}
body.aa-landing .aa-voxa__bubble {
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}
body.aa-landing .aa-voxa__bubble--user {
  background: var(--bg-bloc);
  color: var(--text-primary);
  margin-left: 18%;
}
body.aa-landing .aa-voxa__bubble--voxa {
  background: color-mix(in srgb, var(--accent) 10%, var(--bg-card));
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  color: var(--text-primary);
  margin-right: 10%;
}
body.aa-landing .aa-voxa__bubble--voxa .aa-voxa__who {
  font-weight: 700; color: var(--accent); font-size: 13px; margin-bottom: 3px;
}
body.aa-landing .aa-voxa__action {
  display: flex; gap: 10px; align-items: center;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--border-strong);
}
body.aa-landing .aa-voxa__action .aa-voxa__pill {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 999px;
  background: var(--warning-bg); color: var(--warning);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. CONFORMITÉ & CONFIANCE — grille de gages (différenciateur RGPD/France).
   -------------------------------------------------------------------------- */
body.aa-landing .aa-conf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 680px) {
  body.aa-landing .aa-conf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  body.aa-landing .aa-conf-grid { grid-template-columns: repeat(3, 1fr); }
}
body.aa-landing .aa-conf-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
body.aa-landing .aa-conf-card__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
  margin-bottom: 16px;
}
[data-theme="dark"] body.aa-landing .aa-conf-card__icon {
  background: color-mix(in srgb, var(--accent) 15%, transparent);
}
body.aa-landing .aa-conf-card__title {
  font-size: 17px; font-weight: 650; color: var(--text-primary); margin: 0 0 8px;
}
body.aa-landing .aa-conf-card__desc {
  font-size: 15px; line-height: 1.55; color: var(--text-secondary); margin: 0;
}

/* --------------------------------------------------------------------------
   10. TÉMOIGNAGES — placeholder HONNÊTE (zéro faux avis / faux chiffre :
       contrainte légale DGCCRF + garde pytest). Carte « premiers retours ».
   -------------------------------------------------------------------------- */
body.aa-landing .aa-testi-ph {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px dashed var(--border-strong);
  border-radius: 20px;
  padding: clamp(36px, 6vw, 56px) 28px;
}
body.aa-landing .aa-testi-ph__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0 0 16px;
  text-wrap: balance;
}
body.aa-landing .aa-testi-ph__sub {
  font-size: 1rem; line-height: 1.55; color: var(--text-secondary); margin: 0 auto 22px; max-width: 520px;
}

/* --------------------------------------------------------------------------
   11. TARIFS — cartes cumulatives landing + tableau comparatif.
       (Composant landing dédié ; le composant partagé _components/pricing_tiers
       reste inchangé pour /abonnements, /trial-expired, /cgv.)
   -------------------------------------------------------------------------- */
body.aa-landing .aa-lrp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 880px) {
  body.aa-landing .aa-lrp-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
body.aa-landing .aa-lrp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
/* Pro = « Le plus populaire » : anneau accent + légère surélévation. */
body.aa-landing .aa-lrp-card--popular {
  border: 2px solid var(--accent);
  box-shadow: 0 18px 40px -18px color-mix(in srgb, var(--accent) 30%, transparent);
}
@media (min-width: 880px) {
  body.aa-landing .aa-lrp-card--popular { transform: scale(1.035); }
}
/* Expert = « Pilote automatique » : carte ardoise, tampon distinct. */
body.aa-landing .aa-lrp-card--expert {
  border-color: var(--border-strong);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%,
      color-mix(in srgb, var(--accent) 8%, transparent) 0%, transparent 60%),
    var(--bg-card);
}
body.aa-landing .aa-lrp-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
body.aa-landing .aa-lrp-badge--popular { background: var(--accent); color: var(--fill-on); }
body.aa-landing .aa-lrp-badge--pilote {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  transform: translateX(-50%) rotate(-2deg);
  font-family: var(--font-display);
  font-weight: 800;
}
body.aa-landing .aa-lrp-name {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
body.aa-landing .aa-lrp-job {
  font-size: 14.5px; line-height: 1.4; color: var(--text-secondary); margin: 0 0 16px; min-height: 40px;
}
body.aa-landing .aa-lrp-price-row { display: flex; align-items: baseline; gap: 6px; }
body.aa-landing .aa-lrp-price {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 700; line-height: 1; color: var(--text-primary);
}
body.aa-landing .aa-lrp-card--popular .aa-lrp-price,
body.aa-landing .aa-lrp-card--expert .aa-lrp-price { color: var(--accent); }
body.aa-landing .aa-lrp-per { font-size: 14px; color: var(--text-muted); }
body.aa-landing .aa-lrp-roi {
  margin: 10px 0 18px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
  background: var(--bg-bloc);
  border-radius: 8px;
  padding: 8px 10px;
}
body.aa-landing .aa-lrp-roi strong { color: var(--text-primary); }
body.aa-landing .aa-lrp-feats {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: grid; gap: 10px;
  flex: 1 1 auto;
}
body.aa-landing .aa-lrp-feats li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 15px; line-height: 1.45; color: var(--text-secondary);
}
body.aa-landing .aa-lrp-feats li svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
body.aa-landing .aa-lrp-feats li.is-head {
  font-weight: 650; color: var(--text-primary); margin-bottom: 2px;
}
body.aa-landing .aa-lrp-feats li.is-head svg { display: none; }
body.aa-landing .aa-lrp-cta { margin-top: auto; }
body.aa-landing .aa-lrp-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin: 22px auto 0;
  max-width: 640px;
}

/* ---- Tableau comparatif à coches cumulatives ---- */
body.aa-landing .aa-compare-wrap {
  margin-top: clamp(48px, 7vw, 72px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
body.aa-landing .aa-compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
body.aa-landing .aa-compare caption {
  caption-side: top;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 650;
  color: var(--text-primary);
  margin-bottom: 22px;
}
body.aa-landing .aa-compare th,
body.aa-landing .aa-compare td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}
body.aa-landing .aa-compare thead th {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--border-strong);
}
body.aa-landing .aa-compare thead th .aa-compare__tier {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: 0;
}
body.aa-landing .aa-compare thead th .aa-compare__price {
  display: block; font-size: 12px; color: var(--text-muted); font-weight: 600; margin-top: 2px;
}
/* Colonne Expert mise en valeur (la plus pleine). */
body.aa-landing .aa-compare col.aa-compare__col-expert,
body.aa-landing .aa-compare .aa-compare__cell-expert {
  background: color-mix(in srgb, var(--accent) 7%, transparent);
}
body.aa-landing .aa-compare thead th.aa-compare__cell-expert .aa-compare__tier { color: var(--accent); }
body.aa-landing .aa-compare tbody th {
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}
body.aa-landing .aa-compare__cat {
  font-family: var(--font-display);
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  padding-top: 22px !important;
  background: transparent;
}
body.aa-landing .aa-compare__yes { color: var(--accent); display: inline-flex; }
body.aa-landing .aa-compare__no { color: var(--text-muted); font-size: 18px; line-height: 1; }
body.aa-landing .aa-compare tbody tr:last-child th,
body.aa-landing .aa-compare tbody tr:last-child td { border-bottom: none; }

/* --------------------------------------------------------------------------
   12. Reveals — alignés sur la mécanique vitrine (NET : opacity + translateY).
       Les nouvelles sections portent data-reveal ; vitrine-anime.js les
       anime. Fallback CSS de tokens §38.d s'applique déjà (body.aa-landing
       [data-reveal]). Rien à ajouter — on documente l'absence de blur.
   -------------------------------------------------------------------------- */
/* (volontairement vide : aucun filtre blur sur la landing) */
