@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@1,9..144,400..600&display=swap');

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --charcoal: #141414;
  --card: #1a1a1a;
  --orange: #C04428;
  --orange-light: #E07050;
  --orange-bright: #FF6B3D;
  --orange-glow: rgba(192, 68, 40, 0.4);
  --orange-glow-soft: rgba(192, 68, 40, 0.15);
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #b8b8b8;
  --gray-dark: #555555;
  --border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Switzer', -apple-system, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Particules background */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 15s infinite ease-in-out;
  box-shadow: 0 0 6px var(--orange-glow);
}

@keyframes float-particle {
  0% { opacity: 0; transform: translate(0, 100vh) scale(0); }
  10% { opacity: 0.6; transform: translate(20px, 90vh) scale(1); }
  90% { opacity: 0.4; transform: translate(-30px, 10vh) scale(1); }
  100% { opacity: 0; transform: translate(0, 0) scale(0); }
}

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

nav .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }

.logo {
  display: inline-flex; align-items: baseline; gap: 0;
  text-decoration: none; color: var(--white);
  flex-shrink: 0;
}

.logo-wm {
  display: inline-flex; align-items: baseline;
  font-size: 21px; line-height: 1; white-space: nowrap;
}
.logo-wm .wm-at {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-weight: 500;
  letter-spacing: -0.01em; color: var(--white);
}
.logo-wm .wm-ai {
  font-family: 'Switzer', -apple-system, sans-serif;
  font-weight: 700; letter-spacing: -0.02em;
  color: #E0653F; margin-left: 0.1em;
}

.nav-links {
  display: flex; gap: 8px; align-items: center;
  list-style: none; padding: 0; margin: 0;
}

/* CTA mobile : invisible par défaut (desktop), visible uniquement dans le dropdown mobile */
.nav-links .nav-cta-mobile,
.nav-links li:has(.nav-cta-mobile) {
  display: none;
}

.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

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

.nav-cta {
  background: var(--orange); color: var(--white);
  padding: 10px 20px; border-radius: 50px;
  text-decoration: none; font-weight: 500; font-size: 14px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px var(--orange-glow);
  flex-shrink: 0;
}

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

/* ====================== BURGER ICON (animé en X au click) ====================== */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 110;
  transition: background 0.2s, border-color 0.2s;
}
.nav-burger:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }

.nav-burger span {
  position: absolute;
  left: 11px;
  width: 18px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1),
              top 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 24px; }

/* État "ouvert" : 3 lignes → X */
.nav-burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ====================== BACKDROP MOBILE (dim derrière le menu) ====================== */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav-backdrop.is-open {
  display: block;
  opacity: 1;
}

/* ====================== TABLETTE LANDSCAPE (~768-1100px) ====================== */
@media (max-width: 1100px) {
  .nav-links { gap: 4px; }
  .nav-links a { font-size: 13px; padding: 7px 10px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
}

/* ====================== MOBILE (≤ 768px) : MENU PLEIN ÉCRAN ÉDITORIAL ====================== */
@media (max-width: 768px) {
  nav { padding: 12px 0; }
  nav .container { padding: 0 16px; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 100px 30px 96px;
    background:
      radial-gradient(120% 80% at 100% 0%, rgba(192, 68, 40, 0.18) 0%, transparent 55%),
      radial-gradient(100% 70% at 0% 100%, rgba(192, 68, 40, 0.10) 0%, transparent 55%),
      rgba(8, 7, 7, 1);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    counter-reset: navitem;
    z-index: 95;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    list-style: none;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 0;
    transform: translateY(18px);
  }
  .nav-links.open li { animation: navItemIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
  .nav-links.open li:nth-child(1) { animation-delay: 0.08s; }
  .nav-links.open li:nth-child(2) { animation-delay: 0.14s; }
  .nav-links.open li:nth-child(3) { animation-delay: 0.20s; }
  .nav-links.open li:nth-child(4) { animation-delay: 0.26s; }
  .nav-links.open li:nth-child(5) { animation-delay: 0.32s; }
  .nav-links.open li:nth-child(6) { animation-delay: 0.40s; }

  @keyframes navItemIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-links li a {
    display: flex;
    align-items: baseline;
    gap: 20px;
    width: 100%;
    padding: 22px 4px;
    border-radius: 0;
    font-size: clamp(30px, 9vw, 46px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #f4f4f4;
    transition: color 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links li:not(:has(.nav-cta-mobile)) a::before {
    counter-increment: navitem;
    content: counter(navitem, decimal-leading-zero);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--orange);
    font-family: 'SF Mono', 'Monaco', monospace;
    transform: translateY(-0.35em);
    min-width: 26px;
    opacity: 0.85;
    transition: opacity 0.25s ease;
  }

  .nav-links li a:hover, .nav-links li a:focus-visible {
    color: var(--orange-light);
    transform: translateX(10px);
  }
  .nav-links li a:hover::before, .nav-links li a:focus-visible::before { opacity: 1; }

  /* CTA premium dans le menu plein écran */
  .nav-links li:has(.nav-cta-mobile) {
    display: block;
    border-bottom: none;
    margin-top: 36px;
  }
  .nav-links .nav-cta-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 20px 24px;
    background: var(--orange);
    color: #fff !important;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-decoration: none;
    box-shadow: 0 10px 30px var(--orange-glow), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .nav-links .nav-cta-mobile:hover, .nav-links .nav-cta-mobile:focus-visible {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px var(--orange-glow);
  }

  /* Signature studio en bas du menu */
  .nav-links::after {
    content: 'Studio · Lausanne · Suisse romande';
    position: absolute;
    left: 24px; right: 24px; bottom: 32px;
    text-align: center;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-dark);
  }

  /* Header (logo + burger) reste au-dessus du menu plein écran */
  .logo { position: relative; z-index: 111; }
  .nav-burger { display: flex; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
}

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 140px 24px 80px; position: relative; overflow: hidden;
}

.hero::before {
  content: ''; position: absolute; top: -100px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: ''; position: absolute; bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192, 68, 40, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.eyebrow {
  display: inline-block; font-family: 'JetBrains Mono', monospace;
  color: var(--orange); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid rgba(192, 68, 40, 0.3); border-radius: 50px;
  margin-bottom: 32px; background: rgba(192, 68, 40, 0.05);
}

.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-bright); margin-right: 8px;
  box-shadow: 0 0 8px var(--orange-bright);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

h1 {
  font-family: 'Fraunces', Georgia, serif; font-optical-sizing: auto;
  font-size: clamp(38px, 6.4vw, 70px); font-weight: 540;
  line-height: 1.07; letter-spacing: -0.015em; margin-bottom: 24px;
}

h1 .accent { color: var(--orange-light); font-style: italic; }

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px); color: var(--gray-light);
  max-width: 640px; margin: 0 auto 40px;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 16px 32px; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 16px;
  transition: all 0.2s; box-shadow: 0 4px 20px var(--orange-glow);
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
}

