/* ============================================================
   KAPH AI — Feuille de style principale
   Thème : fond noir, accents bleu, police Inter
   ============================================================ */

/* --- Variables locales — pont vers style-tokens.css --- */
:root {
  --bg:          var(--color-bg);
  --bg-soft:     #0A0A0F;
  --bg-card:     var(--color-bg-card);
  --bg-card-2:   #131620;
  --ink:         var(--color-text);
  --ink-soft:    var(--color-text-muted);
  --ink-mute:    var(--color-text-subtle);
  --line:        var(--color-border);
  --line-strong: rgba(255,255,255,0.14);
  --blue:        var(--color-accent);
  --blue-bright: var(--color-accent-light);
  --blue-deep:   var(--color-accent-deep);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, var(--font-main);
}

/* --- Reset de base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Fond avec dégradés radiaux subtils (décoratif) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(59,130,246,0.08), transparent 60%),
    radial-gradient(ellipse 80% 50% at 80% 80%, rgba(30,64,175,0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Les éléments de contenu passent au-dessus du fond décoratif */
main, nav, section, footer { position: relative; z-index: 1; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(5,5,5,0.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav-brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.nav-brand-mark svg { display: block; width: 100%; height: 100%; }
.nav-brand-text { font-size: 15px; letter-spacing: 0.02em; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  list-style: none;
}

.nav-links a {
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.15s;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

#langSwitcher { position: relative; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-mute);
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.04em;
  cursor: pointer;
  background: none;
  transition: border-color 0.15s, color 0.15s;
}

.lang-switch:hover,
#langSwitcher.open .lang-switch { border-color: var(--line-strong); color: var(--ink); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #0E0E10;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  z-index: 60;
}

#langSwitcher.open .lang-menu { display: block; }

.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.12s, color 0.12s;
}

.lang-menu button:hover { background: rgba(255,255,255,0.04); color: var(--ink); }
.lang-menu button.active { color: var(--blue-bright); font-weight: 600; }

.lang-flag { font-size: 14px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: #0A0A0A;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}

.nav-cta:hover {
  background: var(--blue-bright);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(96,165,250,0.25);
}

.nav-cta-arrow { transition: transform 0.18s ease; }
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

.nav-login {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border-radius: 999px;
  transition: color 0.18s;
}
.nav-login:hover { color: var(--ink); }

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


/* ============================================================
   HERO — Section d'accueil
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(72px,11vw,140px) 0 0; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37,99,235,0.18), transparent 65%);
  filter: blur(40px);
}
.hero-bg::after {
  content: ""; position: absolute; bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(96,165,250,0.08), transparent 70%);
  filter: blur(60px);
}
.hero-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
  padding-bottom: clamp(48px,7vw,96px);
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
}

/* Eyebrow label mono */
.eyebrow {
  font-family: var(--font-mono, monospace);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 12px var(--blue); }
.eyebrow-num { opacity: 0.55; }
.hero-eyebrow { margin-bottom: 28px; }

/* Display headline */
.display { font-size: clamp(48px,8.4vw,112px); font-weight: 700; line-height: 0.92; letter-spacing: -0.045em; margin: 0 0 28px; }
.accent-grad {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-deep) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Gradient text pour h1/h2 legacy (autres sections) */
h1 .gradient, h2 .gradient {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-deep) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline-block;
}

.hero-sub { font-size: clamp(16px,1.4vw,20px); color: #9CA3AF; max-width: 52ch; margin: 0 0 36px; line-height: 1.55; }
.hero-sub strong { color: var(--ink-soft); font-weight: 500; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-hero-blue {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500; white-space: nowrap;
  background: var(--blue); color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 8px 32px rgba(59,130,246,0.35);
  transition: all 0.18s;
}
.btn-hero-blue:hover { background: var(--blue-deep); box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 12px 36px rgba(59,130,246,0.45); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 15px; font-weight: 500; white-space: nowrap;
  color: var(--ink); border: 1px solid var(--line-strong); transition: all 0.18s;
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.03); }
.btn-hero-blue .arrow, .btn-hero-ghost .arrow { transition: transform 0.18s ease; }
.btn-hero-blue:hover .arrow, .btn-hero-ghost:hover .arrow { transform: translateX(3px); }

.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  font-size: 11px; color: var(--ink-mute);
  font-family: var(--font-mono, monospace); letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-trust .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--line-strong); flex-shrink: 0; }

/* Hero right — widget area */
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-widget-wrap { position: relative; height: 540px; width: 360px; }
.hero-widget-pos {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-1.5deg);
  filter: drop-shadow(0 24px 60px rgba(37,99,235,0.18));
}

