@charset "UTF-8";
/* =====================================================
   1MAX2VUES - COMPONENTS . Hero, Sections, Patterns
   ===================================================== */

/* ============ LENIS SMOOTH SCROLL - RESETS ============
   Quand Lenis s'active, il ajoute .lenis + .lenis-smooth sur <html>.
   On desactive le scroll-behavior natif pour lui laisser le controle. */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ============ GRAIN OVERLAY GLOBAL ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch' seed='3'/><feColorMatrix values='0 0 0 0 0.06  0 0 0 0 0.05  0 0 0 0 0.04  0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============ REVEAL - Animation CSS pure, jamais masque si JS plante ============ */
.reveal {
  animation: revealFadeIn 800ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i, 0) * 80ms + 80ms);
}
@keyframes revealFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Si JS ajoute .is-in, c'est juste un plus - pas obligatoire */
.reveal.is-in { opacity: 1; transform: translateY(0); }

.reveal-mask {
  overflow: hidden;
  display: inline-block;
  vertical-align: baseline;
}
.reveal-mask > * {
  display: inline-block;
  animation: revealMaskUp 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i, 0) * 70ms + 150ms);
}
@keyframes revealMaskUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
.reveal-mask.is-in > * { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-mask > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============ HERO ============ */
.hero {
  padding: var(--s-24) 0 var(--s-20);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: var(--s-16);
  align-items: center;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.hero-meta .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.hero-meta .live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.6;
  animation: pulse-ring 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}
.hero-meta-text {
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.hero-title {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 30, "WONK" 0;
  font-weight: 400;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: var(--s-8);
}
.hero-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--accent);
  display: inline-block;
}
.hero-title .rotator-wrap {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.hero-title .rotator {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--accent);
  display: inline-block;
  font-size: 0.82em;
  transition: opacity 200ms;
}

.hero-lead {
  font-size: var(--fs-lg);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 500px;
  margin-bottom: var(--s-8);
  font-weight: 400;
}
.hero-lead strong { color: var(--ink); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-10);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--s-12);
  padding-top: var(--s-8);
  border-top: 1px solid var(--border);
}
.hero-stat .stat-num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  font-variation-settings: "SOFT" 20;
}
.hero-stat .stat-num sup {
  font-family: var(--ff-mono);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--accent);
  vertical-align: super;
  margin-left: 2px;
}
.hero-stat .stat-label {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* ============ HERO VISUAL COMPOSITION ============ */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  display: block;
}
.hero-visual-card {
  position: absolute;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.hero-visual-card.hv-main {
  top: 0; right: 0;
  width: 72%;
  height: 64%;
  background: linear-gradient(145deg, #141210 0%, #0F0E0C 50%, #1A1814 100%);
  transform: rotate(-2deg);
}
.hero-visual-card.hv-main::before {
  content: '';
  position: absolute;
  top: 12%; left: 8%;
  right: 8%; bottom: 12%;
  border: 1px dashed rgba(193, 78, 42, 0.25);
  border-radius: var(--r-md);
  pointer-events: none;
}
.hv-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--s-4);
}
.hv-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}
.hv-headline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.625rem;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
  font-variation-settings: "SOFT" 100;
}
.hv-headline em { color: var(--accent-warm); font-style: normal; }
.hv-sub {
  font-size: 0.8125rem;
  color: rgba(250, 246, 236, 0.7);
  line-height: 1.6;
  max-width: 90%;
}

.hero-visual-card.hv-second {
  bottom: 0; left: 0;
  width: 60%;
  height: 42%;
  background: var(--cream);
  color: var(--ink);
  transform: rotate(1.5deg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hv-second .hv-label { color: var(--accent); }
.hv-second .hv-label::before { background: var(--accent); }
.hv-chat-bub {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  padding: 8px 12px;
  border-radius: var(--r-lg);
  background: var(--cream-2);
  color: var(--ink-soft);
  margin-bottom: 6px;
  max-width: 90%;
}
.hv-chat-bub.is-user {
  background: var(--ink);
  color: var(--cream);
  align-self: flex-end;
  margin-left: auto;
}

.hero-visual-deco {
  position: absolute;
  top: 35%;
  right: -10%;
  width: 180px;
  height: 180px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.5;
  animation: orbit 22s linear infinite;
  pointer-events: none;
}
.hero-visual-deco::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
}
@keyframes orbit {
  to { transform: rotate(360deg); }
}

/* ============ HERO PARTNERS / TRUST ============ */
.trust-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s-5) 0;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  min-width: 0;
  flex-shrink: 0;
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.trust-item strong {
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--ink);
  white-space: nowrap;
}
.trust-item em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-left: 6px;
  white-space: nowrap;
}
.trust-sep {
  width: 1px;
  height: 18px;
  background: var(--border-strong);
  opacity: 0.5;
}

