:root {
  /* Typographie */
  --font-display: 'Schibsted Grotesk', 'Sora', -apple-system, sans-serif;
  --font-body: 'Hanken Grotesk', 'DM Sans', -apple-system, sans-serif;
  /* Palette claire & chaude (autorité hero) */
  --cream: #FBF7F0;
  --cream-2: #F6EEE2;
  --ink: #1F1A2E;
  --ink-soft: #4A4458;
  --warm-line: rgba(31, 26, 46, 0.08);
  --indigo: #4F2D9F;
  --indigo-dark: #3B1F7A;
  --indigo-light: #6B4BC4;
  --indigo-bg: #F5F0FF;
  --indigo-glow: rgba(79, 45, 159, 0.15);
  --orange: #F5851F;
  --orange-dark: #D97316;
  --orange-light: #FFF3E8;
  --yellow: #F5C518;
  --yellow-bg: #FFFBEB;
  --green: #10B981;
  --green-bg: #ECFDF5;
  --red: #EF4444;
  --red-bg: #FEF2F2;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-300: #D4D4D8;
  --gray-400: #A1A1AA;
  --gray-500: #71717A;
  --gray-600: #52525B;
  --gray-700: #3F3F46;
  --gray-800: #27272A;
  --gray-900: #18181B;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --max-w: 1200px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 60px rgba(79,45,159,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; }
a { color: var(--indigo); text-decoration: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(79,45,159,0.2); }
  50% { box-shadow: 0 0 40px rgba(79,45,159,0.35); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--indigo);
}

.nav-logo img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--indigo); }

.nav-cta {
  background: var(--indigo);
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.nav-cta:hover { background: var(--indigo-dark); transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79,45,159,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,133,31,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--indigo-bg);
  color: var(--indigo);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge span { font-size: 16px; }

.hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray-500);
  max-width: 680px;
  margin: 0 auto 40px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--indigo);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(79,45,159,0.25);
}

.btn-primary:hover {
  background: var(--indigo-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79,45,159,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gray-600);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-secondary:hover { border-color: var(--indigo); color: var(--indigo); }

.hero-note {
  font-size: 13px;
  color: var(--gray-400);
  animation: fadeUp 0.6s ease 0.4s both;
}

.hero-visual {
  margin-top: 60px;
  position: relative;
  animation: fadeUp 0.8s ease 0.5s both;
}

/* ==========================================================================
   App Screenshots Slider (Splide - full width fade)
   ========================================================================== */
/* Hero screenshot ribbon — infinite scroll */
.hero-ribbon {
  margin-top: 60px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding-bottom: 20px;
  animation: fadeUp 0.8s ease 0.5s both;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.hero-ribbon-track {
  display: flex;
  gap: 24px;
  animation: ribbonScroll 50s linear infinite;
  width: max-content;
}
.hero-ribbon:hover .hero-ribbon-track {
  animation-play-state: paused;
}
.ribbon-card {
  flex-shrink: 0;
  width: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(79,45,159,0.18), 0 8px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
}
.ribbon-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Ribbon preview overlay */
.ribbon-preview-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(10, 5, 30, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ribbon-preview-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.ribbon-preview {
  position: fixed;
  z-index: 9999;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s ease, top 0.4s cubic-bezier(0.32, 0.72, 0, 1), left 0.4s cubic-bezier(0.32, 0.72, 0, 1), width 0.4s cubic-bezier(0.32, 0.72, 0, 1), height 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.ribbon-preview.active {
  opacity: 1;
}
.ribbon-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes ribbonScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Social proof — pills cloud */
.social-proof-pills {
  padding: 46px 0 52px;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--gray-50) 100%);
  border-top: 1px solid var(--warm-line);
  border-bottom: 1px solid var(--warm-line);
  overflow: hidden;
}

/* ============================================
   SECTEURS — marquee multi-rangees alternees
   ============================================ */
.sectors-eyebrow {
  text-align: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.sectors-marquee {
  display: flex;
  flex-direction: column;
  gap: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.sectors-row { display: flex; overflow: hidden; }
.sectors-track {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  width: max-content;
  padding-right: 12px;
  will-change: transform;
}
.sectors-row:nth-child(1) .sectors-track { animation: sectorsScroll 55s linear infinite; }
.sectors-row:nth-child(2) .sectors-track { animation: sectorsScrollRev 55s linear infinite; }
.sectors-row:hover .sectors-track { animation-play-state: paused; }

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

.sector-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  padding: 11px 20px;
  background: var(--white);
  border: 1px solid var(--warm-line);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(31,26,46,0.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
}
.sector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--indigo);
  transition: transform .25s ease;
}
.sector-pill:nth-child(4n+1) .sector-dot { background: var(--indigo); }
.sector-pill:nth-child(4n+2) .sector-dot { background: var(--orange); }
.sector-pill:nth-child(4n+3) .sector-dot { background: var(--green); }
.sector-pill:nth-child(4n+4) .sector-dot { background: var(--yellow); }
.sector-pill:hover {
  transform: translateY(-3px);
  border-color: var(--indigo);
  color: var(--indigo);
  box-shadow: 0 10px 24px rgba(79,45,159,0.16);
}
.sector-pill:hover .sector-dot { transform: scale(1.4); }

@media (prefers-reduced-motion: reduce) {
  .sectors-track { animation: none; }
}


.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

.proof-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--indigo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--gray-900); color: white; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--indigo);
  background: var(--indigo-bg);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-dark .section-label {
  background: rgba(107,75,196,0.2);
  color: var(--indigo-light);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-dark .section-header h2 { color: white; }

.section-header p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
}

