/* =========================================
   Stratégie Digitale IA — One page
   ========================================= */

:root {
  --bg: #0A0B14;
  --bg-2: #0F1120;
  --surface: #14162A;
  --surface-2: #1B1E3A;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --text: #F5F7FF;
  --text-muted: #A1A6C7;
  --text-dim: #6B7194;
  --primary: #7C5CFF;
  --primary-2: #5B3EE8;
  --accent: #22D3EE;
  --accent-2: #06B6D4;
  --pink: #EC4899;
  --gradient: linear-gradient(135deg, #7C5CFF 0%, #22D3EE 100%);
  --gradient-warm: linear-gradient(135deg, #F97316 0%, #EC4899 100%);
  --shadow-lg: 0 30px 80px -20px rgba(124, 92, 255, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 20, 0.75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  height: 32px;
  width: auto;
  /* Le logo original est en noir/couleur — on inverse pour le fond sombre */
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.brand:hover .brand-logo { opacity: .85; }
.brand-logo-footer { height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }

.burger {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.9,.3,1);
  border: none;
  font-family: inherit;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-primary {
  background: var(--gradient);
  color: white !important;
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.35);
}
.btn-primary.btn-white-text,
.btn-white-text {
  color: #FFFFFF !important;
  font-weight: 700;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(124, 92, 255, 0.5);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
  animation: float 8s ease-in-out infinite;
}
.orb1 { width: 500px; height: 500px; background: #7C5CFF; top: -100px; left: -100px; animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; background: #22D3EE; top: 100px; right: -80px; animation-delay: 2s; }
.orb3 { width: 300px; height: 300px; background: #EC4899; bottom: -100px; left: 30%; opacity: .35; animation-delay: 4s; }
.orb4 { width: 260px; height: 260px; background: #F97316; top: 40%; right: 20%; opacity: .25; animation-delay: 6s; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-30px) scale(1.05); }
}

.hero-inner { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 560px;
  margin-bottom: 60px;
}

.hero-left { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 92, 255, 0.1);
  border: 1px solid rgba(124, 92, 255, 0.25);
  color: #C4B5FD;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.dot {
  width: 8px; height: 8px;
  background: #7C5CFF;
  border-radius: 50%;
  box-shadow: 0 0 12px #7C5CFF;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 20px;
  background: rgba(20, 22, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.hero-mini-stats > div { text-align: left; }
.hero-mini-stats b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}
.hero-mini-stats span {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- HERO VISUAL ---------- */
.hero-right {
  position: relative;
  min-height: 500px;
}
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Main window - large dashboard */
.hv-card {
  background: #14162A;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,92,255,0.15);
  overflow: hidden;
}
.hv-main {
  position: absolute;
  top: 30px;
  left: 0;
  width: 92%;
  animation: floatMain 6s ease-in-out infinite;
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
}
@keyframes floatMain {
  0%,100% { transform: perspective(1000px) rotateY(-6deg) rotateX(2deg) translateY(-4px); }
  50% { transform: perspective(1000px) rotateY(-6deg) rotateX(2deg) translateY(4px); }
}
.hv-window {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #1B1E3A;
  border-bottom: 1px solid var(--border);
}
.hv-dots {
  display: flex;
  gap: 6px;
}
.hv-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #FF5F57;
}
.hv-dots span:nth-child(2) { background: #FEBC2E; }
.hv-dots span:nth-child(3) { background: #28C840; }
.hv-url {
  margin-left: auto;
  padding: 4px 12px;
  background: #0A0B14;
  border-radius: 6px;
  font-size: 11px;
  color: var(--text-dim);
  font-family: monospace;
}
.hv-body {
  display: flex;
  min-height: 280px;
}
.hv-nav {
  width: 40px;
  background: #0F1120;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--border);
}
.hv-nav-item {
  height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
}
.hv-nav-item.active {
  background: linear-gradient(90deg, rgba(124,92,255,0.4), rgba(34,211,238,0.2));
}
.hv-content {
  flex: 1;
  padding: 20px;
}
.hv-title-bar {
  width: 40%;
  height: 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin-bottom: 20px;
}
.hv-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.hv-kpi {
  background: #0F1120;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.hv-kpi b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.hv-kpi span {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hv-bar {
  margin-top: 10px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.hv-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  width: var(--w, 50%);
  background: var(--c, #7C5CFF);
  border-radius: 2px;
  animation: growBar 2s ease-out;
}
@keyframes growBar {
  0% { width: 0; }
  100% { width: var(--w, 50%); }
}
.hv-chart {
  background: #0F1120;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  height: 110px;
}
.hv-chart svg {
  width: 100%; height: 100%;
}

/* Mobile phone card */
.hv-mobile {
  position: absolute;
  bottom: -200px;
  right: 0;
  width: 200px;
  animation: floatPhone 5s ease-in-out infinite;
  animation-delay: 1s;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
@keyframes floatPhone {
  0%,100% { transform: translateY(-5px) rotate(4deg); }
  50% { transform: translateY(5px) rotate(4deg); }
}
.hv-phone {
  background: #0F1120;
  border: 3px solid #1B1E3A;
  border-radius: 32px;
  padding: 14px 10px;
  position: relative;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.7), 0 0 40px rgba(124,92,255,0.3);
}
.hv-phone-notch {
  width: 60px; height: 6px;
  background: #0A0B14;
  border-radius: 3px;
  margin: 0 auto 12px;
}
.hv-phone-screen {
  background: #14162A;
  border-radius: 20px;
  padding: 16px 12px;
  min-height: 280px;
}
.hv-phone-top { margin-bottom: 12px; }
.hv-phone-title {
  width: 60%; height: 12px;
  background: var(--gradient);
  border-radius: 3px;
  margin-bottom: 6px;
}
.hv-phone-sub {
  width: 80%; height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}
.hv-phone-hero {
  height: 80px;
  background: var(--gradient);
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.hv-phone-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.3), transparent 50%);
}
.hv-phone-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.hv-phone-list > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #0F1120;
  border-radius: 8px;
}
.hv-phone-list i {
  width: 22px; height: 22px;
  background: #7C5CFF;
  border-radius: 50%;
  flex-shrink: 0;
}
.hv-phone-list b {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
}
.hv-phone-cta {
  height: 32px;
  background: var(--gradient);
  border-radius: 8px;
}

/* Floating chips */
.hv-notif {
  position: absolute;
  top: 400 px;
  right: 170px;
  background: linear-gradient(135deg, #14162A, #1B1E3A);
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  animation: floatChip 4s ease-in-out infinite;
  z-index: 3;
}
@keyframes floatChip {
  0%,100% { transform: translateY(-3px); }
  50% { transform: translateY(3px); }
}
.hv-notif-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #10B981, #22D3EE);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.hv-notif-text b {
  display: block;
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
}
.hv-notif-text span {
  font-size: 11px;
  color: var(--text-muted);
}

.hv-ai {
  position: absolute;
  bottom: -50px;
  left: -30px;
  background: linear-gradient(135deg, #14162A, #1B1E3A);
  border: 1px solid rgba(124,92,255,0.35);
  border-radius: 12px;
  padding: 12px 16px 12px 44px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  animation: floatChip 5s ease-in-out infinite;
  animation-delay: 1s;
  z-index: 3;
}
.hv-ai-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: linear-gradient(135deg, #7C5CFF, #EC4899);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.hv-ai-text b {
  display: block;
  font-size: 12px;
  color: var(--text);
  font-weight: 700;
}
.hv-ai-text span {
  font-size: 10px;
  color: var(--text-muted);
}
.hv-ai-pulse {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulseGreen 1.5s infinite;
}
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  100% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
}

.hv-seo {
  position: absolute;
  top: 200px;
  right: -20px;
  background: linear-gradient(135deg, #14162A, #1B1E3A);
  border: 1px solid rgba(236,72,153,0.35);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
  animation: floatChip 6s ease-in-out infinite;
  animation-delay: 2s;
  z-index: 3;
}
.hv-seo-label {
  font-size: 10px;
  font-weight: 700;
  color: #EC4899;
  padding: 3px 8px;
  background: rgba(236,72,153,0.15);
  border-radius: 100px;
  letter-spacing: .1em;
}
.hv-seo-bar {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.hv-seo-bar i {
  display: block;
  width: 96%;
  height: 100%;
  background: linear-gradient(90deg, #22D3EE, #10B981);
  border-radius: 3px;
}
.hv-seo b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

/* Tech chips */
.techs {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.techs > span {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 20px;
}
.tech-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.tech-chip {
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all .3s;
}
.tech-chip:hover {
  border-color: var(--primary);
  color: var(--text);
  transform: translateY(-2px);
}

/* ---------- LOGOS STRIP ---------- */
.logos-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
}
.logos-title {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 24px;
}
.logos-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.logos-track {
  display: flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  width: max-content;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-muted);
  opacity: .7;
  transition: opacity .3s;
  white-space: nowrap;
}
.logo-item:hover { opacity: 1; }
.logo-mark {
  font-size: 22px;
  color: var(--primary);
}
.logo-svg {
  height: 44px;
  width: auto;
  opacity: .75;
  transition: opacity .3s;
  flex-shrink: 0;
}
.logo-svg:hover { opacity: 1; }

/* Vrais logos clients - sans fond blanc, adaptés au fond sombre */
.logo-real {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .85;
  transition: opacity .3s, transform .3s, filter .3s;
  /* PNG transparents → rendu blanc pour se fondre au dark */
  filter: brightness(0) invert(1);
}
.logo-real:hover {
  opacity: 1;
  transform: translateY(-3px);
}
/* Logos colorés plein (banana bleu marine, meulemans vert) : on garde couleurs */
.logo-real-full {
  filter: none;
  border-radius: 10px;
  overflow: hidden;
  opacity: .95;
}
.logo-real-full:hover { opacity: 1; }
/* APST : logo noir/rouge, on inverse pour le rendre visible sur fond sombre */
.logo-real-invert {
  filter: brightness(0) invert(1);
}
.logo-real-invert:hover { opacity: 1; }

/* ---------- SECTIONS ---------- */
.section {
  padding: 100px 0;
  position: relative;
}
.section-dark {
  background: linear-gradient(180deg, var(--bg-2), var(--surface));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-alt {
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
}
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 100px;
}
.eyebrow.light { color: #C4B5FD; background: rgba(124,92,255,0.15); border-color: rgba(124,92,255,0.3); }
.section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section-head.light h2 { color: var(--text); }
.lead {
  font-size: 17px;
  color: var(--text-muted);
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .4s cubic-bezier(.2,.9,.3,1);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.service-card.feature {
  background: linear-gradient(135deg, rgba(124,92,255,0.1), rgba(34,211,238,0.05));
  border-color: rgba(124,92,255,0.3);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c1, #7C5CFF), var(--c2, #22D3EE));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 12px 30px -10px rgba(124,92,255,0.4);
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.tick {
  list-style: none;
}
.tick li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 5px 0;
  position: relative;
  padding-left: 22px;
}
.tick li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- PROCESS TIMELINE ---------- */
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: .3;
}
.timeline-step {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}
.ts-marker {
  flex-shrink: 0;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(124,92,255,0.1);
}
.ts-content {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: all .3s;
}
.ts-content:hover {
  border-color: var(--primary);
  transform: translateX(6px);
}
.ts-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.ts-content p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 14px;
}
.ts-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ts-tags span {
  font-size: 12px;
  padding: 4px 10px;
  background: rgba(124,92,255,0.15);
  color: #C4B5FD;
  border-radius: 100px;
}

/* ---------- RÉFÉRENCES ---------- */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.ref-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .4s cubic-bezier(.2,.9,.3,1);
  cursor: pointer;
}
.ref-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.6);
}
.ref-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #0F1120;
}
.ref-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s cubic-bezier(.2,.9,.3,1);
}
.ref-card:hover .ref-thumb img {
  transform: scale(1.05);
}
.ref-thumb::after {
  content: '↗';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px; height: 32px;
  background: rgba(10,11,20,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all .3s;
  z-index: 3;
}
.ref-card:hover .ref-thumb::after {
  opacity: 1;
  transform: translate(0, 0);
}
.ref-logo {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(10,11,20,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  transform: translateY(0);
  transition: all .3s;
}
.ref-logo img {
  height: 30px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.ref-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.ref-meta {
  padding: 20px;
}
.ref-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.ref-tag-live {
  color: #22C55E;
  background: rgba(34,197,94,0.12);
  padding: 3px 10px;
  border-radius: 100px;
}
.refs-grid > div.ref-card { cursor: default; }
.refs-grid > div.ref-card .ref-thumb::after { display: none; }
.ref-meta h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.ref-meta p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- SECTORS ---------- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.sector {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all .3s;
}
.sector:hover {
  border-color: var(--primary);
  background: rgba(124,92,255,0.05);
  transform: translateY(-3px);
}
.sector span {
  font-size: 26px;
}
.sector b {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ---------- FUNNEL ---------- */
.funnel {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 80px;
}
.funnel-stage {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.funnel-stage::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}
.funnel-stage[data-stage="2"]::before { background: linear-gradient(90deg, #22D3EE, #10B981); }
.funnel-stage[data-stage="3"]::before { background: linear-gradient(90deg, #10B981, #F97316); }
.funnel-stage[data-stage="4"]::before { background: linear-gradient(90deg, #F97316, #EC4899); }
.funnel-stage:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}
.fs-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  opacity: .5;
  margin-bottom: 8px;
}
.fs-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.fs-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.funnel-stage ul {
  list-style: none;
}
.funnel-stage ul li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 4px 0;
}
.funnel-arrow {
  align-self: center;
  font-size: 22px;
  color: var(--text-dim);
}

/* pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.pillar {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s;
}
.pillar:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.pillar-icon {
  font-size: 34px;
  margin-bottom: 16px;
}
.pillar h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
}
.pillar p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- PLANS (sans prix) ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.plan:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}
.plan-featured {
  background: linear-gradient(180deg, rgba(124,92,255,0.15), rgba(34,211,238,0.05));
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: 0 20px 60px -20px rgba(124,92,255,0.4);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
}
.plan-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c1, #7C5CFF), var(--c2, #22D3EE));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: 0 12px 30px -10px rgba(124,92,255,0.4);
}
.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.plan-tagline {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.plan ul {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.plan ul li {
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.plan ul li:last-child { border: none; }
.plan-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: rgba(124,92,255,0.15);
  border: 1px solid rgba(124,92,255,0.3);
  color: var(--text);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all .3s;
}
.plan-cta:hover {
  background: var(--gradient);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(124,92,255,0.4);
}

/* ---------- TESTIMONIALS (carrousel horizontal) ---------- */
.testi-carousel {
  position: relative;
  padding: 0 60px;
}
.testi-viewport {
  overflow: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform .6s cubic-bezier(.2,.9,.3,1);
  will-change: transform;
}
.testi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  transition: transform .3s, border-color .3s;
  min-width: 0;
}
.testi:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

/* Flèches */
.tc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  font-family: inherit;
}
.tc-arrow:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-50%) scale(1.05);
}
.tc-arrow:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: translateY(-50%);
  background: var(--surface);
}
.tc-prev { left: 0; }
.tc-next { right: 0; }

/* Dots (pagination) */
.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}
.testi-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  padding: 0;
  transition: all .25s;
}
.testi-dots button.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* Cache ancienne classe .testimonials si encore utilisée */
.testimonials {
  display: none;
}
.stars {
  color: #FCD34D;
  font-size: 18px;
  margin-bottom: 14px;
}
.testi p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}
.testi-author b {
  display: block;
  font-size: 14px;
}
.testi-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- CTA ---------- */
.cta-section {
  padding-bottom: 120px;
}
.cta-box {
  background: linear-gradient(135deg, rgba(124,92,255,0.15), rgba(34,211,238,0.08));
  border: 1px solid rgba(124,92,255,0.3);
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,92,255,0.3), transparent 70%);
  filter: blur(60px);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin: 16px 0 16px;
}
.cta-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.cta-list {
  list-style: none;
}
.cta-list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
}

