/* ============================================================
   Olvio — paid-ads conversion landing page
   File: ui_kits/marketing/landing-ads.css
   Companion to landing-ads.html.

   Design intent: single-goal landing optimized for paid traffic
   (Meta / Google / LinkedIn → Shopify install). Mixes the
   brand-dark hero with light credibility sections, then closes
   with a dark high-pressure CTA.
   ============================================================ */

/* Tokens are inherited from ../../colors_and_type.css which the
   HTML imports first. This file only adds layout + landing-
   specific components. */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0; padding: 0;
  background: #FDFCFF;
  color: var(--olvio-ink, #0E0C1B);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.l-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   Sticky install bar — visible the whole scroll, with anchor nav
   + persistent install CTA. Three-column grid (logo | nav | cta).
   ============================================================ */
/* ============================================================
   Sticky header — classic full-width bar.
   - At top of page: fully transparent over the dark hero.
   - Once the user has scrolled past the hero edge, JS adds the
     class `is-scrolled` which switches the bar to a white,
     lightly-shadowed look with dark text.
   The brand mint logo and the violet CTA stay constant — only
   the bar background and the nav-link color flip on scroll.
   ============================================================ */
.l-stick {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  color: #F0EEF8;
  transition: background .25s ease, border-color .25s ease,
              box-shadow .25s ease, color .25s ease;
}
.l-stick.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: #ECE9F8;
  box-shadow: 0 6px 24px -16px rgba(14, 12, 27, 0.18);
  color: #0E0C1B;
}
.l-stick-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 14px 24px;
  /* 3 equal columns so the centered nav stays truly centered in
     the viewport, regardless of logo vs CTA width. */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
.l-stick-brand { justify-self: start; }
.l-stick-nav   { justify-self: center; }
.l-stick-cta   { justify-self: end; }
.l-stick-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: inherit;
  transition: opacity .15s;
}
.l-stick-brand:hover { opacity: 0.85; color: inherit; }
/* Brand logo — show mint variant by default (dark hero), swap to
   light variant once header is scrolled (over a light bg). */
.l-stick-brand img { height: 28px; width: auto; display: block; }
.l-stick-brand img.l-stick-brand-light { display: none; }
.l-stick.is-scrolled .l-stick-brand img.l-stick-brand-dark { display: none; }
.l-stick.is-scrolled .l-stick-brand img.l-stick-brand-light { display: block; }

.l-stick-nav {
  display: flex; align-items: center; gap: 28px;
  justify-self: center;
  font-size: 14px;
}
.l-stick-nav a {
  color: rgba(240, 238, 248, 0.78);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
  padding: 4px 2px;
}
.l-stick-nav a:hover { color: #fff; }
.l-stick.is-scrolled .l-stick-nav a { color: #4a4866; }
.l-stick.is-scrolled .l-stick-nav a:hover { color: #0E0C1B; }

.l-stick-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #7B3FE4; color: #fff;
  padding: 9px 18px;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.1px;
  text-decoration: none;
  box-shadow: 0 6px 18px -6px rgba(123, 63, 228, 0.55);
  transition: filter .15s, transform .15s;
}
.l-stick-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #fff;
}
.l-stick-cta-shopify {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.l-stick-cta-shopify svg { display: block; }

/* ============================================================
   Hero — dark, brand-loud, single CTA
   ============================================================ */
.l-hero {
  position: relative;
  background:
    radial-gradient(ellipse 1000px 700px at 20% 10%, rgba(123, 63, 228, 0.22), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 80%, rgba(0, 214, 143, 0.08), transparent 60%),
    #08060F;
  color: #F0EEF8;
  padding: 64px 24px 96px;
  overflow: hidden;
}
.l-hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px; align-items: center;
}
.l-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: #A678FF;
  background: rgba(166, 120, 255, 0.10);
  border: 1px solid rgba(166, 120, 255, 0.25);
  padding: 6px 12px; border-radius: 9999px;
  margin-bottom: 28px;
}
.l-eyebrow::before {
  display: none;
}
@keyframes l-pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 4px rgba(0,214,143,0.18); }
  50%     { opacity: 0.55; box-shadow: 0 0 0 9px rgba(0,214,143,0.06); }
}
.l-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 60px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.05;
  margin: 0 0 22px;
  /* Explicit color override — without it the global `h1 { color: var(--fg1) }`
     rule in colors_and_type.css resolves to #0E0C1B (dark ink) and the
     non-gradient portion of the headline disappears on the dark hero. */
  color: #F0EEF8;
  text-wrap: balance;
}
.l-hero h1 .grad {
  background: linear-gradient(135deg, #F0EEF8 0%, #A678FF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-hero-sub {
  font-size: 19px; line-height: 1.6;
  color: #9694B4; max-width: 540px;
  margin: 0 0 32px;
}
.l-hero-sub strong { color: #F0EEF8; font-weight: 600; }
.l-cta-stack { display: flex; flex-direction: column; gap: 14px; max-width: 460px; margin-bottom: 24px; }
.l-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.l-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #7B3FE4; color: #fff;
  border: none; border-radius: 9999px;
  padding: 16px 28px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(123, 63, 228, 0.40);
  transition: filter .15s, transform .15s, box-shadow .15s;
}
.l-btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 14px 32px rgba(123, 63, 228, 0.50); color: #fff; }
.l-btn-primary:active { transform: translateY(0); }
.l-btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: #F0EEF8;
  border: none; padding: 14px 4px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  cursor: pointer;
  transition: color .15s;
}
.l-btn-ghost:hover { color: #A678FF; }
.l-trust-line {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: #6E6C8A;
}
.l-trust-line span { display: inline-flex; align-items: center; gap: 6px; }
.l-trust-line .check {
  width: 14px; height: 14px; border-radius: 50%;
  background: #00D68F; color: #08060F;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
}
.l-trust-line .stars { color: #FFC93C; letter-spacing: 1px; }

/* ============================================================
   Hero visual — phone mockup with live chat playing
   ============================================================ */
.l-phone-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.l-phone {
  width: 340px;
  background: #08060F;
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 30px 80px rgba(123, 63, 228, 0.35),
    0 60px 120px rgba(8, 6, 15, 0.6);
  transform: perspective(2000px) rotateY(-8deg) rotateX(4deg);
  position: relative;
}
.l-phone::before {
  content: ""; position: absolute; top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 22px; background: #08060F; border-radius: 0 0 14px 14px;
  z-index: 3;
}
.l-phone-screen {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  height: 580px;
  position: relative;
  display: flex; flex-direction: column;
}
.l-phone-status {
  height: 36px; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700; color: #0E0C1B;
  font-family: var(--font-body);
}
.l-phone-status .right { display: flex; gap: 6px; align-items: center; }
.l-phone-status svg { width: 14px; height: 14px; }
.l-phone-header {
  padding: 12px 18px;
  border-bottom: 1px solid #F0EEF8;
  display: flex; align-items: center; gap: 10px;
}
.l-phone-product-img {
  width: 36px; height: 36px; border-radius: 6px;
  background:
    radial-gradient(ellipse at 60% 30%, #f4d27a 0%, #c98c4a 60%, #7a4520 100%);
  flex-shrink: 0;
}
.l-phone-product-info { flex: 1; min-width: 0; }
.l-phone-product-title {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: #0E0C1B; line-height: 1.2;
}
.l-phone-product-price {
  font-size: 12px; color: #6E6C8A; margin-top: 2px;
}
.l-phone-close {
  width: 26px; height: 26px; color: #6E6C8A;
  display: inline-flex; align-items: center; justify-content: center;
}
.l-phone-close svg { width: 16px; height: 16px; }
.l-phone-msgs {
  flex: 1; overflow: hidden; padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.l-bubble {
  font-family: var(--font-body); font-size: 13.5px; line-height: 1.45;
  padding: 9px 13px; border-radius: 12px;
  max-width: 80%;
  animation: l-bubble-in 0.4s cubic-bezier(0.32, 0.72, 0.24, 1) backwards;
}
.l-bubble.user {
  align-self: flex-end;
  background: #7B3FE4; color: #fff;
  border-bottom-right-radius: 4px;
}
.l-bubble.bot {
  align-self: flex-start;
  background: #F7F6FF; color: #0E0C1B;
  border-bottom-left-radius: 4px;
}
.l-bubble.bot strong { font-weight: 700; }
.l-bubble:nth-child(1) { animation-delay: 0.2s; }
.l-bubble:nth-child(2) { animation-delay: 1.2s; }
.l-bubble:nth-child(3) { animation-delay: 2.2s; }
.l-bubble:nth-child(4) { animation-delay: 3.2s; }
@keyframes l-bubble-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.l-phone-atc {
  margin: 0 18px 18px;
  background: #7B3FE4; color: #fff;
  border-radius: 9999px; padding: 12px 16px;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  animation: l-bubble-in 0.4s cubic-bezier(0.32, 0.72, 0.24, 1) backwards;
  animation-delay: 4s;
}
.l-phone-atc svg { width: 14px; height: 14px; }
.l-phone-floating {
  position: absolute; z-index: 5;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px; font-weight: 600; color: #0E0C1B;
  box-shadow: 0 12px 32px rgba(8, 6, 15, 0.25);
  display: flex; align-items: center; gap: 8px;
  animation: l-float 4s ease-in-out infinite;
}
.l-phone-floating .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #00D68F;
  box-shadow: 0 0 0 3px rgba(0,214,143,0.2);
}
.l-floating-top {
  top: 32px; right: -32px;
  animation-delay: 0s;
}
.l-floating-bot {
  bottom: 80px; left: -42px;
  animation-delay: 1.5s;
}
@keyframes l-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ============================================================
   Stat band — runs across full width below hero
   ============================================================ */
.l-stats {
  background: #08060F;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 56px 24px;
  color: #F0EEF8;
}
.l-stats-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  align-items: start;
}
.l-stat-item { padding-right: 16px; }
.l-stat-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.06); }
.l-stat-num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 800;
  letter-spacing: -1.5px; line-height: 1;
  background: linear-gradient(135deg, #F0EEF8 0%, #A678FF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-stat-label {
  font-size: 13px; color: #9694B4; margin-top: 8px;
  line-height: 1.4;
}

/* ============================================================
   Logo wall — credibility
   ============================================================ */
.l-logos {
  background: #FDFCFF; padding: 56px 24px;
  border-bottom: 1px solid #F0EEF8;
}
.l-logos-inner { max-width: 1160px; margin: 0 auto; text-align: center; }
.l-logos-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: #6E6C8A;
  margin-bottom: 28px;
}
.l-logos-row {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 32px; align-items: center;
}
.l-logo-mark {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: #6E6C8A; opacity: 0.7;
  letter-spacing: -0.3px;
  white-space: nowrap; text-align: center;
  transition: opacity .15s;
}
.l-logo-mark:hover { opacity: 1; }
.l-logo-mark .small { font-size: 11px; font-weight: 600; display: block; letter-spacing: 1.5px; text-transform: uppercase; }

/* ============================================================
   Section heads — shared
   ============================================================ */
