:root {
  --bg: #08080b;
  --bg-soft: #111116;
  --panel: rgba(22, 22, 28, 0.74);
  --panel-strong: rgba(31, 31, 38, 0.94);
  --text: #f5f3ef;
  --muted: #a8a2a0;
  --line: rgba(255, 255, 255, 0.12);
  --red: #ff0033;
  --red-2: #b90028;
  --gold: #f3b65b;
  --black: #030305;
  --white: #ffffff;
  --radius: 8px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 0, 51, 0.24), transparent 28rem),
    radial-gradient(circle at 86% 14%, rgba(243, 182, 91, 0.13), transparent 24rem),
    linear-gradient(180deg, #08080b 0%, #0d0d12 45%, #070708 100%);
  font-family: "Cabinet Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.overflow-guard {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.section-pad {
  padding: 9rem clamp(1.25rem, 4vw, 4rem);
}

.nav-shell {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 2rem), 1180px);
  min-height: 62px;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 11, 0.66);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand,
.nav-links,
.nav-cta,
.button,
.text-link {
  font-weight: 800;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-left: 1rem;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  background: url("logo.png") center / contain no-repeat;
  filter: drop-shadow(0 0 18px rgba(255, 0, 51, 0.55));
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: end;
}

.lang-switch {
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
  font-size: 0.82rem;
}

.lang-switch a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color 180ms ease, background 180ms ease;
}

.lang-switch a:hover {
  color: var(--white);
}

.lang-switch a.active {
  color: var(--white);
  background: var(--red);
}

.nav-cta {
  padding: 0.88rem 1.1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 40px rgba(255, 0, 51, 0.3);
}

.hero {
  position: relative;
  padding-top: 9rem;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 4% -16% auto auto;
  z-index: -1;
  width: 46rem;
  height: 46rem;
  content: "";
  background: radial-gradient(circle, rgba(255, 0, 51, 0.26), transparent 66%);
  filter: blur(20px);
}

.hero-centered {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-centered h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(3.2rem, 6.4vw, 6.6rem);
}

.hero-centered .kicker {
  justify-content: center;
}

.hero-centered .hero-lede {
  margin-inline: auto;
}

.hero-centered .hero-actions,
.hero-centered .hero-trust,
.hero-centered .hero-ai {
  justify-content: center;
}

/* Demo section right under the hero */
.demo-section {
  padding-top: 2rem;
}

.section-intro.narrow.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.demo-stage {
  position: relative;
  max-width: 1040px;
  margin: 3rem auto 0;
}

/* AI compatibility chips */
.hero-ai {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-ai li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d5d0cd;
  font-size: 0.86rem;
  font-weight: 700;
}

.ai-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--gold);
}

.hero-langs {
  margin: 1.6rem auto 0;
  max-width: 660px;
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--muted);
}
.hero-centered .hero-langs {
  text-align: center;
}
.hero-langs-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d5d0cd;
}

