:root {
  --encre: #13161b;
  --ardoise: #1c2029;
  --ardoise-2: #252a35;
  --trait-sombre: #333947;
  --papier: #f1f2f4;
  --papier-2: #e3e5ea;
  --trait-clair: #cfd3db;
  --texte: #1a1d23;
  --texte-doux: #585f6d;
  --texte-clair: #c5cad4;
  --texte-clair-doux: #8b94a5;
  --rec: #e0392c;
  --ecran: #6f8dff;
  --cam: #bd7dff;
  --micro: #f2b53c;
  --app: #3fc7b4;
  --voix: #ff8a5b;
  --r: 3px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--texte);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: Archivo, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
}

h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

/* ---------- en-tête ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(19, 22, 27, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--trait-sombre);
}

.bar {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  height: 62px;
}

.marque {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: Archivo, system-ui, sans-serif;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.sigle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  flex: none;
}

.site-nav {
  display: flex;
  gap: 1.7rem;
  margin-left: auto;
  font-size: 0.93rem;
  color: var(--texte-clair);
}

.site-nav a {
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  border-bottom-color: var(--rec);
  color: #fff;
}

.nav-mobile {
  display: none;
  margin-left: auto;
  color: var(--texte-clair);
}

.nav-mobile summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding: 0.35rem 0;
}

.nav-mobile summary::-webkit-details-marker {
  display: none;
}

.nav-mobile[open] {
  position: absolute;
  left: 0;
  right: 0;
  top: 62px;
  background: var(--encre);
  border-bottom: 1px solid var(--trait-sombre);
  padding: 0.4rem 4vw 1rem;
  display: grid;
  gap: 0.35rem;
}

.nav-mobile[open] summary {
  position: absolute;
  right: 4vw;
  top: -50px;
}

.nav-mobile a {
  display: block;
  padding: 0.55rem 0;
  text-decoration: none;
  color: var(--texte-clair);
  border-bottom: 1px solid var(--trait-sombre);
}

.btn {
  display: inline-block;
  border-radius: var(--r);
  padding: 0.66rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: "IBM Plex Sans", sans-serif;
  text-align: center;
}

.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
}

.btn-rec {
  background: var(--rec);
  color: #fff;
}

.btn-rec:hover {
  background: #c93024;
}

.btn-ligne {
  border-color: var(--trait-sombre);
  color: var(--texte-clair);
}

.btn-ligne:hover {
  border-color: var(--texte-clair);
  color: #fff;
}

.btn-sombre {
  background: var(--encre);
  color: #fff;
}

.btn-sombre:hover {
  background: #000;
}

.btn-clair {
  border-color: var(--trait-clair);
  color: var(--texte);
}

.btn-clair:hover {
  border-color: var(--texte);
}

:focus-visible {
  outline: 2px solid var(--rec);
  outline-offset: 3px;
}

.bar .btn {
  padding: 0.5rem 0.95rem;
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .nav-mobile {
    display: block;
  }

  .bar {
    gap: 1rem;
  }
}

/* ---------- héros ---------- */
.heros {
  background: var(--encre);
  color: #fff;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.heros h1 {
  max-width: 16ch;
}

.accroche {
  margin-top: 1.6rem;
  max-width: 56ch;
  color: var(--texte-clair);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
  align-items: center;
}

.petite-note {
  font-size: 0.87rem;
  color: var(--texte-clair-doux);
  margin-top: 0.9rem;
}

/* ---------- table de montage ---------- */
.deck {
  margin-top: 3.4rem;
  border: 1px solid var(--trait-sombre);
  border-radius: 5px;
  background: var(--ardoise);
  overflow: hidden;
}

.deck-head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.7rem 1rem;
  background: var(--ardoise-2);
  border-bottom: 1px solid var(--trait-sombre);
  font-size: 0.84rem;
  color: var(--texte-clair-doux);
  flex-wrap: wrap;
}

.etat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 500;
}

.pastille {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rec);
  animation: battement 2.4s infinite;
}

@keyframes battement {
  0%,
  60%,
  100% {
    opacity: 1;
  }
  80% {
    opacity: 0.25;
  }
}