.l-section { padding: 96px 24px; }
.l-section.light { background: #FDFCFF; }
.l-section.cloud { background: #F7F6FF; }
.l-section.dark {
  background: #08060F; color: #F0EEF8;
}
.l-section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: #7B3FE4;
  margin-bottom: 16px;
}
.l-section.dark .l-section-eyebrow { color: #A678FF; }
.l-section-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -1.2px; line-height: 1.1;
  margin: 0 0 20px;
  text-wrap: balance;
  max-width: 760px;
}
.l-section.dark .l-section-h { color: #F0EEF8; }
.l-section-sub {
  font-size: 18px; line-height: 1.6;
  color: #6E6C8A; max-width: 620px;
  margin: 0 0 56px;
}
.l-section.dark .l-section-sub { color: #9694B4; }

/* ============================================================
   Problem — pain points
   ============================================================ */
.l-problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.l-pain {
  background: #fff;
  border: 1px solid #F0EEF8;
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.l-pain-num {
  font-family: var(--font-body);
  font-size: 12px; color: #A678FF; font-weight: 600;
  margin-bottom: 14px;
}
.l-pain h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; letter-spacing: -0.4px;
  color: #0E0C1B;
  margin: 0 0 10px;
}
.l-pain p {
  font-size: 14px; line-height: 1.6; color: #6E6C8A; margin: 0;
}
.l-pain-stat {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid #F0EEF8;
  font-size: 13px; font-weight: 600; color: #0E0C1B;
}
.l-pain-stat strong { color: #FF5252; }

/* ============================================================
   How it works — 3 steps
   ============================================================ */
.l-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
.l-step {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid #F0EEF8;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.l-step:hover {
  border-color: #7B3FE4;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(123, 63, 228, 0.14);
}
.l-step-num {
  position: absolute;
  top: -14px; left: 28px;
  background: #7B3FE4; color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800;
  box-shadow: 0 4px 12px rgba(123, 63, 228, 0.3);
}
.l-step-time {
  font-family: var(--font-body); font-size: 11px; color: #00D68F;
  margin-bottom: 18px; font-weight: 600;
}
.l-step h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; letter-spacing: -0.4px;
  margin: 0 0 10px;
}
.l-step p {
  font-size: 14px; line-height: 1.6; color: #6E6C8A; margin: 0;
}
.l-step-figure {
  margin-top: 22px;
  background: #F7F6FF;
  border-radius: 12px;
  border: 1px solid #F0EEF8;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 11px; line-height: 1.6;
  color: #6E6C8A;
  min-height: 110px;
  display: flex; flex-direction: column; justify-content: center;
}
.l-step-figure .row { display: flex; justify-content: space-between; gap: 8px; padding: 2px 0; }
.l-step-figure .row b { color: #0E0C1B; font-family: var(--font-body); font-weight: 600; font-size: 12px; }
.l-step-figure .row span { color: #7B3FE4; font-weight: 600; }
.l-step-figure .green { color: #00D68F; }
.l-step-figure .demo-msg {
  background: #fff; border: 1px solid #F0EEF8; border-radius: 8px;
  padding: 8px 10px; font-family: var(--font-body); font-size: 12px;
  color: #0E0C1B; margin-bottom: 4px;
}
.l-step-figure .demo-msg.user {
  background: #7B3FE4; color: #fff; align-self: flex-end;
  text-align: right; max-width: 80%; margin-left: auto;
}

/* ============================================================
   Live demo embed — interactive chat preview
   ============================================================ */
.l-demo {
  background: #FDFCFF;
  border-radius: 24px;
  border: 1px solid #E3E0F5;
  padding: 36px;
  max-width: 920px; margin: 0 auto;
  box-shadow: 0 12px 40px rgba(123, 63, 228, 0.08);
}
.l-demo-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; gap: 16px;
}
.l-demo-head h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  letter-spacing: -0.5px; margin: 0; color: #0E0C1B;
}
.l-demo-head .live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: #00D68F;
  background: rgba(0,214,143,0.10);
  border: 1px solid rgba(0,214,143,0.25);
  padding: 4px 10px; border-radius: 9999px;
}
.l-demo-head .live .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #00D68F;
  animation: l-pulse 1.6s infinite;
}
.l-demo-stage {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.l-demo-product {
  background: #F7F6FF; border-radius: 16px; padding: 28px;
}
.l-demo-product-img {
  width: 100%; aspect-ratio: 4/5; border-radius: 12px;
  background:
    radial-gradient(ellipse at 60% 30%, #f4d27a 0%, #c98c4a 60%, #7a4520 100%);
  margin-bottom: 18px; position: relative; overflow: hidden;
}
.l-demo-product-img::before {
  content: ""; position: absolute; inset: 18%; border-radius: 8px;
  background: linear-gradient(180deg, #f8e3a2 0%, #d8a45a 65%, #6a3b1c 100%);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.25);
}
.l-demo-product-img::after {
  content: ""; position: absolute; left: 50%; top: 32%; transform: translateX(-50%);
  width: 28px; height: 14px; border-radius: 2px; background: #1a1f24;
}
.l-demo-product-vendor {
  font-size: 11px; font-weight: 700; letter-spacing: 1.4px;
  color: #6E6C8A; text-transform: uppercase;
}
.l-demo-product-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: -0.3px; margin: 6px 0;
}
.l-demo-product-price { font-size: 18px; font-weight: 600; color: #0E0C1B; margin-bottom: 16px; }
.l-demo-product-buy {
  width: 100%; padding: 12px; background: #0E0C1B; color: #fff;
  border-radius: 4px; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  text-align: center;
}
.l-demo-widget {
  background: #fff; border-radius: 16px; padding: 24px;
  border: 1px solid #E3E0F5;
  display: flex; flex-direction: column;
  min-height: 420px;
}
.l-demo-widget-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: #7B3FE4; margin-bottom: 6px;
}
.l-demo-widget-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  margin: 0 0 16px;
}
.l-demo-chips { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.l-demo-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #E3E0F5; border-radius: 10px;
  padding: 10px 12px; font-size: 13px; color: #0E0C1B;
  cursor: pointer; transition: all .15s; text-align: left;
}
.l-demo-chip:hover {
  background: #F7F6FF; border-color: #7B3FE4; transform: translateX(2px);
}
.l-demo-chip svg { width: 12px; height: 12px; color: #7B3FE4; flex-shrink: 0; }
.l-demo-input {
  margin-top: auto;
  display: flex; align-items: center; gap: 6px;
  border: 1px solid #E3E0F5; border-radius: 9999px;
  padding: 4px 4px 4px 14px;
  font-size: 13px; color: #6E6C8A;
}
.l-demo-input input {
  border: none; outline: none; background: transparent; flex: 1;
  font-family: inherit; font-size: 13px; padding: 8px 0;
  color: #0E0C1B; min-width: 0;
}
.l-demo-input-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: #7B3FE4; color: #fff; border: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.l-demo-input-btn svg { width: 14px; height: 14px; }

.l-demo-output {
  display: none;
  flex-direction: column; gap: 10px;
  margin-bottom: 16px;
}
.l-demo-output.is-visible { display: flex; }
.l-demo-output .qa-q {
  align-self: flex-end; background: #7B3FE4; color: #fff;
  padding: 9px 13px; border-radius: 12px;
  border-bottom-right-radius: 4px;
  font-size: 13.5px; max-width: 86%;
}
.l-demo-output .qa-a {
  align-self: flex-start;
  background: #F7F6FF; color: #0E0C1B;
  padding: 10px 13px; border-radius: 12px;
  border-bottom-left-radius: 4px;
  font-size: 13.5px; line-height: 1.5; max-width: 86%;
}
.l-demo-output .qa-a strong { color: #5F2BC9; }

/* ============================================================
   Differentiators — 3-up with feature comparison
   ============================================================ */
.l-diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.l-diff {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color .2s, transform .2s;
}
.l-diff:hover {
  border-color: rgba(166,120,255,0.5);
  transform: translateY(-3px);
}
.l-diff-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(123,63,228,0.18);
  color: #A678FF;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.l-diff-ico svg { width: 22px; height: 22px; }
.l-diff h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; letter-spacing: -0.4px;
  color: #F0EEF8;
  margin: 0 0 10px;
}
.l-diff p {
  font-size: 14px; line-height: 1.6; color: #9694B4; margin: 0 0 18px;
}
.l-vs {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06);
}
.l-vs-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.l-vs-row .x, .l-vs-row .o {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
}
.l-vs-row .x { background: rgba(255,82,82,0.2); color: #FF5252; }
.l-vs-row .o { background: rgba(0,214,143,0.2); color: #00D68F; }
.l-vs-row .lbl {
  /* Bumped from #9694B4 \u2014 the negative-comparison row (\u00abChatbot
     g\u00e9n\u00e9rique...\u00bb) was too dim on the dark differentiation section. */
  color: #C7C5DC;
}
.l-vs-row.is-yes .lbl { color: #F0EEF8; font-weight: 500; }

/* ============================================================
   Testimonial / case study — v2: single centered figure with a
   pull-quote above an author block, and a separated 2-stat row
   below. The whole thing reads as one composed testimonial card
   instead of two loosely-juxtaposed columns.
   ============================================================ */
.l-case {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px; align-items: center;
}
.l-case.l-case-centered {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  /* One contained card so the quote + author + metrics read as a
     single unit instead of three loose blocks. */
  background: #FDFCFF;
  border: 1px solid #E3E0F5;
  border-radius: 28px;
  box-shadow: 0 30px 60px -30px rgba(14,12,27,0.12);
  overflow: hidden;
  text-align: center;
}
.l-case-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 56px 56px 40px;
}
.l-case-rating {
  display: inline-flex;
  gap: 4px;
  color: #F2A93B;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}
.l-case-quote-mark {
  width: 36px; height: 36px;
  color: #7B3FE4;
  opacity: 0.5;
  flex-shrink: 0;
}
.l-case-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700; letter-spacing: -0.6px;
  line-height: 1.4; color: #0E0C1B;
  margin: 0;
  text-wrap: pretty;
}
.l-case-quote strong { color: #5F2BC9; font-weight: 700; }
/* Remove the old left-aligned giant smart quote (now replaced by the
   centered SVG mark above). */
.l-case-quote::before { content: none; }
.l-case-author {
  display: inline-flex; align-items: center; gap: 14px;
}
.l-case-avatar {
  /* Centered avatar bumped to 56px — readable but not overpowering
     when the testimonial is laid out as a single centered figure. */
  width: 56px; height: 56px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #FFE4D2 0%, #FFA079 60%, #C2683E 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -6px rgba(194,104,62,0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.l-case-avatar-initial {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: #FDFCFF;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.l-case-avatar::after { content: none; }
.l-case-author-info {
  font-size: 14px;
  display: inline-flex;
  flex-direction: column;
  text-align: left;
}
.l-case-author-name { font-weight: 700; color: #0E0C1B; }
.l-case-author-role { color: #6E6C8A; font-size: 13px; margin-top: 2px; }

.l-case-metrics {
  /* Integrated metrics strip at the bottom of the card — no longer
     a floating pill, but a contained section with a soft separator
     above it. */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 22px 56px;
  border-top: 1px solid #F0EEF8;
  background: #F7F6FF;
  text-align: center;
}
.l-case-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.l-case-metric-divider {
  width: 1px;
  height: 22px;
  background: #E3E0F5;
  align-self: center;
}
.l-case-metric-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #5F2BC9;
  line-height: 1;
}
.l-case-metric-num.mint { color: #00875A; }
.l-case-metric-label {
  font-size: 13px;
  color: #4a4866;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}
.l-case-metric-label small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3px;
  color: #8B89A8;
  margin-top: 2px;
  font-weight: 400;
}

/* ============================================================
   Testimonial — Apyforme. Asymmetric editorial layout: quote +
   featured stat on the left, visual brand card on the right.
   The right card carries an image placeholder, a brand overlay
   on top, and a row of stat chips at the bottom.
   ============================================================ */
.l-tcase {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: stretch;
}

/* ---- LEFT: quote + featured stat ---- */
.l-tcase-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 8px 0;
}
.l-tcase-stars {
  color: #F2A93B;
  font-size: 15px;
  letter-spacing: 3px;
  line-height: 1;
}
.l-tcase-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: #0E0C1B;
  text-wrap: pretty;
}
.l-tcase-author {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.8px;
  color: #6E6C8A;
}
.l-tcase-featured {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid #E3E0F5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.l-tcase-featured-num {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 700;
  letter-spacing: -2.5px;
  color: #0E0C1B;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.l-tcase-featured-label {
  font-size: 14px;
  color: #4a4866;
  font-weight: 500;
  line-height: 1.4;
}
.l-tcase-featured-label small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.3px;
  color: #8B89A8;
  margin-top: 4px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

/* ---- RIGHT: visual brand card ---- */
.l-tcase-right {
  display: flex;
}
.l-tcase-card {
  position: relative;
  width: 100%;
  min-height: 380px;
  border-radius: 22px;
  overflow: hidden;
  background: #2A2418;
  box-shadow: 0 30px 60px -28px rgba(14,12,27,0.35);
  isolation: isolate;
}
/* Placeholder visuel — beige/peach warm gradient with a subtle
   diagonal stripe pattern. Replace with a real photo when ready. */
.l-tcase-card-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 50%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 18px),
    linear-gradient(145deg, #C99B72 0%, #8C6042 60%, #4E3624 100%);
  z-index: 0;
}
.l-tcase-card-image-tag {
  position: absolute;
  right: 14px; bottom: 14px;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.25);
  padding: 4px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* Top-left overlay — brand title, like the reference */
.l-tcase-card-overlay {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.25);
}
.l-tcase-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.1;
}
.l-tcase-card-sub {
  margin-top: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Bottom row of chips — like "Good fit / AI/ML / Enterprise" in the
   reference, but populated with the actual lift numbers. */
.l-tcase-card-foot {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.l-tcase-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #1B1410;
  background: rgba(255,255,255,0.92);
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.l-tcase-chip b {
  font-weight: 700;
  letter-spacing: -0.2px;
}
.l-tcase-chip.is-rating {
  margin-left: auto;
  color: #1B1410;
  background: rgba(255,255,255,0.92);
}
.l-tcase-chip.is-rating svg {
  width: 13px; height: 13px;
  color: #F2A93B;
}

@media (max-width: 920px) {
  .l-tcase { grid-template-columns: 1fr; gap: 32px; }
  .l-tcase-quote { font-size: 18px; }
  .l-tcase-featured-num { font-size: 52px; letter-spacing: -1.8px; }
  .l-tcase-card { min-height: 320px; }
  .l-tcase-card-title { font-size: 26px; }
  .l-tcase-chip { font-size: 11.5px; padding: 6px 10px; }
}

/* ---- Single-testimonial variant (V1) ---------------------------
   Matches the site's existing pattern for #case: section header is
   centered (per the #case.l-section rules elsewhere), so the quote +
   author block follow the same alignment. No decorative chrome — the
   testimonial speaks for itself in the same typography (Plus Jakarta
   Sans display, DM Sans meta) used everywhere else. */
.l-tcase-single {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 0 0;
}
.l-tcase-single .l-tcase-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.45;
  font-weight: 500;
  color: #1B1830;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.l-tcase-single .l-tcase-author {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.l-tcase-author-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #1B1830;
  line-height: 1.2;
}
.l-tcase-author-meta {
  font-size: 13px;
  color: #6E6C8A;
  line-height: 1.3;
}
@media (max-width: 920px) {
  .l-tcase-single .l-tcase-quote { font-size: 20px; }
}

/* ============================================================
   Pricing tease — 3 plans, BYOK callout
   ============================================================ */
.l-price-byok {
  background: #F0EAFF; border: 1px solid #D8C8FF;
  border-radius: 14px; padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 36px;
}
.l-price-byok .badge {
  background: #7B3FE4; color: #fff;
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; flex-shrink: 0;
}
.l-price-byok p { font-size: 14px; line-height: 1.5; color: #2d1a5e; margin: 0; }
.l-price-byok strong { color: #2d1a5e; }
.l-plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.l-plan {
  background: #fff;
  border: 1px solid #F0EEF8;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.l-plan.is-featured {
  border-color: #7B3FE4;
  box-shadow: 0 0 0 1px #7B3FE4, 0 12px 32px rgba(123,63,228,0.18);
  transform: scale(1.02);
}
.l-plan-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #7B3FE4; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px; border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(123,63,228,0.3);
}
.l-plan h3 {
  /* Plan names are a label, not the headline — the price below is
     what matters. Smaller + uppercased + tracked makes them recede
     into a "tag" role. */
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #7B3FE4;
  margin: 0 0 14px;
}
.l-plan-sub { font-size: 13px; color: #6E6C8A; margin: 0 0 24px; }
.l-plan-price {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 800; letter-spacing: -1.5px;
  color: #0E0C1B; line-height: 1; margin-bottom: 4px;
}
.l-plan-price small {
  font-size: 14px; font-weight: 500; color: #6E6C8A;
  letter-spacing: 0;
}
.l-plan-period { font-size: 12px; color: #6E6C8A; margin-bottom: 24px; }
.l-plan-feats { list-style: none; padding: 0; margin: 0 0 28px; font-size: 14px; }
.l-plan-feats li {
  padding: 8px 0 8px 24px; position: relative;
  color: #0E0C1B; line-height: 1.45;
}
.l-plan-feats li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7l3 3 7-7' fill='none' stroke='%237B3FE4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat;
  background-size: contain;
}
.l-plan-cta {
  /* margin-top: auto pushes the CTA to the bottom of each card so
     all three buttons align horizontally across the grid (cards have
     equal height via grid stretch, but content heights differ — the
     Scale plan has more list items). The list's own margin-bottom
     (28px on .l-plan-feats) guarantees a minimum gap above the CTA
     even when the card is filled. */
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 20px; border-radius: 9999px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  border: 1px solid #E3E0F5; background: #fff; color: #0E0C1B;
  cursor: pointer; transition: all .15s;
  width: 100%;
}
.l-plan-cta:hover { background: #F7F6FF; border-color: #7B3FE4; color: #5F2BC9; }
.l-plan.is-featured .l-plan-cta {
  background: #7B3FE4; color: #fff; border-color: #7B3FE4;
  box-shadow: 0 8px 20px rgba(123,63,228,0.3);
}
.l-plan.is-featured .l-plan-cta:hover { background: #5F2BC9; border-color: #5F2BC9; transform: translateY(-1px); }
.l-pricing-foot {
  margin-top: 32px;
  font-size: 13px; color: #6E6C8A; text-align: center;
}
.l-pricing-foot strong { color: #0E0C1B; }

/* ============================================================
   "Who it's for" — audience qualification section
   ============================================================ */
.l-fit-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.l-fit {
  background: #fff; border: 1px solid #F0EEF8; border-radius: 16px;
  padding: 24px 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.l-fit-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(123, 63, 228, 0.10);
  color: #7B3FE4;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.l-fit-ico svg { width: 22px; height: 22px; }
.l-fit.is-no .l-fit-ico { background: rgba(110, 108, 138, 0.10); color: #6E6C8A; }
.l-fit h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; letter-spacing: -0.2px;
  color: #0E0C1B; margin: 0 0 6px;
}
.l-fit p {
  font-size: 14px; line-height: 1.55; color: #6E6C8A; margin: 0;
}

/* ============================================================
   Security strip — trust signals under the differentiator section
   ============================================================ */
.l-trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.l-trust-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.l-trust-item-ico {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(0, 214, 143, 0.16);
  color: #00D68F;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.l-trust-item-ico svg { width: 16px; height: 16px; }
.l-trust-item-text { font-size: 13px; line-height: 1.5; color: #9694B4; }
.l-trust-item-text b { color: #F0EEF8; font-weight: 600; display: block; margin-bottom: 2px; }

.l-section-h + .l-faq { margin-top: 32px; }

/* ============================================================
   Monthly / Yearly billing toggle
   ============================================================ */
.l-billing-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  margin: 0 auto 32px;
  padding: 4px;
  background: #fff;
  border: 1px solid #E3E0F5;
  border-radius: 9999px;
  position: relative; left: 50%; transform: translateX(-50%);
}
.l-bt-btn {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: #6E6C8A; background: transparent;
  border: none; padding: 8px 18px;
  border-radius: 9999px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s, color .15s;
}
.l-bt-btn:hover { color: #0E0C1B; }
.l-bt-btn.is-active {
  background: #7B3FE4; color: #fff;
}
.l-bt-save {
  font-size: 11px; font-weight: 700;
  background: rgba(0, 214, 143, 0.18);
  color: #00875A;
  padding: 2px 7px; border-radius: 9999px;
  letter-spacing: 0.2px;
}
.l-bt-btn.is-active .l-bt-save {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Plan price swap based on billing mode */
.l-plan { position: relative; }
.l-price-yearly,
.l-plan-saving { display: none; }
.l-plan[data-billing="yearly"] .l-price-monthly { display: none; }
.l-plan[data-billing="yearly"] .l-price-yearly { display: inline; }
.l-plan[data-billing="yearly"] .l-plan-saving { display: block; }
.l-plan-saving {
  font-size: 13px; font-weight: 600;
  color: #00875A;
  margin-top: 4px; margin-bottom: 4px;
}

.l-cc-bar.is-quote .l-cc-bar-fill {
  /* Hatched fill for "Sur devis" — visually distinct from a zero or a
     known total. Pale gray diagonal lines, no animation. */
  background: repeating-linear-gradient(
    45deg,
    rgba(110, 108, 138, 0.18) 0,
    rgba(110, 108, 138, 0.18) 6px,
    transparent 6px,
    transparent 12px
  ) !important;
}
.l-cc-bar.is-quote .l-cc-bar-total {
  color: #6E6C8A;
  font-weight: 600;
}
   Sticky violet column for Olvio. Mobile = horizontal scroll.
   ============================================================ */
.l-compare {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  margin-top: 8px;
}
.l-compare-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  font-family: var(--font-body);
}
.l-compare-table thead th {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; letter-spacing: -0.3px;
  color: #0E0C1B;
  padding: 18px 18px;
  text-align: center;
  background: transparent;
  border-bottom: 1px solid #E3E0F5;
  vertical-align: bottom;
}
.l-compare-table thead th:first-child {
  text-align: left;
  font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: #6E6C8A;
}
.l-compare-table thead th.is-featured {
  background: #7B3FE4; color: #fff;
  border-radius: 12px 12px 0 0;
  font-size: 18px;
  position: relative;
  border-bottom: none;
}
.l-compare-table tbody th {
  font-weight: 600; text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid #F0EEF8;
  color: #0E0C1B;
  background: transparent;
  font-size: 14px;
  font-family: var(--font-body);
}
.l-compare-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid #F0EEF8;
  font-size: 14px;
  color: #4a4866;
  text-align: center;
  vertical-align: top;
  background: transparent;
}
.l-compare-table tbody td.is-featured {
  background: #F7F6FF;
  font-weight: 600; color: #0E0C1B;
  border-left: 2px solid #7B3FE4;
  border-right: 2px solid #7B3FE4;
}
.l-compare-table tbody td b {
  display: block;
  font-size: 15px; font-weight: 700;
  color: #0E0C1B;
}
.l-compare-table tbody td small {
  display: block; font-size: 12px;
  color: #6E6C8A; font-weight: 400;
  margin-top: 4px; line-height: 1.4;
}
.l-compare-table tbody td.is-featured small { color: #5F2BC9; }
.l-compare-table tbody tr:last-child th { border-bottom: none; }
.l-compare-table tbody tr:last-child td { border-bottom: none; }
.l-compare-table tbody tr:last-child td.is-featured {
  border-radius: 0 0 12px 12px;
  border-bottom: 2px solid #7B3FE4;
}
.l-compare-foot {
  margin-top: 24px;
  font-size: 12px; color: #6E6C8A;
  line-height: 1.55; max-width: 780px;
}

/* ============================================================
   Cost calculator (#compare) — tab switcher + bar chart
   ============================================================ */
.l-cc {
  background: #fff;
  border: 1px solid #E3E0F5;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(123, 63, 228, 0.06);
}

/* Tabs */
.l-cc-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: #F7F6FF;
  border: 1px solid #E3E0F5;
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 24px;
}
.l-cc-tab {
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 12px 8px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
  text-align: center;
  color: #6E6C8A;
  display: flex; flex-direction: column; gap: 2px;
  align-items: center;
}
.l-cc-tab span {
  font-size: 14px; font-weight: 600; color: inherit;
}
.l-cc-tab small {
  font-size: 11px; color: #9694B4;
  font-family: var(--font-body);
}
.l-cc-tab:hover { background: rgba(123, 63, 228, 0.06); color: #0E0C1B; }
.l-cc-tab.is-active {
  background: #fff;
  color: #0E0C1B;
  box-shadow: 0 1px 3px rgba(14, 12, 27, 0.08),
              0 0 0 1px rgba(123, 63, 228, 0.25);
}
.l-cc-tab.is-active small { color: #7B3FE4; }

/* Summary strip */
.l-cc-summary {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 22px;
  background: #F7F6FF;
  border-radius: 12px;
  margin-bottom: 24px;
}
.l-cc-summary-cell {
  display: flex; flex-direction: column; gap: 4px;
}
.l-cc-summary-cell + .l-cc-summary-cell {
  border-left: 1px solid #E3E0F5;
  padding-left: 22px;
}
.l-cc-summary-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: #6E6C8A;
}
.l-cc-summary-value {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; letter-spacing: -0.5px;
  color: #0E0C1B;
  line-height: 1.1;
}
.l-cc-summary-hint {
  font-size: 11px; color: #9694B4; font-family: var(--font-body);
}
.l-cc-summary-multiplier {
  background: linear-gradient(135deg, #7B3FE4 0%, #00D68F 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Bar chart */
.l-cc-bars {
  display: flex; flex-direction: column;
  gap: 18px;
}
.l-cc-bar { font-family: var(--font-body); }
.l-cc-bar-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
  gap: 16px;
}
.l-cc-bar-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; letter-spacing: -0.3px;
  color: #0E0C1B;
}
.l-cc-bar.is-olvio .l-cc-bar-name { color: #5F2BC9; }
.l-cc-bar-total {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
  color: #0E0C1B;
}
.l-cc-bar.is-olvio .l-cc-bar-total { color: #5F2BC9; }
.l-cc-bar-track {
  height: 14px;
  background: #F0EEF8;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.l-cc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #9694B4 0%, #6E6C8A 100%);
  border-radius: 8px;
  width: 0%;
  transition: width .55s cubic-bezier(0.32, 0.72, 0.24, 1);
}
.l-cc-bar.is-olvio .l-cc-bar-fill {
  background: linear-gradient(90deg, #7B3FE4 0%, #00D68F 100%);
  box-shadow: 0 2px 12px rgba(123, 63, 228, 0.4);
}
.l-cc-bar-plan {
  margin-top: 6px;
  font-size: 12px; color: #6E6C8A;
  line-height: 1.4;
}
.l-cc-bar.is-olvio .l-cc-bar-plan { color: #5F2BC9; font-weight: 500; }

/* Footer disclaimer */
.l-cc-foot {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid #F0EEF8;
  font-size: 12px; line-height: 1.6;
  color: #6E6C8A;
}
.l-cc-foot a {
  color: #7B3FE4; text-decoration: underline;
  text-underline-offset: 2px;
}
.l-cc-foot a:hover { color: #5F2BC9; }
.l-cc-foot strong { color: #0E0C1B; font-weight: 600; }

.l-cc-legal {
  margin: 18px auto 0;
  max-width: 920px;
  font-size: 11px; line-height: 1.55;
  color: #8a88a4;
  text-align: left;
}
.l-cc-legal a {
  color: #8a88a4; text-decoration: underline;
  text-underline-offset: 2px;
}
.l-cc-legal a:hover { color: #5F2BC9; }

/* Mobile */
@media (max-width: 720px) {
  .l-cc { padding: 20px; }
  .l-cc-tabs { grid-template-columns: 1fr 1fr; gap: 6px; }
  .l-cc-summary { grid-template-columns: 1fr; gap: 14px; padding: 16px 18px; }
  .l-cc-summary-cell + .l-cc-summary-cell {
    border-left: none; border-top: 1px solid #E3E0F5;
    padding-left: 0; padding-top: 14px;
  }
  .l-cc-bar-head { flex-wrap: wrap; gap: 4px 12px; }
  .l-cc-bar-total { font-size: 17px; }
}

/* ============================================================
   FAQ — accordion
   ============================================================ */
.l-faq {
  max-width: 800px;
  /* Centered to match the centered header inside #faq (see the
     scoped centering rule further down). */
  margin: 0 auto;
}

/* FAQ section: header + list are all center-aligned. */
#faq.l-section .l-section-eyebrow,
#faq.l-section .l-section-h,
#faq.l-section .l-section-sub,
/* Testimonial section: header centered above the centered case figure. */
#case.l-section .l-section-eyebrow,
#case.l-section .l-section-h,
#case.l-section .l-section-sub,
/* Pricing section: same centering for the header block. */
#pricing.l-section .l-section-eyebrow,
#pricing.l-section .l-section-h,
#pricing.l-section .l-section-sub,
/* "Pour qui" section: marquee sits full-bleed, so the header must
   be centered too to feel anchored above it. */
.l-section:has(.l-questions-marquee) .l-section-eyebrow,
.l-section:has(.l-questions-marquee) .l-section-h,
.l-section:has(.l-questions-marquee) .l-section-sub,
/* "Comment ça marche" — header at the top of the brain
   visualisation, centered to feel anchored above the 3-column grid. */
#how.l-section .l-section-eyebrow,
#how.l-section .l-section-h,
#how.l-section .l-section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* "Comment ça marche" — light background matching the "Pour qui"
   section above. Keeping the section in cloud/pearl tones means all
   the dark-styled inner elements (cards, chips, KB items, etc.)
   need their own contrast — handled by overrides below. */
#how.l-section.dark {
  background: #F7F6FF;
}
#how.l-section.dark .l-section-eyebrow { color: #7B3FE4; }
#how.l-section.dark .l-section-h       { color: #0E0C1B; }
#how.l-section.dark .l-section-sub     { color: #4a4866; }

/* Light-mode overrides for the brain carousel and its inner cards. */
#how .l-brain-step-btn {
  background: #FDFCFF;
  border-color: #E3E0F5;
  color: #6E6C8A;
}
#how .l-brain-step-btn .num {
  background: #F0EEF8;
  color: #7B3FE4;
}
#how .l-brain-step-btn:hover {
  border-color: #A678FF;
  color: #0E0C1B;
}
#how .l-brain-step-btn.is-active {
  background: linear-gradient(135deg, rgba(123,63,228,0.10), rgba(166,120,255,0.05));
  border-color: #7B3FE4;
  color: #0E0C1B;
}
#how .l-brain-step-btn.is-active .num {
  background: #7B3FE4;
  color: #fff;
}

#how .l-brain-card {
  background: #FDFCFF;
  border-color: #E3E0F5;
}
#how .l-brain-card.is-active {
  border-color: #7B3FE4;
  box-shadow: 0 6px 16px -10px rgba(123,63,228,0.18);
}

#how .l-brain-step-head { border-bottom-color: #F0EEF8; }
#how .l-brain-step-eyebrow { color: #7B3FE4; }
#how .l-brain-step-title   { color: #0E0C1B; }

/* Chat bubbles inside cards */
#how .l-brain-bubble.is-bot {
  background: #F7F6FF;
  color: #0E0C1B;
  border-color: #E3E0F5;
}
#how .l-brain-bubble.is-bot strong { color: #5F2BC9; }

/* Decision chips */
#how .l-brain-chip {
  background: #F7F6FF;
  border-color: #E3E0F5;
  color: #6E6C8A;
}
#how .l-brain-chip.is-active {
  background: linear-gradient(180deg, rgba(123,63,228,0.10), rgba(123,63,228,0.04));
  border-color: #7B3FE4;
  color: #0E0C1B;
}
#how .l-brain-chip.is-active svg { color: #7B3FE4; }

/* KB list */
#how .l-brain-kb-item {
  background: transparent;
}
#how .l-brain-kb-item.is-cited {
  background: rgba(123,63,228,0.06);
  border-color: rgba(123,63,228,0.18);
}
#how .l-brain-kb-item-type { color: #6E6C8A; }
#how .l-brain-kb-item-body b { color: #0E0C1B; }
#how .l-brain-kb-dot { background: rgba(14,12,27,0.18); }
#how .l-brain-kb-foot {
  color: #6E6C8A;
  border-top-color: #F0EEF8;
}
@keyframes l-brain-kb-cited-light {
  0%, 25%, 100% {
    background: rgba(123,63,228,0.06);
    border-color: rgba(123,63,228,0.18);
    transform: translateX(0);
  }
  10% {
    background: rgba(123,63,228,0.16);
    border-color: rgba(123,63,228,0.55);
    transform: translateX(2px);
    box-shadow: 0 8px 20px -8px rgba(123,63,228,0.4);
  }
}
#how .l-brain-kb-item.is-cited {
  animation-name: l-brain-kb-cited-light;
}

/* Nav buttons */
#how .l-brain-nav-btn {
  background: #FDFCFF;
  border-color: #E3E0F5;
  color: #0E0C1B;
}
#how .l-brain-nav-btn:hover:not(:disabled) {
  background: rgba(123,63,228,0.08);
  border-color: #7B3FE4;
}
#how.l-section.dark .l-section-eyebrow { color: #7B3FE4; }
#how.l-section.dark .l-section-h       { color: #0E0C1B; }
#how.l-section.dark .l-section-sub     { color: #4a4866; }
.l-faq-item {
  border-bottom: 1px solid #E3E0F5;
}
/* Top border on the first item closes the list visually — without
   it the first row's question seemed to float above an open space. */
.l-faq-item:first-child {
  border-top: 1px solid #E3E0F5;
}
.l-faq-q {
  width: 100%; text-align: left;
  background: none; border: none;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; letter-spacing: -0.2px;
  color: #0E0C1B;
  /* Right padding was 32px which pushed the chevron off the visual
     edge of the row. Zero it out so the chevron sits flush right. */
  padding: 22px 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  position: relative;
}
/* Chevron icon only — no bubble background, no border-radius.
   Just a plain SVG drawn in violet that flips on open. */
.l-faq-q::after {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px;
  background: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%237B3FE4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center; background-repeat: no-repeat;
  background-size: contain;
  transition: transform .2s;
  opacity: 0.7;
}
.l-faq-q:hover::after { opacity: 1; }
.l-faq-item.is-open .l-faq-q::after { transform: rotate(180deg); }
.l-faq-a {
  font-size: 15px; line-height: 1.65; color: #4a4866;
  padding: 0 0 24px 0;
  /* Full row width — keeping the answer narrower than the question
     row created a visual cliff where lines wrapped well before the
     chevron's vertical line. */
  max-width: none;
  display: none;
}
.l-faq-a a { color: #7B3FE4; text-decoration: underline; text-underline-offset: 3px; }
.l-faq-a p { margin: 0; }
.l-faq-a p + p { margin-top: 14px; }
.l-faq-item.is-open .l-faq-a { display: block; }

/* ============================================================
   Final CTA — dark, full-bleed, single button
   ============================================================ */
.l-final {
  background:
    radial-gradient(ellipse 1000px 500px at 50% 0%, rgba(123,63,228,0.30), transparent 70%),
    #08060F;
  color: #F0EEF8;
  padding: 112px 24px;
  text-align: center;
}
.l-final-inner { max-width: 720px; margin: 0 auto; }
.l-final h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 800; letter-spacing: -1.8px; line-height: 1.05;
  margin: 0 0 18px;
  /* Explicit color override — global `h1/h2/h3/h4 { color: var(--fg1) }`
     in colors_and_type.css resolves to dark ink and overrides the
     parent `.l-final { color: #F0EEF8 }` because element selectors
     beat ancestor inheritance. Without this the non-gradient half of
     the headline vanishes on the dark final-CTA section. */
  color: #F0EEF8;
}
.l-final h2 .grad {
  background: linear-gradient(135deg, #F0EEF8 0%, #A678FF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pricing section uses a light background, so the white → violet
   gradient defined for the hero/final-CTA would be invisible. Flip
   it to deep-violet → violet → light-violet so the headline reads as
   a tinted accent against the cream backdrop. */
#pricing.l-section .l-section-h .grad {
  background: linear-gradient(135deg, #5F2BC9 0%, #7B3FE4 55%, #A678FF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-final p {
  font-size: 18px;
  /* Bumped from #9694B4 (haze) — not legible enough as a paragraph on
     the dark final-CTA background. */
  color: #C7C5DC;
  margin: 0 0 36px;
  line-height: 1.6;
}
.l-final .l-btn-primary {
  font-size: 17px; padding: 18px 32px;
}
/* Shopify glyph inside the final CTA — same SVG as the sticky header
   CTA, scaled up from 16px → 20px so it reads at the larger button size
   (17px text / 18px padding). gap on the button keeps spacing consistent. */
.l-final-cta { gap: 10px; }
.l-final-cta-shopify {
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: currentColor;
}
.l-final-cta-shopify svg { display: block; }
.l-final-trust {
  margin-top: 22px;
  /* Was inline-flex, which kept the strip on the same baseline as
     the button (also inline-flex) — the trust line appeared to the
     right of the CTA instead of below it. flex makes it a block-level
     element and pushes it under. */
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  font-size: 13px;
  /* Bumped from #6E6C8A — "Essai 14 jours gratuits" and "RGPD" were
     hard to read on the deep navy final-CTA background. */
  color: #B8B6CC;
}
.l-final-trust span { display: inline-flex; align-items: center; gap: 6px; }
.l-final-trust .check {
  width: 14px; height: 14px; border-radius: 50%;
  background: #00D68F; color: #08060F;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
}

/* ============================================================
   Footer — minimal
   ============================================================ */
.l-foot {
  background: #08060F; color: #6E6C8A;
  padding: 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.l-foot-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
.l-foot-brand {
  display: inline-flex; align-items: center; gap: 8px;
  color: #F0EEF8; font-family: var(--font-display);
  font-weight: 800; font-size: 15px; letter-spacing: -0.3px;
}
/* Footer brand: same mint wordmark PNG, slightly smaller. */
.l-foot-brand img {
  height: 22px; width: auto; display: block;
}
.l-foot-links { display: flex; gap: 22px; }
.l-foot-links a { color: #6E6C8A; transition: color .15s; }
.l-foot-links a:hover { color: #F0EEF8; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .l-hero { padding: 48px 24px 72px; }
  .l-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .l-phone-wrap { transform: scale(0.92); }
  .l-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .l-stat-item:nth-child(2) { border-right: none; }
  .l-logos-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .l-problem-grid, .l-steps, .l-diff-grid, .l-plans-grid { grid-template-columns: 1fr; }
  .l-plan.is-featured { transform: none; }
  .l-demo-stage { grid-template-columns: 1fr; }
  .l-case { grid-template-columns: 1fr; gap: 36px; }
  .l-section { padding: 72px 24px; }
  .l-fit-grid { grid-template-columns: 1fr; }
  .l-trust-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .l-stick-nav { display: none; }
}
@media (max-width: 640px) {
  /* All .l-stick-inner overrides for mobile, consolidated to avoid
     cascade fights with the duplicate @media block lower in the file. */
  .l-stick-inner {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px 16px !important;
  }
  .l-hero h1 { font-size: 38px; letter-spacing: -1.2px; }
  .l-section-h { font-size: 30px; letter-spacing: -0.8px; }
  .l-section-sub { font-size: 16px; margin-bottom: 40px; }
  .l-section { padding: 64px 20px; }
  .l-stats { padding: 40px 20px; }
  .l-stats-inner { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .l-stat-num { font-size: 34px; letter-spacing: -1px; }
  .l-case-metrics { padding: 14px 18px; gap: 16px; flex-direction: column; align-items: flex-start; border-radius: 16px; }
  .l-case-metric-divider { width: 100%; height: 1px; }
  .l-case-metric-num { font-size: 20px; letter-spacing: -0.4px; }
  .l-phone { width: 290px; }
  .l-phone-screen { height: 500px; }
  .l-final { padding: 80px 20px; }
  .l-final h2 { font-size: 34px; letter-spacing: -1px; }
  .l-foot-inner { flex-direction: column; align-items: center; gap: 16px; }
  .l-trust-strip { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   "Comment ça marche" v3 — Olvio en train de réfléchir
   2-col grid: chat (left, large) · base de connaissances (right).
   The KB panel shows ~7 catalog items; the 3 actually cited pulse
   in staggered order (--cite-i) to convey live consultation.
   ============================================================ */
/* ============================================================
   "Comment ça marche" v4 — Pipeline en 4 étapes
   4 cards en ligne: 01 Question → 02 Décisions → 03 Connaissance
   → 04 Réponse. Chaque card a le même outer styling et la même
   hauteur (carousel), avec une flèche violette entre elles qui
   suggère le flow.
   ============================================================ */
.l-brain-flow {
  /* Carousel : la carte active est centrée, les voisines peek
     généreusement de chaque côté pour signaler le flow. Naviguation
     via le stepper (haut) et les boutons prev/next (bas). */
  --step: 0;
  --card-w: 640px;
  --gap: 24px;
  position: relative;
  margin: 8px auto 0;
}

/* ---- Stepper en haut ---- */
.l-brain-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.l-brain-step-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9999px;
  color: #9694B4;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.2px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.l-brain-step-btn .num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  color: #6E6C8A;
  background: rgba(255,255,255,0.05);
  padding: 3px 7px;
  border-radius: 9999px;
  letter-spacing: 0.6px;
}
.l-brain-step-btn:hover {
  border-color: rgba(166,120,255,0.4);
  color: #F0EEF8;
}
.l-brain-step-btn.is-active {
  background: linear-gradient(135deg, rgba(123,63,228,0.28), rgba(166,120,255,0.14));
  border-color: #A678FF;
  color: #F0EEF8;
  box-shadow: 0 8px 20px -8px rgba(123,63,228,0.5);
}
.l-brain-step-btn.is-active .num {
  background: #A678FF;
  color: #08060F;
}

/* ---- Stage + track ---- */
.l-brain-stage {
  overflow: hidden;
  margin: 0 -32px;
  padding: 16px 0 24px;
  /* Soft fade on both edges so peek cards dissolve instead of being
     hard-cropped at the stage boundary. */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent);
}
.l-brain-track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  /* Padding-left/right based on stage width pushes the first/last
     card to the centre when --step is 0/last. Percentage padding
     refers to the containing block (the stage), not the track. */
  padding: 0 calc((100% - var(--card-w)) / 2);
  transform: translateX(calc(var(--step) * (var(--card-w) + var(--gap)) * -1));
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}

/* ---- Cards ---- */
.l-brain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  flex: 0 0 var(--card-w);
  min-width: 0;
  position: relative;
  opacity: 0.32;
  transform: scale(0.93);
  transition: opacity .45s, transform .45s, border-color .45s;
}
.l-brain-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(166,120,255,0.30);
  box-shadow:
    0 24px 48px -20px rgba(123,63,228,0.4),
    0 0 0 1px rgba(166,120,255,0.08) inset;
}

/* ---- Nav buttons ---- */
.l-brain-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.l-brain-nav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #F0EEF8;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, transform .15s;
}
.l-brain-nav-btn svg { width: 18px; height: 18px; }
.l-brain-nav-btn:hover:not(:disabled) {
  background: rgba(123,63,228,0.18);
  border-color: #A678FF;
  transform: translateY(-1px);
}
.l-brain-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
/* Drop the connector arrows — the stepper and nav handle navigation
   visually, and the carousel motion shows the flow. */
.l-brain-card:not(:last-child)::after { content: none; }
.l-brain-card::before { content: none; }

.l-brain-step-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 14px;
}
.l-brain-step-num {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #7B3FE4, #A678FF);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -4px rgba(123,63,228,0.5);
}
.l-brain-step-head > div {
  display: flex; flex-direction: column;
  flex: 1; min-width: 0;
}
.l-brain-step-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  color: #A678FF;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.l-brain-step-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  letter-spacing: -0.2px;
  color: #F0EEF8;
}
.l-brain-step-body {
  flex: 1;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 0;
}

/* Right-aligned scan indicator in step 03's header */
.l-brain-step-kb .l-brain-step-head .l-brain-kb-scan,
.l-brain-step-response .l-brain-step-head .l-brain-chat-rt {
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .l-brain-flow { --card-w: 480px; }
}
@media (max-width: 640px) {
  .l-brain-flow { --card-w: 84vw; --gap: 16px; }
  .l-brain-steps { gap: 6px; }
  .l-brain-step-btn { padding: 7px 10px 7px 8px; font-size: 12px; }
  .l-brain-step-btn .lbl { display: none; }
}

/* ============================================================
   "Comment ça marche" — old shared styles for bubble, chip,
   product card, KB items.  Keep these intact; reused inside the
   v4 step cards above.
   ============================================================ */
.l-brain-chip-list { display: flex; flex-direction: column; gap: 8px; }
.l-brain-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  font-size: 12.5px;
  color: #9694B4;
  line-height: 1.3;
  transition: background .15s, border-color .15s, color .15s;
}
.l-brain-chip svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.7; }
.l-brain-chip.is-active {
  background: linear-gradient(180deg, rgba(123,63,228,0.22), rgba(123,63,228,0.10));
  border-color: #A678FF;
  color: #F0EEF8;
  font-weight: 600;
  box-shadow: 0 8px 20px -10px rgba(123,63,228,0.5);
}
.l-brain-chip.is-active svg { color: #A678FF; opacity: 1; }

/* ---- Chat (left, large) ---- */
.l-brain-chat {
  background: #0E0C1B;
  border: 1px solid rgba(166,120,255,0.25);
  border-radius: 20px;
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow:
    0 24px 48px -20px rgba(123,63,228,0.4),
    0 0 0 1px rgba(166,120,255,0.08) inset;
}
.l-brain-chat-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.l-brain-chat-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  color: #A678FF;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.l-brain-chat-status i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #A678FF;
  box-shadow: 0 0 8px rgba(166,120,255,0.6);
  animation: l-brain-pulse 1.4s ease-in-out infinite;
}
@keyframes l-brain-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50%      { opacity: 1;   transform: scale(1.1); }
}
.l-brain-chat-rt {
  font-family: var(--font-body);
  font-size: 11px;
  color: #6E6C8A;
}