/* ============ SERVICES CARDS EDITORIAL ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.service-card {
  background: var(--cream);
  padding: var(--s-10);
  display: flex;
  flex-direction: column;
  min-height: 340px;
  position: relative;
  transition: background var(--t-med);
}
.service-card:hover { background: var(--cream-2); }
.service-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  margin-bottom: var(--s-6);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-num::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: var(--cream-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  transition: all var(--t-med) var(--ease-expo);
}
.service-card:hover .service-icon-wrap {
  background: var(--accent-tint);
  border-color: var(--accent-warm);
  transform: rotate(-6deg) scale(1.05);
}
.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--t-med);
}
.service-card:hover .service-icon-wrap svg { stroke: var(--accent); }

.service-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.625rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s-3);
  font-variation-settings: "SOFT" 40;
}
.service-card h3 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--accent);
}
.service-card > p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: var(--s-6);
  flex: 1;
}
.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-5);
  border-top: 1px solid var(--border-soft);
}
.service-foot .service-price {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.service-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-med) var(--ease-expo);
  overflow: hidden;
}
.service-card:hover .service-arrow {
  background: var(--ink);
  border-color: var(--ink);
}
.service-arrow svg {
  stroke: var(--ink);
  transition: stroke var(--t-fast), transform var(--t-fast);
}
.service-card:hover .service-arrow svg {
  stroke: var(--cream);
  transform: translate(3px, -3px);
}
.service-card.is-new::after {
  content: 'NOUVEAU';
  position: absolute;
  top: var(--s-6);
  right: var(--s-6);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: var(--cream);
  padding: 3px 8px;
  border-radius: var(--r-xs);
  font-weight: 500;
}

/* ============ STORY / PARADOXE ============ */
.story-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--s-16);
  align-items: center;
}
.story-text {
  font-family: var(--ff-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 40;
}
.story-text p {
  font-size: 1.375rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: var(--s-5);
  letter-spacing: -0.005em;
}
.story-text p strong {
  font-weight: 500;
  color: var(--ink);
}
.story-text p em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--accent);
  font-weight: 400;
}

.story-quote {
  position: relative;
  padding: var(--s-8);
  background: var(--ink);
  color: var(--dark-ink);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  transform: rotate(-1deg);
  overflow: hidden;
}
.story-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px;
  height: 48px;
  background: var(--accent);
}
.story-quote::after {
  content: '"';
  position: absolute;
  top: 4px;
  left: 14px;
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--cream);
  line-height: 1;
  font-style: italic;
}
.story-quote-text {
  position: relative;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--dark-ink);
  padding-top: var(--s-5);
  margin-bottom: var(--s-5);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.story-quote-text strong {
  font-weight: 500;
  color: var(--accent-warm);
  font-style: normal;
}
.story-quote-sub {
  position: relative;
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--dark-muted);
  letter-spacing: 0.04em;
  line-height: 1.7;
  padding-top: var(--s-4);
  border-top: 1px solid var(--dark-border);
}

/* ============ FREINS - 4 CARDS ============ */
.freins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-12);
}
.frein-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: all var(--t-med) var(--ease-expo);
  position: relative;
  overflow: hidden;
}
.frein-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-tint);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
}
.frein-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-warm);
}
.frein-card:hover::before { opacity: 0.4; }
.frein-card > * { position: relative; z-index: 1; }
.frein-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  margin-bottom: var(--s-4);
}
.frein-num strong {
  color: var(--accent);
  font-weight: 500;
}
.frein-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-3);
  font-variation-settings: "SOFT" 60;
}
.frein-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--accent);
}
.frein-desc {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ============ FUSIBLE / CTA BOX HUMAIN ============ */
.manifesto {
  background: var(--dark);
  color: var(--dark-ink);
  border-radius: var(--r-2xl);
  padding: var(--s-16) var(--s-12);
  position: relative;
  overflow: hidden;
  margin-top: var(--s-16);
}
.manifesto::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(193,78,42,0.18) 0%, transparent 60%);
  pointer-events: none;
  animation: drift 28s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.1); }
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.manifesto .eyebrow { color: var(--accent-warm); margin-bottom: var(--s-5); }
.manifesto .eyebrow::before { background: var(--accent-warm); }