.tc {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.deck-head .sep {
  width: 1px;
  height: 14px;
  background: var(--trait-sombre);
}

.lanes {
  padding: 0.55rem 0;
}

.lane {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 0.9rem;
  padding: 0.28rem 1rem;
}

.lane-nom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--texte-clair);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.puce {
  width: 3px;
  height: 15px;
  border-radius: 2px;
  background: var(--c);
  flex: none;
}

.piste {
  height: 26px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  transform-origin: left;
  animation: pousse 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

@keyframes pousse {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.piste.video {
  background:
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(0, 0, 0, 0.28) 46px 47px),
    color-mix(in srgb, var(--c) 34%, transparent);
}

.piste.video::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 2px solid var(--c);
}

.onde {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
  padding: 0 3px;
}

.onde i {
  flex: 1;
  min-width: 1px;
  background: var(--c);
  opacity: 0.72;
  border-radius: 1px;
  display: block;
}

.deck-pied {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--trait-sombre);
  font-size: 0.83rem;
  color: var(--texte-clair-doux);
  background: var(--ardoise-2);
}

@media (max-width: 620px) {
  .lane {
    grid-template-columns: 96px 1fr;
    gap: 0.6rem;
    padding-inline: 0.7rem;
  }

  .lane-nom {
    font-size: 0.78rem;
  }
}

/* ---------- bande photo ---------- */
.photo {
  position: relative;
  background: var(--encre);
}

.photo img {
  width: 100%;
  height: clamp(320px, 46vw, 620px);
  object-fit: cover;
  object-position: center;
}

.legende {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.5rem 0 1.6rem;
  background: linear-gradient(transparent, rgba(11, 13, 17, 0.92));
  color: var(--texte-clair);
}

.legende p {
  width: min(1180px, 92vw);
  margin: 0 auto;
  max-width: 60ch;
  font-size: 1.02rem;
}

/* ---------- sections ---------- */
section {
  padding: 5.5rem 0;
}

.sombre {
  background: var(--encre);
  color: #fff;
}

.sombre h2 {
  color: #fff;
}

.chapeau {
  max-width: 58ch;
  margin-top: 1.1rem;
  color: var(--texte-doux);
  font-size: 1.06rem;
}