.section-dark .section-header p { color: var(--gray-400); }

/* ============================================
   PROBLEM CARDS
   ============================================ */
.section-problem {
  background: linear-gradient(135deg, #1a1025 0%, #0f0a18 50%, #1a0f2e 100%);
  position: relative;
  overflow: hidden;
}

.section-problem::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(79,45,159,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-problem::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(107,75,196,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-problem .section-label {
  background: rgba(79,45,159,0.2);
  color: #c4b5fd;
  border: 1px solid rgba(79,45,159,0.3);
}

.section-problem .section-header h2 {
  color: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(10px);
}

.problem-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(79,45,159,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(79,45,159,0.15), 0 0 0 1px rgba(79,45,159,0.2);
}

.problem-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}

.problem-card:hover .problem-number {
  color: rgba(79,45,159,0.15);
}

.problem-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79,45,159,0.2), rgba(107,75,196,0.1));
  border: 1px solid rgba(79,45,159,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4b5fd;
  margin-bottom: 24px;
  transition: all 0.4s;
}

.problem-card:hover .problem-icon-wrap {
  background: linear-gradient(135deg, rgba(79,45,159,0.35), rgba(107,75,196,0.2));
  border-color: rgba(79,45,159,0.4);
  box-shadow: 0 0 24px rgba(79,45,159,0.2);
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f1f0f3;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.7;
}

/* ============================================
   STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--indigo-bg), var(--indigo), var(--indigo-bg));
  z-index: 0;
}

.step-card { text-align: center; position: relative; z-index: 1; }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--indigo);
  color: white;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(79,45,159,0.3);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================
   STEPS — parcours 1->2->3 dessine au scroll
   ============================================ */
.steps-flow {
  --progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 6px;
}