.manifesto-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dark-ink);
  margin-bottom: var(--s-6);
  font-variation-settings: "SOFT" 30;
}
.manifesto-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--accent-warm);
}
.manifesto p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250, 246, 236, 0.78);
  margin-bottom: var(--s-4);
}
.manifesto p strong {
  color: var(--dark-ink);
  font-weight: 500;
}
.manifesto p em {
  font-style: italic;
  font-family: var(--ff-display);
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--accent-warm);
  font-weight: 400;
}

/* ============ COMPARATIF ============ */
.compare-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-12);
}
.compare-col {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med);
  position: relative;
}
.compare-col:hover { transform: translateY(-4px); }
.compare-col.is-us {
  background: var(--ink);
  color: var(--dark-ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-accent);
  transform: translateY(-8px);
}
.compare-col.is-us:hover { transform: translateY(-12px); }
.compare-col.is-us::before {
  content: 'NOUS';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--cream);
  font-family: var(--ff-mono);
  font-size: 10px;
  padding: 4px 12px;
  letter-spacing: 0.1em;
  border-radius: var(--r-full);
  font-weight: 500;
}
.compare-head {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.compare-col.is-us .compare-head { color: var(--accent-warm); }

.compare-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: var(--s-3);
  font-variation-settings: "SOFT" 40;
}
.compare-col.is-us .compare-title { color: var(--dark-ink); }

.compare-lead {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: var(--s-5);
  min-height: 50px;
}
.compare-col.is-us .compare-lead { color: rgba(250, 246, 236, 0.7); }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.compare-list li {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.compare-list li::before {
  content: '\2715';
  color: #B95846;
  font-size: 10px;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-col.is-us .compare-list li {
  color: rgba(250, 246, 236, 0.82);
}
.compare-col.is-us .compare-list li::before {
  content: '\2192';
  color: var(--accent-warm);
  font-family: var(--ff-mono);
  font-size: 11px;
}

/* ============ REALISATIONS ============ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
  margin-top: var(--s-12);
}
.work-item {
  display: block;
  text-decoration: none;
  color: inherit;
  perspective: 1400px;
}
.work-visual {
  position: relative;
  aspect-ratio: 5/4;
  margin-bottom: var(--s-5);
  transform-style: preserve-3d;
  transition: transform var(--t-slow) var(--ease-expo);
}
.work-item:hover .work-visual { transform: translateY(-6px); }

.work-browser {
  position: absolute;
  top: 0; left: 0;
  width: 92%;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transition: transform var(--t-slow) var(--ease-expo), box-shadow var(--t-med);
}
.work-item:hover .work-browser { box-shadow: var(--shadow-xl); }

.work-topbar {
  height: 22px;
  background: var(--cream-3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}
.work-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.work-dot.r { background: #E85D4E; }
.work-dot.y { background: #E8B64E; }
.work-dot.g { background: #6ECE7C; }
.work-url {
  flex: 1;
  margin-left: 10px;
  height: 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 9px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.work-screen {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.work-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow);
}
.work-item:hover .work-screen img { transform: scale(1.04); }

.work-phone {
  position: absolute;
  bottom: -16px;
  right: 0;
  width: 28%;
  aspect-ratio: 9/19;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 4px;
  transform-style: preserve-3d;
  transition: transform var(--t-slow) var(--ease-expo);
}
.work-item:hover .work-phone { transform: translateY(6px); }

.work-phone::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 6px;
  background: var(--dark-2);
  border-radius: 0 0 6px 6px;
  z-index: 2;
}
.work-phone-screen {
  width: 100%; height: 100%;
  background: var(--dark);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.work-phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.work-meta { padding-top: var(--s-3); }
.work-meta .work-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--ink-muted);
  padding: 3px 8px;
  border-radius: var(--r-xs);
  background: var(--cream-2);
  margin-bottom: var(--s-3);
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
}
.work-meta .work-tag.is-accent {
  color: var(--accent-deep);
  background: var(--accent-tint);
  border-color: var(--accent-warm);
}
.work-meta h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.work-meta p {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ============ PROCESS TIMELINE ============ */
.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--s-16);
  align-items: start;
  margin-top: var(--s-8);
}
.process-intro p {
  font-size: var(--fs-md);
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: var(--s-5);
}
.process-intro p strong { color: var(--ink); font-weight: 500; }