.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 6px 28px var(--orange-glow); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.05); color: var(--white);
  padding: 16px 32px; border-radius: 50px;
  text-decoration: none; font-weight: 500; font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15); transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); }

/* Hero stats inline */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 720px; margin: 0 auto; padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat { text-align: center; }
.hero-stat-num { font-size: clamp(24px, 4vw, 36px); font-weight: 700; color: var(--orange); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--gray-light); margin-top: 8px; letter-spacing: 0.5px; }

/* Chat mockup animé */
.chat-demo-wrap {
  max-width: 440px; margin: 56px auto 0; position: relative;
}

.chat-demo-wrap::before {
  content: ''; position: absolute; inset: -40px;
  background: radial-gradient(circle, var(--orange-glow-soft) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.chat-demo {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}

.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.chat-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white;
  position: relative;
}
.chat-avatar::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 10px; height: 10px;
  background: #00d96b;
  border-radius: 50%; border: 2px solid #1a1a1a;
}

.chat-name { font-weight: 600; font-size: 15px; }
.chat-status { font-size: 11px; color: #00d96b; display: flex; align-items: center; gap: 4px; }

.chat-messages {
  display: flex; flex-direction: column; gap: 10px;
  min-height: 260px;
}

.chat-msg {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(8px);
  animation: msgIn 0.4s forwards;
  line-height: 1.4;
}

.chat-msg.client {
  background: #2a2a2a; color: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.bot {
  background: var(--orange); color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 16px var(--orange-glow-soft);
}

.chat-msg.typing {
  background: #2a2a2a; padding: 14px 18px;
  align-self: flex-start; border-bottom-left-radius: 4px;
  display: flex; gap: 4px;
}
.chat-msg.typing span {
  width: 6px; height: 6px; background: var(--gray); border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.chat-msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@keyframes msgIn {
  to { opacity: 1; transform: translateY(0); }
}

.chat-meta {
  font-size: 11px; color: var(--gray);
  text-align: center; margin-top: 12px;
  padding-top: 12px; border-top: 1px solid var(--border);
}

/* Trust badges row */
.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin: 40px auto 0; max-width: 900px;
}

.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  color: var(--gray-light);
  transition: all 0.2s;
}

.trust-badge:hover {
  border-color: rgba(192, 68, 40, 0.4);
  background: rgba(192, 68, 40, 0.05);
  color: var(--white);
}

.trust-badge svg {
  width: 14px; height: 14px;
  stroke: var(--orange); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* Comparison table */
.compare-section { background: transparent; }

.compare-table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  max-width: 1000px; margin: 40px auto 0;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }

.compare-cell {
  padding: 20px 24px;
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  border-right: 1px solid var(--border);
}
.compare-cell:last-child { border-right: none; }

.compare-row.header .compare-cell {
  background: rgba(0,0,0,0.3);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 24px;
}

.compare-row.header .compare-cell.us {
  background: rgba(192, 68, 40, 0.15);
  color: var(--orange);
  border-color: rgba(192, 68, 40, 0.3);
}

.compare-cell.feature { font-weight: 600; color: var(--white); }
.compare-cell.us { background: rgba(192, 68, 40, 0.05); border-color: rgba(192, 68, 40, 0.2); }

.compare-icon { width: 18px; height: 18px; flex-shrink: 0; }
.compare-icon.yes { color: #00d96b; }
.compare-icon.no { color: #ff4444; }
.compare-icon.mid { color: #ffaa00; }

.compare-value { color: var(--gray-light); font-size: 13px; }

@media (max-width: 768px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
  }
  .compare-row.header { display: none; }
  .compare-cell::before {
    content: attr(data-label);
    color: var(--orange);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 12px;
    font-weight: 600;
  }
  .compare-cell.feature::before { display: none; }
}

/* Sticky CTA mobile */
.sticky-cta-mobile {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(192, 68, 40, 0.3);
  z-index: 999;
}
.sticky-cta-mobile .btn-primary {
  width: 100%; justify-content: center;
  padding: 14px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .sticky-cta-mobile { display: block; }
  body { padding-bottom: 80px; }
  .flame-mascot { bottom: 88px !important; }
}

/* Sections */
section { padding: 100px 0; position: relative; }

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  color: var(--orange); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px;
}

h2 {
  font-family: 'Fraunces', Georgia, serif; font-optical-sizing: auto;
  font-size: clamp(30px, 4.6vw, 48px); font-weight: 540;
  line-height: 1.12; letter-spacing: -0.015em; margin-bottom: 24px;
}

h2 .accent { color: var(--orange-light); font-style: italic; }

.section-intro {
  color: var(--gray-light); font-size: 18px; max-width: 680px; margin-bottom: 56px;
}

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

/* Stats section animée */
.stats-section {
  background: transparent;
  position: relative; overflow: hidden;
}

.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px;
  margin-top: 40px;
}

.stat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 24px; text-align: center; transition: all 0.3s;
}

.stat-card:hover { border-color: rgba(192, 68, 40, 0.4); transform: translateY(-4px); }

.stat-number {
  font-size: clamp(40px, 5vw, 60px); font-weight: 800; color: var(--orange); line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-label { font-size: 14px; color: var(--gray-light); margin-top: 12px; }

.stat-card .accent-line { width: 40px; height: 3px; background: var(--orange); margin: 16px auto; border-radius: 2px; }

/* Services / Projects */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}

