/* ==========================================================================
   OpenReviews — Design system (esprit Attio · charte blanc/noir + marine/turquoise)
   Tokens issus du brief §19. Socle blanc + noir ; marine & turquoise = accents.
   ========================================================================== */

:root {
  /* Couleurs — mode clair */
  --bg: #FFFFFF;
  --bg-subtle: #F4F5F7;
  --surface: #FFFFFF;
  --fg: #1C1D1F;
  --fg-muted: #666666;
  --border: #EBECF0;
  --overline: #8A8F98;

  /* Accent — charte OpenReviews (blanc + noir dominants) */
  --accent: #0A1E5A;        /* bleu marine intense — logo, boutons, focus, data */
  --accent-hover: #0B2A6B;
  --accent-2: #38BBF7;      /* turquoise — repris d'inflate.review */
  --accent-2-dark: #0E75A4;
  --accent-ink: #FFFFFF;
  --star: #F5B301;          /* étoiles d'avis */

  /* Status pills */
  --pill-success-bg: #E7F7EF; --pill-success-fg: #0F7A4E;
  --pill-info-bg: #E8F0FE;    --pill-info-fg: #1A56DB;
  --pill-neutral-bg: #F1F2F4; --pill-neutral-fg: #3F4451;
  --pill-warn-bg: #FDECEC;    --pill-warn-fg: #B4232A;

  /* Typographie */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter Display", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Tiempos Text", "Newsreader", Georgia, "Times New Roman", serif;
  --font-mono: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --text-body: 16px; --leading-body: 1.6;
  --tracking-heading: -0.01em;

  /* Rayons */
  --radius-sm: 6px; --radius-md: 8px; --radius-lg: 12px; --radius-xl: 16px;

  /* Ombres (usage parcimonieux) */
  --shadow-sm: 0 1px 2px rgba(28,29,31,.06);
  --shadow-md: 0 4px 16px rgba(28,29,31,.08);
  --shadow-lg: 0 12px 40px rgba(28,29,31,.10);

  /* Motion */
  --dur-fast: 150ms; --dur-med: 300ms; --dur-slow: 400ms;
  --ease: cubic-bezier(.2,.0,.2,1);

  /* Layout */
  --container: 1200px;
  --nav-h: 64px;
}

/* ---------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(23,195,206,.28); }

/* ------------------------------- Typographie ------------------------------ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: var(--tracking-heading); line-height: 1.15; color: var(--fg); }
/* Tiempos Text (serif) en complément : titre éditorial du hero + citations */
.hero h1 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.015em; }
blockquote { font-family: var(--font-serif); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.02em; line-height: 1.06; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }
p { color: var(--fg-muted); }
strong { color: var(--fg); font-weight: 600; }