/* Ligne de liaison entre orbe 1 et orbe 3 */
.steps-track {
  position: absolute;
  top: 46px;
  left: 16.66%;
  right: 16.66%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 99px;
  background: rgba(79,45,159,0.12);
  z-index: 0;
}
.steps-track-fill {
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--indigo), var(--indigo-light) 55%, var(--orange));
  transform: scaleX(var(--progress));
  transform-origin: left center;
  box-shadow: 0 0 14px rgba(79,45,159,0.35);
  will-change: transform;
}
/* Comete en tete de progression */
.steps-track-comet {
  position: absolute;
  top: 50%;
  left: calc(var(--progress) * 100%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px rgba(245,133,31,0.18), 0 0 22px rgba(245,133,31,0.7);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.steps-flow.is-running .steps-track-comet { opacity: 1; }

.step-node {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-orb {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(79,45,159,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .55s ease, border-color .45s ease, background .45s ease;
}
.step-orb-num {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--indigo);
  transition: color .4s ease;
}
.step-orb-ring {
  position: absolute;
  inset: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  transform: rotate(-90deg);
  z-index: 1;
}
.step-orb-ring circle {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  transition: stroke-dashoffset .8s cubic-bezier(.65,0,.35,1) .08s;
}

.step-body {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1);
}
.step-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Etat actif (atteint par la ligne) */
.step-node.is-active .step-orb {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  border-color: transparent;
  transform: scale(1.12);
  box-shadow: 0 16px 38px rgba(79,45,159,0.4);
}
.step-node.is-active .step-orb-num { color: #fff; }
.step-node.is-active .step-orb-ring circle { stroke-dashoffset: 0; }
.step-node.is-active .step-body { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .steps-track-fill { transform: scaleX(1); }
  .step-body { opacity: 1; transform: none; transition: none; }
  .step-orb-ring circle { transition: none; stroke-dashoffset: 0; }
  .step-orb { transition: none; }
}

/* Steps : parcours vertical sur mobile/tablette */
@media (max-width: 900px) {
  .steps-flow { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  .steps-track {
    top: 40px;
    bottom: 56px;
    left: 40px;
    right: auto;
    width: 4px;
    height: auto;
    transform: translateX(-50%);
  }
  .steps-track-fill {
    transform: scaleY(var(--progress));
    transform-origin: top center;
  }
  .steps-track-comet {
    left: 50%;
    top: calc(var(--progress) * 100%);
  }
  .step-node {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: start;
    gap: 18px;
    text-align: left;
    padding-bottom: 40px;
  }
  .step-node:last-child { padding-bottom: 0; }
  .step-orb { margin: 0; }
  .step-body { padding-top: 8px; }
  .step-body p { margin: 0; max-width: none; }
}

/* ============================================
   FEATURES
   ============================================ */
.section-features {
  background: linear-gradient(180deg, #0f0a18 0%, #1a1025 40%, #150d22 100%);
  position: relative;
  overflow: hidden;
}

.section-features::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(79,45,159,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-features .section-label {
  background: rgba(79,45,159,0.2);
  color: #c4b5fd;
  border: 1px solid rgba(79,45,159,0.3);
}

.section-features .section-header h2 {
  color: #fff;
}

.ft-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.ft-card {
  --focus: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  position: relative;
  overflow: visible;
  isolation: isolate;
  backdrop-filter: blur(10px);
  transform-origin: center;
  /* scale exclu de la transition : pilote au scroll en temps reel (voir JS) */
  transition: background 0.4s cubic-bezier(0.25,1,0.5,1), border-color 0.4s cubic-bezier(0.25,1,0.5,1), transform 0.4s cubic-bezier(0.25,1,0.5,1), box-shadow 0.45s cubic-bezier(0.25,1,0.5,1);
  /* lueur d'agrandissement pilotee par --focus (0 au repos -> invisible) */
  box-shadow: 0 calc(var(--focus) * 26px) calc(var(--focus) * 64px) rgba(79,45,159, calc(var(--focus) * 0.28));
}
/* Bord + halo qui s'eclairent quand la carte est au centre (sous le contenu) */
.ft-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  box-shadow: inset 0 0 0 1px rgba(124,92,224, calc(var(--focus) * 0.55));
  background: radial-gradient(130% 120% at 50% 0%, rgba(124,92,224, calc(var(--focus) * 0.12)), transparent 62%);
}
.ft-card > .ft-tag,
.ft-card > .ft-head,
.ft-card > .ft-pills,
.ft-card > .ft-card-inner { position: relative; z-index: 1; }

.ft-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(79,45,159,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(79,45,159,0.12), 0 0 0 1px rgba(79,45,159,0.15);
}

/* Hero card (full width) */
.ft-hero {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(79,45,159,0.25) 0%, rgba(59,31,122,0.15) 100%);
  border: 1px solid rgba(79,45,159,0.3);
  padding: 0;
}

.ft-hero:hover {
  border-color: rgba(79,45,159,0.5);
  box-shadow: 0 20px 60px rgba(79,45,159,0.2), 0 0 0 1px rgba(79,45,159,0.3);
}

.ft-card-inner {
  position: relative;
  z-index: 1;
  padding: 36px 36px 32px;
}

.ft-hero-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 82% 50%, rgba(79,45,159,0.22) 0%, transparent 64%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

.ft-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c4b5fd;
  background: rgba(79,45,159,0.2);
  border: 1px solid rgba(79,45,159,0.3);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* Icon + Title inline */
.ft-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ft-head h3 { margin: 0; }

.ft-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(79,45,159,0.25), rgba(107,75,196,0.12));
  border: 1px solid rgba(79,45,159,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4b5fd;
  transition: all 0.4s;
}

.ft-hero .ft-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.ft-card:hover .ft-icon-wrap {
  background: linear-gradient(135deg, rgba(79,45,159,0.4), rgba(107,75,196,0.2));
  border-color: rgba(79,45,159,0.5);
  box-shadow: 0 0 20px rgba(79,45,159,0.15);
}

.ft-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #f1f0f3;
}

.ft-hero h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}

.ft-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

/* Feature pills */
.ft-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ft-pill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #9ca3af;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.3s;
  line-height: 1.3;
}

.ft-card:hover .ft-pill {
  border-color: rgba(79,45,159,0.25);
  background: rgba(79,45,159,0.08);
}