.timeline {
  position: relative;
  padding-left: var(--s-8);
}
/* Ligne de fond (couleur desaturee) */
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--border);
}
/* Ligne de progression (terracotta) qui se trace au scroll */
.timeline::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 14px;
  width: 2px;
  height: var(--progress, 0px);
  background: linear-gradient(to bottom,
    var(--accent) 0%,
    rgba(193, 78, 42, 0.6) 100%);
  box-shadow: 0 0 8px rgba(193, 78, 42, 0.4);
  transition: height 120ms linear;
  pointer-events: none;
}
/* La boule qui suit le scroll */
.timeline-dot {
  position: absolute;
  left: 7px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(193, 78, 42, 0.15),
              0 0 16px rgba(193, 78, 42, 0.7);
  transform: translate3d(0, var(--y, 0px), 0);
  transition: transform 120ms linear, opacity 300ms ease;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.timeline.is-active .timeline-dot { opacity: 1; }
/* Pulse leger sur la boule */
.timeline-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.4;
  animation: dotPulse 1.8s ease-out infinite;
}
@keyframes dotPulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}
.step {
  position: relative;
  padding: 0 0 var(--s-10) 0;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--border);
  transition: background 300ms ease, border-color 300ms ease, transform var(--t-med);
  z-index: 1;
}
/* Etapes atteintes par le scroll : point rempli + bordure terracotta */
.step.is-reached::before {
  background: var(--accent);
  border-color: var(--accent);
}
.step:hover::before { transform: scale(1.3); }

.step-head {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  margin-bottom: var(--s-2);
}
.step-n {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: color 300ms ease, font-weight 300ms ease;
}
.step.is-reached .step-n { font-weight: 600; }
.step h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.step p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .timeline-dot, .timeline-dot::after { animation: none; transition: none; }
}

/* ============ USECASES ============ */
.usecases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-10);
}
.usecase-tile {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  text-align: center;
  transition: all var(--t-med);
  cursor: default;
}
.usecase-tile:hover {
  border-color: var(--accent-warm);
  background: var(--cream-2);
  transform: translateY(-3px);
}
.usecase-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--s-4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.usecase-icon svg {
  width: 28px; height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.4;
}
.usecase-label {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.usecase-desc {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  color: var(--ink-muted);
  line-height: 1.55;
  letter-spacing: 0.02em;
}

/* ============ CTA / ENDING ============ */
.end-cta {
  text-align: center;
  padding: var(--s-24) 0;
}
.end-cta .sec-title { margin: 0 auto var(--s-5); }
.end-cta .sec-lead { margin: 0 auto var(--s-8); }
.end-contacts {
  display: flex;
  justify-content: center;
  gap: var(--s-8);
  flex-wrap: wrap;
  margin-top: var(--s-8);
  padding-top: var(--s-8);
  border-top: 1px solid var(--border);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.end-contact {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-muted);
}
.end-contact svg {
  width: 14px; height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

/* ============ PAGE HERO (INNER PAGES) ============ */
.page-hero {
  padding: var(--s-16) 0 var(--s-10);
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: var(--s-5); }
.page-hero h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: var(--s-5);
  font-variation-settings: "SOFT" 30;
  max-width: 820px;
}
.page-hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--accent);
}
.page-hero-lead {
  font-size: var(--fs-lg);
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 640px;
}

/* ============ PRICING CARDS ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-8);
}
.price-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: all var(--t-med) var(--ease-expo);
  position: relative;
}
.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-warm);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  background: var(--ink);
  color: var(--dark-ink);
  border-color: var(--ink);
  transform: translateY(-8px);
}
.price-card.featured:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-accent);
}
.price-card.featured .price-name,
.price-card.featured .price-setup,
.price-card.featured .price-features li {
  color: rgba(250, 246, 236, 0.75);
}
.price-card.featured h4 { color: var(--dark-ink); }
.price-card.featured .price-amount { color: var(--dark-ink); }
.price-card.featured .price-divider { background: var(--dark-border); }
.price-card.featured .price-cta {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}
.price-card.featured .price-cta:hover {
  background: var(--cream);
  color: var(--ink);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--cream);
  font-family: var(--ff-mono);
  font-size: 10px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
}
.price-name {
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.price-amount {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "SOFT" 20;
}
.price-amount sup {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 400;
  vertical-align: super;
  margin-right: 4px;
}
.price-amount small {
  font-size: 0.875rem;
  color: var(--ink-muted);
  font-weight: 400;
  font-family: var(--ff-body);
  margin-left: 6px;
}
.price-setup {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.price-setup strong {
  color: var(--accent);
  font-weight: 500;
}
.price-divider { height: 1px; background: var(--border); }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.price-features li {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.price-features li::before {
  content: '\2192';
  color: var(--accent);
  font-family: var(--ff-mono);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--ink);
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  transition: all var(--t-fast);
}
.price-cta:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============ NOTE BLOCK ============ */
.note {
  background: var(--cream-2);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  margin-top: var(--s-8);
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.75;
}
.note strong { color: var(--ink); font-weight: 500; }
.note a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* ============ CHAT DEMO WIDGET ============ */
.chat-demo {
  background: var(--dark);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 440px;
  border: 1px solid var(--dark-border);
}
.chat-demo-header {
  background: var(--dark-2);
  padding: var(--s-4) var(--s-5);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  border-bottom: 1px solid var(--dark-border);
}
.chat-demo-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.chat-demo-title {
  flex: 1;
  min-width: 0;
}
.chat-demo-title strong {
  display: block;
  color: var(--dark-ink);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--ff-body);
}
.chat-demo-title span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--dark-muted);
  letter-spacing: 0.04em;
}
.chat-demo-title span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5CDB8F;
  box-shadow: 0 0 6px #5CDB8F;
}
.chat-demo-body {
  padding: var(--s-5);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background: var(--dark);
}
.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.8125rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 350ms var(--ease-expo), transform 350ms var(--ease-expo);
}
.chat-msg.shown { opacity: 1; transform: translateY(0); }
.chat-msg.user {
  align-self: flex-end;
  background: var(--accent);
  color: var(--cream);
  border-bottom-right-radius: 4px;
}
.chat-msg.bot {
  align-self: flex-start;
  background: var(--dark-2);
  color: var(--dark-ink);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--dark-border);
}
.chat-msg.bot strong { color: var(--accent-warm); font-weight: 500; }
.chat-typing {
  align-self: flex-start;
  display: none;
  background: var(--dark-2);
  padding: 12px 16px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  gap: 4px;
  border: 1px solid var(--dark-border);
}
.chat-typing.shown { display: flex; }
.chat-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dark-muted);
  animation: chat-dot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chat-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}