/* Compact context chips inside the chat header — replaces the
   former ctx strip that lived below the chat (broke card alignment
   with the side panels). */
.l-brain-chat-ctx {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 8px 0 4px;
  margin-bottom: 4px;
}
.l-brain-chat-ctx-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9999px;
  font-size: 11px;
}
.l-brain-chat-ctx-chip span {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6E6C8A;
  font-weight: 700;
}
.l-brain-chat-ctx-chip strong {
  color: #F0EEF8;
  font-weight: 600;
  font-size: 11.5px;
}
.l-brain-bubble {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.l-brain-bubble.is-user {
  align-self: flex-end;
  background: #7B3FE4;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.l-brain-bubble.is-user strong { font-weight: 700; }
.l-brain-bubble.is-bot {
  align-self: flex-start;
  background: #161228;
  color: #F0EEF8;
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom-left-radius: 4px;
}
.l-brain-bubble.is-bot strong { color: #A678FF; font-weight: 600; }

/* Three-dot "typing" indicator inside the bot bubble. Replaces a
   long answer — we want to convey "Olvio is thinking and lands on
   this product" without a wall of text. */
.l-brain-bubble-thinking {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 0 6px;
}
.l-brain-bubble-thinking i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #A678FF;
  display: inline-block;
  animation: l-brain-bubble-dot 1.2s ease-in-out infinite;
}
.l-brain-bubble-thinking i:nth-child(2) { animation-delay: .15s; }
.l-brain-bubble-thinking i:nth-child(3) { animation-delay: .3s; }
@keyframes l-brain-bubble-dot {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.1); }
}
.l-brain-bubble sup {
  display: inline-block;
  margin-left: 2px;
  padding: 1px 5px;
  border-radius: 4px;
  background: linear-gradient(135deg, #7B3FE4, #A678FF);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  vertical-align: super;
  line-height: 1;
}

/* ---- Recommended product card inside the bot bubble ----
   Matches the real Olvio widget's .olvio-card markup (cards.js +
   chat/styles.css): vertical card, square image with promo chip
   overlay top-left, title + price stacked beneath. Reproduced here
   so the landing speaks the same visual language as the live widget. */
.olvio-card {
  display: flex;
  flex-direction: column;
  background: #FDFCFF;
  border: 1px solid #E3E0F5;
  border-radius: 12px;
  color: #0E0C1B;
  text-decoration: none;
  overflow: hidden;
  width: 100%;
  max-width: 120px;
  margin-top: 12px;
  transition: border-color .15s, box-shadow .15s;
}
.olvio-card:hover {
  border-color: #7B3FE4;
  box-shadow: 0 8px 20px -6px rgba(123,63,228,0.25);
}
.olvio-card-image-wrap {
  position: relative;
  display: block;
}
.olvio-card-image {
  display: block;
  width: 100%;
  /* Square image (matches live widget) but at 120px card width
     the image is 120×120 — smaller than before. */
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #FFE4D2, #FFA079);
  position: relative;
  overflow: hidden;
}
/* Photo packshot — real product image inside .olvio-card-image.
   Covers the square panel; object-fit: contain so the whole bottle
   stays visible inside the frame regardless of source dimensions. */
.olvio-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.olvio-card-bottle {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 60px;
  border-radius: 5px 5px 7px 7px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.55) 40%,
    rgba(255,255,255,0.3));
  box-shadow:
    inset 0 -8px 18px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.4),
    0 4px 10px rgba(0,0,0,0.12);
}
.olvio-card-price-discount {
  position: absolute;
  top: 6px; left: 6px;
  padding: 2px 6px;
  border-radius: 3px;
  background: #7B3FE4;
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.3px;
}
.olvio-card-info {
  padding: 6px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.olvio-card-title {
  font-size: 11px;
  font-weight: 600;
  color: #0E0C1B;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.1px;
}
.olvio-card-price {
  font-size: 11px;
  color: #6E6C8A;
  font-weight: 600;
} */
.l-brain-product {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  padding: 10px 14px 10px 10px;
  background: #FDFCFF;
  border-radius: 12px;
  text-decoration: none;
  color: #0E0C1B;
  transition: transform .15s, box-shadow .15s;
}
.l-brain-product:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(123,63,228,0.4);
}
.l-brain-product-img {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFE4D2, #FFA079);
  overflow: hidden;
  flex-shrink: 0;
}
.l-brain-product-bottle {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 44px;
  border-radius: 5px 5px 7px 7px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.55) 40%,
    rgba(255,255,255,0.3));
  box-shadow:
    inset 0 -8px 16px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.4),
    0 4px 8px rgba(0,0,0,0.12);
}
.l-brain-product-badge {
  position: absolute; top: 4px; left: 4px;
  background: #0E0C1B; color: #fff;
  font-family: var(--font-body);
  font-size: 9px; font-weight: 700;
  padding: 2px 5px; border-radius: 3px;
  letter-spacing: 0.3px;
}
.l-brain-product-meta {
  display: flex; flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.l-brain-product-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #7B3FE4;
}
.l-brain-product-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #0E0C1B;
}
.l-brain-product-price {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
}
.l-brain-product-price-now { font-weight: 700; color: #0E0C1B; }
.l-brain-product-price-was {
  color: #B7B5CC;
  font-size: 12px;
  text-decoration: line-through;
}

/* ---- Context strip below the chat ---- */
.l-brain-ctx-strip {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}
.l-brain-ctx-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 9999px;
  font-size: 12px;
}
.l-brain-ctx-chip span {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6E6C8A;
  font-weight: 700;
}
.l-brain-ctx-chip strong {
  color: #F0EEF8;
  font-weight: 600;
}