/* Floating metric cards */
.hero-float-card {
  position: absolute; background: #0E0E10;
  border: 1px solid var(--line-strong); border-radius: 14px;
  padding: 14px 16px; font-size: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5); backdrop-filter: blur(10px); z-index: 2;
}
.hero-float-card-1 { top: 4%; right: -32px; display: flex; align-items: center; gap: 10px; animation: float-a 7s ease-in-out infinite; }
.hero-float-card-2 { bottom: 4%; left: -40px; display: flex; flex-direction: column; gap: 6px; animation: float-b 8s ease-in-out infinite; }
@keyframes float-a { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float-b { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.metric-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 8px rgba(74,222,128,0.6); flex-shrink: 0; }
.metric-label { font-size: 11px; color: var(--ink-mute); font-family: var(--font-mono, monospace); letter-spacing: 0.04em; text-transform: uppercase; }
.metric-value { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.metric-value-big { display: flex; align-items: baseline; gap: 6px; }
.metric-blue { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: var(--blue-bright); }
.metric-green { font-size: 11px; color: #4ADE80; font-family: var(--font-mono, monospace); }

/* ============================================================
   WIDGET CHAT — Hero interactif
   ============================================================ */
.widget {
  width: 340px; border-radius: 22px;
  background: linear-gradient(180deg,#0F0F12 0%,#0A0A0C 100%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 80px rgba(0,0,0,0.5);
  overflow: hidden; font-size: 13.5px;
}
.widget-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg,rgba(255,255,255,0.02),transparent);
}
.widget-avatar {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg,#E8B4D8,#9D4EDD);
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px; color: white;
  position: relative; flex-shrink: 0;
}
.widget-avatar.online::after {
  content: ""; position: absolute; bottom: -2px; right: -2px;
  width: 10px; height: 10px;
  background: #22C55E; border: 2px solid #0F0F12; border-radius: 50%;
}
.widget-title { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.widget-title .name { font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; }
.widget-title .status { font-size: 11px; color: var(--ink-mute); }
.widget-body {
  padding: 16px; display: flex; flex-direction: column; gap: 8px;
  min-height: 220px; max-height: 280px; overflow-y: auto;
}
.widget-body::-webkit-scrollbar { width: 4px; }
.widget-body::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
.bubble { max-width: 82%; padding: 10px 14px; border-radius: 16px; line-height: 1.4; font-size: 13.5px; word-wrap: break-word; animation: bubble-in 0.32s cubic-bezier(0.2,0.8,0.2,1); }
@keyframes bubble-in { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
.bubble-bot { background: #131316; border: 1px solid var(--line); color: var(--ink-soft); border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble-user { background: var(--blue); color: white; border-bottom-right-radius: 4px; align-self: flex-end; }
.bubble-typing { display: flex; gap: 4px; padding: 14px; align-items: center; min-width: 52px; }
.bubble-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-mute); animation: typing 1.4s infinite; }
.bubble-typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100% { opacity:0.3; transform:translateY(0); } 30% { opacity:1; transform:translateY(-3px); } }
.widget-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; }
.widget-suggestions button {
  font-size: 12px; padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--ink-soft);
  background: none; cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.widget-suggestions button:hover { border-color: var(--blue); color: white; background: rgba(59,130,246,0.08); }
.widget-input { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: rgba(255,255,255,0.01); }
.widget-input input { flex: 1; background: transparent; border: none; color: var(--ink); font: inherit; font-size: 13px; outline: none; }
.widget-input input::placeholder { color: var(--ink-mute); }
.widget-input button.send { width: 32px; height: 32px; border-radius: 10px; background: var(--blue); display: grid; place-items: center; color: white; border: none; cursor: pointer; transition: all 0.15s; }
.widget-input button.send:hover { background: var(--blue-deep); }
.widget-input button.send:disabled { opacity: 0.4; cursor: not-allowed; }
.widget-foot { padding: 8px 14px 12px; font-size: 10.5px; color: var(--ink-mute); text-align: center; font-family: var(--font-mono, monospace); letter-spacing: 0.06em; text-transform: uppercase; }


/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

/* Bouton principal bleu avec ombre */
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(59,130,246,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59,130,246,0.5);
}

/* Bouton secondaire transparent */
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* Flèche animée dans les boutons */
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Bouton teal pour le support mensuel */
.btn-teal {
  background: linear-gradient(135deg, #0D9488, #0891B2);
  color: #fff;
  box-shadow: 0 8px 24px rgba(13,148,136,0.35);
  width: 100%;
  justify-content: center;
}

.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(13,148,136,0.5); }


/* ============================================================
   STATS STRIP (barre chiffrée sous le hero)
   ============================================================ */
.stats-strip { border-top: 1px solid var(--line); background: rgba(255,255,255,0.015); position: relative; z-index: 1; }
.stats-grid { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(4,1fr); }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-item { padding: clamp(24px,4vw,40px) 0; text-align: center; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: none; }
.stat-val { font-size: clamp(28px,4vw,48px); font-weight: 700; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.stat-lbl { font-size: 11px; color: var(--ink-mute); font-family: var(--font-mono, monospace); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 6px; }


/* ============================================================
   SECTIONS GÉNÉRALES
   ============================================================ */
section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.container { width: 100%; }
.ink-mute { color: var(--ink-mute); }
.section-head { text-align: center; margin-bottom: 4rem; }

/* Petit label coloré au-dessus des titres de section */
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  color: var(--blue-bright);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}


/* ============================================================
   GRILLE DE SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(2,1fr); } }

.service-card {
  position: relative;
  background: #0E0E10;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 280px; overflow: hidden;
  transition: all 0.25s ease;
}
.service-card:hover { border-color: rgba(255,255,255,0.22); background: #131316; transform: translateY(-2px); }
.service-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(96,165,250,0.4),transparent);
  opacity: 0; transition: opacity 0.25s;
}
.service-card:hover::after { opacity: 1; }
.service-num { font-family: var(--font-mono,monospace); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.08em; }
.service-title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; margin-top: auto; }
.service-desc { font-size: 14px; color: #9CA3AF; line-height: 1.55; }
.service-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(180deg,rgba(96,165,250,0.12),rgba(37,99,235,0.04));
  border: 1px solid rgba(96,165,250,0.15);
  display: grid; place-items: center; color: var(--blue-bright);
}


/* ============================================================
   PROCESSUS (4 étapes)
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 2rem;
}

/* Ligne horizontale reliant les étapes */
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
  z-index: 0;
}

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