.chat-demo-footer {
  background: var(--dark-2);
  padding: var(--s-3) var(--s-4);
  border-top: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.chat-demo-input {
  flex: 1;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-full);
  padding: 8px 14px;
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--dark-muted);
  font-style: italic;
}
.chat-demo-send {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.chat-demo-send svg { stroke: var(--cream); }

/* ============ FORM STYLES ============ */
.form-shell {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-10);
}
.form-group {
  margin-bottom: var(--s-6);
}
.form-group label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: var(--s-2);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--cream-2);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}
.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-2);
}
.radio-option {
  position: relative;
}
.radio-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-option label {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-4);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t-fast);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
  font-family: var(--ff-body);
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.radio-option label::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--t-fast);
}
.radio-option input:checked + label {
  border-color: var(--accent);
  background: var(--accent-tint);
  color: var(--ink);
}
.radio-option input:checked + label::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 3px var(--accent-tint);
}
.radio-option label strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: -0.005em;
}
.radio-option label small {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-msg {
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  margin-bottom: var(--s-6);
  font-size: 0.9375rem;
}
.form-msg.success {
  background: #E8F4E8;
  border: 1px solid #6FB36F;
  color: #2F5F2F;
}
.form-msg.error {
  background: #FCE8E0;
  border: 1px solid var(--accent-warm);
  color: var(--accent-deep);
}

/* ============ BEFORE / AFTER ============ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-12);
}
.ba-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--s-4);
  align-items: center;
  transition: transform var(--t-med);
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ba-col {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.ba-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  padding: 3px 8px;
  background: var(--cream-2);
  border-radius: var(--r-xs);
  align-self: center;
}
.ba-label.is-accent {
  background: var(--accent-tint);
  color: var(--accent-deep);
}
.ba-img {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-3);
  position: relative;
}
.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.ba-card:hover .ba-img img { transform: scale(1.04); }
.ba-col.is-before .ba-img {
  filter: saturate(0.6) brightness(0.92);
}
.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
}
.ba-arrow svg { stroke: var(--cream); }

/* ============ INSTAGRAM PREVIEW ============ */
.ig-preview-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-16);
  align-items: center;
}
.ig-phone {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}
.ig-phone .tilt-inner { transition: transform var(--t-slow) var(--ease-expo); }
.ig-phone-shell {
  width: 280px;
  background: var(--dark);
  border: 3px solid var(--ink);
  border-radius: 34px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.ig-phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 20px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.ig-phone-screen {
  background: var(--cream);
  border-radius: 26px;
  overflow: hidden;
  min-height: 520px;
  font-family: var(--ff-body);
  padding-top: 18px;
}
.ig-header {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-soft);
  gap: 10px;
}
.ig-back svg { stroke: var(--ink); }
.ig-name {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ig-more {
  font-size: 16px;
  color: var(--ink);
}
.ig-profile {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4);
}
.ig-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 50%, var(--sand) 100%);
  position: relative;
  flex-shrink: 0;
}
.ig-avatar::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--cream);
  border-radius: 50%;
}
.ig-avatar::before {
  content: '';
  position: absolute;
  inset: 6px;
  background: radial-gradient(circle at 30% 30%, var(--accent-warm) 0%, var(--accent) 70%);
  border-radius: 50%;
  z-index: 1;
}
.ig-stats {
  flex: 1;
  display: flex;
  gap: var(--s-3);
}
.ig-stat {
  flex: 1;
  text-align: center;
}
.ig-stat strong {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  line-height: 1;
}
.ig-stat span {
  display: block;
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.ig-bio {
  padding: 0 var(--s-4) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 12px;
  line-height: 1.5;
}
.ig-bio strong { color: var(--ink); font-weight: 600; }
.ig-bio span { color: var(--ink-soft); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-top: 1px solid var(--border-soft);
  margin-top: var(--s-2);
}
.ig-tile {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(15,15,15,0.15));
}
.ig-tile-1 { background: linear-gradient(135deg, #C14E2A 0%, #E07A4E 100%); }
.ig-tile-2 { background: linear-gradient(160deg, #2A2A2A 0%, #4A3A2A 100%); }
.ig-tile-3 { background: linear-gradient(200deg, #F3EDDD 0%, #D4C9AB 100%); }
.ig-tile-4 { background: linear-gradient(180deg, #E07A4E 0%, #9A3A1C 100%); }
.ig-tile-5 { background: linear-gradient(225deg, #485847 0%, #2A2A2A 100%); }
.ig-tile-6 { background: linear-gradient(135deg, #FBE7DC 0%, #C14E2A 100%); }
.ig-tile-7 { background: linear-gradient(45deg, #3A3A3A 0%, #C14E2A 100%); }
.ig-tile-8 { background: linear-gradient(270deg, #D4C9AB 0%, #9A3A1C 100%); }
.ig-tile-9 { background: linear-gradient(315deg, #E07A4E 0%, #F3EDDD 100%); }
.ig-tile-1::before,
.ig-tile-4::before,
.ig-tile-7::before {
  content: '\25B7';
  position: absolute;
  top: 6px;
  right: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  z-index: 2;
}

/* ============ WHATSAPP MOCKUP ============ */
.wa-preview-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-16);
  align-items: center;
}
.wa-phone {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}
.wa-phone .tilt-inner { transition: transform var(--t-slow) var(--ease-expo); }
.wa-phone-shell {
  width: 300px;
  background: #0B0B0B;
  border: 3px solid #0B0B0B;
  border-radius: 40px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.wa-phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0B0B0B;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.wa-phone-screen {
  background: #E4DDD3;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.4) 0, transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(0,0,0,0.02) 0, transparent 40%);
  border-radius: 32px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  padding-top: 22px;
  font-family: -apple-system, system-ui, 'Segoe UI', sans-serif;
  position: relative;
}

.wa-header {
  background: #075E54;
  color: #fff;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.wa-back { color: #fff; opacity: 0.9; }
.wa-back svg { stroke: currentColor; }
.wa-contact-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.wa-contact-info {
  flex: 1;
  line-height: 1.2;
  min-width: 0;
}
.wa-contact-info strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  font-family: -apple-system, system-ui, sans-serif;
}
.wa-contact-info span {
  display: block;
  font-size: 10.5px;
  color: rgba(255,255,255,0.75);
  margin-top: 1px;
}
.wa-icons {
  display: flex;
  gap: var(--s-4);
  color: #fff;
  opacity: 0.9;
}
.wa-icons svg { stroke: currentColor; }

.wa-body {
  flex: 1;
  padding: 12px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.wa-date-chip {
  align-self: center;
  background: rgba(225, 245, 254, 0.92);
  color: #5A6772;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  margin: 6px 0;
}
.wa-msg {
  max-width: 85%;
  padding: 6px 8px 4px;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.35;
  color: #111B21;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
}
.wa-msg.wa-sent {
  align-self: flex-end;
  background: #DCF8C6;
  border-top-right-radius: 2px;
}
.wa-msg.wa-received {
  align-self: flex-start;
  background: #FFFFFF;
  border-top-left-radius: 2px;
}
.wa-msg-text {
  margin: 0 0 2px;
  padding: 0 2px;
  word-wrap: break-word;
}
.wa-msg-text strong { font-weight: 600; }
.wa-msg-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 9.5px;
  color: #667781;
  margin-top: 2px;
  padding: 0 2px;
}
.wa-ticks { display: inline-flex; line-height: 0; }
.wa-ticks svg { display: block; }

.wa-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 4px;
  width: 180px;
}
.wa-photo {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  position: relative;
}
.wa-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.1));
}
.wa-p-1 { background-image: url('/assets/img/wa-1.jpg'); background-color: #C14E2A; }
.wa-p-2 { background-image: url('/assets/img/wa-2.jpg'); background-color: #2A2A2A; }
.wa-p-3 { background-image: url('/assets/img/wa-3.jpg'); background-color: #E07A4E; }
.wa-p-4 { background-image: url('/assets/img/wa-4.jpg'); background-color: #485847; }

.wa-attach {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(7, 94, 84, 0.1);
  border-radius: 4px;
  margin-bottom: 4px;
  align-items: center;
  min-width: 200px;
}
.wa-attach-icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: #075E54;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-attach-icon svg { stroke: currentColor; }
.wa-attach-info { flex: 1; min-width: 0; }
.wa-attach-info strong {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  color: #111B21;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-attach-info span {
  display: block;
  font-size: 9.5px;
  color: #667781;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: #F0F0F0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.wa-input {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 11px;
}
.wa-input span { color: #667781; }
.wa-send-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #075E54;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-send-btn svg { fill: currentColor; }

/* ============ FAQ ============ */
.faq {
  max-width: 840px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--s-5) 0;
  cursor: pointer;
  transition: all var(--t-fast);
}
.faq-item:hover .faq-q { color: var(--accent); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color var(--t-fast);
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--ff-mono);
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--t-med);
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  margin-top: var(--s-3);
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 680px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .hero-visual { aspect-ratio: 5/4; max-width: 560px; margin: 0 auto; }
  .story-block { grid-template-columns: 1fr; gap: var(--s-10); }
  .process { grid-template-columns: 1fr; gap: var(--s-10); }
  .compare-table { grid-template-columns: repeat(2, 1fr); }
  .compare-col.is-us { transform: translateY(0); }
  .services-grid { grid-template-columns: 1fr; }
  .freins-grid { grid-template-columns: repeat(2, 1fr); }
  .usecases { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .works-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ig-preview-wrap { grid-template-columns: 1fr; gap: var(--s-10); }
  .ig-phone { order: -1; }
  .wa-preview-wrap { grid-template-columns: 1fr; gap: var(--s-10); }
  .wa-phone { order: -1; }
}

@media (max-width: 768px) {
  .hero { padding: var(--s-12) 0 var(--s-16); }
  .hero-title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); padding-top: var(--s-6); }
  .hero-stat .stat-num { font-size: 1.75rem; }
  .story-quote { transform: rotate(0); }
  .story-text p { font-size: 1.1rem; }
  .freins-grid { grid-template-columns: 1fr; }
  .usecases { grid-template-columns: 1fr 1fr; }
  .manifesto { padding: var(--s-10) var(--s-6); border-radius: var(--r-xl); }
  .trust-inner { flex-wrap: wrap; gap: var(--s-3); }
  .trust-sep { display: none; }
  .trust-item { flex: 1 0 auto; }
  .ba-card { padding: var(--s-4); gap: var(--s-3); }
  .ba-arrow { width: 36px; height: 36px; }
  .ba-arrow svg { width: 22px; height: 22px; }
  .ig-phone-shell { width: 240px; }
  .ig-phone-screen { min-height: 440px; }
  .wa-phone-shell { width: 260px; }
  .wa-phone-screen { min-height: 520px; }
  .wa-photos { width: 150px; }
}

/* =========================================
   TOOLS GRID (page google.php - nos outils maison)
   ========================================= */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-10);
}

.tool-card {
  padding: var(--s-8);
  background: rgba(255,255,255,.55);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t);
}
.tool-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 40%, var(--accent) 60%, transparent);
  opacity: 0;
  transition: opacity var(--t);
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 78, 42, .3);
}
.tool-card:hover::before { opacity: 1; }

.tool-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(193, 78, 42, .08);
  border: 1px solid rgba(193, 78, 42, .2);
  margin-bottom: var(--s-5);
}

.tool-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--ink-soft);
  letter-spacing: .5px;
  margin-bottom: var(--s-3);
}

.tool-card h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: var(--s-3);
  letter-spacing: -.015em;
}

.tool-card p {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: var(--s-5);
}

.tool-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--ff-mono);
  font-size: .82rem;
  color: var(--accent);
  text-decoration: none;
  padding: var(--s-2) 0;
  border-bottom: 1px solid transparent;
  transition: gap var(--t), border-color var(--t);
}
.tool-cta:hover {
  gap: var(--s-3);
  border-bottom-color: var(--accent);
}

/* =========================================
   DEMO LIVE - roue des avis
   ========================================= */
.demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
  margin-top: var(--s-10);
}

.demo-flow {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.demo-step {
  display: flex;
  gap: var(--s-5);
  align-items: flex-start;
  padding: var(--s-5);
  background: rgba(255,255,255,.5);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: transform var(--t), border-color var(--t);
}
.demo-step:hover {
  transform: translateX(4px);
  border-color: rgba(193, 78, 42, .25);
}

.demo-step-num {
  font-family: var(--ff-mono);
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: -.02em;
}

.demo-step h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.demo-step p {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ink-mid);
  margin: 0;
}

/* phone shell grand format pour l'iframe */
.demo-phone { display: none; } /* deprecated - remplace par .wheel-demo */

/* Roue de demo interactive - composant inline */
.wheel-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-8) var(--s-6);
  background: linear-gradient(180deg, #FAF6EC 0%, #F3EDDD 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.wheel-demo::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .6;
}