.ft-hero .ft-pill {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.ft-hero:hover .ft-pill {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
}

/* Pills clefs : pop spectaculaire au passage au centre du viewport (pilote JS) */
.ft-pill--key {
  --pop: 0;
  transform-origin: center center;
  /* scale exclu de la transition -> suivi instantane du scroll */
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .3s ease;
  box-shadow: 0 calc(var(--pop) * 16px) calc(var(--pop) * 48px) rgba(246,155,28, calc(var(--pop) * 0.65));
}
.ft-pill--key.is-popping {
  background: linear-gradient(135deg, #f69b1c, #ffb24d);
  border-color: transparent;
  color: #1a1025;
  font-weight: 700;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal[data-reveal="from-left"]   { transform: translateX(-60px); }
.reveal[data-reveal="from-right"]  { transform: translateX(60px); }
.reveal[data-reveal="from-top"]    { transform: translateY(-50px); }
.reveal[data-reveal="from-bottom"] { transform: translateY(50px); }
.reveal[data-reveal="from-scale"]  { transform: scale(0.82); }
.reveal[data-reveal="from-rotate-l"] { transform: rotate(-4deg) translateX(-30px) scale(0.92); }
.reveal[data-reveal="from-rotate-r"] { transform: rotate(4deg) translateX(30px) scale(0.92); }

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0deg);
}

/* Reveal plus dynamique - section Confidentialite (trust) */
.section-trust .trust-card.reveal {
  transform: translateY(48px) scale(0.92);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.34,1.56,.64,1), background .4s, border-color .4s, box-shadow .4s;
}
.section-trust .trust-card.reveal.revealed { transform: translateY(0) scale(1); }
.section-trust .trust-card.reveal.revealed:hover { transform: translateY(-6px) scale(1); }
.section-trust .trust-card .trust-icon-wrap {
  opacity: 0;
  transform: scale(.45) rotate(-12deg);
  transition: opacity .45s ease .12s, transform .55s cubic-bezier(.34,1.56,.64,1) .12s, background .4s, border-color .4s, box-shadow .4s;
}
.section-trust .trust-card.revealed .trust-icon-wrap { opacity: 1; transform: scale(1) rotate(0); }
.section-trust .trust-badge-pill.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.56,.64,1), background .3s, border-color .3s, color .3s;
}
.section-trust .trust-badge-pill.reveal.revealed { opacity: 1; transform: translateY(0); }
.section-trust .trust-badge-pill.reveal:nth-child(1) { transition-delay: .04s; }
.section-trust .trust-badge-pill.reveal:nth-child(2) { transition-delay: .12s; }
.section-trust .trust-badge-pill.reveal:nth-child(3) { transition-delay: .20s; }
.section-trust .trust-badge-pill.reveal:nth-child(4) { transition-delay: .28s; }
.section-trust .trust-badge-pill.reveal:nth-child(5) { transition-delay: .36s; }
.section-trust .trust-badge-pill.reveal:hover { transition-delay: 0s; }

/* ============================================
   COMPARISON TABLE (light)
   ============================================ */
.section-comparison {
  background: var(--white);
}

.cmp-wrap {
  overflow-x: auto;
  margin: 0 -24px;
  padding: 0 24px;
}

.cmp-table {
  width: 100%;
  min-width: 780px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

/* Header */
.cmp-table thead th {
  padding: 20px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.cmp-table thead th:first-child { text-align: left; color: transparent; }

.cmp-table thead th.cmp-hl {
  background: var(--indigo);
  color: #fff;
  position: relative;
}

.cmp-table thead th.cmp-hl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo-light), #c4b5fd);
  border-radius: 3px 3px 0 0;
}

.cmp-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmp-brand img { filter: brightness(0) invert(1); }

/* Body */
.cmp-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
  color: var(--gray-500);
  transition: background 0.2s;
}

.cmp-table tbody tr:hover td {
  background: var(--gray-50);
}

.cmp-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--gray-800);
}

.cmp-table tbody td.cmp-hl {
  background: var(--indigo-bg);
  position: relative;
}

.cmp-table tbody td.cmp-hl::before,
.cmp-table tbody td.cmp-hl::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(79,45,159,0.1);
}

.cmp-table tbody td.cmp-hl::before { left: 0; }
.cmp-table tbody td.cmp-hl::after { right: 0; }

.cmp-table tbody tr:hover td.cmp-hl {
  background: rgba(79,45,159,0.08);
}

/* Section row */
.cmp-section-row td {
  background: var(--gray-50) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--indigo) !important;
  opacity: 0.6;
  padding: 10px 18px;
  text-align: left !important;
  border-bottom: 1px solid var(--gray-100);
}

/* Status indicators */
.cmp-yes, .cmp-no, .cmp-partial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.cmp-yes {
  background: rgba(16,185,129,0.1);
  position: relative;
}

.cmp-yes::before, .cmp-yes::after {
  content: '';
  position: absolute;
  background: #10b981;
  border-radius: 2px;
}

.cmp-yes::before {
  width: 6px; height: 2px;
  transform: rotate(45deg);
  left: 6px; top: 14px;
}

.cmp-yes::after {
  width: 11px; height: 2px;
  transform: rotate(-45deg);
  left: 9px; top: 12px;
}

.cmp-no {
  background: var(--gray-100);
  position: relative;
}

.cmp-no::before, .cmp-no::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  background: var(--gray-300);
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.cmp-no::before { transform: translate(-50%, -50%) rotate(45deg); }
.cmp-no::after { transform: translate(-50%, -50%) rotate(-45deg); }

.cmp-partial {
  background: rgba(245,133,31,0.1);
  position: relative;
}

.cmp-partial::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.cmp-partial::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--orange);
  border-radius: 50%;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}

/* Reevio column = stronger green */
.cmp-hl .cmp-yes { background: rgba(16,185,129,0.15); }
.cmp-hl .cmp-yes::before, .cmp-hl .cmp-yes::after { background: #059669; }

/* Price text */
.cmp-price-good {
  font-weight: 700;
  font-size: 13px;
  color: #059669;
}

.cmp-price {
  font-size: 13px;
  color: var(--gray-400);
}

/* Note */
.cmp-note {
  text-align: center;
  margin-top: 32px;
  padding: 20px 28px;
  background: var(--indigo-bg);
  border: 1px solid rgba(79,45,159,0.1);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--indigo);
}