.sombre .chapeau {
  color: var(--texte-clair);
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.duo-centre {
  align-items: center;
  margin-top: 3rem;
}

.fond-papier {
  background: var(--papier-2);
}

@media (max-width: 900px) {
  .duo {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  section {
    padding: 4rem 0;
  }
}

/* sortie fichiers */
.fichiers {
  border: 1px solid var(--trait-clair);
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.fichiers .tete {
  padding: 0.6rem 0.95rem;
  border-bottom: 1px solid var(--trait-clair);
  font-size: 0.84rem;
  color: var(--texte-doux);
  background: var(--papier-2);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.fichiers ul {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.fichiers li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.42rem 0.95rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.87rem;
}

.fichiers li span:last-child {
  margin-left: auto;
  color: var(--texte-doux);
  font-size: 0.78rem;
}

.tag {
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: var(--c);
}

/* liste de capacités */
.capacites {
  list-style: none;
  padding: 0;
  margin: 2.6rem 0 0;
  border-top: 1px solid var(--trait-clair);
}

.sombre .capacites {
  border-color: var(--trait-sombre);
}

.capacites.no-top {
  margin-top: 0;
  border-top: 0;
}

.capacites li {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--trait-clair);
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) 1.6fr;
  gap: 2rem;
}

.capacites li.top-line {
  border-top: 1px solid var(--trait-clair);
}

.sombre .capacites li {
  border-color: var(--trait-sombre);
}

.capacites p {
  color: var(--texte-doux);
  font-size: 0.99rem;
}

.sombre .capacites p {
  color: var(--texte-clair);
}

@media (max-width: 760px) {
  .capacites li {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

/* capture d'écran */
.capture {
  border: 1px solid var(--trait-sombre);
  border-radius: 5px;
  overflow: hidden;
  background: var(--ardoise);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7);
}

.capture img {
  width: 100%;
  height: auto;
}

.capture-leg {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: var(--texte-clair-doux);
  max-width: 54ch;
}

.clair .capture {
  border-color: var(--trait-clair);
  box-shadow: 0 24px 55px -32px rgba(20, 24, 33, 0.55);
}

.clair .capture-leg,
.fond-papier .capture-leg {
  color: var(--texte-doux);
}

/* fenêtre app (Enregistrer) */
.app-fenetre {
  border: 1px solid var(--trait-sombre);
  border-radius: 8px;
  overflow: hidden;
  background: #202020;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.7);
  color: #e6e6e6;
  font-size: 0.78rem;
}

.app-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.75rem;
  background: #2c2c2c;
  border-bottom: 1px solid #3a3a3a;
  color: #c8c8c8;
}

.app-chrome strong {
  font-weight: 600;
  opacity: 0.7;
}

.app-corps {
  display: grid;
  grid-template-columns: 48px 1fr 168px;
  min-height: 280px;
}

.app-rail {
  background: #2b2b2b;
  border-right: 1px solid #3a3a3a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0;
}

.app-rail i {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #5a5a5a;
  display: block;
}

.app-rail i.is-on {
  background: var(--rec);
}

.app-live {
  position: relative;
  background:
    linear-gradient(180deg, #1a1a1a, #111),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.02) 28px 29px);
  min-height: 280px;
}

.app-overlay {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem 0.45rem;
  border-radius: 6px;
  background: rgba(32, 32, 32, 0.92);
  border: 1px solid #3a3a3a;
}

.app-overlay span {
  display: block;
  min-width: 4.2rem;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  background: #2b2b2b;
  color: #d0d0d0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
}

.app-side {
  background: #202020;
  border-left: 1px solid #3a3a3a;
  padding: 0.85rem 0.75rem;
}

.app-side strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
}

.app-side label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.35rem 0;
  color: #c8c8c8;
}

.app-side label.is-locked {
  opacity: 0.4;
}

.app-rec {
  margin-top: 1rem;
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 0.45rem 0.6rem;
  background: var(--rec);
  color: #fff;
  font-weight: 700;
  font-family: inherit;
}

@media (max-width: 720px) {
  .app-corps {
    grid-template-columns: 40px 1fr;
  }

  .app-side {
    display: none;
  }
}

/* étapes synchro */
.etapes {
  counter-reset: e;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--trait-sombre);
}

.etape {
  counter-increment: e;
  padding: 1.8rem 1.8rem 1.8rem 0;
  border-right: 1px solid var(--trait-sombre);
}

.etape:last-child {
  border-right: 0;
}

.etape:not(:first-child) {
  padding-left: 1.8rem;
}

.etape .num {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  color: var(--rec);
}

.etape .num::before {
  content: counter(e, decimal-leading-zero);
}

.etape h3 {
  margin: 0.5rem 0 0.55rem;
  color: #fff;
}

.etape p {
  color: var(--texte-clair);
  font-size: 0.97rem;
}

@media (max-width: 860px) {
  .etapes {
    grid-template-columns: 1fr;
  }

  .etape {
    border-right: 0;
    border-bottom: 1px solid var(--trait-sombre);
    padding: 1.5rem 0 !important;
  }

  .etapes .etape:last-child {
    border-bottom: 0;
  }
}

/* encodage */
.grille-enc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.4rem;
  margin-top: 2.8rem;
}

.grille-enc h3 {
  margin-bottom: 0.9rem;
}

.jetons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.jeton {
  border: 1px solid var(--trait-clair);
  border-radius: 2px;
  padding: 0.28rem 0.6rem;
  font-size: 0.84rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  background: #fff;
}

.plage {
  font-family: Archivo, system-ui, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.plage small {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--texte-doux);
  letter-spacing: 0;
  margin-top: 0.2rem;
}

/* tarifs + versions */
.offres {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6rem;
  margin-top: 3rem;
  align-items: stretch;
}

.offre {
  border: 1px solid var(--trait-clair);
  border-radius: 4px;
  padding: 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.offre.pleine {
  background: var(--encre);
  color: #fff;
  border-color: var(--encre);
}

.offre h3 {
  font-size: 1.25rem;
}

.gelule {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: max-content;
  flex: 0 0 auto;
  align-self: center;
  margin-top: 0.9rem;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--trait-clair);
  background: var(--papier-2);
}