.cta-form {
  background: rgba(10,11,20,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-form label span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  background: black;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.cta-form textarea { resize: vertical; }
.form-note {
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 6px;
}

/* ==============================================
   FORMULAIRE CONTACT RAPIDE (milieu de page)
   ============================================== */
.section-quickform {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  position: relative;
  overflow: hidden;
}
.section-quickform::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,92,255,0.15), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.quickform-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px;
  background: rgba(20, 22, 42, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124,92,255,0.25);
  border-radius: 28px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.quickform-side .eyebrow { margin-bottom: 16px; }
.quickform-side h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.quickform-side p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.quickform-perks {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quickform-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
}
.quickform-perks li span {
  width: 32px; height: 32px;
  background: rgba(124,92,255,0.15);
  border: 1px solid rgba(124,92,255,0.3);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.quickform {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quickform label,
.quickform .qf-phone,
.cta-form .qf-phone {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quickform label > span,
.quickform .qf-phone > span,
.cta-form .qf-phone > span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.quickform input,
.quickform select {
  background: black;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s, background .2s;
}
.quickform input:focus,
.quickform select:focus {
  outline: none;
  border-color: var(--primary);
  background: black;
}

/* ==============================================
   TÉLÉPHONE : dropdown drapeau + indicatif
   ============================================== */
.phone-input {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.phone-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: border-color .2s, background .2s;
  min-width: 105px;
  outline: none;
}
.phone-select:hover,
.phone-select:focus,
.phone-select.open {
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
}
.pi-flag {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.pi-code {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.phone-select {
  align-items: center;
}
.pi-arrow {
  color: var(--text-muted);
  font-size: 12px;
  transition: transform .2s;
}
.phone-select.open .pi-arrow { transform: rotate(180deg); }

.phone-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #14162A;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 6px;
  list-style: none;
  min-width: 240px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 50;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, visibility .2s, transform .2s;
  /* indicateur visuel qu'il y a plus à scroller */
  background-image:
    linear-gradient(#14162A 30%, rgba(20,22,42,0)),
    linear-gradient(rgba(20,22,42,0), #14162A 70%) 0 100%,
    radial-gradient(farthest-side at 50% 0, rgba(255,255,255,0.15), rgba(0,0,0,0)),
    radial-gradient(farthest-side at 50% 100%, rgba(255,255,255,0.15), rgba(0,0,0,0)) 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 24px, 100% 24px, 100% 8px, 100% 8px;
  background-attachment: local, local, scroll, scroll;
}
.phone-select.open .phone-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.phone-dropdown li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text);
  transition: background .2s;
  line-height: 1.2;
}
.phone-dropdown li:hover {
  background: rgba(124,92,255,0.15);
}
.phone-dropdown li span {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  min-width: 26px;
  flex-shrink: 0;
}
.phone-dropdown li b {
  margin-left: auto;
  font-weight: 600;
  color: var(--accent);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.phone-number {
  flex: 1;
  min-width: 0;
}

/* Scroll style pour le dropdown */
.phone-dropdown::-webkit-scrollbar { width: 6px; }
.phone-dropdown::-webkit-scrollbar-track { background: transparent; }
.phone-dropdown::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
}
.footer a:hover { color: var(--text); }
.footer-tag {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 13px;
}
.small { font-size: 12px; color: var(--text-dim); margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- ÉQUIPE DEVS PHOTO ---------- */
.team-devs {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}
.team-devs-photo {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  background: #0F1120;
}
.team-devs-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.team-devs-text {
  padding: 20px 20px 20px 0;
}
.team-devs-text .eyebrow { margin-bottom: 14px; }
.team-devs-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}
.team-devs-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.team-devs-text p b { color: var(--text); font-weight: 600; }
.team-devs-text ul.tick li {
  font-size: 13.5px;
  margin-bottom: 4px;
}

/* ---------- CLÉ EN MAIN ---------- */
.section-turnkey {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: 100px 0;
}
.turnkey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.tk-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: all .3s;
}
.tk-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}
.tk-highlight {
  background: linear-gradient(135deg, rgba(124,92,255,0.15), rgba(34,211,238,0.08));
  border-color: rgba(124,92,255,0.35);
  grid-column: span 1;
  position: relative;
}
.tk-highlight::before {
  content: '⭐';
  position: absolute;
  top: 20px; right: 20px;
  font-size: 16px;
}
.tk-icon {
  width: 48px; height: 48px;
  background: rgba(124,92,255,0.15);
  border: 1px solid rgba(124,92,255,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.tk-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.tk-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.tk-card p b { color: var(--text); font-weight: 600; }

.turnkey-callout {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.tc-check {
  width: 44px; height: 44px;
  background: #22C55E;
  color: #0A0B14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}
.turnkey-callout b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.turnkey-callout span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ---------- DESIGN 3 MODÈLES ---------- */
.section-design {
  padding: 100px 0;
  background: var(--bg);
}
.design-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 60px;
}
.df-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  transition: all .3s;
}
.df-step:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}
.df-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
}
.df-step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.df-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.df-step p b { color: var(--text); font-weight: 600; }
.df-arrow {
  align-self: center;
  font-size: 24px;
  color: var(--text-dim);
}

.design-samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.ds-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
}
.ds-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}
.ds-header {
  padding: 16px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.ds-header span {
  display: block;
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.ds-header b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
}
/* Mini-maquettes de mise en page */
.ds-mock {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.ds-window {
  padding: 8px 12px;
  background: rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ds-window-dark {
  background: #0F1120;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ds-dots { display: flex; gap: 5px; }
.ds-dots span { width: 8px; height: 8px; border-radius: 50%; background: #FF5F57; }
.ds-dots span:nth-child(2) { background: #FEBC2E; }
.ds-dots span:nth-child(3) { background: #28C840; }
.ds-body {
  padding: 20px;
  height: calc(100% - 26px);
}

/* --- Piste A : minimaliste éditorial --- */
.ds-mock-a { background: #F5F1EA; color: #1A1A1A; }
.ds-mock-a .ds-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ds-nav-a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ds-brand-a {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1A1A1A;
}
.ds-nav-items { display: flex; gap: 8px; }
.ds-nav-items i { width: 24px; height: 4px; border-radius: 2px; background: rgba(26,26,26,0.35); display: block; }
.ds-hero-a {
  text-align: center;
  padding: 10px 0 6px;
}
.ds-title-a {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.ds-title-a em { color: #C69F5A; font-weight: 700; }
.ds-sub-a {
  width: 60%;
  height: 4px;
  background: rgba(26,26,26,0.25);
  border-radius: 2px;
  margin: 0 auto 10px;
}
.ds-btn-a {
  width: 70px; height: 22px;
  border: 1px solid #1A1A1A;
  margin: 0 auto;
  border-radius: 0;
}
.ds-thumbs-a {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}
.ds-thumbs-a > div {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #E8DFCF, #C69F5A);
  border-radius: 0;
}
.ds-thumbs-a > div:nth-child(2) { background: linear-gradient(135deg, #D4C4A8, #1A1A1A); }
.ds-thumbs-a > div:nth-child(3) { background: linear-gradient(135deg, #C69F5A, #8B6F3D); }

/* --- Design 2 : e-commerce sombre (palette orange/crème/noir) --- */
.ds-mock-b { background: #0A0B14; color: #F5F7FF; }
.ds-body-dark {
  padding: 16px;
  height: calc(100% - 26px);
  background: #0A0B14;
  color: #F5F7FF;
  position: relative;
  overflow: hidden;
}
.ds-body-dark::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(249,115,22,0.4), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.ds-nav-b {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.ds-brand-b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.ds-nav-items-b { display: flex; gap: 6px; margin-left: auto; }
.ds-nav-items-b i { width: 18px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.25); display: block; }
.ds-cta-b {
  width: 44px; height: 20px;
  background: #F97316;
  border-radius: 6px;
}
.ds-hero-b {
  padding: 6px 0 10px;
  position: relative;
  z-index: 1;
}
.ds-badge-b {
  width: 60px; height: 12px;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  border-radius: 100px;
  margin-bottom: 10px;
}
.ds-title-b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #F5F7FF;
  margin-bottom: 10px;
}
.ds-title-b span {
  color: #F97316;
}
.ds-sub-b {
  width: 80%;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-bottom: 12px;
}
.ds-btns-b { display: flex; gap: 6px; }
.ds-btns-b i {
  display: block;
  width: 60px; height: 22px;
  border-radius: 6px;
}
.ds-btns-b i:first-child { background: #F97316; }
.ds-btns-b i:last-child { background: rgba(245,241,234,0.15); border: 1px solid rgba(245,241,234,0.25); }
.ds-cards-b {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  position: relative;
  z-index: 1;
}
.ds-cards-b > div {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ds-cards-b > div b {
  display: block;
  width: 60%; height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}
.ds-cards-b > div i {
  display: block;
  width: 40%; height: 8px;
  background: #F97316;
  border-radius: 3px;
}
.ds-cards-b > div:nth-child(2) i { background: #F5F1EA; }
.ds-cards-b > div:nth-child(3) i { background: #FEF3E4; }

/* --- Piste C : split & warm --- */
.ds-mock-c { background: #FEF3E4; color: #1A1A1A; }
.ds-body-c {
  padding: 14px;
  height: calc(100% - 26px);
  background: #FEF3E4;
  color: #1A1A1A;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ds-nav-c {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(26,26,26,0.1);
}
.ds-brand-c {
  font-family: 'Fraunces', 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #F97316;
}
.ds-nav-items-c { display: flex; gap: 6px; margin-left: auto; }
.ds-nav-items-c i { width: 18px; height: 4px; border-radius: 2px; background: rgba(26,26,26,0.35); display: block; }
.ds-cta-c {
  width: 24px; height: 24px;
  background: #F97316;
  border-radius: 100px;
  color: #fff;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.ds-split-c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
}
.ds-split-img {
  background: linear-gradient(135deg, #F97316, #10B981);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.ds-split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
}
.ds-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.ds-tag-c {
  width: 40px; height: 4px;
  background: #F97316;
  border-radius: 2px;
}
.ds-title-c {
  font-family: 'Fraunces', 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: #1A1A1A;
}
.ds-sub-c {
  width: 90%; height: 3px;
  background: rgba(26,26,26,0.25);
  border-radius: 2px;
}
.ds-btn-c {
  width: 60px; height: 18px;
  background: #10B981;
  border-radius: 100px;
  margin-top: 2px;
}
.ds-strip-c {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.ds-strip-c > div {
  height: 22px;
  background: linear-gradient(135deg, #FDD9A8, #F97316);
  border-radius: 4px;
}
.ds-strip-c > div:nth-child(2) { background: linear-gradient(135deg, #A7F3D0, #10B981); }
.ds-strip-c > div:nth-child(3) { background: linear-gradient(135deg, #FEF3E4, #F97316); }
.ds-strip-c > div:nth-child(4) { background: linear-gradient(135deg, #D1FAE5, #10B981); }

/* Legend (swatches + description) */
.ds-legend {
  padding: 14px 18px 18px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.ds-swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.ds-swatches span {
  width: 26px; height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.ds-legend p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ---------- PLAN PRICE (nouveau, remplace styles anciens si présents) ---------- */
.plan-price {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
  text-align: center;
}
.pp-from {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.plan-price b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 2px 0;
}
.pp-note {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- MANIFESTO ---------- */
.section-manifesto {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  position: relative;
  overflow: hidden;
}
.section-manifesto::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(124,92,255,0.12), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.manifesto {
  text-align: center;
  position: relative;
  z-index: 1;
}
.manifesto .eyebrow { margin-bottom: 20px; }
.manifesto-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.manifesto-lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.manifesto-lead b { color: var(--text); font-weight: 600; }
.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  max-width: 1080px;
  margin: 0 auto;
}
.mp {
  background: rgba(20, 22, 42, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all .3s;
}
.mp:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.mp-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}
.mp h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.mp p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.mp p b { color: var(--text); font-weight: 600; }

/* ---------- BIG NUMBERS ---------- */
.section-numbers { padding: 100px 0; }
.big-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bn {
  padding: 32px;
  background: rgba(20, 22, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: left;
  transition: all .3s;
}
.bn:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(124,92,255,0.4);
}
.bn-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 54px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.bn-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}
.bn p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- ÉQUIPE ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: all .3s;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px -20px rgba(124,92,255,0.35);
}
.team-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(124,92,255,0.15), rgba(34,211,238,0.1));
  border: 3px solid rgba(124,92,255,0.3);
}
.team-photo::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
}
.team-card:hover .team-photo::before { opacity: 1; }
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.team-role {
  display: block;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- CONTACT DIRECT ---------- */
.cta-contact-direct {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cta-contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}
.cta-contact-direct a:hover { color: var(--accent); }
.cta-contact-direct a span {
  width: 36px; height: 36px;
  background: rgba(124,92,255,0.15);
  border: 1px solid rgba(124,92,255,0.3);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ==============================================
   MOBILE OPTIMISATIONS (< 768 / < 560)
   ============================================== */

@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .testi { flex: 0 0 calc((100% - 20px) / 2); }
}

@media (max-width: 768px) {
  /* Nav mobile propre */
  .nav-inner { height: 64px; }
  .brand-logo { height: 26px; }
  /* La nav parente utilise sticky+backdrop-filter -> containing block. 
     On casse ce comportement pour permettre position:fixed sur .nav-links */
  .nav { position: relative !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: rgba(10,11,20,0.95) !important; }
  .nav-links {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: calc(100vh - 64px);
    flex-direction: column !important;
    background: rgba(10,11,20,0.98) !important;
    backdrop-filter: blur(20px);
    padding: 30px 24px !important;
    gap: 22px !important;
    align-items: flex-start !important;
    display: none;
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.mobile-open { display: flex !important; }
  .nav-links a { font-size: 18px; }
  .nav-links .btn { align-self: stretch; text-align: center; justify-content: center; }
  .burger { display: block; z-index: 100; }

  /* Hero */
  .hero { padding: 32px 0 20px; }
  .hero-title { font-size: clamp(30px, 8vw, 42px) !important; }
  .hero-sub { font-size: 15px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .hero-badge { font-size: 12px; padding: 6px 12px; }
  .hero-right { min-height: 380px; }
  .hv-notif { top: -10px; right: 0; padding: 8px 12px; }
  .hv-notif-icon { width: 30px; height: 30px; font-size: 15px; }
  .hv-notif-text b { font-size: 12px; }
  .hv-notif-text span { font-size: 10px; }
  .hv-ai { display: none; }
  .hv-seo { display: none; }
  .hv-mobile { width: 130px; right: 0; bottom: -20px; }

  /* Textes de sections */
  .section-head h2 { font-size: clamp(26px, 6.5vw, 36px) !important; }
  .section-head { margin-bottom: 40px; }
  .lead { font-size: 15px; }

  /* Sections padding */
  .section, .section-manifesto, .section-numbers, .section-quickform, .section-turnkey, .section-design {
    padding: 60px 0 !important;
  }

  /* Grilles à 1 col */
  .services-grid,
  .refs-grid,
  .sectors-grid,
  .pillars,
  .plans,
  .manifesto-pillars,
  .big-numbers,
  .team-grid,
  .turnkey-grid,
  .design-samples,
  .design-flow {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* Timeline process */
  .process-timeline { padding-left: 4px; }
  .timeline-step { gap: 14px; }
  .ts-marker { width: 44px; height: 44px; font-size: 14px; }
  .timeline-line { left: 21px; }
  .ts-content { padding: 18px 20px; }
  .ts-content h3 { font-size: 17px; }

  /* Funnel */
  .funnel { grid-template-columns: 1fr !important; }
  .funnel-arrow { transform: rotate(90deg); text-align: center; align-self: center; }

  /* Refs cards */
  .ref-card { border-radius: 14px; }
  .ref-meta { padding: 16px; }
  .ref-meta h4 { font-size: 16px; }

  /* Sector cards */
  .sector { padding: 14px 18px; }
  .sector span { font-size: 22px; }
  .sector b { font-size: 13.5px; }

  /* Plans maintenance */
  .plan { padding: 26px 22px; }
  .plan-featured { transform: none; }
  .plans { max-width: 100%; }

  /* Big numbers */
  .bn { padding: 24px; }
  .bn-value { font-size: 42px; }

  /* Team */
  .team-photo { width: 110px; height: 110px; }
  .team-devs { grid-template-columns: 1fr !important; padding: 16px; gap: 16px; }
  .team-devs-text { padding: 8px; }
  .team-devs-text h3 { font-size: 22px; }

  /* Clé en main */
  .tk-card { padding: 22px; }
  .turnkey-callout { padding: 16px 20px; gap: 14px; }
  .turnkey-callout b { font-size: 14px; }
  .turnkey-callout span { font-size: 12.5px; }

  /* Design 1/2/3 */
  .df-step { padding: 22px; }
  .df-arrow { transform: rotate(90deg); font-size: 20px; }

  /* Quick form */
  .quickform-wrap { grid-template-columns: 1fr; padding: 26px 20px; gap: 24px; }
  .qf-row { grid-template-columns: 1fr; }
  .quickform-side h2 { font-size: 26px; }

  /* CTA principal */
  .cta-box { grid-template-columns: 1fr; padding: 32px 20px; gap: 26px; }
  .cta-content h2 { font-size: 26px; }
  .cta-form { padding: 22px; }

  /* Hero stats */
  .hero-mini-stats { grid-template-columns: repeat(4, 1fr); padding: 12px 10px; gap: 6px; }
  .hero-mini-stats b { font-size: 16px; }
  .hero-mini-stats span { font-size: 10px; }

  /* Techs */
  .tech-icons { gap: 6px; }
  .tech-chip { padding: 6px 12px; font-size: 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Témoignages carrousel : 1 par vue */
  .testi-carousel { padding: 0 44px; }
  .testi { flex: 0 0 100%; padding: 24px; }
  .tc-arrow { width: 38px; height: 38px; font-size: 15px; }

  /* Bandeau logos */
  .logo-svg { height: 34px; }
  .logo-real { height: 46px; max-width: 130px; }
  .logos-track { gap: 32px; }

  /* Phone dropdown mobile */
  .phone-select { min-width: 90px; padding: 12px 10px; }
  .pi-code { font-size: 13px; }
  .phone-dropdown { min-width: 220px; }

  /* CTA contact direct */
  .cta-contact-direct a { font-size: 14px; }
  .cta-contact-direct a span { width: 32px; height: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 32px !important; }
  .section-head h2 { font-size: 24px !important; }
  .hero-mini-stats { grid-template-columns: 1fr 1fr; }
  .hero-mini-stats b { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 26px; }
  .funnel-stage { padding: 22px 18px; }
  .plan-price b { font-size: 22px; }
  .testi-carousel { padding: 0 12px; }
  .tc-arrow { top: auto; bottom: -60px; transform: none; }
  .tc-arrow:hover { transform: scale(1.05); }
  .tc-arrow:disabled { transform: none; }
  .tc-prev { left: calc(50% - 50px); }
  .tc-next { right: calc(50% - 50px); }
  .testi-dots { margin-top: 70px; }
}

/* ---------- RESPONSIVE (ancien breakpoint conservé) ---------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { min-height: 480px; max-width: 560px; margin: 0 auto; width: 100%; }
  .hv-main { position: relative; width: 100%; transform: none; animation: none; }
  .hv-mobile { right: 10px; bottom: 20px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .funnel { grid-template-columns: 1fr; }
  .funnel-arrow { transform: rotate(90deg); text-align: center; }
  .cta-box { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
  .hero { padding: 50px 0 40px; }
  .plan-featured { transform: none; }
  .hero-mini-stats { grid-template-columns: repeat(4, 1fr); padding: 14px; }
  .hero-mini-stats b { font-size: 18px; }
  .manifesto-pillars { grid-template-columns: 1fr; }
  .big-numbers { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-devs { grid-template-columns: 1fr; }
  .team-devs-text { padding: 20px; }
  .turnkey-grid { grid-template-columns: 1fr 1fr; }
  .design-flow { grid-template-columns: 1fr; }
  .df-arrow { transform: rotate(90deg); text-align: center; align-self: center; }
  .design-samples { grid-template-columns: 1fr; }
  .quickform-wrap { grid-template-columns: 1fr; padding: 32px 24px; gap: 30px; }
  .qf-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-mini-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline-step { gap: 16px; }
  .ts-marker { width: 50px; height: 50px; font-size: 15px; }
  .timeline-line { left: 24px; }
  .hv-notif, .hv-ai, .hv-seo { display: none; }
  .hv-mobile { width: 160px; }
  .big-numbers { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .bn-value { font-size: 44px; }
}

/* ==============================================
   REVEAL ANIMATIONS - Apparition au scroll
   ============================================== */

/* Base : fade-up */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .9s cubic-bezier(.2,.9,.3,1),
    transform .9s cubic-bezier(.2,.9,.3,1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Variantes par direction */
.reveal-left { transform: translateX(-50px); }
.reveal-left.visible { transform: translateX(0); }
.reveal-right { transform: translateX(50px); }
.reveal-right.visible { transform: translateX(0); }
.reveal-zoom { transform: scale(0.9); opacity: 0; }
.reveal-zoom.visible { transform: scale(1); opacity: 1; }
.reveal-fade { transform: none; }
.reveal-fade.visible { opacity: 1; }

/* Stagger : effet cascade sur les enfants d'un container */
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .7s cubic-bezier(.2,.9,.3,1),
    transform .7s cubic-bezier(.2,.9,.3,1);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.visible > *:nth-child(4) { transition-delay: .24s; }
.stagger.visible > *:nth-child(5) { transition-delay: .32s; }
.stagger.visible > *:nth-child(6) { transition-delay: .40s; }
.stagger.visible > *:nth-child(7) { transition-delay: .48s; }
.stagger.visible > *:nth-child(8) { transition-delay: .56s; }
.stagger.visible > *:nth-child(9) { transition-delay: .64s; }
.stagger.visible > *:nth-child(10) { transition-delay: .72s; }
.stagger.visible > *:nth-child(n+11) { transition-delay: .8s; }

/* Animation d'ouverture des sections (barre de progression + titre) */
.section-head {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.9,.3,1), transform .8s cubic-bezier(.2,.9,.3,1);
}
.section-head.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Effet "typewriter/underline" sur l'eyebrow */
.section-head .eyebrow {
  position: relative;
  overflow: hidden;
}
.section-head.visible .eyebrow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.6s ease-out .3s;
}
@keyframes shimmer {
  to { transform: translateX(100%); }
}

/* Hero : entrée différée douce */
.hero-left > * {
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(.2,.9,.3,1) forwards;
}
.hero-left > *:nth-child(1) { animation-delay: .05s; }
.hero-left > *:nth-child(2) { animation-delay: .18s; }
.hero-left > *:nth-child(3) { animation-delay: .30s; }
.hero-left > *:nth-child(4) { animation-delay: .42s; }
.hero-left > *:nth-child(5) { animation-delay: .54s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-right {
  opacity: 0;
  animation: heroFadeIn 1.2s cubic-bezier(.2,.9,.3,1) .3s forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Réduire pour ceux qui préfèrent moins d'animations */
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > *, .section-head, .hero-left > *, .hero-right {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