.service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; transition: all 0.3s; position: relative; overflow: hidden;
}

.service-card::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, var(--orange-glow-soft) 0%, transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity 0.3s;
}

.service-card:hover { border-color: rgba(192, 68, 40, 0.4); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(192, 68, 40, 0.12); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.service-icon::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(192, 68, 40, 0.25), transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}

.service-card:hover .service-icon::after { opacity: 1; }

.service-icon svg { width: 26px; height: 26px; stroke: var(--orange); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 1; }

.service-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--gray-light); font-size: 14px; }

/* Pour qui */
.profiles-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
}

.profile-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 20px; text-align: center; transition: all 0.2s;
}

.profile-card:hover { border-color: var(--orange); transform: translateY(-3px); }

.profile-icon {
  width: 44px; height: 44px; margin: 0 auto 14px;
  background: rgba(192, 68, 40, 0.1);
  border: 1px solid rgba(192, 68, 40, 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.profile-icon svg { width: 22px; height: 22px; stroke: var(--orange); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.profile-name { font-weight: 600; margin-bottom: 6px; font-size: 15px; }
.profile-use { color: var(--gray-light); font-size: 13px; line-height: 1.4; }

/* Process steps */
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px;
}

.step { position: relative; padding-left: 0; }
.step-number {
  display: inline-block; font-size: 14px; color: var(--orange);
  font-weight: 600; letter-spacing: 2px; margin-bottom: 12px;
}
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--gray-light); font-size: 14px; }

/* Objections section */
.objections-section { background: transparent; }

.objection-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px;
}

.objection-card {
  background: var(--card); border-left: 3px solid var(--orange); border-radius: 8px;
  padding: 24px; transition: all 0.2s;
}

.objection-card:hover { transform: translateX(4px); border-left-width: 5px; }

.objection-quote { font-style: italic; color: var(--gray-light); font-size: 14px; margin-bottom: 12px; }
.objection-quote::before { content: '"'; color: var(--orange); margin-right: 4px; }
.objection-quote::after { content: '"'; color: var(--orange); margin-left: 2px; }

.objection-answer { font-size: 15px; color: var(--white); }
.objection-answer strong { color: var(--orange); }

/* SEO Banner */
.seo-banner {
  background: linear-gradient(135deg, rgba(192, 68, 40, 0.08) 0%, rgba(192, 68, 40, 0.02) 100%);
  border: 1px solid rgba(192, 68, 40, 0.25);
  border-radius: 24px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.seo-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 65%);
  pointer-events: none;
}

.seo-banner-content { position: relative; z-index: 1; }
.seo-banner h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700; margin-bottom: 12px; line-height: 1.2;
}
.seo-banner p { color: var(--gray-light); font-size: 16px; max-width: 600px; }

.seo-banner-cta { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .seo-banner { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
}

/* Pricing */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}

.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }

.pricing-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(192, 68, 40, 0.1) 0%, var(--card) 100%);
  position: relative;
}

.pricing-card.featured::before {
  content: 'POPULAIRE'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white); padding: 4px 16px; border-radius: 50px;
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
}

.pricing-name {
  font-size: 14px; color: var(--orange); font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}

.pricing-amount { font-size: 48px; font-weight: 700; margin-bottom: 4px; line-height: 1; }
.pricing-period { color: var(--gray); font-size: 14px; margin-bottom: 32px; }

.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  padding: 10px 0; color: var(--gray-light); font-size: 15px;
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px;
}
.pricing-features li::before { content: '✓'; color: var(--orange); font-weight: 700; }

.pricing-cta {
  display: block; background: var(--orange); color: var(--white); text-align: center;
  padding: 14px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.2s;
  border: none; cursor: pointer; width: 100%; font-size: 16px;
}

.pricing-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

/* Trust section */
.trust-section { background: transparent; }
.trust-text { color: var(--gray-light); font-size: 16px; margin-bottom: 32px; }

.trust-logos {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px;
  opacity: 0.7;
}

.trust-logo {
  height: 40px; background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 24px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 500; color: var(--gray-light); font-size: 14px;
}