.wheel-demo-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
}
.wheel-demo-frame canvas {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(193, 78, 42, .18));
}

.wheel-demo-pointer {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  filter: drop-shadow(0 3px 6px rgba(15, 15, 15, .25));
}

.wheel-demo-overlay {
  position: absolute;
  inset: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(250, 246, 236, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  transform: scale(.7);
  border: 2px solid var(--accent);
  padding: var(--s-6);
  text-align: center;
}
.wheel-demo-overlay.show {
  opacity: 1;
  transform: scale(1);
}
.wheel-demo-lbl {
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--ink-soft);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}
.wheel-demo-prize {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
}
.wheel-demo-sub {
  font-size: .85rem;
  color: var(--ink-mid);
  margin-top: var(--s-2);
  font-style: italic;
}

.wheel-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-7);
  background: var(--ink);
  color: var(--cream);
  border: 0;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  transition: transform var(--t), background var(--t), box-shadow var(--t);
  box-shadow: 0 6px 20px rgba(15, 15, 15, .15);
  letter-spacing: -.01em;
}
.wheel-demo-btn:hover:not(:disabled) {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(193, 78, 42, .25);
}
.wheel-demo-btn:active:not(:disabled) { transform: translateY(0); }
.wheel-demo-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.wheel-demo-note {
  font-family: var(--ff-mono);
  font-size: .72rem;
  color: var(--ink-soft);
  text-align: center;
  max-width: 320px;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .tools-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .demo-wrap { grid-template-columns: 1fr; gap: var(--s-10); }
  .wheel-demo { order: -1; }
}