/* ============================================================
   Base de connaissances (right) — items pulse in sequence
   ============================================================ */
.l-brain-kb {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 22px 18px 16px;
  display: flex; flex-direction: column;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
/* Soft moving glow on the panel to suggest "scanning". */
.l-brain-kb::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: radial-gradient(
    ellipse 240px 120px at 50% var(--scan-y, 30%),
    rgba(166,120,255,0.10),
    transparent 60%);
  animation: l-brain-kb-scan 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes l-brain-kb-scan {
  0%, 100% { --scan-y: 10%; }
  50%      { --scan-y: 90%; }
}

.l-brain-kb-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.l-brain-kb-title { display: flex; align-items: flex-start; gap: 10px; }
.l-brain-kb-ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(123,63,228,0.16);
  color: #A678FF;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.l-brain-kb-ico svg { width: 16px; height: 16px; }
.l-brain-kb-title b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  letter-spacing: -0.2px;
  color: #F0EEF8;
}
.l-brain-kb-title em {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px;
  color: #6E6C8A;
  font-style: normal;
  margin-top: 2px;
  letter-spacing: 0.2px;
}
.l-brain-kb-scan {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  color: #A678FF;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
}
.l-brain-kb-scan i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #A678FF;
  display: inline-block;
  animation: l-brain-kb-dot 1.2s ease-in-out infinite;
}
.l-brain-kb-scan i:nth-child(2) { animation-delay: .2s; }
.l-brain-kb-scan i:nth-child(3) { animation-delay: .4s; }
@keyframes l-brain-kb-dot {
  0%, 100% { opacity: 0.3; transform: scale(0.7); }
  50%      { opacity: 1;   transform: scale(1); }
}