/* ============================================
   PRICING
   ============================================ */
.section-pricing {
  background: linear-gradient(180deg, #f3eeff 0%, #f9f7ff 35%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.section-pricing::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,45,159,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* (old toggle styles removed - using pt-* pill selector) */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.pricing-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(79,45,159,0.12); }

/* --- Pricing card reveal animation --- */
.pricing-card.pricing-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pricing-card.pricing-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.pricing-card.popular.pricing-reveal.revealed {
  transform: translateY(0) scale(1.05);
}

/* --- Popular card : mise en avant renforcée --- */
.pricing-card.popular {
  border-color: var(--indigo);
  box-shadow: 0 0 0 2px var(--indigo), 0 25px 50px rgba(79,45,159,0.2);
  transform: scale(1.05);
  z-index: 2;
  background: linear-gradient(180deg, #ffffff 0%, #f9f5ff 100%);
}
.pricing-card.popular::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(79,45,159,0.15), transparent 50%, rgba(107,77,199,0.1));
  pointer-events: none;
  z-index: -1;
}

.pricing-card.popular:hover { transform: scale(1.05) translateY(-6px); box-shadow: 0 0 0 2px var(--indigo), 0 30px 60px rgba(79,45,159,0.25); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--indigo);
  color: white;
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--gray-400);
}

.pricing-annual {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 24px;
  min-height: 18px;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-display);
  border: 2px solid var(--gray-200);
  background: white;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 24px;
}

.pricing-btn:hover { border-color: var(--indigo); color: var(--indigo); }

.pricing-card.popular .pricing-btn {
  background: var(--indigo);
  color: white;
  border-color: var(--indigo);
}

.pricing-card.popular .pricing-btn:hover {
  background: var(--indigo-dark);
  border-color: var(--indigo-dark);
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

.pricing-features li.disabled {
  color: var(--gray-400);
  text-decoration: line-through;
}

.pricing-features li.disabled::before { content: '\2717'; color: var(--gray-300); }

.pricing-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--gray-500);
}

/* ============================================
   TRUST / PRIVACY
   ============================================ */
.section-trust {
  background: linear-gradient(135deg, #1a0a3e 0%, #2d1566 40%, #1a0f2e 100%);
  position: relative;
  overflow: hidden;
}

.section-trust::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(79,45,159,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.section-trust .section-label {
  background: rgba(255,255,255,0.08);
  color: #c4b5fd;
  border: 1px solid rgba(255,255,255,0.12);
}

.section-trust .section-header h2 { color: #fff; }
.section-trust .section-header p { color: rgba(255,255,255,0.6); }

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

.trust-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.trust-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,181,253,0.25);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(79,45,159,0.15), 0 0 0 1px rgba(196,181,253,0.1);
}

.trust-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(196,181,253,0.15), rgba(139,92,246,0.08));
  border: 1px solid rgba(196,181,253,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #c4b5fd;
  transition: all 0.4s;
}

.trust-card:hover .trust-icon-wrap {
  background: linear-gradient(135deg, rgba(196,181,253,0.25), rgba(139,92,246,0.15));
  border-color: rgba(196,181,253,0.35);
  box-shadow: 0 0 24px rgba(139,92,246,0.15);
}

.trust-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #f1f0f3;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}

.trust-badge-pill:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(196,181,253,0.25);
  color: rgba(255,255,255,0.9);
}

.trust-badge-pill svg { color: #c4b5fd; flex-shrink: 0; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--indigo); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.32, 0.72, 0, 1), padding 0.35s ease;
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 22px;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,45,159,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-seo-text {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-seo-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 700px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-500);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--gray-700);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--indigo); }

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s;
}

.lang-current:hover { background: var(--gray-100); color: var(--gray-700); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 4px;
  min-width: 120px;
  box-shadow: var(--shadow-md);
  z-index: 100;
}

.lang-dropdown.open { display: block; }

.lang-dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--gray-600);
  border-radius: 4px;
}