.step-icon-wrapper {
  position: relative;
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
}

.step-icon {
  width: 80px; height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(59,130,246,0.3);
  transition: transform 0.3s;
}

.step:hover .step-icon { transform: scale(1.05); }

.step-icon svg {
  width: 32px; height: 32px;
  stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Numéro dans le coin de l'icône */
.step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--blue-bright);
}

.step h4 { font-size: 18px; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.01em; }

/* Petite pilule (ex: "30 minutes") */
.step-pill {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 100px;
  font-size: 12px;
  color: var(--blue-bright);
  font-weight: 500;
  margin-bottom: 1rem;
}

.step p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }


/* ============================================================
   TARIFS — Notice (pas d'achat direct)
   ============================================================ */
.pricing-notice {
  max-width: 680px;
  margin: 0 auto 3rem;
  padding: 1.25rem 2rem;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-md);
}

.pricing-notice-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  justify-content: center;
}

.pn-item { font-size: 14px; color: var(--ink-soft); font-weight: 500; }


/* ============================================================
   TARIFS — Grille des 3 cartes bots
   ============================================================ */
.pricing-bots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.price-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59,130,246,0.3);
}

/* Carte mise en avant (Sales Bot) — fond et bordure accentués */
.price-card.featured {
  background: linear-gradient(180deg, rgba(59,130,246,0.08), var(--bg-card));
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 20px 60px -20px rgba(59,130,246,0.3);
}

/* Badge "Plus populaire" au-dessus de la carte */
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
}

/* Badge de délai de livraison (Prospecting Bot) */
.delivery-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--blue-bright);
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 1.25rem;
}

.price-icon { font-size: 30px; margin-bottom: 1rem; }
.price-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 0.5rem; }
.price-tagline { color: var(--ink-soft); font-size: 14px; margin-bottom: 1.5rem; }

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

/* Prix en dégradé bleu */
.price-amount {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period { color: var(--ink-mute); font-size: 14px; }

.price-features { list-style: none; margin-bottom: 1.75rem; flex: 1; }

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 13.5px;
}

/* Icône checkmark bleue */
.check-circle {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  display: flex; align-items: center; justify-content: center;
}

.check-circle svg { width: 9px; height: 9px; stroke: var(--blue-bright); stroke-width: 3; fill: none; }

/* Le bouton occupe toute la largeur de la carte */
.price-card .btn { width: 100%; justify-content: center; }


/* ============================================================
   TARIFS — Carte support mensuel (couleurs teal)
   ============================================================ */
.pricing-support-wrap { max-width: 760px; margin: 0 auto 2.5rem; }

.price-card-support {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(20,184,166,0.07), rgba(8,145,178,0.04));
  border: 1px solid rgba(20,184,166,0.28);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Prix teal du support mensuel */
.price-teal {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #2DD4BF, #0891B2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-card-support h3 { font-size: 20px; font-weight: 700; margin-bottom: 0.5rem; color: #2DD4BF; }

/* Checkmark teal pour les features du support */
.check-circle-teal {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.35);
  display: flex; align-items: center; justify-content: center;
}

.check-circle-teal svg { width: 9px; height: 9px; stroke: #2DD4BF; stroke-width: 3; fill: none; }

/* Encadré avertissement (sans support = facturation heure) */
.support-warn-box {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background: rgba(234,179,8,0.07);
  border: 1px solid rgba(234,179,8,0.25);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.support-warn-box strong { color: #FCD34D; }


/* ============================================================
   TARIFS — Note API en bas de section
   ============================================================ */
.api-footer-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  max-width: 680px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  line-height: 1.6;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--line);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-brand .logo { margin-bottom: 0.75rem; }
.footer-tagline { color: var(--ink-mute); font-size: 14px; max-width: 320px; }

.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
}

.footer-links a:hover { color: var(--ink); }
.footer-links svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-mute);
  font-size: 13px;
}


/* ============================================================
   SECTION DÉMO — Persona switcher interactif
   ============================================================ */
.demo { border-top: 1px solid var(--line); }

.demo-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 0;
}
.demo-head .section-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mute);
  align-self: end;
  margin: 0;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  margin-top: 52px;
  align-items: start;
}

.demo-personas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.persona {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  color: inherit;
  font: inherit;
}
.persona:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.04); }
.persona.active { border-color: rgba(59,130,246,0.45); background: rgba(59,130,246,0.05); }