.l-brain-kb-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.l-brain-kb-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  transition: background .25s, border-color .25s, transform .25s;
}
.l-brain-kb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  margin: 0 auto;
}
.l-brain-kb-cite {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7B3FE4, #A678FF);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px -2px rgba(123,63,228,0.5);
}
.l-brain-kb-item-body { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.l-brain-kb-item-type {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6E6C8A;
  font-weight: 700;
}
.l-brain-kb-item-body b {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #F0EEF8;
  letter-spacing: -0.2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.l-brain-kb-item-body em {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 11.5px;
  color: #9694B4;
  margin-top: 2px;
  display: none; /* Hidden by default; shown only when cited + active. */
  line-height: 1.4;
}

/* Cited items pulse in sequence — --cite-i (1..3) defines the
   stagger. Three keyframe stages: idle dim → glow → highlight quote. */
.l-brain-kb-item.is-cited {
  background: rgba(166,120,255,0.06);
  border-color: rgba(166,120,255,0.14);
  animation: l-brain-kb-cited 6s ease-in-out infinite;
  animation-delay: calc((var(--cite-i, 1) - 1) * 1.5s);
}
.l-brain-kb-item.is-cited .l-brain-kb-item-body em { display: block; }
@keyframes l-brain-kb-cited {
  0%, 25%, 100% {
    background: rgba(166,120,255,0.06);
    border-color: rgba(166,120,255,0.14);
    transform: translateX(0);
  }
  10% {
    background: rgba(166,120,255,0.20);
    border-color: rgba(166,120,255,0.65);
    transform: translateX(2px);
    box-shadow: 0 8px 20px -8px rgba(166,120,255,0.5);
  }
}

.l-brain-kb-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.06);
  font-family: var(--font-body);
  font-size: 10.5px;
  color: #6E6C8A;
  letter-spacing: 0.4px;
  text-align: center;
  position: relative; z-index: 1;
}

@media (max-width: 1024px) {
  .l-brain { grid-template-columns: 1fr; gap: 18px; }
  .l-brain-decisions { order: 3; }
  .l-brain-left { order: 1; }
  .l-brain-kb { order: 2; }
}
/* ============================================================
   "Pour qui" v4 — 3-row marquee of customer questions
   Three horizontal infinite-scroll tracks. Bubbles are pill-
   shaped with an inline category chip + the question. Rows
   move in alternating directions at slightly different speeds
   so the eye doesn't lock onto the pattern.
   ============================================================ */
.l-questions-marquee {
  /* Title sits directly above the marquee now (sub-description was
     removed). Give it room to breathe. */
  margin: 56px -32px 32px;
  display: flex; flex-direction: column;
  gap: 14px;
  /* Wider fade on both sides for a softer, less "cut" edge. */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(to right, transparent 0, #000 14%, #000 86%, transparent);
}
.l-qm-row { overflow: hidden; display: flex; }
.l-qm-track {
  display: flex; gap: 14px;
  width: max-content; flex-shrink: 0;
  animation: l-qm-scroll 60s linear infinite;
  padding: 4px 0;
}
.l-qm-row-1 .l-qm-track { animation-duration: 58s; animation-direction: normal; }
.l-qm-row-2 .l-qm-track { animation-duration: 72s; animation-direction: reverse; }
.l-qm-row-3 .l-qm-track { animation-duration: 64s; animation-direction: normal; }
@keyframes l-qm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.l-qm-bubble {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 12px;
  background: #FDFCFF;
  border: 1px solid #E3E0F5;
  border-radius: 9999px;
  padding: 10px 22px 10px 12px;
  box-shadow:
    0 1px 2px rgba(14,12,27,0.04),
    0 8px 18px -12px rgba(14,12,27,0.18);
}
.l-qm-cat {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 9999px;
  background: #F7F6FF; color: #7B3FE4;
  flex-shrink: 0;
}
.l-qm-bubble p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.2px; line-height: 1.2;
  color: #0E0C1B;
  white-space: nowrap;
}
.l-qm-bubble[data-cat="skincare"]    .l-qm-cat { background: #FFF1E8; color: #C56A2E; }
.l-qm-bubble[data-cat="fashion"]     .l-qm-cat { background: #F2EEFA; color: #5F2BC9; }
.l-qm-bubble[data-cat="outdoor"]     .l-qm-cat { background: #E8F2EC; color: #2E7D5B; }
.l-qm-bubble[data-cat="food"]        .l-qm-cat { background: #FAF3E6; color: #A06924; }
.l-qm-bubble[data-cat="electronics"] .l-qm-cat { background: #E8F0FC; color: #2F5DCB; }
.l-qm-bubble[data-cat="furniture"]   .l-qm-cat { background: #F4ECEC; color: #8B4A4A; }
.l-qm-bubble[data-cat="supplements"] .l-qm-cat { background: #ECFDF5; color: #00875A; }
@media (max-width: 1024px) {
  .l-questions-marquee { margin: 8px -24px 28px; }
}
@media (max-width: 640px) {
  .l-questions-marquee { margin: 8px -20px 24px; gap: 10px; }
  .l-qm-bubble { padding: 8px 16px 8px 10px; gap: 10px; }
  .l-qm-bubble p { font-size: 13.5px; }
  .l-qm-cat { font-size: 9px; padding: 3px 8px; }
}

/* Honest disclaimer block below the cloud — replaces the old
   "Pas pour vous si…" card. One line, soft. */
.l-fit-footnote {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 20px;
  background: rgba(110, 108, 138, 0.06);
  border-left: 3px solid #B7B5CC;
  border-radius: 4px 12px 12px 4px;
}
.l-fit-footnote-ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  color: #6E6C8A;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.l-fit-footnote-ico svg { width: 18px; height: 18px; }
.l-fit-footnote p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #6E6C8A;
  font-style: italic;
}

@media (max-width: 1024px) {
  .l-question-bubble:nth-child(1),
  .l-question-bubble:nth-child(2),
  .l-question-bubble:nth-child(3),
  .l-question-bubble:nth-child(4) { grid-column: span 6; }
  .l-question-bubble:nth-child(5),
  .l-question-bubble:nth-child(6),
  .l-question-bubble:nth-child(7) { grid-column: span 6; }
  .l-question-bubble:nth-child(8) { grid-column: span 12; max-width: 100%; }
}
@media (max-width: 640px) {
  .l-questions-cloud { grid-template-columns: 1fr; gap: 12px; }
  .l-question-bubble { grid-column: span 1 !important; transform: none !important; max-width: 100% !important; }
  .l-question-bubble p { font-size: 15px; }
}
   Replaces the old .l-fit-grid 2x2 cards. The big violet card
   carries 4 positive criteria; the smaller muted card carries
   2 honest anti-criteria. The asymmetry is the message.
   ============================================================ */
.l-fit-split {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.l-fit-card {
  border-radius: 22px;
  padding: 32px 32px 28px;
  position: relative;
  display: flex; flex-direction: column;
}
.l-fit-yes {
  background:
    linear-gradient(180deg, rgba(123,63,228,0.06), rgba(123,63,228,0.02)),
    #FDFCFF;
  border: 1.5px solid #7B3FE4;
  box-shadow:
    0 24px 48px -20px rgba(123,63,228,0.30),
    0 12px 24px -10px rgba(123,63,228,0.15);
}
.l-fit-no {
  background: #FDFCFF;
  border: 1px solid #E3E0F5;
}
.l-fit-card-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.l-fit-card-head h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
  color: #0E0C1B;
  margin: 0;
}
.l-fit-no .l-fit-card-head h3 { color: #4a4866; }
.l-fit-card-badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.l-fit-card-badge svg { width: 20px; height: 20px; }
.l-fit-card-badge-yes {
  background: #7B3FE4;
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(123,63,228,0.6);
}
.l-fit-card-badge-no {
  background: rgba(255,82,82,0.10);
  color: #FF5252;
}

.l-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 18px;
}
.l-fit-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4866;
  padding-left: 28px;
  position: relative;
}
.l-fit-list li strong {
  display: block;
  color: #0E0C1B;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.l-fit-yes .l-fit-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    rgba(123,63,228,0.12)
    url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7l3 3 5-5' fill='none' stroke='%237B3FE4' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 13px no-repeat;
}
.l-fit-no .l-fit-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    rgba(255,82,82,0.10)
    url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4l6 6m0-6l-6 6' fill='none' stroke='%23FF5252' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

.l-fit-no-foot {
  margin-top: 28px;
  padding: 16px 18px;
  background: rgba(110, 108, 138, 0.06);
  border-left: 3px solid #B7B5CC;
  border-radius: 4px 12px 12px 4px;
  font-size: 13px;
  line-height: 1.55;
  color: #6E6C8A;
  font-style: italic;
}

@media (max-width: 1024px) {
  .l-fit-split { grid-template-columns: 1fr; gap: 18px; }
  .l-fit-card { padding: 26px 24px 22px; }
}
@media (max-width: 640px) {
  .l-fit-card { padding: 22px 20px 20px; }
  .l-fit-card-head { gap: 10px; margin-bottom: 18px; padding-bottom: 16px; }
  .l-fit-card-head h3 { font-size: 19px; }
  .l-fit-list li { padding-left: 24px; font-size: 13.5px; }
  .l-fit-list li strong { font-size: 15px; }
}
   Two side-by-side cards make the per-100-conversations cost
   gap impossible to miss.
   ============================================================ */
.l-price-compare {
  margin: 40px 0 0;
  padding: 36px 32px;
  background: linear-gradient(180deg, #FDFCFF, #F7F6FF);
  border: 1px solid #E3E0F5;
  border-radius: 22px;
}
.l-price-compare-head {
  text-align: center;
  margin-bottom: 28px;
}
.l-price-compare-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7B3FE4;
  font-weight: 700;
  margin-bottom: 10px;
}
.l-price-compare-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: #0E0C1B;
}
.l-price-compare-title strong { color: #5F2BC9; }

.l-price-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.l-price-compare-card {
  padding: 24px 24px 20px;
  border-radius: 16px;
  position: relative;
  text-align: left;
}
.l-price-compare-card.is-olvio {
  background: linear-gradient(180deg, rgba(123,63,228,0.10), rgba(123,63,228,0.04));
  border: 1.5px solid #7B3FE4;
  box-shadow: 0 12px 24px -8px rgba(123,63,228,0.18);
}
.l-price-compare-card.is-other {
  background: #fff;
  border: 1px solid #E3E0F5;
  opacity: 0.92;
}
.l-price-compare-label {
  font-size: 12px;
  font-weight: 600;
  color: #6E6C8A;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.l-price-compare-card.is-olvio .l-price-compare-label { color: #5F2BC9; }
.l-price-compare-amount {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  color: #0E0C1B;
  margin-bottom: 6px;
}
.l-price-compare-card.is-olvio .l-price-compare-amount { color: #5F2BC9; }
.l-price-compare-card.is-other .l-price-compare-amount {
  color: #6E6C8A;
  text-decoration: line-through;
  text-decoration-color: rgba(255,82,82,0.6);
  text-decoration-thickness: 2px;
}
.l-price-compare-unit {
  font-size: 14px;
  color: #4a4866;
  font-weight: 500;
  margin-bottom: 14px;
}
.l-price-compare-note {
  font-size: 12px;
  line-height: 1.5;
  color: #6E6C8A;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

@media (max-width: 640px) {
  .l-price-compare { padding: 28px 20px; }
  .l-price-compare-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ================================================================
   DEMO VIDEO — YouTube embed in the hero, 16:9 framed.
   Was an empty 16:9 placeholder with a dashed border and play
   icon. Now swapped for a real <iframe> hosting the YouTube demo.
   ================================================================ */
.l-demovideo {
  position: relative;
  z-index: 1;
  /* Match .l-container width so the video's left/right edges align
     with the stats row below (10 min, 6 langues, etc.) and every
     other section's content area. */
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.l-demovideo-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 18px;
  background: #0E0C1B;
  border: 1px solid rgba(166,120,255,0.18);
  box-shadow:
    0 12px 28px -12px rgba(123,63,228,0.22),
    0 6px 16px -8px rgba(0,0,0,0.45);
  overflow: hidden;
  position: relative;
}
.l-demovideo-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Placeholder state — used when no real video is wired in yet.
   Striped background, centered play button, mono explainer. */
.l-demovideo-frame-placeholder {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(123,63,228,0.18) 0%, rgba(14,12,27,0) 60%),
    #0E0C1B;
}
.l-demovideo-stripes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.l-demovideo-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px;
  text-align: center;
}
.l-demovideo-ph-meta { max-width: 460px; }
.l-demovideo-ph-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A678FF;
  margin-bottom: 8px;
}
.l-demovideo-ph-title {
  font-family: var(--font-display, inherit);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #F0EEF8;
}
.l-demovideo-ph-sub {
  font-size: 13px;
  color: #9694B4;
  margin-top: 6px;
  line-height: 1.5;
}
.l-demovideo-ph-sub code {
  font-family: var(--font-body);
  font-size: 12px;
  color: #C8B7FF;
  background: rgba(166,120,255,0.10);
  padding: 1px 6px;
  border-radius: 4px;
}
.l-demovideo-play {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7B3FE4, #A678FF);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 32px -8px rgba(123,63,228,0.55),
    0 0 0 8px rgba(123,63,228,0.10);
}
.l-demovideo-play svg {
  width: 36px; height: 36px;
  margin-left: 4px; /* optical centering of play triangle */
}
.l-demovideo-label { max-width: 460px; }
.l-demovideo-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A678FF;
  margin-bottom: 6px;
}
.l-demovideo-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #F0EEF8;
}
.l-demovideo-sub {
  font-size: 14px;
  color: #9694B4;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .l-demovideo { padding: 0; }
  .l-demovideo-play { width: 64px; height: 64px; }
  .l-demovideo-play svg { width: 26px; height: 26px; }
  .l-demovideo-title { font-size: 20px; }
}
.l-hero-v2 {
  position: relative;
  padding: 96px 24px 64px;
  text-align: center;
  overflow: hidden;
  /* Dark-to-light cut line precisely at the vertical mid-point of the
     demo video. The video has max-width 1112px (1160 container − 48px
     padding) and aspect-ratio 16:9, so its height equals
     min(100vw − 48px, 1112px) × 9/16. The cut sits at half that
     height + the section's 64px bottom padding. */
  --hero-video-w: min(100vw - 48px, 1112px);
  --hero-video-h: calc(var(--hero-video-w) * 9 / 16);
  --hero-cut: calc(64px + var(--hero-video-h) / 2);
  background:
    /* Top-most layer: light fill below the cut, transparent above. */
    linear-gradient(to top,
      #FDFCFF 0,
      #FDFCFF var(--hero-cut),
      transparent var(--hero-cut)),
    /* Decorative radials only visible in the dark zone above. */
    radial-gradient(ellipse 1000px 700px at 20% 10%, rgba(123, 63, 228, 0.22), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 60%, rgba(0, 214, 143, 0.08), transparent 60%),
    #08060F;
}
/* Gros disque violet derrière le titre, façon SaaS chic. */
.l-hero-orb {
  position: absolute;
  top: -340px; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 1100px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(166,120,255,0.55) 0%,
      rgba(123,63,228,0.30) 35%,
      rgba(123,63,228,0.10) 60%,
      transparent 75%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.l-hero-orb-mint {
  top: 80px; left: 78%;
  width: 480px; height: 480px;
  background: radial-gradient(circle at 50% 50%,
    rgba(0,214,143,0.22) 0%,
    rgba(0,214,143,0.08) 50%,
    transparent 72%);
  filter: blur(12px);
}
/* Grid de fond subtile */
.l-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 35%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 35%, transparent 80%);
  pointer-events: none; z-index: 0;
}
.l-hero-center {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto 56px;
}
.l-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  font-size: 13px;
  color: #F0EEF8;
  font-weight: 500;
  margin-bottom: 28px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.l-hero-pill:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(166,120,255,0.5);
  color: #F0EEF8;
}
.l-hero-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #00D68F;
  box-shadow: 0 0 0 3px rgba(0,214,143,0.18);
  flex-shrink: 0;
}
.l-hero-pill-arrow {
  color: #A678FF;
  /* SVG arrow is sized via inline style — kept the class for the
     accent color and the hover lift only. */
}
.l-hero-pill:hover .l-hero-pill-arrow { color: #C7A6FF; transform: translate(1px, -1px); }
.l-hero-pill-arrow { transition: transform .15s, color .15s; }
.l-hero-pill-text { line-height: 1; }

.l-hero-v2 h1 {
  font-family: var(--font-display);
  /* Toned down from clamp(38px, 5.4vw, 72px) — 72px on desktop was
     dominating the hero. 56px max stays impactful without crowding. */
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: #F0EEF8;
  margin: 0 0 24px;
  text-wrap: balance;
}
.l-hero-v2 .l-hero-sub {
  /* Sized + width tuned so the copy lands on exactly 2 balanced lines
     at desktop widths. The text is ~162 chars at 21px ≈ ~1700px total
     run, so max-width ≈ 880px gives ~80 chars per line × 2. */
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.5;
  color: #C8C5E0;
  max-width: 880px;
  margin: 0 auto 36px;
  text-wrap: balance;
}
.l-hero-v2 .l-hero-sub strong { color: #F0EEF8; font-weight: 600; }
.l-cta-center {
  justify-content: center;
  margin-bottom: 18px;
  /* Slightly larger gap so the two buttons read as a paired choice
     rather than crowded siblings. */
  gap: 16px;
}

/* Hero primary CTA — adopts the same Shopify-glyph treatment as the
   header and final CTA. Sized to match the ghost button so the row
   reads as a balanced pair, not "big primary + smaller secondary". */
.l-hero-cta {
  font-size: 15px;
  padding: 14px 24px;
  gap: 9px;
}
.l-hero-cta-shopify {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: currentColor;
}
.l-hero-cta-shopify svg { display: block; width: 18px; height: 18px; }

/* Hero secondary CTA — bare text was getting lost next to the purple
   pill. A hairline outline + an external-link arrow signal "ouvre une
   vraie page ailleurs" (a live Shopify product page with Olvio embedded)
   rather than "lance une vidéo". */
.l-hero-ghost {
  gap: 8px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #F0EEF8;
  border: 1px solid rgba(240, 238, 248, 0.18);
  border-radius: 9999px;
  background: rgba(240, 238, 248, 0.04);
  transition: color .15s, border-color .15s, background .15s, transform .15s;
}
.l-hero-ghost:hover {
  color: #fff;
  border-color: rgba(240, 238, 248, 0.36);
  background: rgba(240, 238, 248, 0.08);
  transform: translateY(-1px);
}
.l-hero-ghost-arrow {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: color .15s;
}
.l-hero-ghost:hover .l-hero-ghost-arrow {
  color: #fff;
}
.l-hero-v2 .l-trust-line {
  /* Aligned with .l-final-trust at the bottom of the page: same gap,
     same font-size, same muted lavender. Removes the chunky 18px check
     + green halo so the strip reads as quiet reassurance, not a chip row. */
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #B8B6CC;
}

/* ================================================================
   DEMO LOOP — fenêtre browser sous le hero
   ================================================================ */
.l-demoloop {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 8px;
}
.l-demoloop-frame {
  position: relative;
  background: #100D22;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow:
    0 60px 120px -30px rgba(123,63,228,0.4),
    0 30px 60px -20px rgba(0,0,0,0.6);
  overflow: hidden;
}
/* Chrome navigateur */
.l-demoloop-chrome {
  display: grid;
  grid-template-columns: 70px 1fr 24px;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: #161228;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.l-demoloop-dots {
  display: flex; gap: 6px;
}
.l-demoloop-dots i {
  width: 11px; height: 11px; border-radius: 50%;
  background: #2A2548;
}
.l-demoloop-dots i:nth-child(1) { background: #FF5F57; }
.l-demoloop-dots i:nth-child(2) { background: #FEBC2E; }
.l-demoloop-dots i:nth-child(3) { background: #28C840; }

.l-demoloop-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  grid-column: 2;
  grid-row: 1;
  display: none; /* on dépose les tabs hors-vue, l'URL bar suffit */
}
.l-demoloop-url {
  grid-column: 2;
  display: flex; align-items: center; gap: 8px;
  background: #100D22;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 7px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #9694B4;
  min-width: 0;
}
.l-demoloop-url svg { width: 12px; height: 12px; color: #00D68F; flex-shrink: 0; }
.l-demoloop-url span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.l-demoloop-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  height: 540px;
}

/* ---- Page produit factice (gauche) ---- */
.l-demoloop-page {
  --scene-tone: #FFF1E8;
  --scene-accent: #FF8C5C;
  --scene-ink: #1A0F0A;
  background: var(--scene-tone);
  color: var(--scene-ink);
  display: flex;
  flex-direction: column;
  transition: background .6s ease;
  position: relative;
  overflow: hidden;
}
.l-demoloop-topbar {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.l-demoloop-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--scene-ink);
}
.l-demoloop-nav {
  display: flex; gap: 14px; margin-left: auto;
}
.l-demoloop-nav span {
  width: 38px; height: 7px; border-radius: 4px;
  background: rgba(0,0,0,0.10);
}
.l-demoloop-icons { display: flex; gap: 12px; color: rgba(0,0,0,0.55); }
.l-demoloop-icons svg { width: 16px; height: 16px; }

.l-demoloop-pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  padding: 24px;
  flex: 1;
  min-height: 0;
}
.l-demoloop-gallery {
  display: flex; flex-direction: column; gap: 10px;
  min-height: 0;
}
.l-demoloop-mainshot {
  flex: 1;
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.6), transparent 50%),
    linear-gradient(135deg, var(--scene-accent), color-mix(in oklab, var(--scene-accent) 55%, var(--scene-ink)));
  position: relative;
  overflow: hidden;
  min-height: 220px;
  transition: background .6s ease;
}
.l-demoloop-mainshot::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 24px,
      rgba(255,255,255,0.06) 24px 25px
    );
}
.l-demoloop-mainshot::after {
  /* Faux "produit" abstrait — bouteille/objet stylisé en CSS */
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 130px;
  border-radius: 14px 14px 18px 18px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.55) 40%,
    rgba(255,255,255,0.25));
  box-shadow:
    inset 0 -20px 40px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.4),
    0 16px 40px rgba(0,0,0,0.2);
}
.l-demoloop-thumbs {
  display: flex; gap: 6px;
}
.l-demoloop-thumbs i {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(0,0,0,0.06);
  border: 1px solid transparent;
}
.l-demoloop-thumbs i.is-on {
  background: var(--scene-accent);
  border-color: var(--scene-ink);
  opacity: 0.5;
}