.trust-logo .trust-logo-icon {
  width: 28px; height: 28px;
  border: 1px solid rgba(192, 68, 40, 0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.trust-logo .trust-logo-icon svg { width: 14px; height: 14px; stroke: var(--orange); stroke-width: 2; fill: none; }
.trust-logo .trust-logo-icon.empty { border-style: dashed; opacity: 0.5; }
.trust-logo .trust-logo-icon.empty svg { stroke: var(--gray); }

.trust-coming {
  color: var(--orange); font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: rgba(192, 68, 40, 0.08);
  border: 1px solid rgba(192, 68, 40, 0.25);
  border-radius: 50px;
}
.trust-coming::before {
  content: ''; width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%; box-shadow: 0 0 8px var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Portfolio premium */
.portfolio-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
}

.portfolio-card {
  background: linear-gradient(135deg, var(--card) 0%, rgba(20,20,20,1) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  transition: all 0.3s;
  position: relative;
}

.portfolio-card.featured {
  border-color: rgba(192, 68, 40, 0.3);
}
.portfolio-card.featured::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.portfolio-card:hover { border-color: rgba(192, 68, 40, 0.5); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

.portfolio-visual {
  background: #0a0a0a;
  padding: 40px 32px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  min-height: 360px;
  overflow: hidden;
}

.portfolio-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(192, 68, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 68, 40, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Browser mockup */
.portfolio-mockup {
  width: 100%; max-width: 360px;
  position: relative; z-index: 1;
}

/* Real screenshot preview du vrai site */
.portfolio-screenshot-wrap {
  display: block;
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-screenshot-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(192, 68, 40, 0.4);
}

.portfolio-screenshot-wrap .portfolio-browser {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 12px;
}

.portfolio-screenshot {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

.portfolio-iframe-overlay {
  position: absolute; inset: 36px 0 0 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-screenshot-wrap:hover .portfolio-iframe-overlay { opacity: 1; }

.portfolio-iframe-cta {
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(192, 68, 40, 0.6);
}

@media (max-width: 900px) {
  .portfolio-screenshot-wrap { max-width: 100%; }
}

.portfolio-browser {
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 12px 12px 0 0;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 12px;
}
.portfolio-browser-dots {
  display: flex; gap: 5px;
}
.portfolio-browser-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #555;
}
.portfolio-browser-dots span:nth-child(1) { background: #ff5f56; }
.portfolio-browser-dots span:nth-child(2) { background: #ffbd2e; }
.portfolio-browser-dots span:nth-child(3) { background: #27c93f; }
.portfolio-browser-url {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 14px;
  font-size: 11px;
  color: var(--orange);
  flex: 1;
  font-family: 'SF Mono', 'Monaco', monospace;
}

.portfolio-browser-content {
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 24px 18px;
  min-height: 240px;
  position: relative;
}

.portfolio-browser-content::before {
  content: '';
  position: absolute; top: 16px; left: 18px;
  width: 60px; height: 16px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px;
  opacity: 0.9;
}

.mock-line {
  height: 10px; background: rgba(255,255,255,0.08);
  border-radius: 4px; margin-bottom: 12px;
  margin-top: 38px;
}
.mock-line.big { height: 18px; margin-top: 0; }
.mock-line.short { width: 60%; }

.mock-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin: 16px 0;
}
.mock-product {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(192, 68, 40, 0.2), rgba(192, 68, 40, 0.05));
  border: 1px solid rgba(192, 68, 40, 0.2);
  border-radius: 8px;
}

/* Phone mockup */
.portfolio-phone {
  width: 220px;
  background: #000;
  border: 2px solid #2a2a2a;
  border-radius: 36px;
  padding: 14px 10px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 0 0 2px #1a1a1a;
}
.portfolio-phone::before {
  content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 14px;
  background: #000; border-radius: 8px;
}
.portfolio-phone-bar {
  height: 30px; margin-bottom: 8px;
  border-radius: 24px 24px 0 0;
}
.portfolio-phone-msgs {
  background: #0d0d0d;
  border-radius: 18px;
  padding: 16px 12px;
  display: flex; flex-direction: column;
  gap: 8px;
  min-height: 220px;
}
.portfolio-phone-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 11px;
  line-height: 1.3;
}
.portfolio-phone-msg.in {
  background: #2a2a2a; color: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.portfolio-phone-msg.out {
  background: var(--orange); color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Portfolio content side */
.portfolio-content {
  padding: 44px 40px;
  display: flex; flex-direction: column;
  position: relative; z-index: 1;
}

.portfolio-status {
  display: inline-flex;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.portfolio-status.live {
  background: rgba(0, 217, 107, 0.1);
  color: #00d96b;
  border: 1px solid rgba(0, 217, 107, 0.3);
}
.portfolio-status.progress {
  background: rgba(255, 170, 0, 0.1);
  color: #ffaa00;
  border: 1px solid rgba(255, 170, 0, 0.3);
}

.portfolio-content h3 {
  font-size: clamp(24px, 3vw, 32px); font-weight: 700;
  margin-bottom: 6px; line-height: 1.1;
}

.portfolio-sector {
  color: var(--orange); font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 600; margin-bottom: 18px;
}

.portfolio-desc {
  color: var(--gray-light); font-size: 15px;
  line-height: 1.6; margin-bottom: 24px;
}

.portfolio-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.portfolio-stat-num {
  font-size: 24px; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.portfolio-stat-label {
  font-size: 11px; color: var(--gray);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 6px;
}

.portfolio-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.portfolio-tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--gray-light);
}

.portfolio-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange); font-weight: 600; font-size: 15px;
  text-decoration: none;
  padding: 12px 24px;
  background: rgba(192, 68, 40, 0.1);
  border: 1px solid rgba(192, 68, 40, 0.3);
  border-radius: 50px;
  align-self: flex-start;
  transition: all 0.2s;
}
.portfolio-link:hover {
  background: var(--orange);
  color: white;
  transform: translateX(4px);
}

.portfolio-cta-text {
  text-align: center;
  color: var(--gray-light);
  font-size: 17px;
  margin-top: 56px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .portfolio-card { grid-template-columns: 1fr; }
  .portfolio-content { padding: 32px 24px; }
  .portfolio-visual { padding: 32px 20px; min-height: 280px; }
}

/* Team note */
.team-section { background: var(--card); border-radius: 20px; padding: 60px 40px; max-width: 800px; margin: 0 auto; }

.team-section h2 { font-size: clamp(28px, 4vw, 40px); }

.team-text { color: var(--gray-light); font-size: 17px; margin-bottom: 24px; line-height: 1.7; }

.team-signature {
  display: inline-flex; align-items: center; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--border); margin-top: 16px;
}
.team-signature-mark { width: 32px; height: 32px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 16px var(--orange-glow); }
.team-signature-text { color: var(--white); font-weight: 600; }
.team-signature-loc { color: var(--gray); font-size: 13px; margin-left: 4px; }

/* FAQ */
.faq-section { background: transparent; }

.faq-tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
  max-width: 720px; margin: 0 auto 24px;
}

.faq-tab {
  padding: 9px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--gray-light);
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.faq-tab:hover { border-color: rgba(192, 68, 40, 0.4); color: var(--white); }
.faq-tab.active {
  background: var(--orange); color: white; border-color: var(--orange);
}

.faq-search-wrap { max-width: 720px; margin: 0 auto 32px; }
.faq-search {
  display: block; width: 100%;
  padding: 14px 20px 14px 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--white); font-size: 15px;
  outline: none;
  transition: all 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C04428' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 18px center;
  background-size: 16px;
}
.faq-search:focus { border-color: var(--orange); }
.faq-search::placeholder { color: var(--gray); }

.faq-list {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: all 0.2s;
  align-self: start;
}

.faq-item:hover { border-color: rgba(192, 68, 40, 0.3); }
.faq-item.hidden { display: none; }

.faq-question {
  padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 14px; transition: all 0.2s;
  line-height: 1.4;
}

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

.faq-icon { color: var(--orange); transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; font-size: 20px; line-height: 1; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden; padding: 0 20px;
  color: var(--gray-light); font-size: 13px; line-height: 1.55;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 400px; padding: 0 20px 18px; }
.faq-answer strong { color: var(--white); }

.faq-cat-tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(192, 68, 40, 0.1);
  color: var(--orange);
  font-size: 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-empty {
  text-align: center; padding: 40px 20px;
  color: var(--gray); font-style: italic;
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .faq-list { grid-template-columns: 1fr; }
}

/* CTA final */
.cta-section {
  background: var(--card); border-radius: 24px; padding: 80px 40px;
  text-align: center; position: relative; overflow: hidden;
  border: 1px solid rgba(192, 68, 40, 0.2);
}

.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--orange-glow-soft) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 { position: relative; z-index: 2; }
.cta-section p { position: relative; z-index: 2; color: var(--gray-light); font-size: 18px; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* Contact grid : 2 cards (Calendly + Formulaire) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.2s;
}

.contact-card:hover { border-color: rgba(192, 68, 40, 0.4); }

.contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.contact-card p {
  font-size: 14px;
  color: var(--gray-light);
  margin: 0 0 20px 0;
}

.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(192, 68, 40, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-card-icon svg { width: 22px; height: 22px; color: var(--orange); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 13px;
  color: var(--gray-light);
  font-weight: 500;
}
.form-row input, .form-row textarea {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder {
  color: var(--gray-dark);
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--orange);
  background: rgba(192, 68, 40, 0.05);
}

.form-submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}

.form-privacy {
  font-size: 12px !important;
  color: var(--gray) !important;
  margin-top: 4px !important;
  text-align: left;
  margin-bottom: 0 !important;
}
.form-privacy a {
  color: var(--orange);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 24px 20px; }
}