.persona-swatch { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.persona-color { width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; }
.persona-tag { font: 500 10.5px var(--font-mono, monospace); letter-spacing: 0.08em; color: var(--ink-mute); }
.persona-name { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.persona-quote { font-size: 12px; color: var(--ink-mute); font-style: italic; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.demo-stage { position: sticky; top: 88px; }
.demo-widget { width: 100%; max-width: 380px; margin: 0 auto; }


/* ============================================================
   CHAT FLOTTANT — Bouton toggle
   ============================================================ */
.chat-toggle {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(59,130,246,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  transition: transform 0.2s;
  animation: pulse-ring 2.5s ease-out infinite;
}

/* Animation de pulsation du bouton chat */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(59,130,246,0.5), 0 12px 32px rgba(59,130,246,0.4); }
  60%  { box-shadow: 0 0 0 16px rgba(59,130,246,0), 0 12px 32px rgba(59,130,246,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(59,130,246,0), 0 12px 32px rgba(59,130,246,0.4); }
}

.chat-toggle:hover { transform: scale(1.1); animation: none; box-shadow: 0 16px 40px rgba(59,130,246,0.6); }
.chat-toggle svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 2; fill: none; }

/* Bulle "Testez notre bot IA" à côté du bouton */
.chat-toggle-label {
  position: fixed;
  bottom: 34px; right: 96px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  z-index: 998;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: fadeInLabel 0.4s 3s both;
}

/* Petite flèche pointant vers le bouton */
.chat-toggle-label::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--line-strong);
}

@keyframes fadeInLabel {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}


/* ============================================================
   CHAT FLOTTANT — Widget (fenêtre)
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 380px; height: 580px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  /* Fermé par défaut — s'ouvre avec la classe .open */
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-widget.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* En-tête du widget (dégradé bleu) */
.chat-header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  display: flex; justify-content: space-between; align-items: center;
}

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

.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.chat-avatar svg { width: 22px; height: 22px; }
.chat-title { font-weight: 700; color: #fff; font-size: 15px; }

/* Indicateur "En ligne" avec point vert */
.chat-status {
  font-size: 12px; color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 6px;
}

.chat-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
}

.chat-close {
  background: rgba(255,255,255,0.1);
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 18px; line-height: 1;
  transition: background 0.2s;
}

.chat-close:hover { background: rgba(255,255,255,0.2); }

/* Zone de défilement des messages */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  background: var(--bg);
}

.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 2px; }


/* ============================================================
   MESSAGES DU CHAT
   ============================================================ */
.msg {
  display: flex;
  animation: msgIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 85%;
}

/* Animation d'apparition d'un message */
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.msg-bot  { align-self: flex-start; }
.msg-user { align-self: flex-end; }

.msg-bubble {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 14px; line-height: 1.5;
}

/* Bulle du bot (fond sombre) */
.msg-bot .msg-bubble {
  background: var(--bg-card); color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

/* Bulle de l'utilisateur (fond bleu) */
.msg-user .msg-bubble {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* Indicateur "en train d'écrire..." (3 points animés) */
.typing { display: flex; gap: 4px; padding: 10px; }
.typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-mute);
  animation: typing 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}


/* ============================================================
   RÉPONSES RAPIDES + BARRE DE SAISIE
   ============================================================ */
.quick-replies {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 0 1.25rem 0.5rem;
}

.quick-reply {
  padding: 6px 12px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 100px;
  color: var(--blue-bright);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.quick-reply:hover { background: rgba(59,130,246,0.2); transform: translateY(-1px); }

.chat-input {
  padding: 1rem;
  border-top: 1px solid var(--line);
  display: flex; gap: 8px;
  background: var(--bg-card);
}

.chat-input input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px; font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input input:focus { border-color: var(--blue); }

.chat-send {
  width: 40px; height: 40px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}

.chat-send:hover { transform: scale(1.05); }
.chat-send svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2; fill: none; }


/* Lang switcher styles → dans le bloc Navigation */


/* ── Bandeau Early Bird — section #tarifs (index.html) ──────── */
.early-bird-index {
  margin: 0 auto 2.5rem;
  padding: 0.9rem 1.5rem;
  background: rgba(234,179,8,0.06);
  border: 1px solid rgba(234,179,8,0.18);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 14px;
  color: #FCD34D;
  line-height: 1.5;
}
.early-bird-index code {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  background: rgba(234,179,8,0.12);
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 13px;
}


/* ── Encart Enterprise — section #tarifs (index.html) ────────── */
.enterprise-encart {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.enterprise-encart-icon { font-size: 2rem; flex-shrink: 0; }
.enterprise-encart-body { flex: 1; }
.enterprise-encart-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.65rem;
}
.enterprise-encart-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.enterprise-encart-badges span {
  font-size: 11.5px;
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid var(--line);
  color: var(--ink-mute);
}
@media (max-width: 640px) {
  .enterprise-encart { flex-direction: column; text-align: center; }
  .enterprise-encart-badges { justify-content: center; }
}


/* ============================================================
   BANDEAU COOKIES
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(15,17,23,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-strong);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 3000;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  flex-wrap: wrap;
}

.cookie-text { font-size: 13.5px; color: var(--ink-soft); flex: 1; line-height: 1.5; }
.cookie-text a { color: var(--blue-bright); text-decoration: underline; }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-btn {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  font-family: inherit;
  cursor: pointer; border: none;
  transition: all 0.2s;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}

.cookie-btn-decline {
  background: rgba(255,255,255,0.05);
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
}

.cookie-btn:hover { transform: translateY(-1px); opacity: 0.9; }

.cookie-content { flex: 1; }
.cookie-categories {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 12.5px;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
}
.cookie-cat input[type="checkbox"] {
  accent-color: var(--blue);
  width: 14px; height: 14px;
  cursor: pointer;
}
.cookie-cat input:disabled { cursor: default; opacity: 0.6; }
.cookie-cat small { font-size: 10px; color: var(--ink-mute); margin-left: 2px; }


/* ============================================================
   RESPONSIVE — Tablette (< 968px)
   ============================================================ */