.l-demoloop-info { display: flex; flex-direction: column; gap: 10px; }
.l-demoloop-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--scene-accent);
  font-weight: 700;
}
.l-demoloop-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--scene-ink);
}
.l-demoloop-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--scene-ink);
  margin-top: 4px;
}
.l-demoloop-variants-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.55);
  margin-top: 8px;
}
.l-demoloop-variants {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.l-demoloop-variants span {
  position: relative;
  padding: 7px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
  color: var(--scene-ink);
}
.l-demoloop-variants span.is-on {
  background: var(--scene-ink);
  color: #fff;
  border-color: var(--scene-ink);
}
.l-demoloop-variants span.is-on i {
  position: absolute;
  inset: -3px;
  border-radius: 9999px;
  border: 2px solid var(--scene-accent);
  pointer-events: none;
  animation: l-demoloop-variant-pulse 1.6s ease-out infinite;
}
@keyframes l-demoloop-variant-pulse {
  0%   { transform: scale(0.96); opacity: 0.9; }
  100% { transform: scale(1.18); opacity: 0; }
}

.l-demoloop-skel { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.l-demoloop-skel span {
  height: 7px; border-radius: 4px;
  background: rgba(0,0,0,0.08);
}
.l-demoloop-fakebtn {
  margin-top: auto;
  padding: 13px 18px;
  border-radius: 12px;
  background: var(--scene-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2px;
}

/* ---- Widget Olvio docké (droite) ---- */
.l-demoloop-widget {
  background: #0E0C1B;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
  color: #F0EEF8;
}
.l-demoloop-wh {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.l-demoloop-wh-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #f5d4b8 0%, #c89876 70%, #8b6549 100%);
  overflow: hidden;
}
.l-demoloop-wh-avatar svg { display: none; }
.l-demoloop-wh-text { flex: 1; min-width: 0; }
.l-demoloop-wh-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #F0EEF8;
}
.l-demoloop-wh-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px;
  color: #6E6C8A;
  margin-top: 1px;
  font-family: var(--font-body);
}
.l-demoloop-wh-status i {
  width: 5px; height: 5px; border-radius: 50%;
  background: #00D68F;
  box-shadow: 0 0 8px rgba(0,214,143,0.6);
}
.l-demoloop-wh-close { color: #6E6C8A; }
.l-demoloop-wh-close svg { width: 16px; height: 16px; }

.l-demoloop-wmsgs {
  flex: 1;
  padding: 18px 14px 8px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.l-demoloop-bubble {
  max-width: 86%;
  padding: 9px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  animation: l-demoloop-bubble-in .4s ease-out forwards;
}
.l-demoloop-bubble.is-user {
  align-self: flex-end;
  background: #7B3FE4;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.l-demoloop-bubble.is-bot {
  align-self: flex-start;
  background: #161228;
  color: #F0EEF8;
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom-left-radius: 4px;
}
.l-demoloop-bubble.is-bot strong { color: #A678FF; }
.l-demoloop-bubble.is-bot em { color: #6E6C8A; font-style: normal; }
@keyframes l-demoloop-bubble-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.l-demoloop-winput {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #161228;
  margin: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 40px;
  margin-bottom: 8px;
}
.l-demoloop-input-text {
  flex: 1;
  font-size: 12.5px;
  color: #F0EEF8;
  font-family: var(--font-body);
  white-space: nowrap; overflow: hidden;
}
.l-demoloop-caret {
  display: inline-block;
  width: 1.5px; height: 14px;
  background: #A678FF;
  animation: l-demoloop-caret-blink 1s steps(1) infinite;
}
@keyframes l-demoloop-caret-blink {
  50% { opacity: 0; }
}
.l-demoloop-send {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(123,63,228,0.18);
  color: #A678FF;
  border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.l-demoloop-send svg { width: 13px; height: 13px; }
.l-demoloop-foot {
  text-align: center;
  font-size: 10px;
  color: #6E6C8A;
  padding: 0 0 12px;
  letter-spacing: 0.3px;
}

/* Pager scènes */
.l-demoloop-pager {
  position: absolute;
  left: 50%; bottom: 14px;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 2;
}
.l-demoloop-pager button {
  width: 32px; height: 6px;
  padding: 0;
  background: rgba(255,255,255,0.12);
  border: 0; border-radius: 9999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.l-demoloop-pager button:hover { background: rgba(255,255,255,0.2); }
.l-demoloop-pager button.is-on {
  background: rgba(255,255,255,0.2);
}
.l-demoloop-pager button.is-on::after {
  content: ""; position: absolute; inset: 0;
  background: #A678FF;
  border-radius: 9999px;
  animation: l-demoloop-pager-fill 6.5s linear forwards;
}
@keyframes l-demoloop-pager-fill {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* Marquee catégories */
.l-demoloop-marquee {
  margin: 36px -24px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent);
}
.l-demoloop-marquee-track {
  display: flex; align-items: center; gap: 26px;
  white-space: nowrap;
  animation: l-demoloop-marquee 38s linear infinite;
  width: max-content;
}
.l-demoloop-marquee-track span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #6E6C8A;
}
.l-demoloop-marquee-track i {
  color: #2A2548;
  font-size: 22px;
  font-style: normal;
}
@keyframes l-demoloop-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   FEATURES STACK — 3 alternating rows with original illustrations
   ================================================================ */
.l-feat-stack {
  display: flex; flex-direction: column;
  gap: 80px;
}
.l-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.l-feat-row.is-reverse .l-feat-copy { order: 2; }
.l-feat-row.is-reverse .l-feat-viz  { order: 1; }

.l-feat-copy { max-width: 480px; }
.l-feat-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  color: #A678FF;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.l-feat-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #F0EEF8;
  margin: 0 0 16px;
}
.l-feat-copy > p {
  font-size: 16px;
  line-height: 1.65;
  /* Bumped from #9694B4 (haze) to #C7C5DC for readability — the
     darker section background was draining contrast on description
     paragraphs. */
  color: #C7C5DC;
  margin: 0 0 20px;
}
.l-feat-copy strong { color: #F0EEF8; font-weight: 600; }
.l-feat-copy .l-vs { padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 8px; }

.l-feat-viz {
  position: relative;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
}

/* ----- VIZ 1 — product variant card + Olvio bubble ----- */
.l-viz-variant {
  flex-direction: column;
  gap: 0;
}
.l-viz-card {
  background: #FDFCFF;
  color: #0E0C1B;
  border-radius: 18px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.5),
    0 12px 24px -8px rgba(123,63,228,0.3);
}
.l-viz-card-product {
  width: 380px;
  padding: 20px;
  display: flex; gap: 18px;
  position: relative;
  z-index: 2;
}
.l-viz-product-img {
  width: 100px; height: 130px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFE4D2, #FFA079);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.l-viz-product-img-shape {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 92px;
  border-radius: 10px 10px 14px 14px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.55) 40%,
    rgba(255,255,255,0.3));
  box-shadow:
    inset 0 -12px 24px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.4),
    0 8px 16px rgba(0,0,0,0.12);
}
.l-viz-product-badge {
  position: absolute; top: 8px; left: 8px;
  background: #0E0C1B; color: #fff;
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  padding: 3px 6px; border-radius: 4px;
}
.l-viz-product-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.l-viz-product-eyebrow {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 1.5px; font-weight: 700;
  color: #FF7B45;
}
.l-viz-product-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; letter-spacing: -0.3px;
  line-height: 1.2; color: #0E0C1B;
}
.l-viz-product-row { display: flex; justify-content: space-between; align-items: center; }
.l-viz-product-price { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.l-viz-product-stars { font-size: 11px; color: #FF7B45; font-weight: 600; }
.l-viz-product-stars small { color: #6E6C8A; font-weight: 500; }
.l-viz-variant-label { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; color: #6E6C8A; margin-top: 6px; }
.l-viz-variant-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.l-viz-variant-pills span {
  position: relative;
  padding: 5px 11px;
  border-radius: 9999px;
  background: #F7F6FF;
  border: 1px solid #E3E0F5;
  font-size: 12px; font-weight: 500;
  color: #0E0C1B;
}
.l-viz-variant-pills span.is-on {
  background: #0E0C1B; color: #fff; border-color: #0E0C1B;
}
.l-viz-variant-pills span.is-on i {
  position: absolute; inset: -3px;
  border-radius: 9999px;
  border: 2px solid #A678FF;
  pointer-events: none;
}
.l-viz-variant-pills span.is-out { color: #B7B5CC; text-decoration: line-through; }

.l-viz-link {
  width: 80px; height: 64px;
  color: #A678FF;
  margin: -6px 0;
  position: relative;
  z-index: 1;
}

.l-viz-bubble {
  width: 380px;
  background: linear-gradient(180deg, rgba(123,63,228,0.18), rgba(123,63,228,0.05));
  border: 1px solid rgba(166,120,255,0.4);
  border-radius: 18px;
  padding: 16px 18px;
  position: relative;
  z-index: 2;
}
.l-viz-bubble-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.l-viz-bubble-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #A678FF;
  box-shadow: 0 0 12px rgba(166,120,255,0.6);
}
.l-viz-bubble-name {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: -0.2px;
  color: #F0EEF8;
}
.l-viz-bubble p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #F0EEF8;
}
.l-viz-bubble strong { color: #A678FF; font-weight: 600; }
.l-viz-bubble em { color: #6E6C8A; font-style: normal; font-size: 12px; display: block; margin-top: 4px; }

/* ----- VIZ 2 — knowledge base panel ----- */
.l-viz-kb { padding: 24px; }
.l-viz-card-kb {
  width: 100%;
  max-width: 460px;
  padding: 22px 22px 16px;
  position: relative;
  z-index: 2;
}
.l-viz-kb-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.l-viz-kb-title {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  letter-spacing: -0.2px;
  color: #0E0C1B;
}
.l-viz-kb-title svg { width: 18px; height: 18px; color: #7B3FE4; }
.l-viz-kb-state {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  color: #00875A;
  font-weight: 600;
}
.l-viz-kb-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #00D68F;
  box-shadow: 0 0 0 0 rgba(0,214,143,0.5);
  animation: l-viz-kb-pulse 1.6s ease-out infinite;
}
@keyframes l-viz-kb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,214,143,0.6); }
  100% { box-shadow: 0 0 0 10px rgba(0,214,143,0); }
}

.l-viz-kb-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.l-viz-kb-row {
  display: grid;
  grid-template-columns: 22px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 10px;
  background: #F7F6FF;
  font-size: 13px;
  color: #0E0C1B;
}
.l-viz-kb-ico { font-size: 14px; }
.l-viz-kb-label { color: #0E0C1B; }
.l-viz-kb-num {
  font-family: var(--font-body);
  font-size: 12px;
  color: #6E6C8A;
  font-weight: 600;
}
.l-viz-kb-ok {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,135,90,0.15);
  color: #00875A;
  font-size: 11px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.l-viz-kb-row.is-syncing { background: rgba(123,63,228,0.10); }
.l-viz-kb-spin { color: #7B3FE4; display: inline-flex; }
.l-viz-kb-spin svg {
  width: 14px; height: 14px;
  animation: l-viz-kb-spin 1.1s linear infinite;
}
@keyframes l-viz-kb-spin {
  to { transform: rotate(360deg); }
}

.l-viz-kb-foot {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; color: #6E6C8A; font-family: var(--font-body);
}
.l-viz-kb-bar {
  flex: 1; height: 6px; border-radius: 9999px;
  background: #F7F6FF;
  overflow: hidden;
}
.l-viz-kb-bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, #7B3FE4, #A678FF);
  border-radius: 9999px;
  animation: l-viz-kb-progress 3s ease-in-out infinite;
}
@keyframes l-viz-kb-progress {
  0%, 100% { width: 78%; }
  50%      { width: 92%; }
}

/* chips qui flottent autour */
.l-viz-orbit {
  position: absolute;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: #F0EEF8;
  font-size: 12px;
  font-family: var(--font-body);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  animation: l-viz-orbit-float 6s ease-in-out infinite;
}
.l-viz-orbit-1 { top: 8%;  left: -2%;  animation-delay: 0s; }
.l-viz-orbit-2 { top: 18%; right: -4%; animation-delay: -1.5s; }
.l-viz-orbit-3 { bottom: 18%; left: 2%; animation-delay: -3s; }
.l-viz-orbit-4 { bottom: 4%; right: 0%; animation-delay: -4.5s; }
@keyframes l-viz-orbit-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ----- VIZ 3 — BYOK billing cards ----- */
.l-viz-byok {
  flex-direction: column;
  gap: 14px;
  padding: 8px;
}
.l-viz-card-bill {
  width: 100%;
  max-width: 440px;
  padding: 18px 20px;
  position: relative;
}
.l-viz-bill-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.l-viz-bill-brand { display: flex; align-items: center; gap: 10px; }
.l-viz-bill-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.l-viz-bill-logo-anthropic { background: #CC785C; }
.l-viz-bill-logo-olvio     {
  background: linear-gradient(135deg, #7B3FE4, #A678FF);
}
.l-viz-bill-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  letter-spacing: -0.2px; color: #0E0C1B;
}
.l-viz-bill-sub {
  font-size: 11px; color: #6E6C8A;
  font-family: var(--font-body);
}
.l-viz-bill-pill {
  background: #F7F6FF; color: #5F2BC9;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 8px; border-radius: 9999px;
  border: 1px solid #E3E0F5;
}
.l-viz-bill-pill.is-flat { background: #ECFDF5; color: #00875A; border-color: #B7F1D5; }

.l-viz-bill-lines { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.l-viz-bill-line {
  display: grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap: 8px;
  font-size: 12px;
  color: #6E6C8A;
  font-family: var(--font-body);
}
.l-viz-bill-line :last-child { text-align: right; color: #0E0C1B; font-weight: 600; }
.l-viz-bill-line .green { color: #00875A; }
.l-viz-bill-total {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed #E3E0F5;
  font-size: 12px;
  color: #6E6C8A;
  font-family: var(--font-body);
}
.l-viz-bill-total strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: #0E0C1B;
  letter-spacing: -0.6px;
}
.l-viz-bill-flat {
  display: flex; flex-direction: column; gap: 6px;
}
.l-viz-bill-flat span {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #0E0C1B;
}
.l-viz-bill-flat span small {
  font-size: 13px; font-weight: 500; color: #6E6C8A;
  letter-spacing: 0;
}
.l-viz-bill-flat i {
  font-size: 12px; color: #6E6C8A; font-style: normal;
}

.l-viz-bars {
  width: 100%;
  max-width: 440px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 10px;
}
.l-viz-bars-row {
  display: grid;
  grid-template-columns: 60px 1fr 110px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #9694B4;
}
.l-viz-bars-name { font-weight: 600; color: #F0EEF8; }
.l-viz-bars-track {
  height: 10px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.l-viz-bars-fill {
  display: block; height: 100%;
  border-radius: 9999px;
}
.l-viz-bars-fill.is-olvio  { background: linear-gradient(90deg, #7B3FE4, #A678FF); }
.l-viz-bars-fill.is-market { background: linear-gradient(90deg, #FF5252, #FF8C5C); }
.l-viz-bars-amt { font-family: var(--font-body); color: #F0EEF8; text-align: right; }
.l-viz-bars-amt strong { font-weight: 700; }

/* ================================================================
   Responsive — hero v2, demo loop, feat stack
   ================================================================ */
@media (max-width: 1024px) {
  .l-hero-v2 { padding: 72px 20px 48px; }
  .l-demoloop-body { grid-template-columns: 1fr; height: auto; }
  .l-demoloop-widget { border-left: 0; border-top: 1px solid rgba(255,255,255,0.06); }
  .l-demoloop-wmsgs { min-height: 220px; }
  .l-feat-row { grid-template-columns: 1fr; gap: 40px; }
  .l-feat-row.is-reverse .l-feat-copy { order: 0; }
  .l-feat-row.is-reverse .l-feat-viz  { order: 1; }
  .l-feat-copy { max-width: none; }
  .l-feat-stack { gap: 56px; }
}
@media (max-width: 640px) {
  .l-hero-v2 h1 { font-size: clamp(32px, 8vw, 44px); letter-spacing: -1.2px; }
  .l-hero-v2 .l-hero-sub { font-size: 15px; }
  .l-demoloop { padding: 0; }
  .l-demoloop-frame { border-radius: 14px; }
  .l-demoloop-pdp { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .l-demoloop-mainshot { min-height: 180px; }
  .l-demoloop-marquee-track span { font-size: 18px; }
  .l-viz-card-product, .l-viz-bubble { width: 100%; max-width: 360px; }
  .l-viz-link { transform: scale(0.85); }
  .l-feat-viz { min-height: 0; }
  .l-viz-orbit { display: none; }
}

/* ============================================================
   "Ce qu'Olvio change vraiment" — 3 benefit visuals
   ============================================================ */

/* ROW 1 — Conversion curves. Two SVG curves (linear baseline vs
   exponential Olvio) drawn on a small chart with grid + legend.
   Curves use stroke-dasharray + animation to "draw" on view. */
.l-viz-curve { padding: 8px 0; }
.l-viz-curve-card {
  width: 100%; max-width: 440px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.5);
}
.l-viz-curve-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.l-viz-curve-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #A678FF;
  font-weight: 700;
}
.l-viz-curve-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #F0EEF8;
  letter-spacing: -0.2px;
  margin-top: 2px;
}
.l-viz-curve-pill {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  padding: 4px 14px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #7B3FE4, #A678FF);
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(123,63,228,0.5);
}
.l-viz-curve-svg {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
}
.l-viz-curve-grid line {
  stroke: rgba(255,255,255,0.06);
  stroke-width: 1;
}
.l-viz-curve-ylabels text {
  font-family: var(--font-body);
  font-size: 7px;
  fill: #6E6C8A;
  letter-spacing: 0.3px;
  text-anchor: end;
}
.l-viz-curve-xlabels text {
  font-family: var(--font-body);
  font-size: 7px;
  fill: #6E6C8A;
  letter-spacing: 0.3px;
}
/* Draw-on animation: stroke-dasharray approximates the polyline
   length, dashoffset animates to 0. */
.l-viz-curve-line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: l-viz-curve-draw 2.4s cubic-bezier(.6, .05, .28, .91) forwards;
}
.l-viz-curve-line-base  { animation-delay: 0.2s; }
.l-viz-curve-line-olvio { animation-delay: 0.6s; }
@keyframes l-viz-curve-draw {
  to { stroke-dashoffset: 0; }
}
.l-viz-curve-area {
  opacity: 0;
  animation: l-viz-curve-fade .8s ease-out forwards;
}
.l-viz-curve-area-base  { animation-delay: 1.6s; }
.l-viz-curve-area-olvio { animation-delay: 2.2s; }
@keyframes l-viz-curve-fade {
  to { opacity: 1; }
}
.l-viz-curve-legend {
  display: flex; flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.08);
}
.l-viz-curve-leg-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}
.l-viz-curve-leg-swatch {
  width: 12px; height: 12px;
  border-radius: 3px;
}
.l-viz-curve-leg-swatch.is-olvio { background: #A678FF; }
.l-viz-curve-leg-swatch.is-base {
  background: rgba(110,108,138,0.4);
  border: 1px dashed #6E6C8A;
}
.l-viz-curve-leg-name { color: #F0EEF8; font-weight: 500; }
.l-viz-curve-leg-val {
  font-family: var(--font-body);
  color: #9694B4;
}
.l-viz-curve-leg-val strong {
  color: #A678FF;
  font-weight: 700;
}

/* ROW 2 — Recommendation scenarios. Two stacked cards, each
   labelled (Alternative / Cross-sell) with a short visitor quote
   and a mini product card. */
.l-viz-recos {
  flex-direction: column;
  gap: 14px;
  padding: 8px 0;
}
.l-viz-reco {
  width: 100%; max-width: 380px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 16px 14px;
  position: relative;
}
.l-viz-reco-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 9999px;
  background: rgba(166,120,255,0.18);
  color: #A678FF;
  margin-bottom: 10px;
}
.l-viz-reco-tag.is-cross {
  background: rgba(0,214,143,0.16);
  color: #00D68F;
}
.l-viz-reco-q {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #F0EEF8;
  margin-bottom: 12px;
  font-style: italic;
}
.l-viz-reco-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  background: #FDFCFF;
  border-radius: 10px;
}
.l-viz-reco-card-img {
  width: 56px; height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFE4D2, #FFA079);
  position: relative;
  overflow: hidden;
}
.l-viz-reco-card-img.is-cream {
  background: linear-gradient(135deg, #FFF1E8, #F0D8B8);
}
.l-viz-reco-card-bottle {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 40px;
  border-radius: 4px 4px 6px 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.55) 40%, rgba(255,255,255,0.3));
  box-shadow: inset 0 -6px 12px rgba(0,0,0,0.12), inset 0 0 0 1px rgba(255,255,255,0.4), 0 3px 6px rgba(0,0,0,0.12);
}
.l-viz-reco-card-jar {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 24px;
  border-radius: 4px 4px 8px 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.55) 40%, rgba(255,255,255,0.3));
  box-shadow: inset 0 -4px 10px rgba(0,0,0,0.12), inset 0 0 0 1px rgba(255,255,255,0.4), 0 3px 6px rgba(0,0,0,0.12);
}
.l-viz-reco-card-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.l-viz-reco-card-name {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; color: #0E0C1B;
  letter-spacing: -0.2px;
}
.l-viz-reco-card-price {
  font-size: 12px;
  color: #6E6C8A;
  font-weight: 600;
}

/* ROW 3 — Multilingue. Colonne de 6 questions visiteurs (sur un
   sac de rando) en 6 langues, légèrement superposées et avec une
   rotation par carte pour casser l'effet "liste droite". */
.l-viz-langs {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 380px;
  margin: 0 auto;
}
/* Globe en arrière-plan : grand, centré, en sourdine. */
.l-viz-globe {
  position: absolute;
  width: 460px; height: 460px;
  left: calc(50% - 230px);
  top: calc(50% - 230px);
  pointer-events: none;
  z-index: 0;
  animation: l-viz-globe-spin 80s linear infinite;
}
@keyframes l-viz-globe-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.l-viz-lang {
  position: absolute;
  left: 50%;
  top: 50%;
  /* Center on origin, then nudge by per-card --x / --y and apply --r. */
  transform:
    translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px)))
    rotate(var(--r, 0deg));
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  background: #161228;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 12px 24px -14px rgba(0,0,0,0.6);
  z-index: 1;
  opacity: 0;
  animation: l-viz-lang-in .55s cubic-bezier(.32, .72, .24, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}
@keyframes l-viz-lang-in {
  from {
    opacity: 0;
    transform:
      translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px) + 8px))
      rotate(var(--r, 0deg));
  }
  to {
    opacity: 1;
    transform:
      translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px)))
      rotate(var(--r, 0deg));
  }
}
.l-viz-lang-flag {
  font-size: 18px;
  line-height: 1;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.l-viz-lang p {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  color: #F0EEF8;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .l-viz-langs { height: 420px; max-width: 100%; }
  .l-viz-lang { padding: 8px 12px; }
  .l-viz-lang p { font-size: 12.5px; white-space: normal; max-width: 200px; }
}

@media (max-width: 1024px) {
  .l-viz-curve-card,
  .l-viz-reco,
  .l-viz-lang { max-width: 100%; }
}

/* ================================================================
   ALT VIZ — A single "Olvio recommande" product card. Quote of the
   visitor above; the card itself in the middle (image + name + sub +
   price + CTA); three "why" chips below. Simple, scannable, one
   focal point instead of two.
   ================================================================ */
.l-viz-recopick {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.l-viz-recopick-quote {
  position: relative;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  color: #C8C5E0;
  font-style: italic;
  padding-left: 18px;
  border-left: 2px solid rgba(166,120,255,0.35);
}
.l-viz-recopick-quote-mark {
  font-family: var(--font-display);
  color: #A678FF;
  font-weight: 700;
  font-size: 18px;
  font-style: normal;
  margin-right: 2px;
}
.l-viz-recopick-card {
  position: relative;
  background: #F7F6FF;
  border-radius: 18px;
  padding: 18px;
  box-shadow:
    0 30px 60px -20px rgba(123,63,228,0.35),
    0 0 0 1px rgba(166,120,255,0.12);
}
.l-viz-recopick-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #5F2BC9;
  background: rgba(123,63,228,0.10);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.l-viz-recopick-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7B3FE4;
  box-shadow: 0 0 0 3px rgba(123,63,228,0.18);
  display: inline-block;
}
.l-viz-recopick-body {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
}
.l-viz-recopick-img {
  width: 76px; height: 76px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FDE7C8, #F5C58A);
  position: relative;
  overflow: hidden;
}
.l-viz-recopick-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.l-viz-recopick-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #0E0C1B;
  line-height: 1.2;
}
.l-viz-recopick-sub {
  font-size: 12px;
  color: #6E6C8A;
}
.l-viz-recopick-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #0E0C1B;
  letter-spacing: -0.3px;
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}
.l-viz-recopick-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 12px;
  background: #0E0C1B;
  color: #F0EEF8;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.1px;
}
.l-viz-recopick-cta span {
  transition: transform .2s;
}
.l-viz-recopick-why {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.l-viz-recopick-chip {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0,214,143,0.10);
  color: #6BE8B6;
  border: 1px solid rgba(0,214,143,0.20);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .l-viz-recopick { max-width: 100%; }
}