.ai-gpt { background: #10a37f; }
.ai-claude { background: #d97757; }
.ai-gemini { background: #4285f4; }
.ai-plx { background: #20b8cd; }
.ai-grok { background: #e7e7e7; }

.kicker,
.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow-lg {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1120px;
  margin-bottom: 1.4rem;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  line-height: 0.87;
  font-weight: 900;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 5.9rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.03em;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hl {
  color: var(--red);
  white-space: nowrap;
}

.hl-green {
  color: #2fd47a;
  white-space: nowrap;
}

.inline-image {
  display: inline-block;
  width: clamp(5.2rem, 10vw, 9.6rem);
  height: clamp(2.8rem, 5vw, 4.9rem);
  margin: 0 0.18em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: url("assets/workflow.png") center / cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 22px 52px rgba(0, 0, 0, 0.38);
  vertical-align: middle;
  filter: contrast(1.15) saturate(0.9);
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 2rem;
  color: #d5d0cd;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 1rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 22px 54px rgba(255, 0, 51, 0.28);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.hero-window {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.55);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.window-dots {
  display: inline-flex;
  gap: 0.4rem;
}

.window-dots span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.window-dots span:first-child { background: #ff5f57; }
.window-dots span:nth-child(2) { background: #febc2e; }
.window-dots span:nth-child(3) { background: #28c840; }

.window-url {
  flex: 1;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.demo-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 8, 11, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-pop {
  position: absolute;
  bottom: -1.4rem;
  left: -1.4rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-strong);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  animation: floaty 4.5s ease-in-out infinite;
}

.pop-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(47, 212, 122, 0.16);
  color: #2fd47a;
  font-weight: 900;
}

.pop-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.2;
}

.pop-text span {
  color: var(--muted);
  font-size: 0.8rem;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.rec-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 0, 51, 0.9);
  animation: pulse 2.2s infinite;
}

.hero-window img,
.card-media img,
.price-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 700ms ease;
}

.hero-window:hover img,
.group-card:hover img,
.price-media:hover img {
  transform: scale(1.05);
}

.marquee-band {
  display: grid;
  gap: 0.65rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.marquee-row {
  display: flex;
  width: max-content;
  gap: 0.75rem;
  animation: marquee 34s linear infinite;
}

.marquee-row.reverse {
  animation-direction: reverse;
  animation-duration: 42s;
}

.marquee-row span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #d9d5d1;
  background: rgba(255, 255, 255, 0.045);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 900;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: 2rem;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto 3rem;
}

.section-intro.narrow {
  display: block;
  max-width: 820px;
  margin-left: 0;
}

.section-intro p:last-child {
  margin-bottom: 0.4rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, auto);
  grid-auto-flow: dense;
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: clamp(1.1rem, 2vw, 1.65rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), transparent),
    var(--panel-strong);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  align-content: end;
  min-height: 520px;
  padding: 0;
}

.compact-card {
  grid-column: span 1;
  grid-row: span 1;
}

.wide-card {
  grid-column: span 2;
  grid-row: span 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.hot {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 0, 51, 0.36), transparent 18rem),
    var(--panel-strong);
}

.card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.82) 100%);
}

.card-copy {
  position: relative;
  z-index: 1;
  padding: clamp(1.2rem, 2.4vw, 2rem);
}

.text-link {
  flex: 0 0 auto;
  color: var(--white);
  border-bottom: 2px solid var(--red);
}

.pin-story {
  max-width: var(--max);
  margin: 0 auto;
}

.pin-title {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.steps-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 88px rgba(0, 0, 0, 0.28);
}

/* Connecteur entre les étapes (flèche) */
.step-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -1.05rem;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 900;
  z-index: 2;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--gold);
  color: #0b0b0b;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.step-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step-body h3 {
  margin: 0.5rem 0 0.6rem;
}

.step-body p {
  margin: 0;
}

.text-reveal {
  max-width: 1240px;
  margin: 0 auto;
}

.reveal-copy {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 6.7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.reveal-copy .word {
  opacity: 0.14;
}

.accordion-strip {
  display: flex;
  min-height: 460px;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.accordion-panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: end;
  min-width: 0;
  padding: clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 0%, rgba(255, 0, 51, 0.18), transparent 18rem),
    var(--panel-strong);
  cursor: pointer;
  transition: flex 520ms cubic-bezier(0.22, 1, 0.36, 1), background 520ms ease;
}

.accordion-panel:last-child {
  border-right: 0;
}

.accordion-panel.active,
.accordion-panel:hover {
  flex: 2.25;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 0, 51, 0.28), transparent 24rem),
    rgba(31, 31, 38, 0.96);
}

.accordion-panel p {
  max-width: 520px;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: 1px;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
}

.price-media,
.price-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-strong);
}

.price-media {
  min-height: 620px;
  border-radius: var(--radius) 0 0 var(--radius);
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.price-copy {
  color: #d8d4d0;
}

.price-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.3rem 0 2rem;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  gap: 0.75rem;
  color: #e8e4df;
  font-size: 1.05rem;
}

.price-list li::before {
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.7);
  content: "";
}

.full {
  width: 100%;
}

.microcopy {
  margin: 0.85rem 0 0;
  color: #8d8885;
  font-size: 0.92rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem clamp(1.25rem, 4vw, 4rem) 4rem;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0.65rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-weight: 800;
}

/* ---------- Hero trust + pulse ---------- */
.pulse-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.55);
  vertical-align: middle;
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.55); }
  70% { box-shadow: 0 0 0 0.6rem rgba(255, 0, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0); }
}