@media (max-width: 968px) {
  /* Nav links cachés → géré dans le bloc nav @media 880px */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
  .process-grid::before { display: none; }
  .pricing-bots  { grid-template-columns: 1fr; }
  .price-card-support { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; text-align: center; }
  .footer-tagline { margin: 0 auto; }
  .footer-links  { justify-content: center; }
  section { padding: 4rem 1.5rem; }
  .hero   { padding: clamp(48px,8vw,100px) 0 0; }
  .hero-container { padding: 0 1.25rem; }
  .stats-grid { padding: 0 1.25rem; }
  .demo-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .demo-grid { grid-template-columns: 1fr; gap: 2rem; }
  .demo-stage { position: static; }
  .demo-widget { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — Mobile (< 640px)
   ============================================================ */
@media (max-width: 640px) {
  h1 { font-size: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-widget-wrap { width: min(340px, calc(100vw - 2.5rem)); height: 480px; }
  .hero-float-card { display: none; }
  /* Chat en plein écran sur mobile */
  .chat-widget {
    width: calc(100vw - 24px);
    height: calc(100vh - 100px);
    bottom: 12px; right: 12px; left: 12px;
  }
  .cookie-banner { padding: 1rem; }
  .lang-menu { right: auto; left: 0; }
}


/* Persona switcher — responsive tablette/mobile */
@media (max-width: 640px) {
  .demo-personas { flex-direction: row; flex-wrap: wrap; }
  .persona { flex: 1 1 calc(50% - 5px); }
  .persona-quote { display: none; }
}


/* ============================================================
   // [CLAUDE-CODE] - 15/05/2026
   ÉTAPES SaaS — Section #processus
   ============================================================ */
/* ── Section Processus ── */
.processus { border-top: 1px solid var(--line); }
.process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--line);
}
.process-step {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.process-num {
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  color: var(--blue-bright);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.process-title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-top: auto;
}
.process-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
}
.codeline {
  font-family: var(--font-mono, monospace);
  font-size: 11.5px;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 6px;
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.codeline .tag { color: var(--blue-bright); }
@media (max-width: 900px) {
  .process-head { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ── Section Tarifs ── */
.earlybird {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(234,179,8,0.08); border: 1px solid rgba(234,179,8,0.25);
  color: #F59E0B; font-size: 12px;
  font-family: var(--font-mono, monospace); letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.earlybird-code {
  font-weight: 600; color: #F59E0B;
  background: rgba(234,179,8,0.15); padding: 2px 8px; border-radius: 6px;
}
.pricing-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end; margin-bottom: 24px;
}
.billing-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.billing-toggle {
  display: inline-flex; border: 1px solid var(--line);
  border-radius: 999px; padding: 4px; background: rgba(255,255,255,0.02);
}
.billing-toggle button {
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--ink-mute); transition: all 0.18s;
  background: transparent; border: none; cursor: pointer; font: inherit;
}
.billing-toggle button.active { background: var(--ink); color: var(--bg); }
.billing-toggle .save {
  display: inline-block; margin-left: 6px; font-size: 10px;
  font-family: var(--font-mono, monospace);
  background: rgba(34,197,94,0.12); color: #22C55E;
  padding: 1px 6px; border-radius: 4px; letter-spacing: 0.04em;
}
.billing-note { font-size: 12.5px; color: var(--ink-mute); text-align: right; max-width: 280px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.plan {
  position: relative; background: rgba(255,255,255,0.02);
  border: 1px solid var(--line); border-radius: 20px;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 20px;
}
.plan.featured {
  border-color: rgba(59,130,246,0.4);
  background: linear-gradient(180deg, rgba(59,130,246,0.06), rgba(255,255,255,0.02) 60%);
  box-shadow: 0 24px 60px rgba(37,99,235,0.12); padding-top: 52px;
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white; font-size: 11px;
  font-family: var(--font-mono, monospace); letter-spacing: 0.06em;
  padding: 6px 14px; border-radius: 999px; text-transform: uppercase;
  font-weight: 600; white-space: nowrap; box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.plan-name { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.plan-tag { font-size: 13px; color: var(--ink-mute); margin-top: 4px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin: 8px 0 0; }
.plan-price .amount { font-size: 56px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.plan-price .cur { font-size: 22px; font-weight: 500; color: var(--ink-mute); }
.plan-price .per { font-size: 13px; color: var(--ink-mute); margin-left: 4px; }
.plan-monthly-info { font-size: 12.5px; color: var(--ink-mute); font-family: var(--font-mono, monospace); margin-top: 6px; }
.plan-yearly {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; font-family: var(--font-mono, monospace); color: var(--ink-mute);
  padding: 10px 12px; margin-top: 6px; border-radius: 10px;
  background: rgba(255,255,255,0.025); border: 1px dashed var(--line-strong);
}
.plan-yearly .total { color: var(--ink); font-weight: 600; }
.plan-yearly .save {
  color: #22C55E; font-size: 11px;
  background: rgba(34,197,94,0.10); padding: 2px 7px; border-radius: 999px;
}
.plan-vol {
  font-size: 13px; color: var(--ink-mute);
  padding: 10px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.plan-vol .v { font-weight: 600; color: var(--ink); }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.4; }
.plan-features .ck { color: var(--blue-bright); flex-shrink: 0; margin-top: 2px; }
.plan-cta { margin-top: auto; }
.plan-cta .btn { width: 100%; justify-content: center; }
.btn-blue {
  background: var(--blue); color: white; border-color: transparent;
  box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}
.btn-blue:hover { background: var(--blue-deep); }
.pricing-footnote {
  text-align: center; margin-top: 32px; font-size: 12.5px; color: var(--ink-mute);
  font-family: var(--font-mono, monospace); letter-spacing: 0.03em;
}
@media (max-width: 980px) {
  .pricing-head { grid-template-columns: 1fr; }
  .billing-wrap { align-items: flex-start; }
  .billing-note { text-align: left; }
  .pricing-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   // [CLAUDE-CODE] - 15/05/2026
   SECTION ENTERPRISE DÉDIÉE (id="enterprise")
   ============================================================ */
.enterprise-section { background: var(--bg-card); border-top: 1px solid var(--line); }
.enterprise-inner { max-width: 1000px; margin: 0 auto; }
.enterprise-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}
.enterprise-col > h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.enterprise-adapt-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.enterprise-adapt-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.adapt-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.adapt-text strong { color: var(--ink); display: block; font-size: 14px; margin-bottom: 2px; }
.adapt-text span  { font-size: 13px; color: var(--ink-soft); }
.enterprise-guarantee-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.enterprise-guarantee-list li { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.admin-mockup-wrap {
  position: relative;
  max-width: 700px;
  margin: 3.5rem auto 1rem;
  padding-bottom: 18px;
}
.admin-mockup {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0f1117;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #161922;
  border-bottom: 1px solid var(--line);
}
.admin-logo-ph {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 3px 8px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 4px;
}
.admin-header-label { font-size: 10px; color: var(--ink-mute); }
.admin-body { display: flex; min-height: 140px; }
.admin-sidebar {
  width: 110px;
  flex-shrink: 0;
  background: #111420;
  border-right: 1px solid var(--line);
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.admin-nav-item { padding: 7px 12px; font-size: 11px; color: var(--ink-mute); margin: 0 4px; border-radius: 4px; }
.admin-nav-item.active { background: rgba(59,130,246,0.12); color: var(--blue-bright); }
.admin-main { flex: 1; padding: 1rem; }
.admin-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.admin-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
}
.admin-stat-label { font-size: 9.5px; color: var(--ink-mute); margin-bottom: 3px; }
.admin-stat-num   { font-size: 18px; font-weight: 700; color: var(--ink); }
.admin-watermark {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.enterprise-key-mention {
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  margin: 3rem 0 2.5rem;
}
.enterprise-cta-wrap { text-align: center; }
.enterprise-cta-note { margin-top: 0.75rem; font-size: 13px; color: var(--ink-mute); }
@media (max-width: 768px) {
  .enterprise-cols  { grid-template-columns: 1fr; gap: 2rem; }
  .admin-stats-row  { grid-template-columns: 1fr; gap: 0.4rem; }
  .admin-sidebar    { width: 80px; }
  .admin-nav-item   { font-size: 9px; padding: 5px 6px; }
}

/* ============================================================
   SECTION 7 — ENTERPRISE (nouveau design)
   ============================================================ */
.enterprise {
  position: relative;
  border: 1px solid var(--hairline-strong, rgba(255,255,255,0.12));
  border-radius: var(--r-xl, 24px);
  padding: clamp(40px, 5vw, 80px);
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(37,99,235,0.08), transparent 60%),
    linear-gradient(180deg, var(--surface, #111827), var(--bg-elev, #0f172a));
  overflow: hidden;
}
.enterprise-eyebrow { margin-bottom: 20px; }
.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .enterprise-grid { grid-template-columns: 1fr; gap: 40px; }
}
.ent-block-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-soft, #60a5fa);
  font-family: var(--font-mono, monospace);
  margin-bottom: 16px;
  font-weight: 500;
}
.ent-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.ent-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline, rgba(255,255,255,0.07));
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-2, #94a3b8);
  line-height: 1.5;
}
.ent-list li:last-child { border-bottom: none; }
.ent-list li .label {
  font-weight: 600;
  color: var(--text, #f1f5f9);
  width: 160px;
  flex-shrink: 0;
}
.ent-list li .ck {
  color: var(--green-soft, #4ade80);
  flex-shrink: 0;
  margin-top: 3px;
}
.ent-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}
.ent-cta-row .note {
  font-size: 13px;
  color: var(--text-4, #475569);
}

/* ============================================================
   SECTION 8 — DASHBOARD PREVIEW
   ============================================================ */
.dash-frame {
  margin-top: 56px;
  border: 1px solid var(--hairline-strong, rgba(255,255,255,0.12));
  border-radius: var(--r-xl, 24px);
  background: linear-gradient(180deg, #0A0A0C, #050507);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  position: relative;
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--hairline, rgba(255,255,255,0.07));
  background: rgba(255,255,255,0.015);
}
.dash-bar .dots { display: flex; gap: 6px; }
.dash-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-3, #334155); }
.dash-bar .url {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono, monospace);
  font-size: 11.5px;
  color: var(--text-4, #475569);
  padding: 6px 14px;
  background: rgba(255,255,255,0.025);
  border-radius: 6px;
  border: 1px solid var(--hairline, rgba(255,255,255,0.07));
  max-width: 360px;
  margin: 0 auto;
}
.dash-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 540px;
}
@media (max-width: 780px) {
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { display: none; }
}
.dash-side {
  border-right: 1px solid var(--hairline, rgba(255,255,255,0.07));
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.dash-brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}
.dash-section-label {
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-5, #334155);
  text-transform: uppercase;
  padding: 14px 10px 6px;
}
.dash-side-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-3, #64748b);
  cursor: pointer;
  transition: all 0.15s;
}
.dash-side-item:hover { color: var(--text, #f1f5f9); background: rgba(255,255,255,0.03); }
.dash-side-item.active {
  color: var(--text, #f1f5f9);
  background: rgba(59,130,246,0.08);
  box-shadow: inset 0 0 0 1px rgba(59,130,246,0.25);
}
.dash-side-item .icon { width: 14px; flex-shrink: 0; color: var(--text-4, #475569); }
.dash-side-item.active .icon { color: var(--blue-soft, #60a5fa); }
.dash-main {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dash-main-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.dash-main-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 600px) {
  .dash-stats { grid-template-columns: 1fr; }
}
.dash-stat {
  border: 1px solid var(--hairline, rgba(255,255,255,0.07));
  border-radius: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.012);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-stat .l { font-size: 12px; color: var(--text-4, #475569); font-family: var(--font-mono, monospace); letter-spacing: 0.04em; text-transform: uppercase; }
.dash-stat .v { font-size: 32px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.dash-stat .d { font-size: 11.5px; color: var(--green-soft, #4ade80); font-family: var(--font-mono, monospace); }
.dash-chart {
  border: 1px solid var(--hairline, rgba(255,255,255,0.07));
  border-radius: 14px;
  padding: 20px 20px 8px;
  background: rgba(255,255,255,0.012);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dash-chart-head { display: flex; justify-content: space-between; align-items: center; }
.dash-chart svg { width: 100%; height: 160px; display: block; }
.dash-table {
  border: 1px solid var(--hairline, rgba(255,255,255,0.07));
  border-radius: 14px;
  background: rgba(255,255,255,0.012);
  overflow: hidden;
}
.dash-table-head, .dash-table-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 110px;
  padding: 12px 18px;
  font-size: 12.5px;
  align-items: center;
}
.dash-table-head {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--hairline, rgba(255,255,255,0.07));
  font-family: var(--font-mono, monospace);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--text-5, #334155);
  text-transform: uppercase;
}
.dash-table-row {
  border-bottom: 1px solid var(--hairline, rgba(255,255,255,0.07));
  color: var(--text-2, #94a3b8);
}
.dash-table-row:last-child { border-bottom: none; }
.dash-table-row .who { font-weight: 500; color: var(--text, #f1f5f9); }
.dash-table-row .meta { color: var(--text-4, #475569); font-size: 11.5px; }
.pill {
  display: inline-block;
  font-size: 10.5px;
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 500;
}
.pill.green  { background: rgba(34,197,94,0.12);   color: var(--green-soft, #4ade80); }
.pill.blue   { background: rgba(59,130,246,0.12);  color: var(--blue-soft, #60a5fa); }
.pill.gray   { background: rgba(255,255,255,0.04); color: var(--text-3, #64748b); }
.pill.amber  { background: rgba(245,158,11,0.14);  color: #F59E0B; }
.pill.red    { background: rgba(239,68,68,0.10);   color: #F87171; }
.pill.indigo { background: rgba(99,102,241,0.12);  color: #a5b4fc; }

/* Dashboard multi-view switching */
.dash-view { display: none; flex-direction: column; gap: 20px; width: 100%; }
.dash-view.active { display: flex; }

.dash-side-item .dash-badge {
  margin-left: auto;
  font-size: 10px;
  background: rgba(59,130,246,0.18);
  color: var(--blue-soft, #60a5fa);
  padding: 1px 6px;
  border-radius: 6px;
  font-family: var(--font-mono, monospace);
}

/* RDV table — 5 colonnes */
.dash-rdv-head, .dash-rdv-row {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 80px 110px 100px;
  padding: 11px 18px;
  font-size: 12.5px;
  align-items: center;
}
.dash-rdv-head {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--hairline, rgba(255,255,255,0.07));
  font-family: var(--font-mono, monospace);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--text-5, #334155);
  text-transform: uppercase;
}
.dash-rdv-row {
  border-bottom: 1px solid var(--hairline, rgba(255,255,255,0.07));
  color: var(--text-2, #94a3b8);
}
.dash-rdv-row:last-child { border-bottom: none; }
.dash-rdv-row .who { font-weight: 500; color: var(--text, #f1f5f9); font-size:12.5px; }
.dash-rdv-row .when { color: var(--text-3, #64748b); font-size: 11.5px; margin-top: 1px; }
.dash-meet-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-family: var(--font-mono, monospace);
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(59,130,246,0.10);
  color: var(--blue-soft, #60a5fa);
  border: 1px solid rgba(59,130,246,0.20);
  cursor: default;
}

/* Conversations list */
.dash-conv-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--hairline, rgba(255,255,255,0.07));
  font-size: 12.5px;
  color: var(--text-2, #94a3b8);
}
.dash-conv-row:last-child { border-bottom: none; }
.dash-conv-avatar {
  width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
  background: rgba(59,130,246,0.15); color: #60a5fa;
}
.dash-conv-body { flex: 1; min-width: 0; }
.dash-conv-name { font-weight: 500; color: var(--text, #f1f5f9); font-size: 13px; }
.dash-conv-preview { font-size: 11.5px; color: var(--text-4, #475569); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.dash-conv-meta { text-align: right; flex-shrink: 0; }
.dash-conv-time { font-size: 11px; color: var(--text-5, #334155); font-family: var(--font-mono, monospace); }

/* Overview quick-actions */
.dash-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-action-btn {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--hairline, rgba(255,255,255,0.07));
  color: var(--text-2, #94a3b8);
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: background 0.15s;
}
.dash-action-btn:hover { background: rgba(255,255,255,0.04); color: var(--text, #f1f5f9); }
.dash-action-btn svg { flex-shrink: 0; }

/* Setup-meeting slot picker */
.dash-slot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 4px;
}
.dash-slot-day {
  padding: 8px 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--hairline, rgba(255,255,255,0.07));
  text-align: center;
  font-size: 11px;
  color: var(--text-3, #64748b);
}
.dash-slot-day.has { color: var(--text-2, #94a3b8); cursor: default; }
.dash-slot-day.selected {
  background: rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.35);
  color: #fff;
}
.dash-slot-day .day-name { font-weight: 600; font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.dash-slot-day .day-num { font-size: 15px; font-weight: 700; margin: 4px 0 2px; }
.dash-slot-day .day-slots { font-size: 9.5px; color: var(--blue-soft, #60a5fa); }
.dash-time-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.dash-time-chip {
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid var(--hairline, rgba(255,255,255,0.10));
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  font-family: var(--font-mono, monospace);
  color: var(--text-2, #94a3b8);
  cursor: default;
}
.dash-time-chip.sel {
  background: rgba(59,130,246,0.14);
  border-color: rgba(59,130,246,0.35);
  color: #fff;
}

/* Settings form */
.dash-settings-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-settings-label {
  font-size: 10px;
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-4, #475569);
}
.dash-settings-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline, rgba(255,255,255,0.08));
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-2, #94a3b8);
  font-family: var(--font, 'Inter', sans-serif);
}
.dash-settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dash-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--hairline, rgba(255,255,255,0.07));
  border-radius: 10px;
}
.dash-toggle-track {
  width: 36px; height: 20px; border-radius: 999px;
  background: #3B82F6; position: relative; flex-shrink: 0;
}
.dash-toggle-track .thumb {
  position: absolute; top: 3px; right: 3px;
  width: 14px; height: 14px; border-radius: 50%; background: #fff;
}

/* ============================================================
   SECTION 9 — CLOSING CTA
   ============================================================ */
.closing {
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: "";
  position: absolute;
  inset: -100px;
  background: radial-gradient(circle at 50% 50%, rgba(37,99,235,0.16), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}
.closing h2 {
  font-size: clamp(40px, 6.4vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 14ch;
  margin: 0 auto 28px;
}
.closing .lead { margin: 0 auto 36px; text-align: center; }

/* ============================================================
   OPTIONS SETUP (section tarifs)
   ============================================================ */
.setup-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--hairline, rgba(255,255,255,0.07));
}
.setup-section-head {
  text-align: center;
  margin-bottom: 2rem;
}
.setup-section-head h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.setup-subtitle {
  font-size: 15px;
  color: var(--text-2, #94a3b8);
  margin: 0;
}
.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .setup-grid { grid-template-columns: 1fr; }
}
.setup-card {
  padding: 1.75rem 1.5rem;
  background: var(--surface, #111827);
  border: 1px solid var(--hairline, rgba(255,255,255,0.07));
  border-radius: 16px;
  transition: border-color 0.2s;
}
.setup-card:hover {
  border-color: rgba(59,130,246,0.25);
}
.setup-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0.25rem;
}
.setup-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--text, #f1f5f9);
  letter-spacing: -0.02em;
}
.setup-price.free { color: var(--green-soft, #4ade80); }
.setup-once {
  font-size: 12px;
  color: var(--text-4, #475569);
}
.setup-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text, #f1f5f9);
}
.setup-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.setup-features li {
  font-size: 13px;
  color: var(--text-2, #94a3b8);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}
.setup-features li::before {
  content: '→';
  color: var(--blue-soft, #60a5fa);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
}
.setup-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-4, #475569);
  padding: 0.85rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--hairline, rgba(255,255,255,0.07));
  border-radius: 10px;
  line-height: 1.6;
}
.setup-note strong { color: var(--text-2, #94a3b8); }

/* ============================================================
   FOOTER — nouveau design
   ============================================================ */
.footer {
  border-top: 1px solid var(--hairline, rgba(255,255,255,0.07));
  padding: 64px 0 40px;
  background: var(--bg-elev, #0f172a);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}
.footer-brand .tag {
  font-size: 13px;
  color: var(--text-4, #475569);
  line-height: 1.5;
}
.footer-col-title {
  font-size: 11px;
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.1em;
  color: var(--text-5, #334155);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--text-3, #64748b); transition: color 0.15s; text-decoration: none; }
.footer-col a:hover { color: var(--text, #f1f5f9); }
.footer-wordmark {
  margin-top: 80px;
  margin-bottom: -28px;
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  user-select: none;
}
.footer-meta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline, rgba(255,255,255,0.07));
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-5, #334155);
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.04em;
}
@media (max-width: 540px) {
  .footer-meta { flex-direction: column; gap: 12px; }
}
