/* =============================================================================
   NS DIGITAL SERVICES — Interface publique v2
   Reference : maquette « Plateforme NS Digital Services v2 (hero photos) ».
   -----------------------------------------------------------------------------
   Les valeurs de ce fichier sont RELEVEES sur la maquette, pas reinterpretees :
   couleurs, tailles, graisses, rayons, ombres, durees. Ne pas « ameliorer ».

   La maquette vit dans un conteneur de requete (unites cqw). Ici la page occupe
   la fenetre : chaque cqw devient un vw de meme valeur, avec les memes bornes
   clamp(). Le rendu est identique a largeur egale.

   Ce fichier ne charge QUE le site public. L'administration et les espaces
   prives gardent main.css : aucune regle d'ici ne les atteint.
   ========================================================================== */

/* ── Jeton de couleur de la maquette ─────────────────────────────────────── */
:root {
  --v2-blue:        #1878F8;
  --v2-blue-dark:   #1156B3;
  --v2-blue-pale:   #E8F2FE;
  --v2-flame:       #F84000;
  --v2-flame-dark:  #B32E00;
  --v2-flame-pale:  #FEECE6;
  --v2-coral:       #FF624D;   /* fond du pied de page */
  --v2-coral-line:  #FFA595;
  --v2-coral-dark:  #C3341C;
  --v2-ink:         #111827;
  --v2-ink-soft:    #4B5563;
  --v2-ink-mute:    #8A93A3;
  --v2-line:        #E7E8EC;
  --v2-line-soft:   #F0F1F4;
  --v2-paper:       #FFFFFF;
  --v2-paper-alt:   #F7F8FA;
  --v2-star:        #F8D868;

  --v2-pad:         clamp(20px, 5vw, 62px);
  --v2-max:         1240px;
}

/* ── Rythme commun ───────────────────────────────────────────────────────── */
.v2-section { padding: var(--v2-pad); }
.v2-section--tight { padding: 0 var(--v2-pad) var(--v2-pad); }
.v2-section--alt {
  background: var(--v2-paper-alt);
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}
.v2-wrap { max-width: var(--v2-max); margin: 0 auto; }

.v2-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--v2-flame);
  font-weight: 700;
  margin: 0 0 12px;
}

/* Le titre de section est BLEU dans la maquette, jamais encre. */
.v2-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(21px, 3vw, 36px);
  letter-spacing: -.02em;
  color: var(--v2-blue);
  margin: 0;
  text-wrap: pretty;
}
.v2-lead { font-size: 16px; line-height: 1.6; color: var(--v2-ink-soft); margin: 14px 0 0; }

.v2-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.v2-more { font-size: 14px; font-weight: 600; color: var(--v2-blue-dark); text-decoration: none; white-space: nowrap; }
.v2-more:hover { color: var(--v2-blue); }

/* ── En-tete ─────────────────────────────────────────────────────────────── */
.v2-header {
  position: sticky; top: 0; z-index: 40;
  background: transparent;
  border-bottom: 1px solid var(--v2-line);
}
/* Le fond photo est floute et voile de blanc : le texte doit rester lisible
   sans que l'image disparaisse. */
.v2-header__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.v2-header__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.v2-header__veil { position: absolute; inset: 0; background: rgba(255,255,255,.74); backdrop-filter: blur(7px); }

.v2-header__bar {
  position: relative; max-width: var(--v2-max); margin: 0 auto;
  padding: 14px var(--v2-pad);
  display: flex; align-items: center; gap: 28px;
}
.v2-header__logo { display: block; flex-shrink: 0; }
.v2-header__logo img { height: 42px; width: auto; display: block; object-fit: contain; }

.v2-nav { display: flex; gap: 22px; flex: 1; flex-wrap: wrap; min-width: 0; }
.v2-nav a {
  font-size: 14px; font-weight: 500; color: var(--v2-ink-soft);
  text-decoration: none; transition: color .15s; white-space: nowrap;
}
.v2-nav a:hover { color: var(--v2-blue); }
.v2-nav a[aria-current="page"] { font-weight: 700; color: var(--v2-ink); }

.v2-header__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }

.v2-lang {
  display: flex; gap: 2px; background: rgba(255,255,255,.85);
  border: 1px solid var(--v2-line); border-radius: 999px; padding: 3px; flex-shrink: 0;
}
.v2-lang a {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 6px 11px; border-radius: 999px; text-decoration: none;
  color: var(--v2-ink-soft); background: transparent; transition: all .18s;
}
.v2-lang a[aria-current="true"] { background: var(--v2-blue); color: #FFFFFF; }

.v2-header__link { font-size: 13.5px; font-weight: 600; color: var(--v2-ink-soft); text-decoration: none; white-space: nowrap; }
.v2-header__link:hover { color: var(--v2-blue); }

/* ── Boutons ─────────────────────────────────────────────────────────────── */
.v2-btn {
  font-family: 'Inter', sans-serif; font-weight: 600;
  border-radius: 12px; cursor: pointer; white-space: nowrap;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s; border: 1px solid transparent;
}
.v2-btn--primary {
  font-size: 15px; color: #FFFFFF; background: var(--v2-blue);
  padding: 16px 28px; box-shadow: 0 10px 26px rgba(24,120,248,.3);
}
.v2-btn--primary:hover { background: var(--v2-blue-dark); transform: translateY(-2px); color: #FFFFFF; }
.v2-btn--ghost {
  font-size: 15px; color: var(--v2-ink); background: var(--v2-paper);
  border-color: var(--v2-line); padding: 16px 28px;
}
.v2-btn--ghost:hover { border-color: var(--v2-blue); color: var(--v2-blue-dark); }
.v2-btn--sm { font-size: 13.5px; padding: 11px 16px; border-radius: 10px; box-shadow: 0 6px 16px rgba(24,120,248,.28); }
.v2-btn--sm:hover { transform: translateY(-1px); }
/* Sur le bloc bleu final, les couleurs s'inversent. */
.v2-btn--onblue { font-size: 15px; color: var(--v2-blue-dark); background: #FFFFFF; padding: 15px 26px; }
.v2-btn--onblue:hover { transform: translateY(-2px); color: var(--v2-blue-dark); }
.v2-btn--onblue-ghost {
  font-size: 15px; color: #FFFFFF; background: transparent;
  border-color: rgba(255,255,255,.55); padding: 15px 26px;
}
.v2-btn--onblue-ghost:hover { background: rgba(255,255,255,.12); color: #FFFFFF; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.v2-hero { position: relative; overflow: hidden; padding: var(--v2-pad) var(--v2-pad) clamp(16px, 4vw, 50px); }
/* Arc decoratif : la maquette le pose hors cadre, en haut a droite. */
.v2-hero__arc { position: absolute; right: -70px; top: -60px; width: 340px; height: 340px; opacity: .14; pointer-events: none; }

.v2-hero__grid {
  max-width: var(--v2-max); margin: 0 auto; position: relative;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 52px; align-items: center;
}
.v2-hero__copy { animation: v2Fade .5s ease both; }
.v2-hero__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--v2-flame); font-weight: 700; margin: 0 0 16px;
}
.v2-hero__title {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(28px, 4.6vw, 52px); line-height: 1.06; letter-spacing: -.03em;
  color: var(--v2-blue); margin: 0 0 20px; text-wrap: pretty;
}
.v2-hero__sub {
  font-size: clamp(14px, 1.4vw, 17px); line-height: 1.65;
  color: var(--v2-ink-soft); margin: 0 0 30px; max-width: 520px; text-wrap: pretty;
}
.v2-hero__actions { display: flex; align-items: stretch; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.v2-hero__proof { display: flex; gap: 26px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--v2-line); }
.v2-hero__proof-v { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; color: var(--v2-ink); letter-spacing: -.02em; }
.v2-hero__proof-l { font-size: 12.5px; color: var(--v2-ink-soft); margin-top: 2px; }

.v2-hero__media { position: relative; animation: v2Fade .6s .1s ease both; }
.v2-hero__frame {
  position: relative; border-radius: 22px; border: 1px solid var(--v2-line);
  overflow: hidden; background: #EDEFF3;
  height: min(62vw, 430px); box-shadow: 0 20px 50px rgba(17,24,39,.14);
}
/* Les photos se superposent et se croisent en fondu : jamais de saut. */
.v2-hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.v2-hero__slide.is-active { opacity: 1; }
.v2-hero__scrim { position: absolute; inset: 0 0 auto 0; height: 120px; background: linear-gradient(to bottom, rgba(8,32,72,.72), transparent); }
.v2-hero__caption {
  position: absolute; left: 18px; top: 16px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #FFFFFF;
}
.v2-hero__dots { position: absolute; left: 18px; bottom: 16px; display: flex; gap: 7px; }
.v2-hero__dot {
  width: 18px; height: 6px; border-radius: 99px; border: 0; padding: 0;
  background: rgba(255,255,255,.45); cursor: pointer; transition: all .3s;
}
.v2-hero__dot.is-active { width: 30px; background: #FFFFFF; }

/* Badge « 4.9 » : deborde volontairement du cadre, en bas a droite. */
.v2-hero__badge {
  position: absolute; right: -14px; bottom: -22px;
  background: #FFFFFF; border: 1px solid var(--v2-line); border-radius: 16px;
  padding: 16px 20px; box-shadow: 0 18px 40px rgba(17,24,39,.12);
  display: flex; align-items: center; gap: 14px; max-width: calc(100% - 24px);
}
.v2-hero__badge-n {
  width: 40px; height: 40px; border-radius: 12px; background: var(--v2-blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800; color: var(--v2-blue-dark); font-size: 15px;
  flex-shrink: 0;
}
.v2-hero__badge-t { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: var(--v2-ink); }
.v2-hero__badge-s { font-size: 12px; color: var(--v2-ink-soft); }

/* ── Bandeau de confiance : defilement continu ───────────────────────────── */
.v2-trust { padding: clamp(12px, 2vw, 26px) 0 clamp(24px, 4vw, 50px); }
.v2-trust__label {
  text-align: center; font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--v2-ink-mute); margin-bottom: 22px;
}
/* Le masque efface les bords : les logos entrent et sortent sans couperet. */
.v2-marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.v2-marquee__track { display: flex; width: max-content; animation: v2Marquee 62s linear infinite; }
.v2-marquee:hover .v2-marquee__track { animation-play-state: paused; }
.v2-marquee__item {
  flex: 0 0 auto; width: 150px; height: 74px; margin-right: 14px;
  border: 1px solid #EDEEF1; border-radius: 12px; background: #FFFFFF;
  display: flex; align-items: center; justify-content: center; padding: 12px;
}
.v2-marquee__item img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

/* ── Services ────────────────────────────────────────────────────────────── */
.v2-grid { display: grid; gap: 20px; }
.v2-grid--svc { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.v2-grid--met { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); align-items: stretch; }
/* Les cartes d'une rangee s'alignent en hauteur : une carte courte ne doit pas
   laisser un trou sous elle. */
.v2-grid--work { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
.v2-grid--post { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }

.v2-svc {
  background: #FFFFFF; border: 1px solid var(--v2-line); border-radius: 18px;
  padding: 26px; transition: all .22s; position: relative; overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none;
}
.v2-svc:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(17,24,39,.09); border-color: #FFFFFF; }
/* Le numero s'inscrit dans un arc a la couleur du service. */
.v2-svc__num { position: relative; width: 44px; height: 44px; margin-bottom: 18px; }
.v2-svc__num svg { width: 44px; height: 44px; transform: rotate(-95deg); }
.v2-svc__num span {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-weight: 700; font-size: 13px; color: var(--v2-ink);
}
.v2-svc__t { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -.01em; color: var(--v2-ink); margin: 0 0 8px; }
.v2-svc__d { font-size: 14px; line-height: 1.55; color: var(--v2-ink-soft); margin: 0 0 18px; flex: 1; }
.v2-svc__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--v2-line); margin-top: auto;
}
.v2-svc__price { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: var(--v2-ink); font-weight: 500; }
.v2-svc__go { font-size: 13px; font-weight: 600; color: var(--v2-blue-dark); }

/* ── Chiffres : bande bleue pleine largeur ───────────────────────────────── */
.v2-stats { padding: var(--v2-pad); background: var(--v2-blue); }
.v2-stats__grid {
  max-width: var(--v2-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 34px;
}
.v2-stats__v {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(23px, 4vw, 46px); letter-spacing: -.03em; color: #FFFFFF; line-height: 1;
}
.v2-stats__rule { width: 32px; height: 2px; background: #FFFFFF; margin: 14px 0 12px; }
.v2-stats__l { font-size: 14px; color: #FFFFFF; line-height: 1.55; }

/* ── Methode ─────────────────────────────────────────────────────────────── */
.v2-met {
  border: 1px solid var(--v2-line); border-radius: 18px; padding: 26px;
  background: #FFFFFF; transition: all .2s;
}
.v2-met:hover { border-color: var(--v2-blue); box-shadow: 0 14px 30px rgba(17,24,39,.07); }
.v2-met__n { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px; color: var(--v2-blue); font-weight: 700; margin-bottom: 14px; }
.v2-met__t { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; color: var(--v2-ink); margin: 0 0 8px; }
.v2-met__d { font-size: 14px; line-height: 1.6; color: var(--v2-ink-soft); margin: 0; }

/* ── Realisations ────────────────────────────────────────────────────────── */
.v2-work {
  border: 1px solid var(--v2-line); border-radius: 20px; overflow: hidden;
  background: #FFFFFF; text-decoration: none; display: block;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.v2-work:hover { box-shadow: 0 26px 52px rgba(17,24,39,.14); border-color: #FFFFFF; }
/* Le visuel deborde du cadre et porte son ombre : effet « maquette posee ».
   display:block est indispensable : ces conteneurs sont des <span> a l'interieur
   d'un <a>, donc inline par defaut — le padding ne s'appliquerait pas. */
.v2-work__top { display: block; padding: 26px 22px 0; background: linear-gradient(180deg, #F7F8FA 0%, #FFFFFF 100%); border-bottom: 1px solid var(--v2-line-soft); }
.v2-work__top img { display: block; width: 112%; max-width: 112%; margin-left: -6%; height: auto; filter: drop-shadow(0 20px 26px rgba(17,24,39,.22)); }
.v2-work__body { display: block; padding: 22px; }
.v2-tag {
  display: inline-block; font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--v2-blue-dark); background: var(--v2-blue-pale);
  padding: 4px 9px; border-radius: 6px; margin-bottom: 12px;
  /* Une pastille sur deux lignes se lit mal et casse l'alignement du titre. */
  white-space: nowrap;
}
.v2-work__t { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; color: var(--v2-ink); margin: 0 0 8px; }
.v2-work__d { font-size: 13.5px; line-height: 1.6; color: var(--v2-ink-soft); margin: 0 0 14px; }
.v2-work__r { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px; color: var(--v2-flame-dark); font-weight: 500; }

/* ── Avis ────────────────────────────────────────────────────────────────── */
.v2-avis { max-width: 960px; margin: 0 auto; text-align: center; }
.v2-avis__card {
  background: #FFFFFF; border: 1px solid var(--v2-line); border-radius: 22px;
  padding: clamp(20px, 4vw, 48px); box-shadow: 0 14px 36px rgba(17,24,39,.06);
}
.v2-avis__stars { font-size: 18px; color: var(--v2-star); letter-spacing: .16em; margin-bottom: 20px; }
.v2-avis__q {
  font-family: 'Poppins', sans-serif; font-weight: 500;
  font-size: clamp(14.5px, 2.1vw, 23px); line-height: 1.55; color: var(--v2-ink);
  margin: 0 0 22px; text-wrap: pretty;
}
.v2-avis__who { display: flex; align-items: center; justify-content: center; gap: 14px; }
.v2-avis__ini {
  width: 46px; height: 46px; border-radius: 50%; background: var(--v2-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: #FFFFFF; flex-shrink: 0;
}
.v2-avis__n { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--v2-ink); }
.v2-avis__r { font-size: 13px; color: var(--v2-ink-soft); }
.v2-avis__nav { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }
.v2-avis__btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--v2-line);
  background: #FFFFFF; color: var(--v2-ink); cursor: pointer; font-size: 15px; transition: all .2s;
}
.v2-avis__btn:hover { border-color: var(--v2-blue); color: var(--v2-blue); }

/* ── Magazine ────────────────────────────────────────────────────────────── */
.v2-post {
  border: 1px solid var(--v2-line); border-radius: 18px; padding: 26px;
  background: #FFFFFF; text-decoration: none; display: block; transition: all .2s;
}
.v2-post:hover { border-color: var(--v2-blue); transform: translateY(-3px); }
.v2-post__meta { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }
.v2-tag--warm { color: var(--v2-flame-dark); background: var(--v2-flame-pale); margin-bottom: 0; }
.v2-post__date { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: var(--v2-ink-mute); }
.v2-post__t { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.35; color: var(--v2-ink); margin: 0 0 10px; text-wrap: pretty; }
.v2-post__e { font-size: 13.5px; line-height: 1.6; color: var(--v2-ink-soft); margin: 0; }

/* ── Appel a l'action final ──────────────────────────────────────────────── */
.v2-cta {
  max-width: var(--v2-max); margin: 0 auto; background: var(--v2-blue);
  border-radius: 26px; padding: clamp(20px, 4.5vw, 60px); position: relative; overflow: hidden;
}
.v2-cta__arc { position: absolute; right: -50px; bottom: -70px; width: 280px; height: 280px; opacity: .22; }
.v2-cta__in { position: relative; max-width: 660px; }
.v2-cta__t {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(23px, 3.4vw, 40px); letter-spacing: -.02em; color: #FFFFFF;
  margin: 0 0 16px; text-wrap: pretty;
}
.v2-cta__p { font-size: 16px; line-height: 1.6; color: #FFFFFF; margin: 0 0 30px; }
.v2-cta__row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Pied de page ────────────────────────────────────────────────────────── */
.v2-footer { background: var(--v2-coral); padding: var(--v2-pad) var(--v2-pad) clamp(16px, 3vw, 38px); }
.v2-footer__in { max-width: var(--v2-max); margin: 0 auto; width: 100%; }
.v2-footer__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--v2-coral-line);
}
.v2-footer__logo { height: 96px; width: auto; display: block; margin-bottom: 20px; object-fit: contain; }
.v2-footer__about { font-size: 13.5px; line-height: 1.7; color: #FFFFFF; margin: 0 0 16px; max-width: 280px; }
.v2-footer__coord { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px; color: #FFFFFF; line-height: 1.9; }
.v2-footer__socials { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 18px; }
.v2-footer__social {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #FFFFFF; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px;
  text-decoration: none; flex-shrink: 0; transition: all .18s;
}
.v2-footer__social:hover { background: #FFFFFF; color: var(--v2-coral-dark); }
.v2-footer__ct {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase; color: #FFFFFF; margin-bottom: 18px;
}
.v2-footer__cols a { display: block; font-size: 13.5px; color: #FFFFFF; margin-bottom: 11px; text-decoration: none; transition: opacity .15s; }
.v2-footer__cols a:hover { opacity: .78; color: #FFFFFF; }
.v2-footer__bottom {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding-top: 24px; font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; color: #FFFFFF;
}
.v2-footer__bottom a { color: #FFFFFF; text-decoration: none; }
.v2-footer__bottom a:hover { opacity: .78; }

/* ── Animations ──────────────────────────────────────────────────────────── */
@keyframes v2Fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
/* -50% : la piste contient les logos EN DOUBLE, la boucle est donc invisible. */
@keyframes v2Marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.v2-reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.v2-reveal.is-in { opacity: 1; transform: none; }

/* Mouvement reduit : on coupe defilement et apparitions, on garde le contenu. */
@media (prefers-reduced-motion: reduce) {
  .v2-marquee__track { animation: none; }
  .v2-hero__copy, .v2-hero__media { animation: none; }
  .v2-reveal { opacity: 1; transform: none; transition: none; }
  .v2-hero__slide { transition: none; }
}

/* ── Tablette et telephone ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .v2-nav, .v2-header__link { display: none; }
  .v2-burger { display: flex !important; }
}
@media (min-width: 1025px) {
  .v2-burger, .v2-mobile-menu { display: none !important; }
}
.v2-burger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--v2-line);
  background: #FFFFFF; cursor: pointer; flex-shrink: 0;
}
.v2-burger span { display: block; width: 16px; height: 2px; border-radius: 2px; background: var(--v2-ink); }

.v2-mobile-menu {
  position: relative; border-top: 1px solid var(--v2-line);
  padding: 10px var(--v2-pad) 18px; background: rgba(255,255,255,.96);
}
.v2-mobile-menu a {
  display: block; padding: 13px 4px; border-bottom: 1px solid var(--v2-line);
  font-size: 15px; font-weight: 500; color: var(--v2-ink-soft); text-decoration: none;
}
.v2-mobile-menu a:last-child { border-bottom: 0; }
.v2-mobile-menu a.is-space { font-weight: 600; color: var(--v2-blue-dark); }

@media (max-width: 720px) {
  .v2-hero__grid { gap: 34px; }
  .v2-hero__frame { height: min(72vw, 340px); }
  /* Le badge revient dans le flux : deborder ecraserait le texte suivant. */
  .v2-hero__badge { position: static; margin-top: 18px; max-width: none; }
  .v2-hero__proof { gap: 20px; }
  .v2-footer__logo { height: 64px; }
  .v2-footer__cols { gap: 28px; padding-bottom: 28px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PAGES INTERIEURES
   Memes jetons que l'accueil. Rien de nouveau n'est invente : ces classes
   reprennent les cartes, titres et espacements deja releves sur la maquette.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Fil d'Ariane ────────────────────────────────────────────────────────── */
.v2-crumbs {
  max-width: var(--v2-max); margin: 0 auto; padding: 18px var(--v2-pad) 0;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px;
  color: var(--v2-ink-mute); display: flex; gap: 8px; flex-wrap: wrap;
}
.v2-crumbs a { color: var(--v2-ink-mute); text-decoration: none; }
.v2-crumbs a:hover { color: var(--v2-blue); }
.v2-crumbs span[aria-current] { color: var(--v2-ink); }

/* ── En-tete de page ─────────────────────────────────────────────────────── */
/* Un arc discret rappelle le hero sans repeter sa mise en scene. */
.v2-pagehead { position: relative; overflow: hidden; padding: clamp(26px, 4vw, 56px) var(--v2-pad) clamp(20px, 3vw, 40px); }
.v2-pagehead__arc { position: absolute; right: -80px; top: -90px; width: 300px; height: 300px; opacity: .1; pointer-events: none; }
.v2-pagehead__in { position: relative; max-width: var(--v2-max); margin: 0 auto; }
.v2-pagehead__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 44%); gap: clamp(28px, 4vw, 56px); align-items: center; }
.v2-pagehead__grid--solo { grid-template-columns: 1fr; }
.v2-pagehead__media { border-radius: 22px; overflow: hidden; border: 1px solid var(--v2-line); background: var(--v2-paper-alt); }
.v2-pagehead__media img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
@media (max-width: 900px) { .v2-pagehead__grid { grid-template-columns: 1fr; } }
.v2-pagehead h1 {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(26px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -.025em;
  color: var(--v2-blue); margin: 0; text-wrap: pretty;
}
.v2-pagehead p.v2-lead { max-width: 62ch; }

/* ── Cartes generiques ───────────────────────────────────────────────────── */
.v2-card {
  background: #FFFFFF; border: 1px solid var(--v2-line); border-radius: 18px;
  padding: 26px; transition: all .22s;
}
.v2-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(17,24,39,.09); border-color: var(--v2-blue); background: var(--v2-paper-alt); }
.v2-card:active { transform: translateY(-2px); }
.v2-card:focus-visible { outline: 3px solid var(--v2-blue); outline-offset: 2px; }
.v2-card--link { text-decoration: none; display: block; }
.v2-card--link:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(17,24,39,.09); border-color: #FFFFFF; }
.v2-card--flat { padding: 0; overflow: hidden; }
.v2-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--v2-paper-alt); }
.v2-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-card__body { display: block; padding: 22px; }
.v2-card__t { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; color: var(--v2-ink); margin: 0 0 8px; text-wrap: pretty; }
.v2-card__d { font-size: 14px; line-height: 1.6; color: var(--v2-ink-soft); margin: 0; }
.v2-card__meta { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px; color: var(--v2-ink-mute); }

.v2-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.v2-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.v2-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.v2-cols { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .v2-cols { grid-template-columns: 1fr; } }

/* ── Filtres ─────────────────────────────────────────────────────────────── */
.v2-filters { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 32px; }
.v2-chip {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 9px 15px; border-radius: 999px; border: 1px solid var(--v2-line);
  background: #FFFFFF; color: var(--v2-ink-soft); text-decoration: none; transition: all .18s;
}
.v2-chip:hover { border-color: var(--v2-blue); color: var(--v2-blue-dark); }
.v2-chip[aria-current="true"] { background: var(--v2-blue); border-color: var(--v2-blue); color: #FFFFFF; }

/* ── Texte long ──────────────────────────────────────────────────────────── */
.v2-prose { font-size: 16px; line-height: 1.75; color: var(--v2-ink-soft); max-width: 68ch; }
.v2-prose > :first-child { margin-top: 0; }
.v2-prose h2 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 24px; color: var(--v2-ink); margin: 38px 0 14px; letter-spacing: -.015em; }
.v2-prose h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 19px; color: var(--v2-ink); margin: 30px 0 10px; }
.v2-prose p { margin: 0 0 18px; }
.v2-prose ul, .v2-prose ol { margin: 0 0 18px; padding-left: 22px; }
.v2-prose li { margin-bottom: 8px; }
.v2-prose a { color: var(--v2-blue-dark); text-decoration: underline; text-underline-offset: 2px; }
.v2-prose a:hover { color: var(--v2-blue); }
.v2-prose img { max-width: 100%; height: auto; border-radius: 14px; margin: 8px 0 22px; }
.v2-prose blockquote {
  margin: 0 0 22px; padding: 16px 22px; border-left: 3px solid var(--v2-blue);
  background: var(--v2-paper-alt); border-radius: 0 12px 12px 0; color: var(--v2-ink);
}

/* ── Formulaires ─────────────────────────────────────────────────────────── */
.v2-form { display: grid; gap: 18px; }
.v2-form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.v2-field { display: grid; gap: 7px; }
.v2-label { font-size: 13.5px; font-weight: 600; color: var(--v2-ink); }
.v2-input, .v2-select, .v2-textarea {
  width: 100%; font-family: 'Inter', sans-serif; font-size: 15px; color: var(--v2-ink);
  padding: 13px 15px; border: 1px solid var(--v2-line); border-radius: 12px;
  background: #FFFFFF; transition: border-color .18s, box-shadow .18s;
}
.v2-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.v2-input:focus, .v2-select:focus, .v2-textarea:focus {
  outline: none; border-color: var(--v2-blue); box-shadow: 0 0 0 3px rgba(24,120,248,.16);
}
.v2-help { font-size: 12.5px; color: var(--v2-ink-mute); margin: 0; }
.v2-req { color: var(--v2-flame); }
/* Piege a robot : invisible, hors du parcours clavier. */
.v2-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Focus clavier visible partout : sans lui, la navigation au clavier est
   impossible a suivre. */
.v2-btn:focus-visible, .v2-chip:focus-visible, .v2-nav a:focus-visible,
.v2-card--link:focus-visible, .v2-hero__dot:focus-visible, .v2-avis__btn:focus-visible {
  outline: 3px solid var(--v2-blue); outline-offset: 2px;
}

/* ── Messages ────────────────────────────────────────────────────────────── */
.v2-note { border-radius: 14px; padding: 15px 18px; font-size: 14.5px; line-height: 1.6; margin: 0 0 22px; }
.v2-note--info { background: var(--v2-blue-pale); color: #0C3A78; border: 1px solid #BBD9FD; }
.v2-note--ok { background: #E6F6F0; color: #0A5C42; border: 1px solid #B6E4D3; }
.v2-note--warn { background: var(--v2-flame-pale); color: var(--v2-flame-dark); border: 1px solid #FBC9B6; }

/* ── Etat vide ───────────────────────────────────────────────────────────── */
.v2-empty {
  border: 1px dashed var(--v2-line); border-radius: 18px; padding: 46px 26px;
  text-align: center; color: var(--v2-ink-soft); font-size: 15px; background: var(--v2-paper-alt);
}

/* ── Pagination ──────────────────────────────────────────────────────────── */
.v2-pager { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.v2-pager a, .v2-pager span {
  min-width: 42px; height: 42px; padding: 0 13px; border-radius: 12px;
  border: 1px solid var(--v2-line); background: #FFFFFF; color: var(--v2-ink-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 13px;
  text-decoration: none; transition: all .18s;
}
.v2-pager a:hover { border-color: var(--v2-blue); color: var(--v2-blue-dark); }
.v2-pager [aria-current="page"] { background: var(--v2-blue); border-color: var(--v2-blue); color: #FFFFFF; }

/* ── Liste de faits (fiche service, formation, projet) ───────────────────── */
.v2-facts { display: grid; gap: 0; border: 1px solid var(--v2-line); border-radius: 18px; overflow: hidden; background: #FFFFFF; }
.v2-facts > div { display: flex; justify-content: space-between; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--v2-line); }
.v2-facts > div:last-child { border-bottom: 0; }
.v2-facts dt, .v2-facts .v2-facts__k { font-size: 13px; color: var(--v2-ink-mute); }
.v2-facts dd, .v2-facts .v2-facts__v { margin: 0; font-size: 14px; font-weight: 600; color: var(--v2-ink); text-align: right; }

/* ── Bloc bleu compact (appel a l'action de page) ────────────────────────── */
.v2-panel {
  background: var(--v2-blue); border-radius: 22px; padding: clamp(22px, 3.4vw, 44px);
  color: #FFFFFF; position: relative; overflow: hidden;
}
.v2-panel h2 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(20px, 2.6vw, 30px); letter-spacing: -.02em; color: #FFFFFF; margin: 0 0 12px; }
.v2-panel p { font-size: 15.5px; line-height: 1.6; color: #FFFFFF; margin: 0 0 24px; }

/* ── Page systeme (404, 403, 500) ────────────────────────────────────────── */
.v2-sys { max-width: 640px; margin: 0 auto; text-align: center; padding: clamp(40px, 8vw, 110px) var(--v2-pad); }
/* p.v2-sys__code et non .v2-sys__code seul : la regle « .v2-sys p » qui suit a
   une specificite superieure et ecraserait la taille du code. */
.v2-sys p.v2-sys__code {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(56px, 12vw, 120px);
  line-height: 1; letter-spacing: -.04em; color: var(--v2-blue); margin: 0 0 10px;
}
.v2-sys h1 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(20px, 3vw, 28px); color: var(--v2-ink); margin: 0 0 12px; }
.v2-sys p { font-size: 16px; line-height: 1.65; color: var(--v2-ink-soft); margin: 0 0 28px; }

/* Aucune page ne doit deborder horizontalement. */
html, body { overflow-x: hidden; }
img, video, iframe, table { max-width: 100%; }


/* ── Passerelle avec les classes heritees ────────────────────────────────── */
/* Les formulaires publics passent par err_class() / err_html(), helpers
   partages avec l'administration : ils emettent des classes ns-*. Plutot que
   de toucher a ces helpers — et donc au back-office — on habille leurs classes
   au style v2, uniquement sur les pages publiques.

   Les selecteurs sont volontairement non prefixes : vitrine.css n'est charge
   que par le layout public, ces regles n'atteignent jamais l'administration. */
.ns-field { display: grid; gap: 7px; margin-bottom: 18px; }
.ns-label { font-size: 13.5px; font-weight: 600; color: var(--v2-ink); }
.ns-input, .ns-select, .ns-textarea, input[type="text"], input[type="email"],
input[type="tel"], input[type="url"], input[type="number"], input[type="date"],
input[type="search"], input[type="password"], input[type="file"], select, textarea {
  width: 100%; font-family: 'Inter', sans-serif; font-size: 15px; color: var(--v2-ink);
  padding: 13px 15px; border: 1px solid var(--v2-line); border-radius: 12px;
  background: #FFFFFF; transition: border-color .18s, box-shadow .18s;
}
textarea, .ns-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.ns-input:focus, .ns-select:focus, .ns-textarea:focus,
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--v2-blue); box-shadow: 0 0 0 3px rgba(24,120,248,.16);
}
/* Champ en erreur : la bordure rouge seule ne suffit pas pour qui ne distingue
   pas les couleurs — le message texte de err_html() reste la vraie information. */
.ns-input--error, .is-error { border-color: var(--v2-flame) !important; }
.ns-error, .ns-field__error {
  font-size: 13px; color: var(--v2-flame-dark); margin: 0;
}
.ns-help { font-size: 12.5px; color: var(--v2-ink-mute); margin: 0; }
.ns-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
input[type="checkbox"], input[type="radio"] { width: auto; padding: 0; }

/* Boutons herites */
.ns-btn {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  border-radius: 12px; cursor: pointer; white-space: nowrap; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 26px; border: 1px solid transparent; transition: all .2s;
}
.ns-btn--primary { color: #FFFFFF; background: var(--v2-blue); box-shadow: 0 10px 26px rgba(24,120,248,.3); }
.ns-btn--primary:hover { background: var(--v2-blue-dark); transform: translateY(-2px); color: #FFFFFF; }
.ns-btn--ghost { color: var(--v2-ink); background: #FFFFFF; border-color: var(--v2-line); }
.ns-btn--ghost:hover { border-color: var(--v2-blue); color: var(--v2-blue-dark); }
.ns-btn--block { width: 100%; }
.ns-btn:focus-visible { outline: 3px solid var(--v2-blue); outline-offset: 2px; }

/* Conteneurs et cartes herites */
.ns-container { max-width: var(--v2-max); margin: 0 auto; padding-left: var(--v2-pad); padding-right: var(--v2-pad); }
.ns-section { padding: var(--v2-pad) 0; }
.ns-section--alt { background: var(--v2-paper-alt); border-top: 1px solid var(--v2-line); border-bottom: 1px solid var(--v2-line); }
.ns-card { background: #FFFFFF; border: 1px solid var(--v2-line); border-radius: 18px; }
.ns-card__body { padding: 26px; }
.ns-grid { display: grid; gap: 20px; }
.ns-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.ns-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.ns-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.ns-cluster { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.ns-meta { font-size: 13px; color: var(--v2-ink-mute); }
.ns-mb-0 { margin-bottom: 0; }
.ns-badge {
  display: inline-block; font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--v2-blue-dark); background: var(--v2-blue-pale);
  padding: 4px 9px; border-radius: 6px; white-space: nowrap;
}
.ns-badge--accent { color: var(--v2-flame-dark); background: var(--v2-flame-pale); }
.ns-empty {
  border: 1px dashed var(--v2-line); border-radius: 18px; padding: 46px 26px;
  text-align: center; color: var(--v2-ink-soft); font-size: 15px; background: var(--v2-paper-alt);
}
.ns-alert { border-radius: 14px; padding: 15px 18px; font-size: 14.5px; line-height: 1.6; margin: 0 0 22px; }
.ns-alert--ok { background: #E6F6F0; color: #0A5C42; border: 1px solid #B6E4D3; }
.ns-alert--info { background: var(--v2-blue-pale); color: #0C3A78; border: 1px solid #BBD9FD; }
.ns-alert--error, .ns-alert--erreur { background: var(--v2-flame-pale); color: var(--v2-flame-dark); border: 1px solid #FBC9B6; }
.ns-prose { font-size: 16px; line-height: 1.75; color: var(--v2-ink-soft); }
.ns-prose h2 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 24px; color: var(--v2-ink); margin: 34px 0 14px; }
.ns-prose h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 19px; color: var(--v2-ink); margin: 28px 0 10px; }
.ns-prose a { color: var(--v2-blue-dark); text-decoration: underline; text-underline-offset: 2px; }
.ns-lead { font-size: 16px; line-height: 1.6; color: var(--v2-ink-soft); }
.ns-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--v2-flame); font-weight: 700;
}
/* Un en-tete herite prend l'habillage v2 : titre bleu, meme rythme. */
.ns-pagehead { padding: clamp(26px, 4vw, 56px) 0 clamp(20px, 3vw, 40px); }
.ns-pagehead h1 {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(26px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -.025em;
  color: var(--v2-blue); margin: 10px 0 0;
}
.ns-crumbs { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: var(--v2-ink-mute); display: flex; gap: 8px; flex-wrap: wrap; }
.ns-crumbs a { color: var(--v2-ink-mute); text-decoration: none; }
.ns-reveal { opacity: 1; transform: none; }
.ns-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* Le lien d'evitement redevient visible au focus clavier. */
.ns-visually-hidden:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  padding: 12px 18px; background: var(--v2-blue); color: #FFFFFF; border-radius: 10px; z-index: 100;
}
.ns-whatsapp-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(17,24,39,.24); transition: transform .2s;
}
.ns-whatsapp-fab:hover { transform: translateY(-3px); color: #FFFFFF; }


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — paliers de la maquette
   La maquette resserre le rythme en deux temps : tablette (<= 900 px) puis
   telephone (<= 560 px). Ce bloc est en fin de fichier pour primer sur les
   regles precedentes a specificite egale.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Tablette ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --v2-pad: clamp(16px, 4vw, 34px); }

  /* Les grilles a trois colonnes passent a deux : trois cartes de 280 px ne
     tiennent pas sur une tablette en portrait. */
  .v2-grid--svc,
  .v2-grid--3,
  .v2-grid--work,
  .v2-grid--post { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .v2-grid--met  { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .v2-hero__grid { gap: 30px; }
  .v2-stats__grid { gap: 26px; }
  .v2-head-row { margin-bottom: 30px; }

  /* La colonne collante n'a plus de place a droite : elle repasse dans le flux
     et cesse de coller — un bloc colle dans un flux vertical suit l'ecran sans
     raison. */
  .v2-cols { grid-template-columns: 1fr; gap: 30px; }
  .v2-cols aside > .v2-card { position: static !important; }

  .v2-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
}

/* ── Telephone ───────────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  /* 14 px de marge laterale : la maquette ne descend pas plus bas, sinon le
     texte touche le bord de l'ecran. */
  :root { --v2-pad: 14px; }

  /* Une seule colonne partout : deux cartes cote a cote sur 360 px de large
     rendent les titres illisibles. */
  .v2-grid,
  .v2-grid--svc, .v2-grid--2, .v2-grid--3, .v2-grid--4,
  .v2-grid--met, .v2-grid--work, .v2-grid--post,
  .ns-grid, .ns-grid--2, .ns-grid--3, .ns-grid--4,
  .v2-form__row, .v2-stats__grid { grid-template-columns: 1fr !important; }

  /* Titres : la maquette reduit l'echelle sans casser la hierarchie. */
  .v2-hero__title { font-size: clamp(25px, 8vw, 32px); }
  .v2-hero__sub { font-size: 14.5px; }
  .v2-h2, .v2-pagehead h1, .ns-pagehead h1 { font-size: clamp(21px, 6.4vw, 26px); }
  .v2-cta__t { font-size: clamp(20px, 6vw, 25px); }
  .v2-panel h2 { font-size: clamp(18px, 5.4vw, 22px); }
  .v2-sys p.v2-sys__code { font-size: clamp(52px, 18vw, 76px); }
  .v2-avis__q { font-size: 15px; }

  /* Cartes : moins de rembourrage, rayons legerement reduits. */
  .v2-card, .v2-svc, .v2-met, .ns-card__body { padding: 18px; }
  .v2-card, .v2-svc, .v2-met, .v2-work, .ns-card { border-radius: 14px; }
  .v2-cta, .v2-panel, .v2-avis__card { border-radius: 16px; padding: 20px; }
  .v2-work__top { padding: 18px 14px 0; }
  .v2-work__body { padding: 16px; }

  /* Boutons pleine largeur : viser un bouton de 120 px au pouce est penible.
     44 px de hauteur minimum, seuil de confort tactile. */
  .v2-btn, .ns-btn { width: 100%; min-height: 46px; padding: 14px 20px; }
  .v2-btn--sm { width: auto; min-height: 40px; padding: 10px 14px; }
  .v2-hero__actions, .v2-cta__row { flex-direction: column; align-items: stretch; }
  .v2-hero__actions .v2-btn, .v2-cta__row .v2-btn { width: 100%; }

  /* En-tete : le logo et la bascule de langue seuls, le reste dans le menu. */
  .v2-header__bar { padding: 10px var(--v2-pad); gap: 10px; }
  .v2-header__logo img { height: 34px; }
  .v2-header__right { gap: 7px; }
  .v2-lang a { padding: 5px 9px; font-size: 10.5px; }
  /* Le bouton devis quitte la barre : il est deja dans le menu et dans chaque
     page. Le garder ecrasait le logo. */
  .v2-header__right .v2-btn--sm { display: none; }

  /* Hero : cadre plus court, badge dans le flux. */
  .v2-hero { padding: var(--v2-pad) var(--v2-pad) 26px; }
  .v2-hero__grid { gap: 26px; }
  .v2-hero__frame { height: 58vw; min-height: 200px; border-radius: 16px; }
  .v2-hero__badge { position: static; margin-top: 14px; max-width: none; padding: 13px 15px; border-radius: 13px; }
  .v2-hero__arc { width: 200px; height: 200px; right: -60px; top: -50px; }
  .v2-hero__proof { gap: 16px; }
  .v2-hero__proof-v { font-size: 19px; }

  /* Partenaires : vignettes plus petites, defilement plus lent — la piste est
     proportionnellement plus longue sur un ecran etroit. */
  .v2-marquee__item { width: 112px; height: 58px; margin-right: 10px; padding: 9px; }
  .v2-marquee__track { animation-duration: 44s; }

  /* Chiffres : la bande bleue empile ses quatre valeurs. */
  .v2-stats__v { font-size: clamp(26px, 9vw, 34px); }
  .v2-stats__grid { gap: 22px; }

  /* Pied de page : UNE colonne. Deux colonnes de 210 px minimum debordaient
     de l'ecran — c'est la cause de la largeur excessive signalee. */
  .v2-footer { padding: var(--v2-pad) var(--v2-pad) 20px; }
  .v2-footer__cols { grid-template-columns: 1fr !important; gap: 26px; padding-bottom: 24px; }
  .v2-footer__logo { height: 56px; }
  .v2-footer__about { max-width: none; }
  .v2-footer__coord { font-size: 11px; }
  .v2-footer__bottom { flex-direction: column; gap: 12px; font-size: 10.5px; }

  /* Filtres : defilement lateral plutot qu'un empilement de six lignes. */
  .v2-filters {
    flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .v2-filters::-webkit-scrollbar { display: none; }
  .v2-chip { flex: 0 0 auto; }

  /* Champs : 16 px minimum. En dessous, iOS zoome sur le champ au focus et
     l'utilisateur perd la page de vue. */
  .v2-input, .v2-select, .v2-textarea,
  .ns-input, .ns-select, .ns-textarea,
  input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
  input[type="number"], input[type="date"], input[type="search"],
  input[type="password"], select, textarea { font-size: 16px; padding: 12px 13px; }
  .v2-textarea, .ns-textarea { min-height: 110px; }

  /* Texte long : interlignage resserre, images moins arrondies. */
  .v2-prose, .ns-prose { font-size: 15px; line-height: 1.7; }
  .v2-prose h2, .ns-prose h2 { font-size: 20px; margin-top: 28px; }
  .v2-prose h3, .ns-prose h3 { font-size: 17px; margin-top: 22px; }
  .v2-prose img { border-radius: 10px; }

  /* Tableaux : defilement horizontal contenu, jamais la page entiere. */
  .ns-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .v2-section { padding: 26px var(--v2-pad); }
  .v2-section--tight { padding: 0 var(--v2-pad) 26px; }
  .v2-pagehead { padding: 22px var(--v2-pad) 18px; }
  .v2-empty { padding: 30px 18px; font-size: 14.5px; }
  .v2-facts > div { padding: 12px 14px; }
  .v2-facts dd, .v2-facts .v2-facts__v { font-size: 13.5px; }

  /* Le bouton WhatsApp flottant ne doit pas couvrir un bouton de formulaire. */
  .ns-whatsapp-fab { right: 12px; bottom: 12px; width: 48px; height: 48px; }
}

/* ── Tres petits ecrans ──────────────────────────────────────────────────── */
@media (max-width: 380px) {
  :root { --v2-pad: 12px; }
  .v2-hero__title { font-size: 23px; }
  .v2-header__logo img { height: 30px; }
  .v2-footer__social { width: 33px; height: 33px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PAGE AVIS — maquette v2
   Bloc bleu de tete, quatre cartes de selection, grandes cartes d'avis,
   formulaire de depot avec etoiles interactives.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Bloc bleu de tete ───────────────────────────────────────────────────── */
.v2-avis-hero {
  position: relative; overflow: hidden;
  background: var(--v2-blue);
  padding: clamp(34px, 6vw, 78px) var(--v2-pad);
}
.v2-avis-hero__arc { position: absolute; right: -60px; bottom: -90px; width: 300px; height: 300px; opacity: .18; pointer-events: none; }
.v2-avis-hero__in { position: relative; max-width: var(--v2-max); margin: 0 auto; }
.v2-avis-hero__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: #FFFFFF; font-weight: 700; margin: 0 0 16px; opacity: .92;
}
.v2-avis-hero__title {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(26px, 4vw, 46px); line-height: 1.1; letter-spacing: -.025em;
  color: #FFFFFF; margin: 0 0 18px; max-width: 22ch; text-wrap: pretty;
}
.v2-avis-hero__sub {
  font-size: clamp(14.5px, 1.5vw, 17px); line-height: 1.65;
  color: #FFFFFF; margin: 0; max-width: 62ch; opacity: .95; text-wrap: pretty;
}

/* ── Quatre cartes de selection ──────────────────────────────────────────── */
.v2-avis-cats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px;
}
.v2-avis-cat {
  display: block; text-decoration: none;
  background: #FFFFFF; border: 1px solid var(--v2-line); border-radius: 16px;
  padding: 20px; transition: all .2s;
}
.v2-avis-cat:hover { border-color: var(--v2-blue); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(17,24,39,.08); }
/* La carte choisie s'inverse : c'est le repere le plus lisible d'un etat actif. */
.v2-avis-cat.is-active { background: var(--v2-blue); border-color: var(--v2-blue); }
.v2-avis-cat__n {
  display: block; font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 26px; line-height: 1; letter-spacing: -.02em; color: var(--v2-blue); margin-bottom: 10px;
}
.v2-avis-cat.is-active .v2-avis-cat__n { color: #FFFFFF; }
.v2-avis-cat__t {
  display: block; font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 16px; color: var(--v2-ink); margin-bottom: 7px;
}
.v2-avis-cat.is-active .v2-avis-cat__t { color: #FFFFFF; }
.v2-avis-cat__d { display: block; font-size: 13px; line-height: 1.55; color: var(--v2-ink-soft); }
.v2-avis-cat.is-active .v2-avis-cat__d { color: rgba(255,255,255,.9); }
.v2-avis-cat:focus-visible { outline: 3px solid var(--v2-blue); outline-offset: 2px; }

.v2-avis-reset { margin: 22px 0 0; font-size: 14px; }
.v2-avis-reset a { color: var(--v2-blue-dark); font-weight: 600; }

/* ── Avis et formulaire cote a cote ──────────────────────────────────────── */
.v2-avis-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; align-items: start; }
.v2-avis-list { display: grid; gap: 18px; }

.v2-avis-card {
  background: #FFFFFF; border: 1px solid var(--v2-line); border-radius: 18px;
  padding: clamp(20px, 2.6vw, 30px);
}
.v2-avis-card__stars { margin: 0 0 16px; font-size: 17px; letter-spacing: .16em; color: var(--v2-star); }
/* Les etoiles non obtenues restent visibles en gris : une note de 3/5 doit se
   lire comme « 3 sur 5 », pas comme trois etoiles isolees. */
.v2-avis-card__stars-off { color: var(--v2-line); }
.v2-avis-card__q {
  margin: 0 0 20px; font-family: 'Poppins', sans-serif; font-weight: 500;
  font-size: clamp(15px, 1.7vw, 18px); line-height: 1.6; color: var(--v2-ink); text-wrap: pretty;
}
.v2-avis-card__who {
  display: flex; align-items: center; gap: 13px; flex-wrap: wrap;
  padding-top: 18px; border-top: 1px solid var(--v2-line);
}
.v2-avis-card__ini {
  width: 44px; height: 44px; border-radius: 50%; background: var(--v2-blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: #FFFFFF;
}
.v2-avis-card__n { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px; color: var(--v2-ink); }
.v2-avis-card__r { font-size: 13px; color: var(--v2-ink-soft); margin-top: 2px; }
.v2-avis-card__d {
  margin-left: auto; font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; color: var(--v2-ink-mute);
}

/* ── Formulaire de depot ─────────────────────────────────────────────────── */
.v2-avis-form {
  background: var(--v2-paper-alt); border: 1px solid var(--v2-line);
  border-radius: 18px; padding: 24px; position: sticky; top: 96px;
}
.v2-avis-form__t {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 19px;
  color: var(--v2-ink); margin: 0 0 6px;
}
.v2-avis-form__space {
  margin: 0 0 20px; font-size: 13.5px; color: var(--v2-ink-soft);
  padding: 10px 13px; background: var(--v2-blue-pale); border-radius: 10px;
}
.v2-avis-form__space strong { color: var(--v2-blue-dark); }
.v2-avis-form .ns-input, .v2-avis-form .ns-select, .v2-avis-form .ns-textarea { background: #FFFFFF; }

/* ── Etoiles interactives ────────────────────────────────────────────────── */
/* Des <label> autour de vrais boutons radio : sans JavaScript, la note reste
   selectionnable et le formulaire fonctionne. */
.v2-stars { display: flex; gap: 4px; }
.v2-star { cursor: pointer; line-height: 1; padding: 2px; }
.v2-star input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.v2-star > span[aria-hidden] {
  display: block; font-size: 30px; color: var(--v2-line);
  transition: color .12s, transform .12s;
}
/* 44 px de zone tactile au doigt : viser une etoile de 30 px est penible. */
.v2-star { min-width: 40px; min-height: 40px; display: flex; align-items: center; justify-content: center; }
.v2-star.is-on > span[aria-hidden] { color: var(--v2-star); }
.v2-star:hover > span[aria-hidden] { transform: scale(1.12); }
.v2-star input:focus-visible + span { outline: 3px solid var(--v2-blue); outline-offset: 3px; border-radius: 4px; }

/* ── Tablette et telephone ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Le formulaire passe SOUS la liste : une colonne de 360 px a droite ecrase
     les cartes d'avis sur une tablette en portrait. */
  .v2-avis-layout { grid-template-columns: 1fr; gap: 34px; }
  .v2-avis-form { position: static; }
}
@media (max-width: 900px) {
  .v2-avis-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .v2-avis-hero { padding: 28px var(--v2-pad); }
  .v2-avis-hero__title { font-size: clamp(22px, 7vw, 28px); max-width: none; }
  .v2-avis-hero__sub { font-size: 14px; }
  .v2-avis-hero__arc { width: 190px; height: 190px; right: -55px; bottom: -70px; }

  /* Les quatre categories s'empilent : deux cartes de 230 px cote a cote
     debordent d'un ecran de 360 px. */
  .v2-avis-cats { grid-template-columns: 1fr !important; gap: 12px; }
  .v2-avis-cat { padding: 16px; border-radius: 13px; }
  .v2-avis-cat__n { font-size: 22px; }

  .v2-avis-card { padding: 18px; border-radius: 14px; }
  .v2-avis-card__q { font-size: 15px; }
  .v2-avis-card__ini { width: 38px; height: 38px; font-size: 14px; }
  /* La date passe a la ligne : collee a droite, elle chevauchait la fonction. */
  .v2-avis-card__d { margin-left: 0; width: 100%; }

  .v2-avis-form { padding: 18px; border-radius: 14px; }
  .v2-star > span[aria-hidden] { font-size: 32px; }
  .v2-star { min-width: 46px; min-height: 46px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   ACADEMIE NS DIGITAL — page /formations, maquette v2
   Bloc bleu, carte de progression, catalogue, parcours, badges, classement.
   Valeurs relevees sur la maquette : #1878F8 pour le bloc, #3E90FA pour la
   carte de progression, bordure #8FBEFC, rayons 24 px et 20 px.
   ═══════════════════════════════════════════════════════════════════════════ */

.v2-aca-hero {
  position: relative; overflow: hidden;
  background: var(--v2-blue);
  padding: clamp(30px, 5vw, 66px) var(--v2-pad);
}
.v2-aca-hero__arc { position: absolute; left: -80px; bottom: -90px; width: 300px; height: 300px; opacity: .16; pointer-events: none; }
/* Variante sans carte de progression (page /formations/entreprise) : une
   seule colonne, pour que le texte occupe toute la largeur du conteneur. */
.v2-aca-hero--solo .v2-aca-hero__in { grid-template-columns: 1fr; }
.v2-aca-hero--solo .v2-aca-hero__sub { max-width: 62ch; }
.v2-aca-hero__in {
  position: relative; max-width: var(--v2-max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(26px, 3.4vw, 40px); align-items: center;
}
.v2-aca-hero__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: #FFFFFF; font-weight: 700; margin: 0 0 14px;
}
.v2-aca-hero__title {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(23px, 3.8vw, 42px); line-height: 1.12; letter-spacing: -.025em;
  color: #FFFFFF; margin: 0 0 16px; text-wrap: pretty;
}
.v2-aca-hero__sub {
  font-size: 16px; line-height: 1.7; color: #FFFFFF;
  margin: 0 0 26px; max-width: 52ch; text-wrap: pretty;
}
.v2-aca-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Boutons ─────────────────────────────────────────────────────────────── */
.v2-aca-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, sans-serif; font-size: 15px; font-weight: 600;
  border-radius: 12px; padding: 15px 24px; text-decoration: none;
  white-space: nowrap; min-height: 46px; transition: background .18s, transform .18s;
}
.v2-aca-btn--white { background: #FFFFFF; color: var(--v2-ink); }
.v2-aca-btn--white:hover { background: #F0F1F4; color: var(--v2-ink); transform: translateY(-2px); }
.v2-aca-btn--ghost { background: transparent; color: #FFFFFF; border: 1px solid rgba(255,255,255,.5); }
.v2-aca-btn--ghost:hover { background: rgba(255,255,255,.14); color: #FFFFFF; }
.v2-aca-btn--blue { background: var(--v2-blue); color: #FFFFFF; padding: 13px 22px; border-radius: 11px; font-size: 14.5px; }
.v2-aca-btn--blue:hover { background: var(--v2-blue-dark); color: #FFFFFF; }
.v2-aca-btn--block { width: 100%; }

/* ── Carte de progression ────────────────────────────────────────────────── */
.v2-aca-card {
  background: #3E90FA; border: 1px solid #8FBEFC; border-radius: 24px;
  padding: clamp(20px, 2.4vw, 28px); min-width: 0;
}
.v2-aca-card__head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.v2-aca-card__lvl {
  width: 62px; height: 62px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #16069B, #187BFF);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 19px; color: #FFFFFF;
}
.v2-aca-card__id { min-width: 0; }
.v2-aca-card__n { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; color: #FFFFFF; }
.v2-aca-card__xp {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px; color: #FFFFFF; margin-top: 3px;
}
.v2-aca-card__streak { margin-left: auto; text-align: right; flex-shrink: 0; }
.v2-aca-card__streak-v { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; color: #FFFFFF; }
.v2-aca-card__streak-l {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #FFFFFF;
}
.v2-aca-card__bar { height: 8px; background: #FFFFFF; border-radius: 99px; overflow: hidden; margin-bottom: 22px; }
.v2-aca-card__bar > span { display: block; height: 100%; background: linear-gradient(90deg, #16069B, #187BFF); border-radius: 99px; }

/* Invitation du visiteur non connecte : la carte annonce ce que le compte
   apporte, elle n'affiche aucun resultat. */
.v2-aca-card__inv-t { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; color: #FFFFFF; margin: 0 0 14px; }
.v2-aca-card__inv { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.v2-aca-card__inv li {
  position: relative; padding-left: 22px; font-size: 14px; line-height: 1.5; color: #FFFFFF;
}
.v2-aca-card__inv li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%; background: #FFFFFF;
}

/* ── Serie de jours ──────────────────────────────────────────────────────── */
.v2-aca-days { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.v2-aca-day {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; font-weight: 700;
  background: #1156B3; color: rgba(255,255,255,.72); border: 1.5px solid #1156B3;
}
.v2-aca-day.is-on { background: #FFFFFF; color: var(--v2-blue-dark); border-color: #FFFFFF; }
.v2-aca-day.is-next { background: transparent; color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.45); }

/* ── Objectifs ───────────────────────────────────────────────────────────── */
.v2-aca-goal { margin-bottom: 14px; }
.v2-aca-goal:last-child { margin-bottom: 0; }
.v2-aca-goal__top {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline; margin-bottom: 6px;
}
.v2-aca-goal__top > span:first-child { font-size: 12.5px; color: #FFFFFF; min-width: 0; }
.v2-aca-goal__top > span:last-child {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px; color: #FFFFFF;
  white-space: nowrap; flex-shrink: 0;
}
.v2-aca-goal__bar { height: 5px; background: #1156B3; border-radius: 99px; overflow: hidden; }
.v2-aca-goal__bar > span { display: block; height: 100%; background: #FFFFFF; border-radius: 99px; }

/* ── Catalogue ───────────────────────────────────────────────────────────── */
.v2-aca-head { max-width: 620px; margin-bottom: 36px; }
.v2-aca-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; align-items: stretch; }

.v2-aca-course {
  display: flex; flex-direction: column; min-width: 0;
  background: #FFFFFF; border: 1px solid var(--v2-line); border-radius: 20px; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.v2-aca-course:hover { box-shadow: 0 24px 48px rgba(17,24,39,.12); transform: translateY(-3px); }
.v2-aca-course__media {
  position: relative; display: block; height: 120px; overflow: hidden;
  border-bottom: 1px solid var(--v2-line); background: #EDEFF3;
}
.v2-aca-course__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Sans image de couverture : rayures sobres plutot qu'un aplat vide. */
.v2-aca-course__ph {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, #E7E8EC 0 10px, #F0F1F4 10px 20px);
}
.v2-aca-course__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,32,72,.5) 0%, rgba(8,32,72,.05) 60%);
}
.v2-aca-chip {
  position: absolute; top: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10px;
  padding: 5px 9px; border-radius: 999px; white-space: nowrap;
}
.v2-aca-chip--lvl { left: 12px; letter-spacing: .08em; text-transform: uppercase; background: #FFFFFF; border: 1px solid var(--v2-line); color: var(--v2-ink-soft); }
.v2-aca-chip--xp { right: 12px; background: #FEF6DC; color: #8A6A00; }

.v2-aca-course__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.v2-aca-course__t {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; line-height: 1.3;
  color: var(--v2-ink); margin: 0 0 8px; text-wrap: pretty;
}
.v2-aca-course__t a { color: inherit; text-decoration: none; }
.v2-aca-course__t a:hover { color: var(--v2-blue-dark); }
.v2-aca-course__d { font-size: 13.5px; line-height: 1.6; color: var(--v2-ink-soft); margin: 0 0 16px; }
.v2-aca-course__meta {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: var(--v2-ink-mute);
}
.v2-aca-course__bar { height: 6px; background: var(--v2-line-soft); border-radius: 99px; overflow: hidden; margin-bottom: 12px; }
.v2-aca-course__bar > span { display: block; height: 100%; background: var(--v2-blue); border-radius: 99px; }
.v2-aca-course__foot {
  display: flex; justify-content: space-between; gap: 12px; align-items: center; flex-wrap: wrap;
  margin-top: auto; padding-top: 4px;
}
.v2-aca-course__price { font-size: 13.5px; font-weight: 700; color: var(--v2-ink); }
.v2-aca-course__go {
  display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600;
  color: var(--v2-blue-dark); text-decoration: none;
}
.v2-aca-course__go:hover { text-decoration: underline; }

/* Etats : ouvert, accorde, en attente, verrouille. */
.v2-aca-state {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px;
  letter-spacing: .04em; padding: 5px 10px; border-radius: 999px; white-space: nowrap;
}
.v2-aca-state--live { background: var(--v2-blue-pale); color: var(--v2-blue-dark); }
.v2-aca-state--ok   { background: #E7F6EC; color: #1B7A3D; }
.v2-aca-state--wait { background: #FEF6DC; color: #8A6A00; }
.v2-aca-state--lock { background: var(--v2-line-soft); color: var(--v2-ink-mute); }

/* ── Parcours, badges, classement ────────────────────────────────────────── */
.v2-aca-cols { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 380px); gap: 22px; align-items: start; }

.v2-aca-path { border: 1px solid var(--v2-line); border-radius: 22px; overflow: hidden; background: #FFFFFF; min-width: 0; }
.v2-aca-path__head {
  padding: 24px 26px; border-bottom: 1px solid var(--v2-line);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center;
}
.v2-aca-path__t { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; color: var(--v2-ink); }
.v2-aca-path__m { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px; color: var(--v2-ink-mute); margin-top: 3px; }
.v2-aca-path__pct {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px;
  background: var(--v2-blue-pale); color: var(--v2-blue-dark);
  padding: 7px 13px; border-radius: 999px; white-space: nowrap;
}
.v2-aca-path__bar { height: 6px; background: var(--v2-line-soft); }
.v2-aca-path__bar > span { display: block; height: 100%; background: var(--v2-blue); }
.v2-aca-path__empty { padding: 26px; margin: 0; font-size: 14px; color: var(--v2-ink-mute); }

.v2-aca-lesson {
  padding: 16px 26px; border-bottom: 1px solid var(--v2-line-soft);
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap; transition: background .16s;
}
.v2-aca-lesson:hover { background: #F7FAFF; }
.v2-aca-lesson__dot {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 11px;
  background: #FFFFFF; border: 1.5px solid var(--v2-line); color: var(--v2-ink-mute);
}
.v2-aca-lesson.is-done .v2-aca-lesson__dot { background: var(--v2-blue); border-color: var(--v2-blue); color: #FFFFFF; }
.v2-aca-lesson.is-locked .v2-aca-lesson__dot { background: var(--v2-line-soft); }
.v2-aca-lesson__n { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: var(--v2-ink-mute); flex-shrink: 0; }
.v2-aca-lesson__t { font-size: 14.5px; color: var(--v2-ink); flex: 1; min-width: 160px; }
.v2-aca-lesson__t a { color: inherit; text-decoration: none; }
.v2-aca-lesson__t a:hover { color: var(--v2-blue-dark); text-decoration: underline; }
.v2-aca-lesson.is-locked .v2-aca-lesson__t { color: var(--v2-ink-mute); }
.v2-aca-lesson__type {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px;
  background: var(--v2-line-soft); color: var(--v2-ink-soft);
  padding: 5px 10px; border-radius: 999px; white-space: nowrap;
}
.v2-aca-lesson__d { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; color: var(--v2-ink-mute); white-space: nowrap; }
.v2-aca-path__foot { padding: 22px 26px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.v2-aca-path__note { font-size: 13px; color: var(--v2-ink-mute); flex: 1; min-width: 220px; }

.v2-aca-side { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.v2-aca-panel { border: 1px solid var(--v2-line); border-radius: 20px; background: #FFFFFF; overflow: hidden; }
.v2-aca-panel__h {
  padding: 20px 22px 0;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--v2-ink-mute);
}
.v2-aca-panel__h--row {
  padding: 18px 22px; border-bottom: 1px solid var(--v2-line);
  display: flex; justify-content: space-between; gap: 10px; align-items: center;
}
.v2-aca-panel__you { font-size: 11px; color: var(--v2-blue-dark); text-transform: none; letter-spacing: 0; }
.v2-aca-panel__empty { margin: 0; padding: 20px 22px 22px; font-size: 13.5px; line-height: 1.6; color: var(--v2-ink-mute); }

.v2-aca-badges {
  padding: 16px 22px 22px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px;
}
.v2-aca-badge {
  border: 1px solid var(--v2-line); background: var(--v2-paper-alt);
  border-radius: 14px; padding: 14px; text-align: center;
}
.v2-aca-badge.is-on { border-color: #F5E3A8; background: #FEF6DC; }
.v2-aca-badge__i {
  display: flex; width: 38px; height: 38px; margin: 0 auto 10px; border-radius: 12px;
  align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 13px; font-weight: 700;
  background: var(--v2-line-soft); color: var(--v2-ink-mute);
}
.v2-aca-badge.is-on .v2-aca-badge__i { background: #F8D868; color: #6B4E00; }
.v2-aca-badge__n {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 12.5px;
  line-height: 1.3; color: var(--v2-ink-mute); margin-bottom: 4px;
}
.v2-aca-badge.is-on .v2-aca-badge__n { color: var(--v2-ink); }
.v2-aca-badge__s {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 9.5px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--v2-ink-mute);
}
.v2-aca-badge.is-on .v2-aca-badge__s { color: #8A6A00; }

.v2-aca-rank {
  display: flex; gap: 12px; align-items: center;
  padding: 13px 22px; border-bottom: 1px solid var(--v2-line-soft);
}
.v2-aca-rank:last-child { border-bottom: none; }
.v2-aca-rank.is-me { background: var(--v2-blue-pale); }
.v2-aca-rank__n {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; font-weight: 700;
  background: var(--v2-line-soft); color: var(--v2-ink-soft);
}
.v2-aca-rank.is-me .v2-aca-rank__n { background: var(--v2-blue); color: #FFFFFF; }
.v2-aca-rank__id { min-width: 0; flex: 1; }
.v2-aca-rank__name { font-size: 13.5px; font-weight: 600; color: var(--v2-ink); }
.v2-aca-rank__lvl { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px; color: var(--v2-ink-mute); }
.v2-aca-rank__xp {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px;
  color: var(--v2-ink); font-weight: 500; white-space: nowrap;
}

/* ── Demande d'acces payant ──────────────────────────────────────────────── */
.v2-aca-acces { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px); gap: 26px; align-items: start; }
.v2-aca-acces__form { background: var(--v2-paper-alt); border: 1px solid var(--v2-line); border-radius: 20px; padding: clamp(20px, 2.6vw, 30px); }
.v2-aca-acces__aside { border: 1px solid var(--v2-line); border-radius: 20px; padding: 24px; background: #FFFFFF; }
.v2-aca-acces__price { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 26px; color: var(--v2-blue); margin: 0 0 6px; }
.v2-aca-acces__steps { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; counter-reset: pas; }
.v2-aca-acces__steps li {
  counter-increment: pas; position: relative; padding-left: 34px;
  font-size: 13.5px; line-height: 1.55; color: var(--v2-ink-soft);
}
.v2-aca-acces__steps li::before {
  content: counter(pas); position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 8px; background: var(--v2-blue-pale); color: var(--v2-blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; font-weight: 700;
}
.v2-aca-ref {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 15px; font-weight: 700;
  background: var(--v2-blue-pale); color: var(--v2-blue-dark);
  padding: 10px 14px; border-radius: 10px; display: inline-block;
}
.v2-aca-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #FFFFFF; text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif; font-size: 15px; font-weight: 600;
  border-radius: 12px; padding: 15px 24px; min-height: 46px;
}
.v2-aca-wa:hover { background: #1EB255; color: #FFFFFF; }

/* ── Page de remerciement d'un avis ──────────────────────────────────────── */
.v2-merci { max-width: 660px; margin: 0 auto; text-align: center; }
.v2-merci__mark {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--v2-blue-pale); border: 2px solid var(--v2-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--v2-blue-dark);
}
.v2-merci__t {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(22px, 3vw, 32px); letter-spacing: -.02em; color: var(--v2-blue); margin: 0 0 18px;
}
.v2-merci__p { font-size: clamp(15px, 1.7vw, 18px); line-height: 1.7; color: var(--v2-ink); margin: 0 0 28px; text-wrap: pretty; }
.v2-merci__note { font-size: 13.5px; color: var(--v2-ink-mute); margin: 26px 0 0; }
.v2-merci__row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── Tablette et telephone ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .v2-aca-hero__in { grid-template-columns: 1fr; }
  .v2-aca-cols { grid-template-columns: 1fr; }
  .v2-aca-acces { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .v2-aca-hero { padding: 26px var(--v2-pad); }
  .v2-aca-hero__title { font-size: clamp(22px, 7.4vw, 30px); }
  .v2-aca-hero__sub { font-size: 14.5px; }
  .v2-aca-hero__actions { flex-direction: column; align-items: stretch; }
  .v2-aca-btn { width: 100%; }
  .v2-aca-card { padding: 18px; border-radius: 18px; }
  .v2-aca-card__lvl { width: 52px; height: 52px; font-size: 17px; }
  /* Sept cases de 38 px + les ecarts depassent 360 px : on les resserre. */
  .v2-aca-days { gap: 6px; }
  .v2-aca-day { width: 36px; height: 36px; border-radius: 10px; }
  .v2-aca-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .v2-aca-course { border-radius: 16px; }
  .v2-aca-course__body { padding: 18px; }
  .v2-aca-path { border-radius: 16px; }
  .v2-aca-path__head, .v2-aca-lesson, .v2-aca-path__foot { padding-left: 18px; padding-right: 18px; }
  /* La ligne de lecon s'empile : cinq colonnes sur 360 px sont illisibles. */
  .v2-aca-lesson__t { min-width: 100%; order: 3; }
  .v2-aca-lesson__type, .v2-aca-lesson__d { order: 4; }
  .v2-aca-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-aca-panel { border-radius: 16px; }
  .v2-merci__row { flex-direction: column; }
  .v2-merci__row .v2-aca-btn { width: 100%; }
}

/* ═════════════════════════════════════════════════════════════════
   FORMATIONS ENTREPRISE — /formations/entreprise, parcours en 4 etapes
   ═════════════════════════════════════════════════════════════════ */

.v2-fe-steps { display: flex; gap: 10px; margin-bottom: var(--ns-space-6); flex-wrap: wrap; }
.v2-fe-step {
  display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--ns-ink-muted);
}
.v2-fe-step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; background: var(--ns-line-soft);
  color: var(--ns-ink-muted); font-size: 12px;
}
.v2-fe-step.is-on { color: var(--ns-blue); }
.v2-fe-step.is-on span { background: var(--ns-blue); color: #FFFFFF; }

.v2-fe-panel { border: none; padding: 0; margin: 0 0 var(--ns-space-5); }
.v2-fe-panel.is-hidden { display: none; }

.v2-fe-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: var(--ns-space-5); }

.v2-fe-cats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.v2-fe-cat {
  position: relative; display: flex; flex-direction: column; gap: 4px;
  padding: 16px 16px 14px; border: 1.5px solid var(--ns-line); border-radius: var(--ns-radius-md);
  cursor: pointer; transition: border-color .15s, background .15s;
}
.v2-fe-cat:hover { border-color: var(--ns-blue); }
.v2-fe-cat input { position: absolute; opacity: 0; pointer-events: none; }
.v2-fe-cat:has(input:checked) { border-color: var(--ns-blue); background: var(--ns-blue-tint); }
.v2-fe-cat__n { font-family: var(--ns-font-mono); font-size: 12px; color: var(--ns-ink-muted); }
.v2-fe-cat__t { font-size: 14.5px; font-weight: 600; color: var(--ns-ink); }
.v2-fe-cat__quote {
  align-self: flex-start; margin-top: 2px; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; color: var(--ns-orange);
}

.v2-fe-recap { border: 1px solid var(--ns-line); border-radius: var(--ns-radius-md); overflow: hidden; margin-bottom: var(--ns-space-5); }
.v2-fe-recap__row {
  display: flex; justify-content: space-between; gap: 14px; padding: 12px 16px;
  border-top: 1px solid var(--ns-line-soft); font-size: 14px;
}
.v2-fe-recap__row:first-child { border-top: none; }
.v2-fe-recap__row span { color: var(--ns-ink-muted); }
.v2-fe-recap__row strong { text-align: right; }

@media (max-width: 640px) {
  .v2-fe-cats { grid-template-columns: 1fr; }
  .v2-fe-nav { flex-direction: column-reverse; }
  .v2-fe-nav .ns-btn { width: 100%; }
}

/* ═════════════════════════════════════════════════════════════════
   SERVICES v2 — fiches detaillees : barre de navigation, sections,
   packs, FAQ, defilement CSS Scroll Snap
   ═════════════════════════════════════════════════════════════════ */

.v2-svcnav {
  position: sticky; top: var(--v2-header-h, 64px); z-index: 30;
  background: #FFFFFF; border-bottom: 1px solid var(--v2-line);
}
.v2-svcnav__in {
  max-width: var(--v2-max); margin: 0 auto; display: flex; gap: 8px; align-items: center;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch; padding: 10px 5vw;
}
.v2-svcnav__in::-webkit-scrollbar { display: none; }
.v2-svcnav__label {
  flex-shrink: 0; font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--v2-ink-mute); margin-right: 6px;
}
.v2-svcnav__label u { color: var(--v2-ink-soft); text-decoration-style: dashed; text-decoration-color: var(--v2-ink-mute); }
.v2-svcnav__item {
  flex-shrink: 0; display: flex; align-items: center; gap: 7px;
  padding: 10px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  color: var(--v2-ink); text-decoration: none; white-space: nowrap;
  background: #FFFFFF; border: 1px solid var(--v2-line); transition: all .15s;
}
.v2-svcnav__item:hover { border-color: var(--v2-blue); color: var(--v2-blue-dark); }
.v2-svcnav__item.is-active { background: var(--v2-ink); border-color: var(--v2-ink); color: #FFFFFF; }
.v2-svcnav__n { display: none; }

/* Titres jamais masques sous l'en-tete + la barre de services collante. */
.v2-snap { scroll-margin-top: calc(var(--v2-header-h, 64px) + 56px); }
html:has(.v2-svcnav) { scroll-snap-type: y proximity; }
html:has(.v2-svcnav) .v2-snap { scroll-snap-align: start; }
@media (prefers-reduced-motion: reduce) {
  html:has(.v2-svcnav) { scroll-snap-type: none; }
}

.v2-svc-why {
  background: var(--v2-blue); border-radius: 22px; padding: clamp(20px, 4vw, 44px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; align-items: center;
}
.v2-svc-why h2 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(18px, 2.1vw, 25px); color: #FFFFFF; margin: 0 0 12px; }
.v2-svc-why p { font-size: 15px; line-height: 1.6; color: #FFFFFF; margin: 0; }
.v2-svc-why__chips { display: flex; gap: 10px; flex-wrap: wrap; }
.v2-svc-why__chips span {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #FFFFFF;
  border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.12); padding: 7px 14px; border-radius: 999px;
}

.v2-svc-offer__num, .v2-svc-step__n {
  width: 36px; height: 36px; border-radius: 10px; background: var(--v2-blue-tint, #E8F2FE);
  display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 12px; color: var(--v2-blue-dark, #1156B3); margin-bottom: 14px;
}
.v2-svc-step__n { background: transparent; color: var(--v2-orange, #F84000); font-size: 13px; width: auto; height: auto; padding: 0; }

.v2-svc-bullets { display: grid; gap: 10px; }
.v2-svc-bullets--grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.v2-svc-bullet { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--v2-ink); line-height: 1.5; }
.v2-svc-bullet__dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--v2-orange, #F84000); margin-top: 8px; }
.v2-svc-bullet--check span:first-child {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--v2-blue-tint, #E8F2FE);
  color: var(--v2-blue-dark, #1156B3); font-size: 10px; display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

.v2-svc-stat { text-align: center; padding: 22px 14px; border: 1px solid var(--v2-line); border-radius: 16px; }
.v2-svc-stat__v { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(22px, 2.6vw, 32px); color: var(--v2-blue); }
.v2-svc-stat__l { font-size: 13px; color: var(--v2-ink-soft); margin-top: 6px; }

.v2-pack {
  position: relative; border: 1.5px solid var(--v2-line); border-radius: 20px; padding: 26px;
  background: #FFFFFF; display: flex; flex-direction: column;
}
.v2-pack--highlight { border-color: var(--v2-blue); box-shadow: 0 20px 40px rgba(24,120,248,.12); }
.v2-pack--corail {
  background: var(--v2-coral); border-color: var(--v2-coral); color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(255,98,77,.28);
}
.v2-pack--corail .v2-pack__nom, .v2-pack--corail .v2-pack__prix,
.v2-pack--corail .v2-pack__prix span, .v2-pack--corail .v2-pack__desc,
.v2-pack--corail .v2-pack__list li, .v2-pack--corail .v2-pack__list li span,
.v2-pack--corail .v2-pack__delai { color: #FFFFFF; }
.v2-pack__badge {
  position: absolute; top: -12px; left: 24px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: #FFFFFF;
  background: var(--v2-orange, #F84000); padding: 5px 12px; border-radius: 999px;
}
.v2-pack__nom { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--v2-ink-soft); margin-bottom: 8px; }
.v2-pack__prix { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 26px; color: var(--v2-blue); margin-bottom: 6px; }
.v2-pack__prix span { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; color: var(--v2-ink-soft); margin-left: 4px; }
.v2-pack__desc { font-size: 13.5px; line-height: 1.55; color: var(--v2-ink-soft); margin: 0 0 16px; }
.v2-pack__list { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 8px; }
.v2-pack__list li { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--v2-ink); line-height: 1.45; }
.v2-pack__list li span { flex-shrink: 0; color: var(--v2-blue); font-size: 11px; margin-top: 3px; }
.v2-pack__delai { font-size: 12.5px; color: var(--v2-ink-soft); margin: 0; }

.v2-svc-options { margin-top: 26px; border: 1px solid var(--v2-line); border-radius: 16px; padding: clamp(16px, 3vw, 26px); background: #FFFFFF; }
.v2-svc-options__t { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--v2-ink-soft); margin: 0 0 14px; }
.v2-svc-options__row { display: flex; justify-content: space-between; gap: 12px; background: var(--v2-paper-alt); border: 1px solid var(--v2-line); border-radius: 10px; padding: 12px 14px; font-size: 13.5px; }
.v2-svc-options__row span:last-child { font-family: 'JetBrains Mono', monospace; color: var(--v2-orange-dark, #B32E00); white-space: nowrap; }

.v2-faq { background: #FFFFFF; border: 1px solid var(--v2-line); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.v2-faq summary { cursor: pointer; padding: 16px 18px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; color: var(--v2-ink); list-style: none; }
.v2-faq summary::-webkit-details-marker { display: none; }
.v2-faq summary::after { content: '+'; float: right; color: var(--v2-blue); }
.v2-faq[open] summary::after { content: '\2212'; }
.v2-faq__a { padding: 0 18px 18px; font-size: 14px; line-height: 1.6; color: var(--v2-ink-soft); }

.v2-svc-cta {
  background: var(--v2-blue); border-radius: 26px; padding: clamp(24px, 4.5vw, 56px); color: #FFFFFF;
}
.v2-svc-cta h2 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(19px, 2.4vw, 28px); margin: 0 0 14px; }
.v2-svc-cta p { font-size: 15.5px; line-height: 1.6; margin: 0 0 24px; max-width: 620px; }
.v2-btn--white { background: #FFFFFF; color: var(--v2-blue-dark, #1156B3); border: none; }
.v2-btn--ghost-white { background: transparent; color: #FFFFFF; border: 1px solid rgba(255,255,255,.55); }

@media (max-width: 640px) {
  .v2-svc-why { grid-template-columns: 1fr; }
  .v2-pack { padding: 20px; }
  .v2-svc-options__row { flex-direction: column; gap: 4px; }
}

/* ═════════════════════════════════════════════════════════════════
   AVIS VOCAL — page /avis : onglets ecrit/vocal, enregistreur
   ═════════════════════════════════════════════════════════════════ */

.v2-avis-tabs { display: flex; gap: 6px; margin-bottom: var(--ns-space-4); background: var(--ns-paper-alt); padding: 4px; border-radius: var(--ns-radius-md); }
.v2-avis-tab {
  flex: 1; padding: 10px 12px; border: none; background: transparent; border-radius: var(--ns-radius-sm);
  font-size: 13.5px; font-weight: 600; color: var(--ns-ink-muted); cursor: pointer; transition: background .15s, color .15s;
}
.v2-avis-tab.is-active { background: #FFFFFF; color: var(--ns-blue); box-shadow: var(--ns-shadow-sm); }
.v2-avis-form.is-hidden { display: none; }

.v2-voice { margin: var(--ns-space-4) 0; padding: 16px; border: 1px dashed var(--ns-line); border-radius: var(--ns-radius-md); text-align: center; }
.v2-voice__stage.is-hidden { display: none; }

.v2-voice__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: var(--ns-radius-sm); border: 1px solid var(--ns-line);
  background: #FFFFFF; font-size: 13.5px; font-weight: 600; color: var(--ns-ink); cursor: pointer;
}
.v2-voice__btn--primary { background: var(--ns-blue); color: #FFFFFF; border-color: var(--ns-blue); width: 100%; }
.v2-voice__btn--primary:hover { background: var(--ns-blue-dark); }
.v2-voice__btn--stop { border-color: var(--ns-red); color: var(--ns-red-dark); }
.v2-voice__row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }

.v2-voice__timer { font-family: var(--ns-font-mono); font-size: 30px; font-weight: 700; color: var(--ns-ink); }
.v2-voice__max { margin: 4px 0 0; font-size: 12px; color: var(--ns-ink-muted); }
.v2-voice__error { margin: 10px 0 0; font-size: 13px; color: var(--ns-red-dark); }
.v2-voice__fallback { margin: 14px 0 0; font-size: 12.5px; color: var(--ns-ink-muted); }
.v2-voice__upload {
  display: inline-block; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--ns-blue);
  cursor: pointer; text-decoration: underline;
}
.v2-voice__upload input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.v2-voice__consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ns-ink-soft); margin: 0 0 var(--ns-space-4); }
.v2-voice__consent input { margin-top: 3px; }

[data-v2-voice-player]:not([src]) { display: none; }

.v2-avis-card__audio, .v2-avis__audio { width: 100%; margin-top: 4px; }

@media (max-width: 640px) {
  .v2-avis-tabs { flex-direction: column; }
  .v2-voice__row { flex-direction: column; }
  .v2-voice__row .v2-voice__btn { width: 100%; }
}