.overline {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--overline);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--fg-muted); line-height: 1.55; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* -------------------------------- Layout ---------------------------------- */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: 24px;
}
/* colonne encadrée façon Attio (bordures latérales 1px) */
.framed {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .overline { margin-bottom: 14px; display: inline-block; }
.section-head p { margin-top: 16px; font-size: 1.08rem; }
.bg-subtle { background: var(--bg-subtle); }

.dashed-sep { border: 0; border-top: 1px dashed var(--border); margin: 0; }

/* --------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; line-height: 1;
  padding: 12px 20px; border-radius: var(--radius-sm);
  border: 1px solid transparent; transition: filter var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(10,30,90,.28); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { filter: brightness(1.14); box-shadow: var(--shadow-md); }
.btn-primary:active { filter: brightness(.9); transform: translateY(1px); }
.btn-secondary { background: var(--surface); color: var(--fg); border-color: var(--border); }
.btn-secondary:hover { background: var(--bg-subtle); }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-ghost { color: var(--fg); padding: 10px 12px; }
.btn-ghost:hover { color: var(--accent); }
.link-underline {
  color: var(--accent); font-weight: 600;
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px;
  transition: filter var(--dur-fast) var(--ease);
}
.link-underline:hover { filter: brightness(1.25); }
.arrow-ext::after { content: "↗"; font-weight: 500; margin-left: 2px; }

/* --------------------------------- Pills ---------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: .01em;
  padding: 4px 10px; border-radius: 9999px;
}
.pill-success { background: var(--pill-success-bg); color: var(--pill-success-fg); }
.pill-info { background: var(--pill-info-bg); color: var(--pill-info-fg); }
.pill-neutral { background: var(--pill-neutral-bg); color: var(--pill-neutral-fg); }
.pill-warn { background: var(--pill-warn-bg); color: var(--pill-warn-fg); }
.pill-accent { background: rgba(23,195,206,.14); color: var(--accent-2-dark); }
.pill-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.stars { color: var(--star); letter-spacing: 1px; font-size: .95em; }

/* --------------------------------- Navbar --------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h); background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.nav-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700;
  font-size: 1.2rem; letter-spacing: -0.03em; color: var(--fg); }
.brand .wm { font-weight: 700; letter-spacing: -0.03em; }
.wm-open { color: var(--fg); }
.wm-reviews { color: var(--accent-2-dark); }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links > li > a, .nav-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 0.94rem; font-weight: 500; color: var(--fg);
  background: none; border: 0; transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav-links > li > a:hover, .nav-trigger:hover { background: var(--bg-subtle); color: var(--accent); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* dropdown Solution */
.has-dropdown { position: relative; }
.nav-trigger .chev { transition: transform var(--dur-fast) var(--ease); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; width: 380px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .chev { transform: rotate(180deg); }
.dropdown-item { display: flex; gap: 12px; padding: 12px; border-radius: var(--radius-md);
  transition: background var(--dur-fast) var(--ease); }
.dropdown-item:hover { background: var(--bg-subtle); }
.dropdown-item .di-icon {
  flex: none; width: 34px; height: 34px; border-radius: var(--radius-sm);
  display: grid; place-items: center; border: 1px solid var(--border); background: #fff;
}
.dropdown-item .di-title { font-weight: 600; font-size: .95rem; color: var(--fg); display: flex; align-items: center; gap: 6px; }
.dropdown-item .di-desc { font-size: .82rem; color: var(--fg-muted); margin-top: 2px; line-height: 1.4; }

.nav-toggle { display: none; }
.mobile-menu { display: none; }

/* --------------------------------- Hero ----------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--surface); }
.hero-inner { position: relative; z-index: 1; padding-block: clamp(48px, 7vw, 88px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-top: 18px; }
.hero .lead { margin-top: 22px; max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-proof { margin-top: 30px; display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface); box-shadow: var(--shadow-sm); max-width: 480px; }
.hero-proof .hp-figure { flex: none; display: flex; align-items: baseline; }
.hero-proof .hp-num { font-size: 2.6rem; font-weight: 700; color: var(--accent); letter-spacing: -.03em; line-height: 1; }
.hero-proof .hp-den { font-size: 1.1rem; font-weight: 600; color: var(--fg-muted); }
.hero-proof .hp-body { display: flex; flex-direction: column; gap: 4px; color: var(--fg-muted); font-size: .92rem; line-height: 1.45; }
.hero-proof .hp-body .stars { font-size: .9rem; }
.hero-proof strong { color: var(--fg); }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* mockup fiche produit (hero) */
.pdp-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 18px; position: relative;
}
.pdp-impact { display: flex; align-items: stretch; gap: 10px; margin-bottom: 16px; }
.pdp-impact .pi-side { flex: 1; display: flex; flex-direction: column; gap: 3px;
  padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-subtle); }
.pdp-impact .pi-side.after { background: var(--pill-success-bg); border-color: transparent; }
.pdp-impact .pi-lbl { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--overline); }
.pdp-impact .pi-side.after .pi-lbl { color: var(--pill-success-fg); }
.pdp-impact .pi-val { font-size: 1.2rem; font-weight: 700; color: var(--fg); letter-spacing: -.02em; }
.pdp-impact .pi-side.after .pi-val { color: var(--pill-success-fg); }
.pdp-impact .pi-arrow { align-self: center; color: var(--overline); font-size: 1.2rem; flex: none; }
.pdp-card .pdp-head { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.pdp-card .pdp-head > .pdp-thumb { flex: none; }
.pdp-card .pdp-head > div:not([class]) { min-width: 0; flex: 1 1 auto; }
.pdp-card .pdp-head > .pill { flex: none; white-space: nowrap; }
@media (max-width: 560px) {
  .pdp-card .pdp-head { row-gap: 12px; }
  .pdp-card .pdp-head > .pill { order: -1; flex-basis: 100%; margin-left: 0 !important; }
}
.pdp-thumb { position: relative; overflow: hidden; width: 66px; height: 66px; border-radius: var(--radius-md); background: linear-gradient(135deg,#eef2ff,#E7F5FC);
  display: grid; place-items: center; border: 1px solid var(--border); flex: none; }
.thumb-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.pdp-title { font-weight: 600; color: var(--fg); font-size: .98rem; }
.pdp-sub { font-size: .82rem; color: var(--fg-muted); }
.pdp-rating { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 6px; }
.pdp-rating .score { font-size: 1.75rem; font-weight: 700; color: var(--fg); letter-spacing: -.02em; }
.pdp-rating .count { color: var(--fg-muted); font-size: .88rem; }
.bar { height: 7px; border-radius: 4px; background: var(--bg-subtle); overflow: hidden; }
.bar > span { display: block; height: 100%; background: var(--accent); border-radius: 4px; }
.pdp-sources { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 14px; }
.src-caption { font-size: .74rem; color: var(--fg-muted); width: 100%; margin-bottom: 2px; }
.src-chip { font-size: .72rem; font-weight: 600; color: var(--fg-muted); background: var(--bg-subtle);
  border: 1px solid var(--border); border-radius: 9999px; padding: 3px 9px; }
.pdp-review { margin-top: 14px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-subtle); }
.pdp-review .pr-head { display: flex; align-items: center; gap: 8px; font-size: .78rem; margin-bottom: 6px; }
.pdp-review .pr-head .stars { font-size: .82rem; }
.pdp-review .pr-who { font-weight: 600; color: var(--fg); }
.pdp-review .pr-verif { margin-left: auto; color: var(--pill-success-fg); font-weight: 600; font-size: .72rem; }
.pdp-review p { margin: 0; font-size: .82rem; color: var(--fg); line-height: 1.5; }
.pdp-augur { margin-top: 14px; border-top: 1px dashed var(--border); padding-top: 12px;
  display: flex; gap: 10px; align-items: flex-start; }
.pdp-augur .ai { width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg,var(--accent),var(--accent-2)); }
.pdp-augur .txt { font-size: .82rem; color: var(--fg); }
.floating-pill { position: absolute; }