/* Footer */
footer { padding: 60px 0 40px; border-top: 1px solid var(--border); }

.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }

.footer-links { display: flex; gap: 32px; list-style: none; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-credit { color: var(--gray); font-size: 13px; }

/* ====================== FLAMME PIXEL MASCOTTE (FIXE BAS-DROITE) ====================== */
.pixel-flame {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 70px;
  height: 90px;
  cursor: pointer;
  pointer-events: auto;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 16px rgba(192, 68, 40, 0.7))
          drop-shadow(0 0 32px rgba(255, 107, 61, 0.3));
  animation: flame-bob 2.4s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pixel-flame:hover { transform: scale(1.15) translateY(-4px); }

.pixel-flame svg {
  width: 100%; height: 100%;
  display: block;
  overflow: visible;
}

@keyframes flame-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* Yeux (rect séparés pour cligner) */
.pixel-flame .eye {
  animation: pixel-blink 4.5s infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.pixel-flame .eye-r { animation-delay: 0.08s; }

@keyframes pixel-blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95%           { transform: scaleY(0.1); }
}

/* Body flicker (subtil) */
.pixel-flame .body-flicker { animation: pixel-body-flicker 1.8s ease-in-out infinite; transform-origin: 50% 100%; transform-box: fill-box; }
@keyframes pixel-body-flicker {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(1.04); }
}

/* Bulle de dialogue (style chat moderne) */
.pixel-flame-bubble {
  position: fixed;
  bottom: 124px;
  right: 24px;
  z-index: 49;
  max-width: 280px;
  min-width: 200px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(192, 68, 40, 0.4);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 18px 18px 4px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 24px rgba(192,68,40,0.2);
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pixel-flame-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.pixel-flame-bubble strong { color: var(--orange-light); }

.pixel-flame-bubble .bubble-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: var(--orange);
  color: white;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.2s;
}
.pixel-flame-bubble .bubble-cta:hover { background: var(--orange-light); }

.pixel-flame-bubble .bubble-close {
  position: absolute;
  top: 6px; right: 8px;
  background: none; border: none;
  color: var(--gray);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
}
.pixel-flame-bubble .bubble-close:hover { color: var(--white); }

/* Ghost flames qui se baladent dans chaque section */
.ghost-flame {
  position: absolute;
  width: 32px; height: 42px;
  pointer-events: none;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  opacity: 0.12;
  z-index: 0;
  filter: drop-shadow(0 0 8px rgba(192, 68, 40, 0.5));
  animation: ghost-bob 2.6s ease-in-out infinite;
  will-change: left;
}

.ghost-flame svg { width: 100%; height: 100%; display: block; }

@keyframes ghost-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* Assure que le contenu reste devant les ghost flames */
section .container { position: relative; z-index: 2; }

@media (max-width: 768px) {
  .pixel-flame { bottom: 88px; right: 16px; width: 56px; height: 72px; }
  .pixel-flame-bubble { bottom: 168px; right: 16px; max-width: calc(100vw - 32px); }
  .ghost-flame { width: 24px; height: 32px; opacity: 0.08; }
}

/* Responsive */
@media (max-width: 768px) {
  nav .container { padding: 0 20px; }
  .hero { padding: 100px 20px 40px; }
  section { padding: 60px 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-content { flex-direction: column; text-align: center; }
  .robot-mascot { bottom: 16px; right: 16px; }
  .robot { width: 60px; height: 75px; }
  .robot-head { width: 52px; height: 44px; }
  .robot-body { width: 44px; height: 26px; top: 46px; left: 8px; }
  .robot-eye { width: 10px; height: 10px; }
  .robot-screen { width: 22px; height: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ====================== PAGES INTERNES (services/secteurs/portfolio/etc) ====================== */
.page-hero {
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; max-width: 900px; }

.page-breadcrumb {
  display: inline-flex; align-items: center;
  color: var(--gray-light);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 28px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.2s;
}
.page-breadcrumb:hover { color: var(--orange); border-color: rgba(192,68,40,0.4); }

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.page-hero h1 .accent { color: var(--orange); }

.page-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-light);
  margin: 0 auto 40px;
  max-width: 720px;
  line-height: 1.6;
}

/* Sections de contenu pour pages internes */
.page-content {
  padding: 60px 0 100px;
}

.page-content .container { max-width: 960px; }

.content-block {
  margin-bottom: 64px;
}

.content-block h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
.content-block h2 .accent { color: var(--orange); }

.content-block h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  margin: 32px 0 14px;
  color: var(--white);
}