.kicker {
  display: inline-flex;
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-trust strong {
  color: var(--text);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

/* ---------- Stats band ---------- */
.stats-band {
  padding: 2.4rem clamp(1.25rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.7rem clamp(1rem, 2vw, 2rem);
  background: var(--panel-strong);
}

.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

/* ---------- Problem / compare ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.compare-card {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
}

.compare-card .compare-tag {
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-card.before .compare-tag {
  color: var(--muted);
}

.compare-card.after {
  border-color: rgba(255, 0, 51, 0.4);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 0, 51, 0.18), transparent 22rem),
    var(--panel-strong);
}

.compare-card.after .compare-tag {
  color: var(--red);
}

.compare-card ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 1.9rem;
  color: #d8d4d0;
  font-size: 1.06rem;
  line-height: 1.4;
}

.compare-card.before li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #6f6a68;
  font-weight: 900;
}

.compare-card.after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.testi-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent),
    var(--panel-strong);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.testi-card p {
  flex: 1;
  margin: 0;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.45;
}

.testi-card footer {
  color: var(--muted);
  font-size: 0.96rem;
}

.testi-card footer strong {
  color: var(--text);
}

/* ---------- Pricing extras ---------- */
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.price-big {
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.price-period {
  color: var(--muted);
  font-size: 1.3rem;
  font-weight: 800;
}

.price-sub {
  margin-bottom: 0.5rem;
  color: #d8d4d0;
}

.price-sub strong {
  color: var(--text);
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 0, 51, 0.16);
  color: var(--red);
  font-weight: 900;
}

/* ---------- Compare pricing table ---------- */
.compare-pricing .accent {
  color: var(--red);
}

/* Surlignage doré des infos clés dans les gros titres */
.hl {
  color: var(--gold);
}

.vs-table {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
}

.vs-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 0.8fr;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem clamp(1.1rem, 2.4vw, 2rem);
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.vs-row:last-child {
  border-bottom: 0;
}

.vs-head {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vs-name {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
}

.vs-highlight {
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 0, 51, 0.22), transparent 30rem),
    rgba(255, 0, 51, 0.06);
  box-shadow: inset 3px 0 0 var(--red);
  font-size: 1.12rem;
}

.vs-highlight strong {
  color: #fff;
}

.vs-row .yes {
  color: var(--gold);
  font-weight: 800;
}

.vs-row .no {
  color: #6f6a68;
  font-weight: 800;
}

.vs-note {
  max-width: 1080px;
  margin: 1.4rem auto 0;
  color: var(--muted);
  text-align: center;
}

.vs-note strong {
  color: var(--text);
}

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
}

.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  border: 1px solid rgba(255, 0, 51, 0.32);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 0, 51, 0.22), transparent 26rem),
    var(--panel-strong);
}

.final-cta-inner .button {
  margin-top: 1.4rem;
}

.final-microcopy {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1060px) {
  .section-pad {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .pricing,
  .section-intro {
    grid-template-columns: 1fr;
  }

  .steps-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .step-item:not(:last-child)::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-pop {
    left: 1rem;
    bottom: 1rem;
  }

  .pin-title {
    max-width: 760px;
  }

  .price-media,
  .price-card {
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    border-radius: 24px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    padding-left: 0.7rem;
  }

  .nav-cta {
    padding: 0.8rem 0.95rem;
    font-size: 0.92rem;
  }

  h1,
  .hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .steps-flow {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .compact-card,
  .wide-card {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-large {
    min-height: 480px;
  }

  .wide-card {
    display: grid;
  }

  .accordion-strip {
    display: grid;
    min-height: auto;
  }

  .accordion-panel,
  .accordion-panel.active,
  .accordion-panel:hover {
    flex: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-media {
    min-height: 390px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vs-head {
    display: none;
  }

  .vs-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
  }

  .vs-row .vs-name {
    grid-column: 1 / -1;
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
  }

  .vs-row [role="cell"]:not(.vs-name)::before {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .vs-row [role="cell"]:nth-child(2)::before { content: "Prix / mois"; }
  .vs-row [role="cell"]:nth-child(3)::before { content: "Prix / an"; }
  .vs-row [role="cell"]:nth-child(4)::before { content: "Multi-IA"; }
  .vs-row [role="cell"]:nth-child(5)::before { content: "Collage auto"; }

  .footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