/* -------------------------------- Logo band ------------------------------- */
.logos-strip { padding-block: 34px; }
.logos-caption { text-align: center; color: var(--overline); font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 22px; }
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 46px; }
.logo-item { display: inline-flex; align-items: center; gap: 9px; opacity: .92;
  transition: opacity var(--dur-med) var(--ease); }
.logo-item:hover { opacity: 1; }
.logo-item .logo-wordmark { height: 26px; width: auto; max-width: 150px; object-fit: contain; display: block; }
.logo-item .logo-blend { mix-blend-mode: multiply; }
.logo-item .logo-mark { width: 22px; height: 22px; border-radius: 5px; object-fit: contain; flex: none; }
.logo-fallback { font-weight: 700; font-size: 1.08rem; color: var(--fg); letter-spacing: -.02em; }

/* --------------------------------- Stats ---------------------------------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.stat { padding: 26px 24px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat .num { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--accent); letter-spacing: -.02em; }
.stat .lbl { font-size: .9rem; color: var(--fg-muted); margin-top: 6px; }

/* KPI grid (2x2 cards, contexte colonne étroite) */
.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kpi { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface);
  box-shadow: var(--shadow-sm); padding: 22px 22px; display: flex; flex-direction: column; gap: 8px; min-height: 118px; }
.kpi-num { font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 700; color: var(--accent);
  letter-spacing: -.03em; line-height: 1; font-family: var(--font-mono); }
.kpi-lbl { font-size: .88rem; color: var(--fg-muted); line-height: 1.35; }
@media (max-width: 560px) { .kpi-grid { grid-template-columns: 1fr; } }

/* Carte Augur (visuel header) */
.augur-card { background: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 20px;
  box-shadow: 0 26px 70px rgba(0,0,0,.45); padding: 18px; max-width: 440px; margin-left: auto; }