/* ================================================================
   PROCESS VIZ — "Signals → Olvio → Recommendations" flowchart.
   Replaces the recopick single-card viz. 3 chip-shaped signal
   captures at the top, a centered Olvio hub in the middle, and 3
   product output cards at the bottom — connected by faint hairlines.
   Inspired by the Dialog-style process diagram.
   ================================================================ */
.l-viz-process {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: rgba(166,120,255,0.30); /* hairline color for connectors */
}

/* ---- Top: visitor signals ---- */
.l-viz-process-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.l-viz-process-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #E6E3F5;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  max-width: 100%;
  text-align: left;
  line-height: 1.3;
}
.l-viz-process-chip-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  color: #A678FF;
  flex-shrink: 0;
}
.l-viz-process-chip-ico svg { width: 14px; height: 14px; }

/* ---- Connector trunks ---- */
.l-viz-process-trunk {
  width: 2px;
  height: 22px;
  margin: 6px 0;
  display: block;
  overflow: visible;
}
.l-viz-process-fan {
  width: 100%;
  height: 44px;
  margin: 6px 0;
  display: block;
  overflow: visible;
}

/* ---- Middle: Olvio hub ---- */
.l-viz-process-hub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0E0C1B;
  color: #F0EEF8;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  padding: 10px 22px 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(166,120,255,0.30);
  box-shadow:
    0 14px 32px -10px rgba(123,63,228,0.45),
    inset 0 0 0 3px rgba(166,120,255,0.06);
}
.l-viz-process-hub-mark {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7B3FE4, #A678FF);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.l-viz-process-hub-mark svg { width: 12px; height: 12px; }

/* ---- Bottom: 3 product output cards ---- */
.l-viz-process-out {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}
.l-viz-process-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  min-width: 0;
  position: relative;
}
.l-viz-process-card-tag {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #A678FF;
  background: rgba(166,120,255,0.12);
  padding: 3px 7px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 6px;
}
.l-viz-process-card-tag.is-cross {
  color: #6BE8B6;
  background: rgba(0,214,143,0.14);
}
.l-viz-process-card-tag.is-bundle {
  color: #FFC93C;
  background: rgba(255,201,60,0.14);
}
.l-viz-process-card-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, #FDE7C8, #F5C58A);
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}
.l-viz-process-card-img.is-cream {
  background: linear-gradient(135deg, #FFF1E8, #F0D8B8);
}
.l-viz-process-card-img.is-bundle {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 4px, transparent 4px 12px),
    linear-gradient(135deg, #C8B7FF, #7B3FE4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-viz-process-card-bundle-mark {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.l-viz-process-card-name {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: #F0EEF8;
  line-height: 1.25;
}
.l-viz-process-card-price {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #9694B4;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1024px) {
  .l-viz-process { max-width: 100%; }
}

/* ---- Minimal variant: 1 question → Olvio → 1 reco ----------------
   Kept for backwards-compat; current Recommandation feature row uses
   .l-viz-chat instead (mini-chat with embedded product card). */
.l-viz-process-min .l-viz-process-out {
  display: flex;
  justify-content: center;
}
.l-viz-process-min .l-viz-process-card {
  max-width: 180px;
  width: 100%;
}

/* ================================================================
   FEATURE VIZ — l-viz-pick
   "Le bon produit, au bon moment." 3 product cards in a fan
   layout: the middle one pulled forward (slight scale + violet
   halo), the two side ones rotated outward and faded. Custom
   cards (not .olvio-card) so the proportions, padding and image
   panels are tuned for this dark-section context.
   ================================================================ */
.l-viz-pick {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 32px 24px;
}
.l-viz-pick-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  /* No gap — overlap is controlled per-card via translateX so the
     side cards tuck behind the centre one. */
  gap: 0;
}
.l-viz-pick-card {
  flex-shrink: 0;
  width: 168px;
  background: #15112A;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .5s ease, opacity .5s ease, box-shadow .5s ease;
  /* Soft baseline shadow so cards have weight even on the dark bg. */
  box-shadow:
    0 10px 30px -10px rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.3);
}
.l-viz-pick-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  /* Subtle neutral bg behind the packshot — the photos already have
     a light grey backdrop, this just continues it cleanly into the
     card frame. */
  background: linear-gradient(180deg, #F4F1FA 0%, #E8E2F2 100%);
  overflow: hidden;
}
.l-viz-pick-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* CSS-drawn bottles — kept for legacy callers, no longer used by the
   pick viz which now renders real product photos. */