@media (max-width: 768px) {
  .tool-card { padding: var(--s-6); }
  .tool-card h3 { font-size: 1.3rem; }
  .wheel-demo { padding: var(--s-6) var(--s-4); }
  .wheel-demo-frame { max-width: 300px; }
  .demo-step { padding: var(--s-4); gap: var(--s-4); }
  .demo-step h4 { font-size: 1rem; }
}

@media (max-width: 480px) {
  .wheel-demo-frame { max-width: 260px; }
}

/* =========================================
   MANIFESTO - Spotlight mouse follow (Vercel/Linear style)
   ========================================= */
.manifesto-section {
  position: relative;
  overflow: hidden;
}

/* Spotlight: radial gradient that follows the cursor */
.manifesto-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    720px circle at var(--mx, 50%) var(--my, 50%),
    rgba(193, 78, 42, 0.14),
    rgba(193, 78, 42, 0.06) 18%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
  z-index: 0;
}
.manifesto-section.is-hot::before {
  opacity: 1;
}

/* Keep content above the spotlight */
.manifesto-section > .container {
  position: relative;
  z-index: 1;
}

/* Hide spotlight on touch devices */
@media (hover: none) {
  .manifesto-section::before { display: none; }
}

/* =========================================
   CARDS HOVER SPOTLIGHT (home + autres)
   Halo terracotta subtil qui suit la souris
   sur les cartes services, freins, usecases.
   ========================================= */
.service-card, .frein-card, .usecase-card {
  position: relative;
  overflow: hidden;
}
.service-card::before, .frein-card::before, .usecase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    380px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(193, 78, 42, 0.10),
    rgba(193, 78, 42, 0.04) 35%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover::before,
.frein-card:hover::before,
.usecase-card:hover::before {
  opacity: 1;
}
.service-card > *, .frein-card > *, .usecase-card > * {
  position: relative;
  z-index: 1;
}

/* Pas de spotlight sur touch devices (pas de hover pertinent) */
@media (hover: none) {
  .service-card::before, .frein-card::before, .usecase-card::before {
    display: none;
  }
}