.augur-prod { display: flex; gap: 14px; align-items: center; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.ap-thumb { position: relative; overflow: hidden; width: 66px; height: 66px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg,#0f1633,#0E3445); border: 1px solid var(--border); }
.ap-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ap-title { font-weight: 700; color: var(--fg); font-size: 1.04rem; letter-spacing: -.01em; }
.ap-rating { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-size: .84rem; }
.ap-stars { display: inline-block; font-family: "Times New Roman", Georgia, serif; font-size: 1rem; line-height: 1; letter-spacing: 1.5px; }
.ap-stars::before { content: "★★★★★";
  background: linear-gradient(90deg, var(--star) calc(var(--rating,5) / 5 * 100%), #d4d8e2 calc(var(--rating,5) / 5 * 100%));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.ap-rating .ap-score { color: var(--fg); font-weight: 700; font-family: var(--font-mono); }
.ap-rating .ap-count { color: var(--fg-muted); font-family: var(--font-mono); }
.augur-head { display: flex; align-items: center; gap: 10px; margin: 16px 0 12px; }
.ah-ic { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-2-dark)); }
.ah-name { font-weight: 700; color: var(--fg); }
.ah-by { color: var(--fg-muted); font-size: .8rem; font-family: var(--font-mono); }
.augur-q { margin: 12px 0 0 auto; width: fit-content; max-width: 86%; background: #111; color: #fff;
  border-radius: 16px 16px 5px 16px; padding: 11px 15px; font-size: .9rem; line-height: 1.45; }
.augur-a { margin: 12px 0 0; max-width: 94%; background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: 16px 16px 16px 5px; padding: 13px 15px; font-size: .9rem; line-height: 1.5; color: var(--fg); }
.augur-a .aa-src { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  color: var(--accent); font-size: .76rem; font-family: var(--font-mono); }
.augur-a .aa-src svg { flex: none; }
.augur-typing { display: inline-flex; align-items: center; gap: 5px; margin-top: 12px; padding: 13px 16px;
  background: var(--bg-subtle); border: 1px solid var(--border); border-radius: 16px 16px 16px 5px; }
.augur-typing i { width: 6px; height: 6px; border-radius: 50%; background: #aab0be; display: inline-block;
  animation: augTyping 1.2s infinite ease-in-out; }
.augur-typing i:nth-child(2) { animation-delay: .18s; }
.augur-typing i:nth-child(3) { animation-delay: .36s; }
@keyframes augTyping { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
@media (prefers-reduced-motion: reduce) { .augur-typing i { animation: none; opacity: .5; } }

/* -------------------------- Cards / feature grid -------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; transition: box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease),
    transform var(--dur-med) var(--ease);
}
.card.hoverable:hover { box-shadow: var(--shadow-md); border-color: #d7dbe6; transform: translateY(-2px); }
.card .card-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  display: grid; place-items: center; margin-bottom: 16px; color: var(--accent); background: var(--bg-subtle); }
.card h3 { font-size: 1.15rem; }
.card h4 { margin-bottom: 8px; }
.card p { font-size: .95rem; margin-top: 6px; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ---------------------- Problème : deux fiches comparées ------------------ */
.fiche-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; }
.fiche { position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px; background: var(--surface); display: flex; flex-direction: column; }
.fiche.is-empty { background: var(--bg-subtle); }
.fiche.is-full { border-color: rgba(10,30,90,.30); box-shadow: var(--shadow-md); }
.fiche-tag { position: absolute; top: -12px; left: 22px; }
.fiche-prod { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.fiche-thumb { position: relative; overflow: hidden; width: 48px; height: 48px; border-radius: var(--radius-md); flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg,#eef2ff,#E7F5FC); border: 1px solid var(--border); }
.fiche-name { font-weight: 600; color: var(--fg); font-size: .95rem; line-height: 1.3; }
.fiche-price { color: var(--fg-muted); font-size: .85rem; margin-top: 2px; }
.fiche-rating { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 4px; }
.fiche-rating .score { font-size: 1.5rem; font-weight: 700; color: var(--fg); letter-spacing: -.02em; }
.fiche-rating .stars { color: var(--star); }
.fiche-rating.muted .stars { color: #C9CDD4; }
.fiche-rating .fiche-count { color: var(--fg-muted); font-size: .85rem; }
.fiche-note { color: var(--fg-muted); font-size: .88rem; margin: 8px 0 0; }
.fiche-review { margin: 12px 0 0; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-subtle); }
.fiche-review .fr-head { display: flex; align-items: center; gap: 8px; font-size: .78rem; margin-bottom: 6px; }
.fiche-review .fr-head .stars { color: var(--star); font-size: .82rem; }
.fiche-review .fr-who { font-weight: 600; color: var(--fg); }
.fiche-review .fr-verif { margin-left: auto; color: var(--pill-success-fg); font-weight: 600; font-size: .72rem; }
.fiche-review p { margin: 0; font-size: .82rem; color: var(--fg); line-height: 1.5; }
.fiche-btn { margin-top: auto; text-align: center; font-weight: 600; font-size: .9rem;
  padding: 11px 14px; border-radius: var(--radius-sm); margin-top: 18px; }
.fiche-btn.is-off { background: var(--bg-subtle); color: #A6ABB4; border: 1px solid var(--border); }
.fiche.is-empty .fiche-btn.is-off { background: #EDEEF1; }
.fiche-btn.is-on { background: var(--accent); color: #fff; }
.fiche-vs { align-self: center; color: var(--overline); font-size: 1.7rem; }
.conv-figure { margin-top: 48px; text-align: center; padding: clamp(34px, 5vw, 52px) 24px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: radial-gradient(120% 140% at 50% 0%, var(--bg-subtle), var(--surface) 70%); }
.conv-figure .cf-hero { display: inline-flex; align-items: baseline; gap: 18px; flex-wrap: wrap; justify-content: center; }
.conv-figure .cf-big { font-size: clamp(4.6rem, 11vw, 7.4rem); font-weight: 700; letter-spacing: -.045em; line-height: .85;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2-dark) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--accent); }
.conv-figure .cf-unit { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 700; color: var(--fg); letter-spacing: -.02em; }
.conv-figure .cf-desc { max-width: 52ch; margin: 20px auto 0; color: var(--fg-muted); font-size: 1.02rem; line-height: 1.6; }
.conv-figure .cf-desc strong { color: var(--fg); }

/* Bascule IA : mini bar-chart vertical condensé */
.ai-bars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 4vw, 30px); align-items: end;
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: 26px 24px 20px;
  background: rgba(255,255,255,.03); }
.ai-bar { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ai-bar .abv { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 700; color: #fff; letter-spacing: -.02em; }
.ai-bar .abc { width: clamp(38px, 9vw, 52px); height: 150px; display: flex; align-items: flex-end;
  background: rgba(255,255,255,.06); border-radius: 9px; overflow: hidden; }
.ai-bar .abf { width: 100%; height: 0; background: linear-gradient(180deg, #5FBDE8, var(--accent-2));
  border-radius: 9px 9px 0 0; transition: height 1s var(--ease); }
.ai-bars.in .ai-bar:nth-child(1) .abf { height: 20%; }
.ai-bars.in .ai-bar:nth-child(2) .abf { height: 50%; }
.ai-bars.in .ai-bar:nth-child(3) .abf { height: 100%; }
.ai-bar .aby { font-family: var(--font-mono); font-size: .82rem; color: #7f8dc0; }

/* ------------------------------ Avant / Après ----------------------------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
.ba-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; background: var(--surface); position: relative; }
.ba-card.after { border-color: rgba(10,30,90,.35); box-shadow: var(--shadow-md); }
.ba-tag { position: absolute; top: -12px; left: 22px; }
.ba-big { font-size: 2.4rem; font-weight: 700; letter-spacing: -.02em; margin: 8px 0; }
.ba-card.before .ba-big { color: var(--pill-warn-fg); }
.ba-card.after .ba-big { color: var(--accent); }

/* ------------------------------ Stack 3 couches --------------------------- */
.stack { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.layer { padding: 28px; border: 1px solid var(--border); position: relative; background: var(--surface);
  display: flex; flex-direction: column; }
.layer:not(:last-child) { border-right: 0; }
.layer:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.layer:last-child { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.layer .step { font-family: var(--font-mono); font-size: .8rem; color: var(--overline); }
.layer h3 { margin: 6px 0 2px; display: flex; align-items: center; gap: 8px; }
.layer .role { font-size: .85rem; color: var(--accent-2-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.layer .desc { font-size: .95rem; margin: 12px 0 14px; }
.layer ul.ticks li { position: relative; padding-left: 24px; font-size: .9rem; color: var(--fg); margin-bottom: 8px; }
.layer ul.ticks li::before { content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--pill-success-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230F7A4E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; }
.layer .metric { margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--border); }
.layer .metric .m-num { font-size: 1.6rem; font-weight: 700; color: var(--accent); letter-spacing: -.02em; }
.layer .metric .m-lbl { font-size: .82rem; color: var(--fg-muted); }
.integrations { margin-top: 36px; text-align: center; }
.int-caption { color: var(--overline); font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 18px; }
.int-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 34px; }
.int-logo { height: 26px; display: inline-flex; align-items: center; }
.int-logo img { height: 100%; width: auto; max-width: 130px; object-fit: contain; filter: brightness(0); opacity: .78; }
.int-note { max-width: 70ch; margin: 22px auto 0; font-size: .92rem; color: var(--fg-muted); line-height: 1.6; }
.int-note strong { color: var(--fg); }
.stack-flow { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--overline);
  font-size: .85rem; margin-bottom: 22px; font-weight: 600; }
.stack-flow .sf { display: inline-flex; align-items: center; gap: 8px; }
.stack-flow .arrow { color: var(--accent-2); }

/* ----------------------------- Preuves clients ---------------------------- */
.transform-card { text-align: left; }
.transform-card .brand-line { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; height: 30px; }
.transform-card .brand-line img { height: 24px; width: auto; object-fit: contain; }
.transform-card .brand-line .brand-mark { width: 24px; height: 24px; border-radius: 6px; object-fit: contain; flex: none; }
.transform-card .brand-name { font-weight: 700; color: var(--fg); }
.transform-flow { display: flex; align-items: baseline; gap: 12px; }
.transform-flow .from { font-family: var(--font-mono); color: var(--fg-muted); font-size: 1.1rem; }
.transform-flow .to { font-family: var(--font-mono); color: var(--accent); font-size: 2rem; font-weight: 700; letter-spacing: -.02em; }
.transform-flow .ar { color: var(--accent-2); font-size: 1.3rem; }
.transform-card .cap { font-size: .85rem; color: var(--fg-muted); margin-top: 8px; }

/* --------------------------- Section IA (sombre) -------------------------- */
.dark {
  background: var(--accent);
  background-image: radial-gradient(70% 120% at 80% 0%, rgba(23,195,206,.20), transparent 55%),
                    radial-gradient(50% 90% at 0% 100%, rgba(23,195,206,.10), transparent 60%);
  color: #EFF3F4;
}
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark p, .dark .lead { color: #B9C3E0; }
.dark .overline { color: #7f8dc0; }
.dark .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.14); }
.dark .card h3, .dark .card h4 { color: #fff; }
.dark .card p { color: #B9C3E0; }
.ai-trend { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 8px; }
.ai-year { border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: 22px; background: rgba(255,255,255,.03); }
.ai-year .yr { font-family: var(--font-mono); font-size: .82rem; color: #7f8dc0; }
.ai-year .pct { font-size: 2.4rem; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.ai-year .track { height: 8px; border-radius: 4px; background: rgba(255,255,255,.10); margin-top: 10px; overflow: hidden; }
.ai-year .track > span { display: block; height: 100%; background: linear-gradient(90deg,var(--accent-2),#5FBDE8); border-radius: 4px; }
.dark .btn-secondary { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.24); }
.dark .btn-secondary:hover { background: rgba(255,255,255,.12); }

/* Démo animée Augur (section IA sombre) */
.ia-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; margin-top: 8px; }
.ia-split .ai-trend { grid-template-columns: 1fr; margin-top: 0; }
.augur-demo { border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04); padding: 20px; }
.ad-head { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.ad-badge { font-weight: 700; font-size: .78rem; color: #062A3A;
  background: linear-gradient(135deg, var(--accent-2), #5FBDE8); padding: 3px 11px; border-radius: 9999px; }
.ad-sub { color: #7f8dc0; font-size: .82rem; }
.ad-msg { display: flex; gap: 10px; }
.ad-q { justify-content: flex-end; margin-bottom: 14px; }
.ad-q p { margin: 0; background: rgba(255,255,255,.10); color: #fff; padding: 10px 14px;
  border-radius: 14px 14px 4px 14px; font-size: .9rem; max-width: 82%; opacity: 0; }
.ad-ai { width: 28px; height: 28px; border-radius: 50%; flex: none; align-self: flex-start;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.ad-typing { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; opacity: 0; }
.ad-typing .dots { display: inline-flex; gap: 5px; background: rgba(255,255,255,.10); padding: 11px 15px; border-radius: 12px; }
.ad-typing .dots i { width: 6px; height: 6px; border-radius: 50%; background: #9fb0e0; }
.ad-a { opacity: 0; }
.ad-bubble { background: rgba(23,195,206,.10); border: 1px solid rgba(23,195,206,.30);
  border-radius: 4px 14px 14px 14px; padding: 12px 15px; max-width: 90%; }
.ad-bubble p { margin: 0; color: #EAF3F7; font-size: .9rem; line-height: 1.5; }
.ad-bubble strong { color: #fff; }
.ad-src { margin-top: 8px; color: #7FBDDA; font-size: .75rem; display: flex; align-items: center; gap: 6px; }
/* séquence déclenchée à l'apparition */
.augur-demo.in .ad-q p { animation: adIn .5s var(--ease) forwards .2s; }
.augur-demo.in .ad-ai { animation: adPulse 2.4s ease-in-out infinite; }
.augur-demo.in .ad-typing { animation: adFade .3s ease forwards .9s, adHide 0s linear forwards 2.7s; }
.augur-demo.in .ad-typing .dots i { animation: adBounce 1.2s ease-in-out infinite; }
.augur-demo.in .ad-typing .dots i:nth-child(2) { animation-delay: .15s; }
.augur-demo.in .ad-typing .dots i:nth-child(3) { animation-delay: .3s; }
.augur-demo.in .ad-a { animation: adIn .55s var(--ease) forwards 2.7s; }
@keyframes adIn { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
@keyframes adFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes adHide { to { opacity: 0; height: 0; margin: 0; overflow: hidden; } }
@keyframes adBounce { 0%, 60%, 100% { transform: translateY(0); opacity: .55; } 30% { transform: translateY(-5px); opacity: 1; } }
@keyframes adPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(23,195,206,.45); } 50% { box-shadow: 0 0 0 8px rgba(23,195,206,0); } }
@media (prefers-reduced-motion: reduce) {
  .augur-demo .ad-q p, .augur-demo .ad-a { opacity: 1; }
  .augur-demo .ad-typing { display: none; }
}

/* --------------------------------- Audiences ------------------------------ */
.aud-tabs { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--border);
  border-radius: 9999px; background: var(--surface); margin: 0 auto 34px; }
.aud-tab { border: 0; background: none; padding: 9px 18px; border-radius: 9999px; font-weight: 600;
  font-size: .92rem; color: var(--fg-muted); transition: all var(--dur-fast) var(--ease); }
.aud-tab[aria-selected="true"] { background: var(--accent); color: #fff; }
.aud-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.aud-card { display: flex; flex-direction: column; }
.aud-card .aud-ic { width: 44px; height: 44px; border-radius: var(--radius-md); display: grid; place-items: center;
  background: var(--bg-subtle); border: 1px solid var(--border); color: var(--accent); margin-bottom: 16px; }
.aud-card h3 { font-size: 1.15rem; }
.aud-card .hook { color: var(--accent); font-weight: 600; margin: 10px 0; font-size: 1rem; }
.aud-card ul.pains { margin: 6px 0 18px; }
.aud-card ul.pains li { font-size: .9rem; color: var(--fg-muted); padding-left: 18px; position: relative; margin-bottom: 8px; }
.aud-card ul.pains li::before { content: "›"; position: absolute; left: 0; color: var(--accent-2-dark); font-weight: 700; }
.aud-card .aud-cta { margin-top: auto; }
.aud-panel[hidden] { display: none; }

/* ---------------------------------- FAQ ----------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 8px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 1.05rem; font-weight: 600; color: var(--fg); }
.faq-q .ic { flex: none; width: 22px; height: 22px; position: relative; transition: transform var(--dur-fast) var(--ease); }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-q .ic::before { top: 10px; left: 3px; right: 3px; height: 2px; }
.faq-q .ic::after { left: 10px; top: 3px; bottom: 3px; width: 2px; transition: opacity var(--dur-fast) var(--ease); }
.faq-item[open] .faq-q .ic::after { opacity: 0; }
.faq-a { padding: 0 8px 22px; color: var(--fg-muted); font-size: .98rem; line-height: 1.6; max-width: 70ch; }
details.faq-item > summary { list-style: none; cursor: pointer; }
details.faq-item > summary::-webkit-details-marker { display: none; }

/* --------------------------- Micro-réassurances --------------------------- */
.reassure-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.reassure {
  display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: var(--fg);
  background: var(--surface); border: 1px solid var(--border); border-radius: 9999px; padding: 8px 14px;
}
.reassure svg { color: var(--accent-2-dark); }

/* --------------------------------- CTA band ------------------------------- */
.cta-band { text-align: center; }
.cta-band .container { max-width: 780px; }
.cta-band h2 { margin-bottom: 18px; }
.cta-figure { display: inline-flex; align-items: center; gap: 16px; margin: 0 auto 28px; text-align: left;
  padding: 16px 22px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); background: rgba(255,255,255,.05); max-width: 560px; }
.cta-figure .cf-num { font-size: 2.6rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; flex: none;
  background: linear-gradient(135deg, var(--accent-2), #5FBDE8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-figure .cf-txt { color: #B9C3E0; font-size: .95rem; line-height: 1.5; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* --------------------------------- Footer --------------------------------- */
.footer { background: var(--bg-subtle); border-top: 1px solid var(--border); padding-block: 56px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
.footer h5 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--overline); margin-bottom: 14px; }
.footer a:not(.btn) { color: var(--fg-muted); font-size: .92rem; display: inline-block; padding: 4px 0; transition: color var(--dur-fast); }
.footer a:not(.btn):hover { color: var(--accent); }
.footer .about .btn { margin-top: 6px; }
.footer .about p { font-size: .92rem; margin: 12px 0; max-width: 34ch; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.footer-bottom p { font-size: .85rem; }

/* ------------------------------ Widget produit ---------------------------- */
.widget-wrap { max-width: 900px; margin-inline: auto; }
.rw { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: 30px 32px; }
.rw-head { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.2rem; letter-spacing: -0.03em; }
.rw-score { display: flex; align-items: flex-end; gap: 18px; margin-top: 22px; }
.rw-score .big { font-size: 3.4rem; font-weight: 700; letter-spacing: -0.03em; line-height: .9; color: var(--fg); font-family: var(--font-mono); }
.rw-score .meta { padding-bottom: 4px; }
.rw-score .stars { font-size: 1.15rem; }
.rw-score .based { color: var(--fg-muted); font-size: .92rem; margin-top: 4px; }
.rw-score .based strong { color: var(--fg); }
.rw hr { border: 0; border-top: 1px solid var(--border); margin: 22px 0; }
.rw-summary { display: flex; gap: 16px; }
.rw-summary .rail { width: 3px; border-radius: 2px; background: var(--fg); flex: none; align-self: stretch; }
.rw-summary .ov { font-size: .72rem; font-weight: 700; letter-spacing: .1em; color: var(--overline); text-transform: uppercase; }
.rw-summary p { color: var(--fg); font-size: 1rem; line-height: 1.55; margin-top: 8px; }
.rw-ask { margin: 24px 0; background: #111214; color: #fff; border-radius: var(--radius-lg); padding: 22px; text-align: center; }
.rw-ask .t { font-size: 1.25rem; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.rw-ask .s { color: #b7bcc4; font-size: .88rem; margin-top: 6px; }
.rw-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rw-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; }
.rw-card .top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.rw-card .sc { font-family: var(--font-mono); font-weight: 700; color: var(--fg); }
.rw-card .who { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin: 12px 0 8px; }
.rw-card .who .nm { font-weight: 600; color: var(--fg); }
.rw-card .who .dt { color: var(--overline); font-size: .8rem; font-family: var(--font-mono); }
.rw-card p { font-size: .9rem; color: var(--fg); line-height: 1.5; }
.rw-verif { display: inline-flex; align-items: center; gap: 4px; font-size: .72rem; font-weight: 600;
  color: var(--pill-success-fg); background: var(--pill-success-bg); border-radius: 9999px; padding: 3px 8px; white-space: nowrap; }
.rw-dots { display: flex; gap: 6px; justify-content: center; margin: 18px 0 4px; }
.rw-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border); }
.rw-dots span.on { background: var(--fg); width: 20px; border-radius: 4px; }
.rw-foot { text-align: center; color: var(--fg-muted); font-size: .85rem; margin-top: 16px; }
.rw-foot .pw { font-weight: 700; letter-spacing: -0.02em; }

/* Onglets de format de widget */
.rw-tabs { display: flex; width: max-content; max-width: 100%; gap: 4px; margin: 0 auto 22px; padding: 4px;
  background: var(--bg-subtle); border: 1px solid var(--border); border-radius: 9999px; justify-content: center; }
.rw-tab { border: 0; background: transparent; font: inherit; font-size: .9rem; font-weight: 600; color: var(--fg-muted);
  padding: 9px 20px; border-radius: 9999px; cursor: pointer; transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.rw-tab:hover { color: var(--fg); }
.rw-tab.is-active { background: var(--surface); color: var(--fg); box-shadow: var(--shadow-sm); }
.rw-panel { display: none; }
.rw-panel.is-active { display: block; }

/* Format synthèse : points forts / points faibles */
.rw-aspects { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 24px 0 4px; }
.rw-asp-h { display: flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 14px; }
.rw-asp-h .ic { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px;
  border-radius: 50%; font-size: .8rem; line-height: 1; }
.rw-asp-h.pos { color: var(--pill-success-fg); }
.rw-asp-h.pos .ic { background: var(--pill-success-bg); }
.rw-asp-h.neg { color: var(--fg-muted); }
.rw-asp-h.neg .ic { background: var(--bg-subtle); color: var(--fg-muted); }
.rw-bar { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 12px; margin-bottom: 12px; }
.rw-bar .lb { font-size: .9rem; color: var(--fg); }
.rw-bar .pc { font-size: .82rem; color: var(--fg-muted); text-align: right; }
.rw-bar .track { grid-column: 1 / -1; height: 6px; border-radius: 3px; background: var(--bg-subtle); overflow: hidden; }
.rw-bar .fill { display: block; height: 100%; border-radius: 3px; }
.rw-bar .fill.pos { background: var(--accent-2-dark); }
.rw-bar .fill.neg { background: var(--neutral, #CFCFCF); }

/* Format grille : en-tête avis + tri + masonry */
.rw-reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.rw-reviews-head .rrh-t { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--overline); }
.rrh-filters { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.rrh-f { font-size: .8rem; color: var(--fg-muted); border: 1px solid var(--border); border-radius: 9999px; padding: 4px 12px; }
.rrh-f.is-active { color: var(--fg); border-color: var(--fg); font-weight: 600; }
.rw-grid { columns: 3; column-gap: 14px; }
.rw-grid .rw-card { break-inside: avoid; margin-bottom: 14px; }

@media (max-width: 720px) {
  .rw-cards { grid-template-columns: 1fr; }
  .rw { padding: 22px 18px; }
  .rw-score .big { font-size: 2.6rem; }
  .rw-aspects { grid-template-columns: 1fr; gap: 20px; }
  .rw-grid { columns: 1; }
  .rw-tabs { width: 100%; }
  .rw-tab { flex: 1; padding: 9px 10px; }
}
@media (max-width: 960px) and (min-width: 721px) {
  .rw-grid { columns: 2; }
}

/* --------------------------- Scroll reveal / motion ----------------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* -------------------------------- Responsive ------------------------------ */
@media (max-width: 960px) {
  .nav-links, .nav .desktop-only { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; width: 40px; height: 40px;
    border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; }
  .mobile-menu { display: none; position: fixed; inset: var(--nav-h) 0 auto 0; background: #fff;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 12px 24px 20px; z-index: 99; }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--border); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero .lead { max-width: none; }
  .stack { grid-template-columns: 1fr; }
  .layer { border-right: 1px solid var(--border) !important; }
  .layer:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .layer:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .layer:not(:last-child) { border-bottom: 0; }
  .grid-4, .stat-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .aud-cols, .grid-3 { grid-template-columns: 1fr; }
  .ba-grid, .fiche-compare { grid-template-columns: 1fr; }
  .fiche-vs { transform: rotate(90deg); justify-self: center; }
  .ai-trend { grid-template-columns: 1fr; }
  .ia-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .btn-lg { white-space: normal; text-align: center; max-width: 100%; }
  .grid-2, .grid-4, .grid-3, .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding-inline: 18px; }
}

@media (max-width: 560px) {
  .nav-cta .btn-primary { display: none; }
}

/* ------------------------------ Language switch --------------------------- */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; padding: 2px;
  border: 1px solid var(--border); border-radius: 9999px; background: var(--surface); flex: none; }
.lang-switch .lang-opt { font-size: .78rem; font-weight: 700; letter-spacing: .03em; color: var(--fg-muted);
  padding: 5px 10px; border-radius: 9999px; line-height: 1; transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.lang-switch .lang-opt:hover { color: var(--fg); }
.lang-switch .lang-opt.is-active { background: var(--accent); color: #fff; }
.lang-switch .lang-opt.is-active:hover { color: #fff; }
/* Variante footer (fond bg-subtle) */
.footer .lang-switch { background: var(--surface); }
/* Switch dans le menu mobile */
.mobile-menu .lang-switch { margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