.l-viz-pick-bottle {
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 36%;
  aspect-ratio: 0.42 / 1;
  border-radius: 8px 8px 14px 14px / 10px 10px 14px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55));
  box-shadow:
    inset 0 -10px 16px rgba(0, 0, 0, 0.08),
    inset 0 2px 0 rgba(255, 255, 255, 0.7),
    0 6px 14px rgba(0, 0, 0, 0.18);
}
.l-viz-pick-bottle::before {
  /* Bottle neck */
  content: '';
  position: absolute;
  top: -14%; left: 50%;
  transform: translateX(-50%);
  width: 42%; height: 16%;
  border-radius: 3px 3px 0 0;
  background: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.l-viz-pick-bottle::after {
  /* Label band */
  content: '';
  position: absolute;
  left: 12%; right: 12%; top: 35%;
  height: 36%;
  background: rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.l-viz-pick-bottle.is-amber { background: linear-gradient(180deg, #E0A772, #B97B3F); }
.l-viz-pick-bottle.is-lilac { background: linear-gradient(180deg, #BFA4F0, #7B3FE4); }
.l-viz-pick-bottle.is-coral { background: linear-gradient(180deg, #EDB09A, #C56D54); }

.l-viz-pick-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.l-viz-pick-title {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: #F0EEF8;
  line-height: 1.3;
  letter-spacing: -0.1px;
}
.l-viz-pick-price {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: #9694B4;
  font-variant-numeric: tabular-nums;
}

/* Side cards — rotated outward and pulled inward (translateX) so they
   tuck behind the centre card. Lower opacity does the de-emphasis,
   no blur (blur on small text reads poorly). */
.l-viz-pick-side {
  opacity: 0.42;
  z-index: 1;
}
.l-viz-pick-left {
  transform: rotate(-7deg) translateX(34px);
  transform-origin: right center;
}
.l-viz-pick-right {
  transform: rotate(7deg) translateX(-34px);
  transform-origin: left center;
}

/* The pick — full opacity, slight lift, soft violet halo. The halo
   uses two layered shadows: a tight inner ring (border-mimicking) +
   a wide diffuse glow underneath. */
.l-viz-pick-main {
  z-index: 3;
  transform: scale(1.06);
  border-color: rgba(166, 120, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(166, 120, 255, 0.35),
    0 24px 60px -12px rgba(123, 63, 228, 0.55),
    0 8px 22px -6px rgba(0, 0, 0, 0.45);
}

/* ================================================================
   Mobile polish — additive rules. Desktop stays untouched.
   ================================================================ */
@media (max-width: 1024px) {
  /* CRITICAL : inline styles like `style="margin: 0px 176px"` are
     used on several .l-section-h / .l-section-sub to constrain
     title widths nicely on desktop. On mobile they compress titles
     into impossible single-column slivers (e.g. 375px - 352px =
     23px of writing space). Neutralize lateral margins + hardcoded
     widths below 1024px so titles fill the section padding cleanly. */
  .l-section .l-section-h[style],
  .l-section .l-section-sub[style] {
    margin-left: auto !important;
    margin-right: auto !important;
    width: auto !important;
    max-width: 100% !important;
  }
}
@media (max-width: 640px) {
  /* --- Section padding lateral 16px on mobile, as requested ----- */
  .l-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
    /* Reduce top/bottom on mobile — 96px desktop / 64px tablet was
       still too generous on phones. */
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .l-hero, .l-hero-v2 {
    padding-left: 16px !important;
    padding-right: 16px !important;
    /* Reduce vertical bleed at the bottom of the hero — too much
       gap was visible between the demo video and the next section
       ("POUR QUI") on mobile. */
    padding-bottom: 24px !important;
  }
  .l-final {
    padding-left: 16px !important; padding-right: 16px !important;
    padding-top: 56px !important; padding-bottom: 56px !important;
  }
  .l-stick-inner { padding-left: 16px !important; padding-right: 16px !important; }
  .l-foot { padding-left: 16px !important; padding-right: 16px !important; }

  /* KILL the double padding : section already has 16px lateral, so
     the inner .l-container's 24px adds on top → 40px total bleed.
     Drop the container's padding on mobile so all spacing comes from
     the section itself. */
  .l-section .l-container { padding-left: 0 !important; padding-right: 0 !important; }

  /* --- Header : already padded via the consolidated rule above
         (@media <=640 line ~1909). We just lock the grid + CTA align here. */
  .l-stick-cta { justify-self: end; }

  /* --- Centered alignment kept (matches desktop). We only relax
         max-widths so titles + paragraphs can actually fill the
         narrow viewport, instead of being capped at 580/720/760px. */
  .l-hero-v2 .l-hero-sub { max-width: 100% !important; }
  .l-hero-v2 h1 { max-width: 100% !important; }
  .l-final-inner { max-width: 100% !important; }
  .l-final p { max-width: 100% !important; }
  .l-tcase-single { max-width: 100% !important; }

  /* Plan cards : tighten padding so prices/feats breathe at narrow widths */
  .l-plan { padding: 28px 22px !important; }

  /* Brain step card content : keep KB items + bubbles inside the 84vw card */
  .l-brain-card { padding: 20px !important; }
  .l-brain-bubble { font-size: 14px; }
}
@media (max-width: 920px) {
  /* Pick viz: tighten the fan slightly */
  .l-viz-pick { padding: 28px 8px; min-height: 360px; }
  .l-viz-pick-card { width: 140px; }
  .l-viz-pick-left  { transform: rotate(-6deg) translateX(26px); }
  .l-viz-pick-right { transform: rotate(6deg) translateX(-26px); }
}
@media (max-width: 640px) {
  /* Hero CTAs: stack vertically and each take 100% width on mobile,
     centered text inside. Tightens visual hierarchy + makes the
     primary actually feel primary on small screens. */
  .l-hero-v2 .l-cta-row { gap: 10px; flex-direction: column; align-items: stretch; }
  .l-hero-cta,
  .l-hero-ghost {
    width: 100%;
    justify-content: center;
  }
  .l-hero-cta {
    padding: 14px 20px !important;
    font-size: 14px !important;
    gap: 8px;
  }
  .l-hero-cta-shopify { width: 16px; height: 16px; }
  .l-hero-cta-shopify svg { width: 16px; height: 16px; }
  .l-hero-ghost {
    padding: 14px 18px !important;
    font-size: 14px !important;
    gap: 6px;
  }
  .l-hero-ghost-arrow { width: 15px; height: 15px; }

  /* Hero trust line: tight wrap, keep three items legible */
  .l-hero-v2 .l-trust-line { gap: 6px 14px; row-gap: 6px; }

  /* Sticky header CTA: compact label */
  .l-stick-cta { padding: 8px 14px; font-size: 13px; }
  .l-stick-cta-shopify { width: 14px; height: 14px; }
  .l-stick-cta-shopify svg { width: 14px; height: 14px; }

  /* Pick viz: 3 cards must fit ~327px content area
     (375px viewport - 24px*2 padding). 110px × 3 = 330px before
     translateX pulls them in by 16px on each side → ~298px effective. */
  .l-viz-pick { padding: 16px 4px; min-height: 320px; }
  .l-viz-pick-row { max-width: 100%; }
  .l-viz-pick-card { width: 110px; }
  .l-viz-pick-left  { transform: rotate(-5deg) translateX(16px); }
  .l-viz-pick-right { transform: rotate(5deg) translateX(-16px); }
  .l-viz-pick-main  { transform: scale(1.04); }
  .l-viz-pick-info  { padding: 10px 11px 11px; gap: 3px; }
  .l-viz-pick-title { font-size: 11.5px; }
  .l-viz-pick-price { font-size: 11.5px; }

  /* Final CTA: tighten the button to match hero scale */
  .l-final .l-btn-primary { font-size: 14px; padding: 14px 22px; }
  .l-final-cta-shopify { width: 16px; height: 16px; }
  .l-final-cta-shopify svg { width: 16px; height: 16px; }
  /* Plan cards : tighten padding so prices/feats breathe at narrow widths */
  .l-plan { padding: 28px 22px !important; }

  /* Brain step card content : keep KB items + bubbles inside the 84vw card */
  .l-brain-card { padding: 20px !important; }
  .l-brain-bubble { font-size: 14px; }

  /* Multilingual viz (Row 3 "Sans frontières") : cards uniform width
     based on viewport so all 6 language bubbles align visually.
     Globe scaled down a bit to stay inside the column. */
  .l-viz-langs { max-width: 100%; height: 480px; }
  .l-viz-globe {
    width: 360px; height: 360px;
    left: calc(50% - 180px); top: calc(50% - 180px);
  }
  .l-viz-lang {
    width: 78vw;
    max-width: 300px;
    padding: 10px 14px;
  }
  .l-viz-lang p {
    font-size: 13px;
    max-width: none;
    white-space: normal;
  }
}
@media (max-width: 400px) {
  /* iPhone SE / very small phones */
  .l-viz-pick-card { width: 96px; }
  .l-viz-pick-left  { transform: rotate(-5deg) translateX(12px); }
  .l-viz-pick-right { transform: rotate(5deg) translateX(-12px); }
  .l-viz-pick-info  { padding: 8px 9px 10px; }
  .l-viz-pick-title { font-size: 11px; }
  .l-viz-pick-price { font-size: 11px; }
}