.offre.pleine .gelule {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.gelule-opt {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.82rem;
  line-height: 1;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  text-align: center;
}

.gelule-opt.is-on {
  background: #fff;
  color: var(--encre);
}

.offre.pleine .gelule-opt.is-on {
  background: var(--rec);
  color: #fff;
}

.prix-eq {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--texte-doux);
}

.offre.pleine .prix-eq {
  color: var(--texte-clair-doux);
}

.prix {
  font-family: Archivo, system-ui, sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  margin: 1rem 0 0.2rem;
}

.prix small {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
}

.offre ul {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 2rem;
  display: grid;
  gap: 0.6rem;
  font-size: 0.96rem;
}

.offre li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--texte-doux);
}

.offre.pleine li {
  color: var(--texte-clair);
}

.offre li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 2px;
  background: var(--rec);
}

.offre .btn {
  margin-top: auto;
}

.versions {
  margin-top: 2.4rem;
  display: grid;
  gap: 0.75rem;
}

.version-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--trait-clair);
  border-radius: 4px;
  background: #fff;
}

.version-row.is-latest {
  border-color: var(--encre);
}

.version-meta {
  display: grid;
  gap: 0.2rem;
}

.version-meta span {
  color: var(--texte-doux);
  font-size: 0.9rem;
}

.badge {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: var(--papier-2);
  color: var(--texte-doux);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

@media (max-width: 960px) {
  .offres {
    grid-template-columns: 1fr;
  }

  .version-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* faq */
.faq {
  margin-top: 2.6rem;
  border-top: 1px solid var(--trait-clair);
}

.faq details {
  border-bottom: 1px solid var(--trait-clair);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-weight: 600;
  font-family: Archivo, system-ui, sans-serif;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  margin-left: auto;
  color: var(--texte-doux);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 1.15rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  padding-bottom: 1.3rem;
  color: var(--texte-doux);
  max-width: 70ch;
}

.faq-wrap {
  max-width: 820px;
}

/* mentions */
.mentions {
  padding: 5rem 0 6rem;
}

.mentions h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
}

.mentions h2 {
  font-size: 1.35rem;
  margin: 2.2rem 0 0.7rem;
}

.mentions p,
.mentions li {
  color: var(--texte-doux);
  max-width: 70ch;
}

.mentions p + p {
  margin-top: 0.8rem;
}

.mentions ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

/* pied */
footer {
  background: var(--encre);
  color: var(--texte-clair-doux);
  padding: 3.2rem 0;
  font-size: 0.9rem;
  border-top: 1px solid var(--trait-sombre);
}

.pied {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

footer a {
  text-decoration: none;
  color: var(--texte-clair);
}

footer a:hover {
  color: #fff;
}

.liens-pied {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.pied-note {
  margin-top: 0.6rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* comparatif */
.comparatif{width:100%;border-collapse:collapse;margin-top:2.8rem;font-size:.95rem}
.comparatif caption{text-align:left;color:var(--texte-clair-doux);font-size:.86rem;padding-bottom:.9rem}
.comparatif th,.comparatif td{text-align:left;padding:.95rem 1rem;border-bottom:1px solid var(--trait-sombre);vertical-align:top}
.comparatif thead th{font-family:Archivo;font-weight:600;font-size:.95rem;color:#fff;letter-spacing:-.01em;border-bottom-color:var(--texte-clair-doux)}
.comparatif tbody th{font-weight:500;color:#fff;width:30%}
.comparatif td{color:var(--texte-clair)}
.comparatif .nous{background:rgba(224,57,44,.07);border-left:2px solid var(--rec);color:#fff}
.comparatif thead .nous{background:rgba(224,57,44,.12)}
.comparatif tbody tr:last-child th,.comparatif tbody tr:last-child td{border-bottom:0}
.comparatif .prix-ligne td,.comparatif .prix-ligne th{border-top:1px solid var(--texte-clair-doux)}
.tableau-cadre{overflow-x:auto;-webkit-overflow-scrolling:touch}
.tableau-cadre table{min-width:680px}
.note-compar{margin-top:1.4rem;font-size:.88rem;color:var(--texte-clair-doux);max-width:70ch}