.lang-dropdown a:hover { background: var(--indigo-bg); color: var(--indigo); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .problem-grid, .steps-grid, .trust-grid { grid-template-columns: 1fr; }
  .ft-bento { grid-template-columns: 1fr; }
  .ft-hero { grid-column: span 1; }
  .ft-head { flex-wrap: wrap; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular.pricing-reveal.revealed { transform: translateY(0) scale(1); }
  .hero-ctas { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 12px; }
}

/* ============================================
   ADDITIONAL STYLES FOR LANDING V2
   ============================================ */

/* Header (alias for .nav) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.header.on-hero {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.header.on-hero .nav a { color: rgba(222,213,240,0.85); }
.header.on-hero .nav a:hover { color: #FFFDF8; }
.header.on-hero .mobile-menu-btn { color: #F6F1E7; }
.header.on-hero .btn-outline {
  border-color: rgba(255,255,255,0.24);
  color: rgba(240,234,249,0.9);
  background: transparent;
}
.header.on-hero .btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  color: #FFFDF8;
}
.header.on-hero .btn.btn-primary {
  background: var(--orange);
  color: #2A1708 !important;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(245,133,31,0.35);
}
.header.on-hero .btn.btn-primary:hover {
  background: #FF9838;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(245,133,31,0.45);
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.header .logo { height: 32px; width: auto; }
.header .logo-light { display: block; }
.header .logo-dark { display: none; }
.header.on-hero .logo-light { display: none; }
.header.on-hero .logo-dark { display: block; }
.header.scrolled .logo-light { display: block; }
.header.scrolled .logo-dark { display: none; }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header .nav {
  position: static;
  background: none;
  backdrop-filter: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.header .nav a:hover { color: var(--indigo); }
.header.scrolled .nav a { color: var(--gray-600); }
.header.scrolled .nav a:hover { color: var(--indigo); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons (generic) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.btn-sm { padding: 8px 18px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; font-weight: 700; font-family: var(--font-display); }
.btn.btn-primary {
  background: var(--indigo);
  color: white !important;
  box-shadow: 0 2px 8px rgba(79,45,159,0.25);
}
.btn.btn-primary:hover {
  background: var(--indigo-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79,45,159,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  background: var(--indigo-bg);
}
.btn-white {
  background: white;
  color: var(--indigo) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--indigo-bg);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white !important;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
}

/* ==========================================================================
   HERO — nuit indigo drenchee : le pilote automatique travaille en continu
   ========================================================================== */
.hero {
  background:
    radial-gradient(1000px 640px at 82% -6%, rgba(245,133,31,0.16), transparent 58%),
    radial-gradient(1200px 760px at -8% 104%, rgba(107,75,196,0.22), transparent 62%),
    linear-gradient(180deg, #1D1336 0%, #170F2A 58%, #140D24 100%);
  color: #F6F1E7;
  text-align: left;
  padding: 148px 0 0;
}
.hero::before, .hero::after { display: none; }
.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
}
.hero-copy { text-align: left; }

.hero-badge {
  background: rgba(255,255,255,0.05);
  color: #CFC3EE;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pilotPulse 2.2s ease-out infinite;
}

.hero h1 {
  color: #F6F1E7;
  font-size: clamp(40px, 4.7vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: none;
  margin: 0 0 26px;
  animation: none;
}
.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.hero-line-inner {
  display: inline-block;
  transform: translateY(112%);
  animation: heroLineUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-line:nth-child(2) .hero-line-inner { animation-delay: 0.12s; }
.hero h1 em {
  font-style: normal;
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #FF9E45;
}
.hero-subtitle {
  color: rgba(222,213,240,0.82);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 34px;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}
.hero-subtitle strong {
  font-weight: 700;
  color: #FBF7F0;
}
.hero-cta {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.42s both;
}
.hero-cta .btn-lg { padding: 16px 28px; font-size: 16px; }
.hero-cta .btn { gap: 10px; }
.hero .hero-cta .btn-primary {
  background: linear-gradient(180deg, #FF9838 0%, #F5851F 100%);
  color: #2A1708;
  font-weight: 800;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(245,133,31,0.35), inset 0 1px 0 rgba(255,255,255,0.35);
}
.hero .hero-cta .btn-primary:hover {
  background: linear-gradient(180deg, #FFA751 0%, #FF8F2B 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(245,133,31,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
}
.hero .hero-cta .btn-primary svg { transition: transform 0.25s cubic-bezier(0.22,1,0.36,1); }
.hero .hero-cta .btn-primary:hover svg { transform: translateX(3px); }
.hero .hero-cta .btn-outline {
  border: 1px solid rgba(255,255,255,0.24);
  color: #F0EAF9;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}
.hero .hero-cta .btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  color: #FFFDF8;
}
.hero-note {
  color: rgba(214,205,233,0.55);
  font-size: 13px;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.54s both;
}

/* --- Flux autopilote : pile d'avis traites en continu --- */
.hero-visual {
  position: relative;
  margin-top: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}
.pilot-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(16,185,129,0.35);
  background: rgba(16,185,129,0.10);
  color: #86E3BC;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pilot-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pilotPulse 2.2s ease-out infinite;
}
.pilot-feed {
  position: relative;
  display: grid;
}
.pilot-card {
  grid-area: 1 / 1;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(8,4,20,0.55), 0 4px 16px rgba(8,4,20,0.3);
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), opacity 0.7s cubic-bezier(0.22,1,0.36,1);
  will-change: transform, opacity;
}
.pilot-card.is-active { transform: translateY(0) scale(1); opacity: 1; z-index: 3; }
.pilot-card.is-next { transform: translateY(30px) scale(0.95); opacity: 0.45; z-index: 2; }
.pilot-card.is-standby { transform: translateY(56px) scale(0.9); opacity: 0; z-index: 1; }
.pilot-card.is-done { transform: translateY(-36px) scale(0.94); opacity: 0; z-index: 1; }

.pilot-review { padding: 22px 24px 18px; }
.pilot-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.pilot-sector {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-bg);
  padding: 4px 10px;
  border-radius: 100px;
}
.mock-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-light));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-reviewer { display: flex; flex-direction: column; line-height: 1.3; }
.mock-name { font-weight: 700; color: var(--ink); font-size: 15px; }
.mock-meta { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--gray-500); }
.mock-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.mock-text { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }

.mock-reply {
  background: var(--indigo-bg);
  border-top: 1px solid var(--warm-line);
  padding: 16px 24px 20px;
}
.mock-reply-head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.mock-reply-logo { flex-shrink: 0; border-radius: 5px; }
.mock-reply-label { font-weight: 700; font-size: 13px; color: var(--indigo-dark); }
.mock-ai-tag {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--indigo);
  background: var(--white);
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(79,45,159,0.18);
}
.mock-reply-text { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }
.mock-reply-actions { display: flex; gap: 8px; }
.mock-btn-primary {
  background: var(--indigo);
  color: var(--white);
  border: none;
  padding: 9px 16px;
  border-radius: 9px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.mock-btn-primary:hover { background: var(--indigo-dark); }
.mock-btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--warm-line);
  padding: 9px 14px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.mock-btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); }

/* --- Reponse IA de la carte autopilote --- */
.mock-stars .star-off path { fill: #E8E3EF; }
.pilot-reply {
  background: var(--indigo-bg);
  border-top: 1px solid var(--warm-line);
  padding: 16px 24px 20px;
}
.pilot-reply-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.pilot-reply-head .mock-ai-tag { margin-left: 0; }
.pilot-status { margin-left: auto; display: inline-flex; }
.pilot-status-writing {
  display: none;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--indigo);
}
.pilot-status-published {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: #0C8A60;
  background: var(--green-bg);
  padding: 3px 10px;
  border-radius: 100px;
}
.pilot-card.is-writing .pilot-status-writing { display: inline-flex; }
.pilot-card.is-writing .pilot-status-published { display: none; }
.pilot-dots { display: inline-flex; gap: 3px; margin-left: 6px; }
.pilot-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--indigo);
  animation: pilotDot 1.2s ease-in-out infinite;
}
.pilot-dots i:nth-child(2) { animation-delay: 0.15s; }
.pilot-dots i:nth-child(3) { animation-delay: 0.3s; }
.pilot-reply-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  min-height: 65px;
  margin: 0;
}
.pilot-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -0.15em;
  background: var(--indigo);
  animation: pilotCaret 0.9s steps(1) infinite;
}

/* --- Barre de credibilite --- */
.hero-credibility {
  position: relative;
  z-index: 2;
  margin-top: clamp(48px, 7vh, 76px);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}
.hero-cred-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
}
.cred-item {
  flex: 1 1 210px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(226,218,241,0.75);
}
.cred-ico { color: #FF9E45; flex-shrink: 0; }

@keyframes heroLineUp {
  to { transform: translateY(0); }
}
@keyframes pilotPulse {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
  70% { box-shadow: 0 0 0 9px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
@keyframes pilotDot {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
@keyframes pilotCaret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 900px) {
  .hero { padding: 118px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-copy { text-align: center; }
  .hero h1 { margin-left: auto; margin-right: auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { width: 100%; max-width: 460px; margin: 0 auto; }
  .pilot-chip { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }
  .mock-card { margin: 0 auto; }
  .hero-cred-inner { justify-content: center; }
  .cred-item { flex: 1 1 240px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-line-inner { transform: none; animation: none; }
  .hero-badge, .hero-subtitle, .hero-cta, .hero-note, .hero-visual { animation: none; }
  .pilot-card { transition: none; }
  .hero-badge .badge-dot, .pilot-chip-dot, .pilot-dots i { animation: none; }
}

/* (v2 features styles removed - using ft-bento) */

/* (old comparison styles removed - using cmp-* classes) */

/* Pricing card (alias classes for v2) */
.pricing-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.pricing-card-desc {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}
.pricing-card-price .amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}
.pricing-card-price .currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-500);
}
.pricing-card-price .period {
  font-size: 14px;
  color: var(--gray-400);
  margin-left: 4px;
}
.pricing-card-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 20px;
  min-height: 18px;
}
.pricing-card .btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
.pricing-card-features {
  list-style: none;
}
.pricing-card-features li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}
.pricing-card-features li:last-child { border-bottom: none; }
.pricing-card-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}
.pricing-card-features li.disabled {
  color: var(--gray-400);
  text-decoration: line-through;
}
.pricing-card-features li.disabled::before { content: '\2717'; color: var(--gray-300); }