.content-block p {
  color: var(--gray-light);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-block p strong { color: var(--white); }

.content-block ul, .content-block ol {
  color: var(--gray-light);
  font-size: 17px;
  line-height: 1.8;
  margin: 16px 0 20px 28px;
}
.content-block ul li { margin-bottom: 8px; }
.content-block ul li::marker { color: var(--orange); }

/* Cards de valeur ajoutée pour les pages internes */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(192, 68, 40, 0.4);
  transform: translateY(-4px);
}

.value-card-icon {
  width: 48px; height: 48px;
  background: rgba(192, 68, 40, 0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
}
.value-card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--orange-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-hint {
  color: var(--gray);
  font-size: 14px;
  margin-top: 24px;
  padding: 12px 16px;
  background: rgba(192, 68, 40, 0.06);
  border-left: 2px solid var(--orange);
  border-radius: 4px;
}
.service-hint strong { color: var(--white); }

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--white);
}

.value-card p {
  color: var(--gray-light);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Pricing inline box pour pages internes */
.pricing-inline {
  background: linear-gradient(135deg, rgba(192, 68, 40, 0.08) 0%, rgba(192, 68, 40, 0.02) 100%);
  border: 1px solid rgba(192, 68, 40, 0.25);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.pricing-inline-content h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.pricing-inline-content .price {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
}
.pricing-inline-content p {
  color: var(--gray-light);
  font-size: 14px;
  margin: 6px 0 0;
}

@media (max-width: 768px) {
  .pricing-inline { grid-template-columns: 1fr; text-align: center; padding: 28px 20px; }
  .page-hero { padding: 100px 20px 60px; }
}

/* Mini-FAQ pour pages internes */
.mini-faq {
  background: var(--card);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
}

.mini-faq h2 { font-size: 24px; margin-bottom: 24px; }

.mini-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.mini-faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.mini-faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 8px;
}

.mini-faq-item p {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* CTA en ligne dans le contenu */
.inline-cta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}
.inline-cta h3 { margin: 0 0 12px; font-size: 22px; }
.inline-cta p { margin: 0 0 24px; color: var(--gray-light); }

/* ====================== POLISH PREMIUM GLOBAL ====================== */

/* Sélection de texte à l'accent */
::selection { background: rgba(192, 68, 40, 0.85); color: #fff; }
::-moz-selection { background: rgba(192, 68, 40, 0.85); color: #fff; }

/* Scrollbar custom (détail premium) */
* { scrollbar-width: thin; scrollbar-color: rgba(192, 68, 40, 0.5) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--orange), #7a2a18);
  border-radius: 50px;
  border: 2px solid var(--black);
}
::-webkit-scrollbar-thumb:hover { background: var(--orange-light); }

/* Focus visible propre et accessible */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, .btn-primary:focus-visible, .nav-cta:focus-visible {
  outline: 2px solid var(--orange-light);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Boutons : easing premium + petit effet de pression */
.btn-primary, .btn-secondary, .nav-cta, .pricing-cta {
  transition: background 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn-primary:active, .nav-cta:active, .pricing-cta:active, .btn-secondary:active { transform: translateY(0) scale(0.985); }

/* Reveal au scroll (piloté JS via .js-reveal ; si JS off => classe absente => tout reste visible) */
.js-reveal .service-card,
.js-reveal .value-card,
.js-reveal .pricing-card,
.js-reveal .step,
.js-reveal .portfolio-card,
.js-reveal .compare-table,
.js-reveal .seo-banner,
.js-reveal .stat-card,
.js-reveal .faq-item,
.js-reveal .mini-faq,
.js-reveal .inline-cta,
.js-reveal .pricing-inline,
.js-reveal .cta-section,
.js-reveal .autom-pain-card,
.js-reveal .autom-feature,
.js-reveal .autom-usecase,
.js-reveal .autom-nlpd,
.js-reveal .guarantee-seal,
.js-reveal .guarantee-pillar,
.js-reveal .roi-calc,
.js-reveal .sol-card,
.js-reveal .cmp-card,
.js-reveal .perf-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-reveal .reveal-in { opacity: 1 !important; transform: none !important; }
.js-reveal .solutions-grid > :nth-child(2) { transition-delay: 0.08s; }
.js-reveal .solutions-grid > :nth-child(3) { transition-delay: 0.16s; }
.js-reveal .solutions-grid > :nth-child(4) { transition-delay: 0.24s; }
.js-reveal .services-grid > :nth-child(2), .js-reveal .value-grid > :nth-child(2) { transition-delay: 0.08s; }
.js-reveal .services-grid > :nth-child(3), .js-reveal .value-grid > :nth-child(3) { transition-delay: 0.16s; }
.js-reveal .services-grid > :nth-child(4), .js-reveal .value-grid > :nth-child(4) { transition-delay: 0.24s; }
.js-reveal .autom-pain-grid > :nth-child(2), .js-reveal .autom-usecase-grid > :nth-child(2) { transition-delay: 0.08s; }
.js-reveal .autom-pain-grid > :nth-child(3), .js-reveal .autom-usecase-grid > :nth-child(3) { transition-delay: 0.16s; }


/* ===== Section garantie (engagement) ===== */
.guarantee-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 48px auto 0;
}
.guarantee-seal {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(192,68,40,0.5);
  background: radial-gradient(circle at 50% 34%, rgba(192,68,40,0.18), rgba(192,68,40,0.03) 72%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  box-shadow: 0 0 55px rgba(192,68,40,0.18), inset 0 0 0 6px rgba(192,68,40,0.05);
  position: relative;
}
.guarantee-seal::before {
  content: ""; position: absolute; inset: 11px; border-radius: 50%;
  border: 1px dashed rgba(192,68,40,0.32); pointer-events: none;
}
.guarantee-seal-top {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange-light);
  position: relative;
}
.guarantee-seal svg { width: 50px; height: 50px; color: var(--orange); margin: 10px 0; position: relative; }
.guarantee-seal-text { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.35; position: relative; }
.guarantee-pillars { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 14px; }
.guarantee-pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.guarantee-pillar::before {
  content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px;
  background: radial-gradient(circle, var(--orange-glow-soft) 0%, transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity 0.3s;
}
.guarantee-pillar:hover { border-color: rgba(192,68,40,0.4); transform: translateY(-4px); }
.guarantee-pillar:hover::before { opacity: 1; }
.guarantee-pillar-icon {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(192,68,40,0.12); display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.guarantee-pillar-icon svg { width: 22px; height: 22px; display: block; }
.guarantee-pillar h3 { font-size: 17px; font-weight: 600; margin: 0 0 5px; color: var(--white); }
.guarantee-pillar p { font-size: 14px; color: var(--gray); line-height: 1.55; margin: 0; }

@media (max-width: 720px) {
  .guarantee-layout { gap: 28px; }
  .guarantee-seal { flex-basis: 168px; width: 168px; height: 168px; }
  .guarantee-seal svg { width: 46px; height: 46px; }
  .guarantee-pillar { padding: 16px 18px; }
  .guarantee-pillar h3 { font-size: 16px; }
}

/* ===== Section automatisation IA ===== */
.autom-section { background: transparent; }
.autom-pain-intro {
  text-align: center;
  color: var(--gray-light);
  font-size: 15px;
  margin: 44px auto 22px;
  max-width: 620px;
}
.autom-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.autom-pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.autom-pain-card::before {
  content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px;
  background: radial-gradient(circle, var(--orange-glow-soft) 0%, transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity 0.3s;
}
.autom-pain-card:hover { border-color: rgba(192,68,40,0.4); transform: translateY(-4px); }
.autom-pain-card:hover::before { opacity: 1; }
.autom-pain-icon {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(192,68,40,0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.autom-pain-icon svg { width: 24px; height: 24px; color: var(--orange); }
.autom-pain-card h3 { font-size: 17px; font-weight: 600; color: var(--white); margin: 0 0 8px; }
.autom-pain-card p { font-size: 14px; color: var(--gray); line-height: 1.55; margin: 0; }

.autom-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  max-width: 1060px;
  margin: 64px auto 0;
}
.autom-badge {
  display: inline-block;
  background: var(--orange-glow-soft);
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.autom-feature-text h3 { font-size: clamp(24px, 3vw, 30px); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; margin: 0 0 16px; }
.autom-feature-text > p { font-size: 16px; color: var(--gray-light); line-height: 1.6; margin: 0 0 22px; }
.autom-feature-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 12px; }
.autom-feature-list li { display: flex; align-items: center; gap: 13px; font-size: 15px; color: var(--gray-light); }
.autom-feature-list svg {
  width: 26px; height: 26px; padding: 5px; box-sizing: border-box; flex: 0 0 auto;
  background: rgba(192,68,40,0.12); border-radius: 8px; color: var(--orange);
}
.autom-proof { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--gray-light); margin-bottom: 18px; }
.autom-proof strong { color: var(--white); }
.autom-proof-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-bright); box-shadow: 0 0 8px var(--orange-bright); }
.autom-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.autom-tags span {
  font-size: 12px; color: var(--gray); border: 1px solid var(--border);
  border-radius: 8px; padding: 5px 11px; background: var(--charcoal);
}

.autom-chat {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  max-width: 380px;
  margin: 0 auto;
}
.autom-chat-bar { display: flex; align-items: center; gap: 11px; padding: 16px 18px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.autom-chat-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto;
  background: var(--orange); color: #fff; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.autom-chat-name { font-size: 14px; font-weight: 600; color: var(--white); }
.autom-chat-status { font-size: 12px; color: var(--orange-light); }
.autom-chat-body { padding: 20px 18px; display: flex; flex-direction: column; gap: 12px; }
.autom-chat-msg { max-width: 80%; padding: 11px 15px; font-size: 14px; line-height: 1.4; border-radius: 16px; }
.autom-chat-msg.in { align-self: flex-start; background: #242424; color: var(--gray-light); border-bottom-left-radius: 5px; }
.autom-chat-msg.out { align-self: flex-end; background: var(--orange); color: #fff; border-bottom-right-radius: 5px; }
.autom-chat-foot { padding: 12px 18px 16px; font-size: 12px; color: var(--gray-dark); text-align: center; border-top: 1px solid var(--border); }

.autom-sub-title { font-size: clamp(20px, 2.6vw, 26px); font-weight: 700; margin: 72px 0 28px; }
.autom-usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.autom-usecase { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: all 0.3s; position: relative; overflow: hidden; }
.autom-usecase::before {
  content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px;
  background: radial-gradient(circle, var(--orange-glow-soft) 0%, transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity 0.3s;
}
.autom-usecase:hover { border-color: rgba(192,68,40,0.4); transform: translateY(-4px); }
.autom-usecase:hover::before { opacity: 1; }
.autom-usecase-icon {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(192,68,40,0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.autom-usecase-icon svg { width: 24px; height: 24px; color: var(--orange); }
.autom-usecase h4 { font-size: 16px; font-weight: 600; color: var(--white); margin: 0 0 7px; }
.autom-usecase p { font-size: 14px; color: var(--gray); line-height: 1.55; margin: 0 0 14px; }
.autom-usecase-tag { font-size: 11px; letter-spacing: 0.04em; color: var(--gray); border: 1px solid var(--border); border-radius: 7px; padding: 4px 9px; }

.autom-nlpd {
  display: flex; align-items: center; gap: 16px; justify-content: flex-start;
  max-width: 720px; margin: 48px auto 0; padding: 20px 24px;
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  font-size: 14px; color: var(--gray-light); line-height: 1.5;
}
.autom-nlpd svg {
  width: 44px; height: 44px; padding: 10px; box-sizing: border-box; flex: 0 0 auto;
  background: rgba(192,68,40,0.12); border-radius: 12px; color: var(--orange);
}
.autom-nlpd strong { color: var(--white); }

/* ===== Calculateur ROI ===== */
.roi-calc {
  max-width: 1000px; margin: 72px auto 0;
  background: linear-gradient(180deg, var(--charcoal), #101010);
  border: 1px solid var(--border); border-radius: 22px;
  padding: 40px 38px; position: relative; overflow: hidden;
}
.roi-calc::before {
  content: ""; position: absolute; top: -40%; right: -10%; width: 360px; height: 360px;
  background: radial-gradient(circle, var(--orange-glow-soft) 0%, transparent 70%); pointer-events: none;
}
.roi-head { text-align: center; margin-bottom: 30px; position: relative; }
.roi-head h3 { font-size: clamp(22px, 3vw, 28px); font-weight: 700; margin: 0 0 8px; }
.roi-head p { font-size: 14px; color: var(--gray); margin: 0; }
.roi-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; position: relative; }
.roi-controls { display: flex; flex-direction: column; gap: 26px; }
.roi-field label { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--gray-light); margin-bottom: 12px; font-weight: 500; }
.roi-val { color: var(--orange-light); font-weight: 700; font-size: 16px; }
.roi-hint { display: block; font-size: 12px; color: var(--gray-dark); margin-top: 8px; }
.roi-field input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 3px;
  background: #2a2a2a; outline: none; cursor: pointer;
}
.roi-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); border: 3px solid #1a1a1a; box-shadow: 0 0 0 1px var(--orange), 0 2px 8px var(--orange-glow); cursor: pointer;
}
.roi-field input[type=range]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; background: var(--orange); border: 3px solid #1a1a1a; box-shadow: 0 0 0 1px var(--orange); cursor: pointer;
}
.roi-result {
  text-align: center; background: var(--dark); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 26px;
}
.roi-result-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
.roi-result-month { font-size: clamp(34px, 5vw, 46px); font-weight: 800; color: var(--orange); line-height: 1; letter-spacing: -0.02em; }
.roi-result-month .roi-unit { font-size: 17px; font-weight: 600; color: var(--gray-light); letter-spacing: 0; }
.roi-result-year { font-size: 15px; color: var(--gray-light); margin-top: 10px; }
.roi-result-year strong { color: var(--white); }
.roi-cta { display: inline-block; margin-top: 22px; text-decoration: none; }
.roi-disclaimer { font-size: 12px; color: var(--gray-dark); margin: 14px 0 0; }

@media (max-width: 880px) {
  .autom-pain-grid, .autom-usecase-grid { grid-template-columns: 1fr; max-width: 460px; }
  .autom-feature { grid-template-columns: 1fr; gap: 36px; }
  .autom-feature-visual { order: -1; }
  .roi-body { grid-template-columns: 1fr; gap: 30px; }
  .roi-calc { padding: 30px 22px; }
}

/* ===== Carte service mise en avant (différenciateur IA) ===== */
.service-card-featured { border-color: rgba(192,68,40,0.45); background: linear-gradient(180deg, rgba(192,68,40,0.06), transparent); }
.service-card-featured:hover { border-color: var(--orange); }
.service-badge {
  display: inline-block; background: var(--orange-glow-soft); color: var(--orange-light);
  font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}

/* ===== Section solutions (refonte différenciation) ===== */
.solutions-section { background: transparent; }
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.sol-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 30px; transition: all 0.3s; position: relative; overflow: hidden;
}
.sol-card::before {
  content: ''; position: absolute; top: -50px; right: -50px; width: 150px; height: 150px;
  background: radial-gradient(circle, var(--orange-glow-soft) 0%, transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity 0.3s;
}
.sol-card:hover { border-color: rgba(192,68,40,0.4); transform: translateY(-4px); }
.sol-card:hover::before { opacity: 1; }
.sol-icon {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(192,68,40,0.12);
  display: flex; align-items: center; justify-content: center; color: var(--orange); margin-bottom: 18px;
}
.sol-icon svg { width: 24px; height: 24px; }
.sol-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-light); margin-bottom: 8px; }
.sol-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin: 0 0 10px; line-height: 1.25; }
.sol-card > p { font-size: 15px; color: var(--gray-light); line-height: 1.6; margin: 0; }
.sol-sep { height: 1px; background: var(--border); margin: 20px 0; }
.sol-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.sol-list li { position: relative; padding-left: 26px; font-size: 14px; color: var(--gray-light); line-height: 1.45; }
.sol-list li::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700; }

@media (max-width: 880px) {
  .solutions-grid { grid-template-columns: 1fr; max-width: 480px; }
  .sol-card { padding: 26px 22px; }
}

/* ===== Section différenciation (comparatif + perf) ===== */
.diff-section { background: transparent; }
.cmp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 880px; margin: 0 auto; }
.cmp-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px 26px; transition: transform 0.3s, border-color 0.3s; }
.cmp-card-us { background: linear-gradient(180deg, rgba(192,68,40,0.10), rgba(192,68,40,0.02)); border-color: rgba(192,68,40,0.4); }
.cmp-card-us:hover { transform: translateY(-4px); }
.cmp-head { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.cmp-head-us { font-family: 'Fraunces', Georgia, serif; font-size: 18px; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--white); }
.cmp-head-us span { color: var(--orange-light); }
.cmp-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.06); font-size: 14px; line-height: 1.45; }
.cmp-ico { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; }
.cmp-ico.no { color: #9a5a52; }
.cmp-ico.yes { color: var(--orange-light); }
.cmp-card .cmp-row span { color: var(--gray); }
.cmp-card-us .cmp-row span { color: #e6e0d8; }

.perf-card { max-width: 880px; margin: 28px auto 0; background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px 24px; }
.perf-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); text-align: center; margin-bottom: 24px; }
.perf-gauges { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; }
.gauge { text-align: center; }
.gauge-ring { position: relative; width: 92px; height: 92px; border-radius: 50%; margin: 0 auto; background: conic-gradient(var(--orange-light) 0 var(--deg), #2a2520 var(--deg) 360deg); display: flex; align-items: center; justify-content: center; }
.gauge-num { width: 72px; height: 72px; border-radius: 50%; background: var(--card); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', Georgia, serif; font-weight: 560; font-size: 25px; color: var(--white); }
.gauge-cap { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light); margin-top: 12px; }

@media (max-width: 760px) {
  .cmp-grid { grid-template-columns: 1fr; max-width: 460px; }
  .perf-gauges { gap: 28px; }
}

/* ===== Lueur d'ambiance globale (cohérence chaleur hero sur tout le site) ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1000px 720px at 86% 2%, rgba(192,68,40,0.11) 0%, transparent 56%),
    radial-gradient(900px 660px at 6% 98%, rgba(192,68,40,0.07) 0%, transparent 56%);
}