/* Pricing toggle — dark pill selector (dhero style) */
.pt-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 52px;
}
.pt-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  background: #1a1a2e;
  border-radius: 100px;
  padding: 5px;
  gap: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12), inset 0 1px 2px rgba(0,0,0,0.2);
}
.pt-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  background: white;
  border-radius: 100px;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 0;
}
.pt-track.annual .pt-slider {
  transform: translateX(100%);
}
.pt-btn {
  position: relative;
  z-index: 1;
  border: none;
  background: none;
  padding: 12px 32px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.35s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.pt-btn.active {
  color: #1a1a2e;
}
.pt-save {
  display: inline-block;
  background: var(--indigo);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
  transition: background 0.3s, color 0.3s;
}
.pt-btn.active .pt-save {
  background: var(--indigo);
  color: white;
}

/* Pricing card popular badge via data-badge */
.pricing-card.popular::before {
  content: attr(data-badge);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--indigo);
  color: white;
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  white-space: nowrap;
}

/* (old trust-item/badge-item styles removed - using trust-card/badge-pill) */

/* CTA final (alias for gradient version) */
.cta-final {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #1a0a3e 0%, #4F2D9F 50%, #6B4BC4 100%);
  color: white;
}
.cta-final h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-final-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.cta-final-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* Footer extras */
.footer-brand .logo { height: 28px; width: auto; }
.footer-brand p { margin-top: 16px; }
.footer-company-info {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-500);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-badges span {
  font-size: 12px;
  color: var(--gray-500);
}

/* Product Hunt badge */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.ph-badge:hover {
  background: rgba(255,97,84,0.15);
  border-color: rgba(255,97,84,0.3);
  color: #ff6154;
  transform: translateY(-2px);
}
.ph-badge svg {
  flex-shrink: 0;
}

/* Mobile menu extras */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu-cta {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
}
.mobile-menu-cta .btn { flex: 1; text-align: center; }
.mobile-menu-lang {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.mobile-lang-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  color: var(--gray-600);
  background: var(--gray-50);
  transition: all 0.2s;
}
.mobile-lang-btn.active {
  background: var(--indigo-bg);
  color: var(--indigo);
  font-weight: 600;
}

/* Language switcher */
.lang-switcher { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  border: none;
  background: none;
  transition: all 0.2s;
}
.lang-current:hover { background: var(--gray-100); color: var(--gray-700); }
.lang-current svg { width: 14px; height: 14px; transition: transform 0.2s; }
.lang-switcher.open .lang-current svg { transform: rotate(180deg); }
.header.on-hero .lang-current { color: rgba(222,213,240,0.85); }
.header.on-hero .lang-current:hover { background: rgba(255,255,255,0.08); color: #FFFDF8; }
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 4px;
  min-width: 140px;
  box-shadow: var(--shadow-md);
  z-index: 100;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--gray-600);
  border-radius: 4px;
  text-decoration: none;
}
.lang-option:hover { background: var(--indigo-bg); color: var(--indigo); }
.lang-option.active { background: var(--indigo-bg); color: var(--indigo); font-weight: 600; }

/* FAQ question chevron (SVG inline) */
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  color: var(--gray-400);
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--indigo);
}

/* Header button short/full labels */
.short-label { display: none; }
.full-label { display: inline; }

/* Additional responsive for v2 */
@media (max-width: 900px) {
  .ft-bento { grid-template-columns: 1fr; }
  .ft-hero { grid-column: span 1; }
  .ft-head { flex-wrap: wrap; }
  .header .nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .header-cta .btn-sm { font-size: 12px; padding: 7px 12px; white-space: nowrap; }
  .short-label { display: inline; }
  .full-label { display: none; }
  .mobile-menu-btn { display: block; }
  .sp-cloud { gap: 8px; }
  .sp-pill { padding: 6px 14px; font-size: 12px; }
  .sectors-marquee { gap: 10px; }
  .sector-pill { padding: 9px 16px; font-size: 13px; gap: 7px; }
  .sectors-eyebrow { font-size: 11px; margin-bottom: 22px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; }
  .ribbon-card { width: 320px; }
  .hero-ribbon-track { gap: 16px; }
  .cta-final-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
  /* Hero mobile — titre compact et lisible */
  .hero { padding: 104px 0 0; }
  .hero h1 {
    font-size: 34px;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 em br { display: none; }
  .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 20px; }
  .hero-subtitle {
    font-size: 15px;
    line-height: 1.65;
    max-width: 340px;
    margin-bottom: 28px;
  }
  .hero-cta { gap: 10px; margin-bottom: 14px; }
  .hero-cta .btn { padding: 15px 24px; font-size: 15px; max-width: 300px; }
  .hero-note { font-size: 12px; }
  .pilot-review { padding: 18px 18px 14px; }
  .pilot-reply { padding: 14px 18px 16px; }
  .pilot-sector { display: none; }
  .hero-credibility { margin-top: 40px; }
  .cred-item { font-size: 12.5px; flex: 1 1 100%; justify-content: center; }
  .hero-ribbon { margin-top: 40px; }
  .ribbon-card { width: 260px; border-radius: 12px; }

  .footer-badges { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
