/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOKENS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --red: #DC2626;
  --red-dk: #B91C1C;
  --red-bg: #FEF2F2;
  --ink: #111111;
  --ink-2: #374151;
  --muted: #9CA3AF;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --bg-subtle: #F3F4F6;
  --gradient-red: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 100px;

  --sh-sm: 0 1px 4px rgba(0, 0, 0, .06);
  --sh-md: 0 4px 24px rgba(0, 0, 0, .08);
  --sh-lg: 0 16px 56px rgba(0, 0, 0, .10);
  --sh-red: 0 6px 28px rgba(220, 38, 38, .28);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .24s;

  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
}

/* â”€â”€ Reset â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font);
  background: #ffffff;
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* Blobs de couleur ambiants — position:fixed fonctionne sur tous les navigateurs y compris iOS */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 65% at -8%  -5%,  rgba(220, 38,  38, .16) 0%, transparent 65%),
    radial-gradient(ellipse 70% 58% at 110% -5%,  rgba(249, 115, 22, .13) 0%, transparent 62%),
    radial-gradient(ellipse 65% 65% at 110% 108%, rgba(220, 38,  38, .14) 0%, transparent 62%),
    radial-gradient(ellipse 58% 50% at -8%  108%, rgba(251, 113, 133, .11) 0%, transparent 58%),
    radial-gradient(ellipse 45% 40% at 50%  50%,  rgba(220, 38,  38, .05) 0%, transparent 55%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
textarea,
select,
button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* â”€â”€ Layout â”€â”€ */
.container {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 28px;
}

.section {
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}

.section__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* â”€â”€ Type â”€â”€ */
h1 {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  color: var(--muted);
}

em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red) 0%, #f87171 60%, var(--red-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

.section__head {
  margin-bottom: 56px;
}

.section__sub {
  margin-top: 10px;
  font-size: .95rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DECO â€” C SHAPES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.deco-c {
  position: absolute;
  border-radius: 50%;
  border: 32px solid rgba(220, 38, 38, .055);
  border-right-color: transparent;
  pointer-events: none;
  transform: translate(var(--px, 0), var(--py, 0)) rotate(var(--rot, 0deg));
}

/* Hero */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.deco-c--a {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -80px;
  --rot: -22deg;
}

.deco-c--b {
  width: 220px;
  height: 220px;
  bottom: 60px;
  left: -40px;
  --rot: 150deg;
  border-width: 20px;
  opacity: .5;
}

/* RÃ©alisations */
.real__deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.deco-c--c {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: -80px;
  --rot: 40deg;
  border-width: 28px;
  opacity: .6;
}

/* Contact */
.contact__deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.deco-c--d {
  width: 480px;
  height: 480px;
  top: -160px;
  left: -100px;
  --rot: 55deg;
}

/* CTA */
.cta__deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.deco-c--e {
  width: 560px;
  height: 560px;
  top: -200px;
  right: -120px;
  --rot: -18deg;
  border-color: rgba(255, 255, 255, .12);
  border-right-color: transparent;
}

.deco-c--f {
  width: 240px;
  height: 240px;
  bottom: -80px;
  left: 40px;
  --rot: 130deg;
  border-width: 20px;
  border-color: rgba(255, 255, 255, .07);
  border-right-color: transparent;
}

.deco-c--g {
  width: 400px;
  height: 400px;
  border-width: 60px;
  top: -10%;
  left: -10%;
  --rot: -20deg;
  opacity: 0.08;
  color: var(--red);
}

.deco-c--h {
  width: 300px;
  height: 300px;
  border-width: 45px;
  bottom: -5%;
  right: -5%;
  --rot: 140deg;
  opacity: 0.1;
  color: var(--red);
}

.deco-c--i {
  width: 180px;
  height: 180px;
  border-width: 30px;
  top: 10%;
  right: 10%;
  --rot: 45deg;
  opacity: 0.12;
  color: var(--red);
}

.deco-c--j {
  width: 500px;
  height: 500px;
  border-width: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(var(--px, 0), var(--py, 0)) rotate(10deg);
  opacity: 0.06;
  color: var(--red);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTTONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-size: .88rem;
  font-weight: 600;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: var(--sh-red);
}

.btn--red:hover {
  background: var(--red-dk);
  box-shadow: 0 10px 36px rgba(220, 38, 38, .4), 0 0 0 5px rgba(220, 38, 38, .08);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

.btn--white {
  background: #fff;
  color: var(--red);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .14);
}

.btn--white:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.btn--sm {
  padding: 9px 18px;
  font-size: .82rem;
}

.btn--lg {
  padding: 15px 32px;
  font-size: .95rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAV
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  right: auto;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  transform: translateX(-50%);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  padding: 20px 32px;
  box-shadow: none;
  transition:
    top .5s cubic-bezier(.4,0,.2,1),
    width .5s cubic-bezier(.4,0,.2,1),
    max-width .5s cubic-bezier(.4,0,.2,1),
    background .4s ease,
    border-radius .5s cubic-bezier(.4,0,.2,1),
    border-color .4s ease,
    padding .5s cubic-bezier(.4,0,.2,1),
    box-shadow .4s ease;
}

body.modal-open .nav {
  transform: translateX(-50%) translateY(-120px);
  opacity: 0;
  pointer-events: none;
}

/* → Pill compacte au scroll */
.nav.scrolled {
  top: 14px;
  width: calc(100% - 48px);
  max-width: 900px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 12px;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

/* En mode large (avant scroll) : padding interne plus spacieux */
.nav:not(.scrolled) .nav__inner {
  padding-inline: 8px;
}

/* Logo un peu plus grand en mode large */
.nav:not(.scrolled) .logo__img {
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  transition: none;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.05);
}

.logo__img {
  height: 54px;
  width: auto;
  transition: none;
}

.nav.scrolled .logo__img {
  height: 54px;
}

@media (max-width: 600px) {
  .logo__img {
    height: 40px;
  }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links li {
  position: relative;
}

.nav__links a:not(.btn) {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  transition: all var(--t);
  position: relative;
  white-space: nowrap;
}

.nav__links a:not(.btn):hover {
  background: rgba(220, 38, 38, 0.05);
  color: var(--red);
}

.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 12px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: transform var(--t) var(--ease);
}

.nav__links a:not(.btn):hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav__links a.nav__link--active:not(.btn) {
  color: var(--red);
}

.nav__links a.nav__link--active:not(.btn)::after {
  transform: translateX(-50%) scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: all .2s;
}

.btn-profile:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-bg);
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav__burger:hover {
  background: rgba(220, 38, 38, 0.08);
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--t);
}
.nav__burger span:nth-child(2) {
  width: 14px;
  align-self: flex-start;
  margin-left: 10px;
}

/* ── NAV MOBILE DROPDOWN ── */
/* position: absolute → s'ouvre sous la pill nav, même largeur, pas de pb de containing block */
.nav__mobile {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Animation */
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.nav__mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
}

@media (min-width: 921px) {
  .nav__mobile { display: none !important; }
}

/* Liens */
.nav__mobile > a {
  display: block;
  padding: 15px 22px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-2);
  border-bottom: 1px solid var(--border);
  transition: color 0.18s, background 0.18s;
}

.nav__mobile > a:hover {
  color: var(--red);
  background: var(--red-bg);
}

/* Lien CTA rouge sous les liens nav */
.nav__mobile > a.nav__mob-cta {
  display: block;
  padding: 15px 22px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--red);
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}
.nav__mobile > a.nav__mob-cta:hover {
  color: var(--red);
  background: var(--red-bg);
}

/* Bouton Connexion en bas */
.nav__mobile__actions {
  padding: 14px 16px;
}

.nav__mobile__actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-size: .9rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  padding-top: 80px;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(220, 38, 38, 0.08), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.05), transparent 40%),
    var(--white);
}

/* Orbs animÃ©s */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb--1 {
  width: 1000px;
  height: 800px;
  top: -420px;
  right: -300px;
  background: radial-gradient(circle, rgba(220, 38, 38, .26) 0%, rgba(185, 28, 28, .1) 40%, transparent 68%);
  animation: orb-drift 13s ease-in-out infinite;
}

.hero-orb--2 {
  width: 600px;
  height: 600px;
  bottom: -280px;
  left: -200px;
  background: radial-gradient(circle, rgba(220, 38, 38, .15) 0%, transparent 65%);
  animation: orb-drift 17s ease-in-out infinite reverse;
}

/* Grille lÃ©gÃ¨re sur le hero */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(220, 38, 38, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, .045) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 60% 40%, rgba(0, 0, 0, .85) 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 65% 65% at 60% 40%, rgba(0, 0, 0, .85) 0%, transparent 80%);
}

@keyframes orb-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(28px, -18px) scale(1.04);
  }

  66% {
    transform: translate(-14px, 12px) scale(0.97);
  }
}

/* â”€â”€ Floating background keywords â”€â”€ */
.bg-word {
  position: absolute;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .055);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  animation: bgWordFloat linear infinite;
}

@keyframes bgWordFloat {
  0% {
    transform: translateY(14px);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  100% {
    transform: translateY(-14px);
    opacity: 0;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  padding-block: 60px 120px;
  width: 100%;
}

.hero__content {
  max-width: 520px;
}

.hero__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 20px;
}

h1 {
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 56px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .02em;
}

.hero__pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.mockup__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red {
  background: #FC5F5F;
}

.dot--yellow {
  background: #FBBC04;
}

.dot--green {
  background: #34C754;
}

.mockup__url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: .68rem;
  color: var(--muted);
}

.mockup__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup__hero-zone {
  background: var(--red-bg);
  border: 1px solid rgba(220, 38, 38, .12);
  border-radius: var(--r-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ml {
  border-radius: 4px;
  background: rgba(0, 0, 0, .1);
}

.ml--red {
  background: var(--red);
}

.ml--h14 {
  height: 14px;
}

.ml--h9 {
  height: 9px;
}

.ml--w60 {
  width: 60%;
}

.ml--w45 {
  width: 45%;
}

.mockup__btn {
  width: 72px;
  height: 22px;
  background: var(--red);
  border-radius: var(--r-pill);
  margin-top: 4px;
}

.mockup__cards {
  display: flex;
  gap: 8px;
}

.mc {
  flex: 1;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--bg);
  border: 1px solid var(--border);
}

.mc--red {
  background: var(--red);
  border-color: var(--red);
  opacity: .8;
}

.hero__tag {
  position: absolute;
  bottom: -10px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--sh-md);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.4);
    opacity: .6
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NUMBERS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.numbers {
  background: linear-gradient(135deg, #0c0c0f 0%, #1c0404 50%, #0c0c0f 100%);
  border-block: none;
  padding-block: 64px;
  position: relative;
  overflow: hidden;
}

.numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(220, 38, 38, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, .07) 1px, transparent 1px);
  background-size: 38px 38px;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.number {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.number+.number {
  border-left: 1px solid rgba(255, 255, 255, .07);
}

.number__val {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.number__unit {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
}

.number p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  margin: 0;
}

/* â”€â”€ Trust Bar â”€â”€ */
.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-block: 40px;
  border-top: 1px solid rgba(220, 38, 38, .08);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar__text {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.trust-bar__logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.t-logo {
  font-size: .95rem;
  font-weight: 800;
  color: var(--muted);
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity var(--t), filter var(--t);
}

.t-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROCESSUS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.process {
  background: var(--white);
  padding-block: 80px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red-bg);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  border: 2px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.08);
}

.step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.step p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRICING
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pricing {
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(220, 38, 38, .05) 0%, transparent 50%),
    var(--bg);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(220, 38, 38, .05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

/* For tarifs.html */
@media (max-width: 920px) {

  .pricing__grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-card {
    transform: none !important;
    padding: 28px 24px;
  }
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}

.price-card--featured {
  border-color: var(--red);
  position: relative;
  transform: scale(1.05);
  z-index: 2;
}

.price-card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

.price-card__head h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}

.price-card__head p {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 8px;
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price-card__list li {
  font-size: .88rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials {
  background: linear-gradient(180deg, var(--white) 0%, #fff5f5 50%, var(--white) 100%);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(220, 38, 38, .045) 1px, transparent 1px);
  background-size: 26px 26px;
}

.testi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.testi-card {
  padding: 40px;
  border-radius: var(--r-xl);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-card__stars {
  color: #F59E0B;
  font-size: .8rem;
}

.testi-card p {
  font-style: italic;
  color: var(--ink-2);
  font-size: 1.05rem;
}

.testi-card__user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  flex-shrink: 0;
}

.testi-card__info strong {
  display: block;
  font-size: .9rem;
  color: var(--ink);
}

.testi-card__info span {
  font-size: .75rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .testi-slider {
    grid-template-columns: 1fr !important;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FAQ
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq {
  background: var(--bg);
}

.faq__list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq__trigger {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--ink);
  transition: background var(--t);
}

.faq__trigger:hover {
  background: var(--red-bg);
}

.faq__icon {
  font-size: 1.2rem;
  color: var(--red);
  transition: transform var(--t);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq__item.active .faq__content {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq__content p {
  font-size: .88rem;
  line-height: 1.7;
}

/* â”€â”€ Scroll Progress â”€â”€ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(220, 38, 38, .1);
  z-index: 1000;
}

.scroll-progress__bar {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width .1s linear;
}

/* â”€â”€ Custom Cursor â”€â”€ (Removed) */
@media (max-width: 1024px) {}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services {
  background-color: transparent;
  background-image: radial-gradient(rgba(220, 38, 38, .07) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.service:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.service__num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0, 0, 0, .04);
  position: absolute;
  top: -12px;
  right: 12px;
  line-height: 1;
  user-select: none;
  transition: color var(--t);
}

.service:hover .service__num {
  color: rgba(220, 38, 38, .07);
}

.service h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.service p {
  font-size: .88rem;
  line-height: 1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TEXT CENTER + HEADER ALIGNMENT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.text-center {
  text-align: center;
}

.text-center .eyebrow {
  justify-content: center;
}

.text-center .section__sub {
  max-width: 560px;
  margin-inline: auto;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   POURQUOI CLAIRTIS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-us {
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(220, 38, 38, .04) 0%, transparent 50%),
    var(--white);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(220, 38, 38, .04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all var(--t) var(--ease);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--t);
}

.why-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.why-card:hover::before {
  background: var(--gradient-red);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red-bg);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(220, 38, 38, .12);
  transition: all var(--t);
}

.why-card:hover .why-card__icon {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(220, 38, 38, .3);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.why-card p {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--muted);
}

.why-card__tag {
  margin-top: auto;
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--red);
  background: var(--red-bg);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(220, 38, 38, .1);
}

@media (max-width: 920px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TECH STACK
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.tech-stack {
  background: linear-gradient(135deg, #0c0c0f 0%, #1c0404 50%, #0c0c0f 100%);
  position: relative;
  overflow: hidden;
}

.tech-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(220, 38, 38, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, .07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.tech-stack .section__head h2 {
  color: #fff;
}

.tech-stack .section__sub {
  color: rgba(255, 255, 255, .45);
}

.tech-stack .eyebrow {
  color: #f87171;
}

.tech-stack .eyebrow::before {
  background: #f87171;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.tech-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--t) var(--ease);
  cursor: default;
}

.tech-item:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(220, 38, 38, .3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, .15);
}

.tech-item__icon {
  font-size: 2rem;
  line-height: 1;
}

.tech-item span {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .02em;
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EXPERTISE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.expertise {
  background: linear-gradient(160deg, #fff5f5 0%, var(--white) 40%, #fff5f5 100%);
  position: relative;
}

.expertise::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(220, 38, 38, .05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 920px) {
  .expertise__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .exp-card {
    padding: 28px 20px;
    gap: 14px;
  }
}

.exp-card {
  padding: 48px;
  border-radius: var(--r-xl);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--t) var(--ease), border-color var(--t);
}

.exp-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 20px 60px rgba(220, 38, 38, .12);
}

.exp-card:hover .exp-card__icon {
  background: var(--red);
  color: #fff;
}

.exp-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  box-shadow: var(--sh-sm);
}

.exp-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
}

.exp-card p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.6;
}

.exp-card .btn {
  align-self: flex-start;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RÃ‰ALISATIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.realisations {
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%, rgba(220, 38, 38, .05) 0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 85% 50%, rgba(220, 38, 38, .04) 0%, transparent 55%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects {
    grid-template-columns: 1fr;
  }
}

.project {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: rgba(220, 38, 38, .25);
}

.project:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.project__thumb {
  position: relative;
  overflow: hidden;
  height: 240px;
  border-top-left-radius: calc(var(--r-lg) - 1px);
  border-top-right-radius: calc(var(--r-lg) - 1px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.project__thumb--1 {
  background: linear-gradient(135deg, #fef2f2 0%, #fca5a5 50%, #dc2626 100%);
}

.project__thumb--2 {
  background: linear-gradient(135deg, #f9fafb 0%, #d1d5db 50%, #374151 100%);
}

.project__thumb--3 {
  background: linear-gradient(135deg, #fef2f2 0%, #fecaca 50%, #b91c1c 100%);
}

.project__thumb--4 {
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 50%, #c2410c 100%);
}

.project__thumb--5 {
  background: linear-gradient(135deg, #fdf4ff 0%, #e879f9 50%, #7e22ce 100%);
}

.project__thumb--6 {
  background: linear-gradient(135deg, #f0fdf4 0%, #6ee7b7 50%, #065f46 100%);
}

.project__thumb--7 {
  background: linear-gradient(135deg, #eff6ff 0%, #93c5fd 50%, #1e3a8a 100%);
}

.project__thumb--8 {
  background: linear-gradient(135deg, #f0f9ff 0%, #38bdf8 50%, #0369a1 100%);
}

.project__thumb--9 {
  background: linear-gradient(135deg, #fefce8 0%, #d97706 50%, #78350f 100%);
}

.project__live-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.project__live-preview iframe {
  width: 1440px;
  height: 900px;
  border: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.25);
  transform-origin: top center;
}

.ba--dragging iframe {
  pointer-events: none;
}

/* Subtle screen art */
.project__thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='160'%3E%3Crect x='14' y='12' width='232' height='136' rx='6' fill='rgba(255,255,255,.15)'/%3E%3Crect x='22' y='20' width='90' height='10' rx='4' fill='rgba(255,255,255,.45)'/%3E%3Crect x='22' y='36' width='60' height='7' rx='3' fill='rgba(255,255,255,.28)'/%3E%3Crect x='22' y='54' width='38' height='14' rx='5' fill='rgba(255,255,255,.38)'/%3E%3Crect x='22' y='80' width='66' height='52' rx='5' fill='rgba(255,255,255,.1)'/%3E%3Crect x='96' y='80' width='66' height='52' rx='5' fill='rgba(255,255,255,.07)'/%3E%3Crect x='170' y='80' width='66' height='52' rx='5' fill='rgba(255,255,255,.05)'/%3E%3C/svg%3E") center/cover;
}

.project__thumb:has(.project__live-preview)::before {
  display: none;
}

.project__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-block;
  padding: 4px 12px;
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: var(--r-pill);
}



.project__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
}

.project__foot h3 {
  font-size: .92rem;
  margin-bottom: 3px;
}

.project__foot p {
  font-size: .78rem;
  color: var(--muted);
}

.project__arrow {
  color: var(--muted);
  flex-shrink: 0;
  transition: color var(--t), transform var(--t);
}

.project:hover .project__arrow {
  color: var(--red);
  transform: translate(2px, -2px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MODAL AVANT/APRÃˆS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(5px);
  animation: fade-in .2s ease;
}

@keyframes fade-in {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal__box {
  position: relative;
  background: var(--white);
  border-radius: var(--r-xl);
  width: 95%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: var(--sh-lg);
  animation: slide-up .3s var(--ease);
  text-align: center;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t);
}

.modal__close:hover {
  background: var(--red);
  color: #fff;
}

.modal__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}

.modal__box h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 900;
}

.modal__box>p {
  font-size: .9rem;
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Modal Preview — Browser Mockup */
.modal__preview {
  position: relative;
  width: 100%;
  background: #1a1a2e;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .22), 0 0 0 1px rgba(0, 0, 0, .06);
}

.modal__preview-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: #252540;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.modal__preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.modal__preview-dot--red {
  background: #FC5F5F;
}

.modal__preview-dot--yellow {
  background: #FBBC04;
}

.modal__preview-dot--green {
  background: #34C754;
}

.modal__preview-url {
  flex: 1;
  margin-left: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--r-pill);
  padding: 4px 14px;
  font-size: .68rem;
  color: rgba(255, 255, 255, .4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal__preview-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fff;
}

.modal__preview-viewport iframe {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 900px;
  border: none;
  transform: translateX(-50%) scale(var(--preview-scale, 0.388));
  transform-origin: top center;
  pointer-events: none;
}

.preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.preview-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .4);
  font-size: .9rem;
  background: #1a1a2e;
}

.modal__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.mm {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mm__before {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 2px;
  opacity: 0.7;
}

.mm__after {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 2px;
}

.mm__label {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: capitalize;
}

#modal-link {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.modal__btn {
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.25);
  padding: 14px 36px !important;
  font-size: .95rem !important;
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MULTI-STEP FORM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact {
  background:
    radial-gradient(ellipse 90% 90% at 50% 50%, rgba(220, 38, 38, .06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #fff3f3 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.mform {
  max-width: 640px;
  margin-inline: auto;
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--sh-lg);
}

/* Progress steps */
.mform__progress {
  margin-bottom: 40px;
}

.msteps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.mstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.mstep__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mstep.active .mstep__dot {
  border-color: var(--red);
  background: var(--red);
}

.mstep.done .mstep__dot {
  border-color: var(--red);
  background: var(--white);
}

.mstep.done .mstep__dot::after {
  content: 'âœ“';
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.mstep span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  transition: color var(--t);
}

.mstep.active span {
  color: var(--red);
}

.mstep.done span {
  color: var(--ink);
}

.mstep__line {
  height: 2px;
  background: var(--border);
  flex: 1;
  margin: 0 -5px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.mstep__line.done {
  background: var(--red);
}

/* Panels */
.mpanel {
  animation: slide-in .24s var(--ease);
}

.mpanel[hidden] {
  display: none;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.mpanel h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.mpanel>p,
.mpanel>h3+p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

/* Type cards */
.ptypes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}
.ptypes--3col {
  grid-template-columns: repeat(3, 1fr);
}

.ptype {
  cursor: pointer;
  position: relative;
}

.ptype input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ptype__card {
  padding: 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  transition: all var(--t) var(--ease);
}

.ptype:hover .ptype__card {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

.ptype input:checked+.ptype__card {
  border-color: var(--red);
  background: var(--red-bg);
  color: var(--red);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.ptype__card i {
  font-size: 1.2rem;
  transition: transform var(--t);
}

.ptype:hover i {
  transform: scale(1.1);
}

.ptype__card span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.ptype input:checked+.ptype__card span {
  color: var(--red);
}

.c-red {
  color: var(--red);
}

/* Form fields */
.fgroup {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.fgroup label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-2);
}

.fgroup label span {
  color: var(--red);
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fgroup input,
.fgroup select,
.fgroup textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 14px;
  color: var(--ink);
  font-size: .88rem;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}

.fgroup select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .09);
  outline: none;
}

.fgroup input::placeholder,
.fgroup textarea::placeholder {
  color: rgba(0, 0, 0, .2);
}

.fgroup textarea {
  resize: vertical;
  min-height: 96px;
}

/* Checkbox styling */
.ptype input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.ptype input[type="checkbox"]:checked+.ptype__card {
  border-color: var(--red);
  background: var(--red-bg);
  color: var(--red);
}

.ptype input[type="checkbox"]:checked+.ptype__card span::before {
  content: 'âœ“';
  margin-right: 6px;
  font-weight: 900;
}

.ferr {
  font-size: .78rem;
  color: var(--red);
  margin-top: 4px;
}

/* Nav */
.mform__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
}

.mform__count {
  font-size: .78rem;
  color: var(--muted);
}

/* Success */
.mpanel--success {
  text-align: center;
  padding: 16px 0;
}

.success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red-bg);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--red);
  margin: 0 auto 20px;
  animation: pop .4s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes pop {
  from {
    transform: scale(0);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.mpanel--success h3 {
  margin-bottom: 8px;
}

.mpanel--success p {
  max-width: 360px;
  margin-inline: auto;
  font-size: .88rem;
}

.success__recap {
  margin-top: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.success__recap div {
  font-size: .82rem;
  color: var(--ink-2);
  display: flex;
  gap: 8px;
}

.success__recap strong {
  color: var(--ink);
  flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta {
  background:
    radial-gradient(ellipse 80% 80% at 95% 5%, rgba(255, 255, 255, .22) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 5% 95%, rgba(0, 0, 0, .22) 0%, transparent 50%),
    linear-gradient(135deg, var(--red) 0%, #9b1c1c 100%);
  padding-block: 100px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 52px 52px;
}

.cta::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 65%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta__inner h2 {
  color: #fff;
  max-width: 480px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
  background: var(--ink);
  padding-block: 80px 40px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__brand .logo__name {
  color: #fff;
}

.footer__brand .logo__img {
  height: 70px;
}

.footer__brand p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 8px;
}

.footer__brand {
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
  border: 1px solid rgba(255, 255, 255, .08);
}

.footer__social-link:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer__columns {
  display: flex;
  gap: 60px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer__col a {
  font-size: .84rem;
  color: rgba(255, 255, 255, .4);
  transition: color var(--t);
}

.footer__col a:hover {
  color: #fff;
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

.footer__links a {
  font-size: .84rem;
  color: rgba(255, 255, 255, .45);
  transition: color var(--t);
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  padding-block: 20px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
}

/* â”€â”€ Newsletter â”€â”€ */
.newsletter {
  background: var(--white);
  padding-block: 60px;
}

.newsletter__box {
  background:
    radial-gradient(ellipse 80% 80% at 90% 10%, rgba(220, 38, 38, .12) 0%, transparent 50%),
    linear-gradient(135deg, #111 0%, #1a0404 50%, #111 100%);
  border-radius: var(--r-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  border: 1px solid rgba(220, 38, 38, .15);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
  position: relative;
  overflow: hidden;
}

.newsletter__box::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 36px 36px;
}

.newsletter__content h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.newsletter__content p {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter__form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}

.newsletter__form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
}

.newsletter__form input:focus {
  border-color: var(--red);
}

@media (max-width: 920px) {
  .newsletter__box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .newsletter__form {
    max-width: 100%;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   N8N DARK MODE & SOLUTIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.n8n-page {
  background: #0a0a0c;
  color: #fff;
}

.n8n-page .nav {
  background: rgba(10, 10, 12, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}

.n8n-page .nav__links a:not(.btn) {
  color: rgba(255, 255, 255, 0.7);
}

.n8n-page .nav__links a:not(.btn):hover {
  color: #fff;
}

.n8n-page p {
  color: rgba(255, 255, 255, 0.7);
}

.n8n-page .eyebrow {
  color: var(--red);
}

.n8n-page h1,
.n8n-page h2,
.n8n-page h3,
.n8n-page h4 {
  color: #fff;
}

.n8n-page .section__sub {
  color: rgba(255, 255, 255, 0.6);
}

.n8n-page .service {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.n8n-page .service h3 {
  color: #fff;
}

.n8n-page .service p {
  color: rgba(255, 255, 255, 0.6);
}

.rgpd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 40px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REVEAL (DÃ©sactivÃ© pour supprimer les animations au scroll)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal--r {
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 {
  transition-delay: .1s;
}

.reveal--delay-2 {
  transition-delay: .2s;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 920px) {
  .section {
    padding-block: 64px;
  }

  .section__head {
    margin-bottom: 36px;
  }

  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 48px 40px;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__content .eyebrow {
    justify-content: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
  }

  .projects {
    grid-template-columns: 1fr 1fr;
  }

  .project--lg {
    grid-column: 1 / -1;
  }

  .project--lg .project__thumb {
    height: 200px;
  }

  .cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .process__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .testi__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-grid {
    grid-template-columns: 1fr !important;
  }

  .step-content {
    padding: 28px 24px;
  }

  .choice-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding-block: 44px;
  }

  .section__head {
    margin-bottom: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding-block: 20px 32px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .number+.number {
    border-left: 1px solid rgba(255, 255, 255, .07);
    border-top: none;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .projects {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .project--lg .project__thumb {
    height: 160px;
  }

  .process__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .price-card {
    padding: 24px 18px;
  }

  .why-card {
    padding: 14px 12px;
    gap: 8px;
  }

  .how-step {
    padding: 14px 12px;
  }

  .testi-card {
    padding: 14px 12px;
  }

  .mform {
    padding: 20px 16px;
  }

  .ptypes {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .frow {
    grid-template-columns: 1fr;
  }

  .modal__box {
    padding: 24px 16px;
  }

  .nav__actions {
    display: none;
  }

  .nav {
    width: calc(100% - 24px);
    top: 12px;
  }

  .choice-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .how-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .footer__columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    font-size: .78rem;
  }

  .footer__col h4 {
    font-size: .75rem;
    margin-bottom: 8px;
  }

  .footer__col a {
    font-size: .73rem;
  }

  h1 {
    font-size: clamp(1.6rem, 7.5vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }
}

/* â”€â”€ Legal Page â”€â”€ */
.legal-page {
  background: transparent;
}

.legal-container {
  max-width: 900px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  display: flex;
  gap: 32px;
}

.legal-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.legal-card__content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ink);
}

.legal-card__content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.legal-card__content strong {
  color: var(--ink);
}

@media (max-width: 768px) {
  .legal-card {
    flex-direction: column;
    gap: 20px;
    padding: 30px 24px;
  }
}

/* â”€â”€ AI Chat Button â”€â”€ */
.ai-chat-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--red);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-red);
  transition: all .3s var(--ease);
  font-weight: 700;
  border: 2px solid transparent;
}

.ai-chat-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.ai-chat-btn svg {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOW IT WORKS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.how-it-works {
  background:
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(220, 38, 38, .04) 0%, transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.how-step {
  position: relative;
  padding: 40px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t);
}

.how-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, .1);
  border-color: rgba(220, 38, 38, .25);
}

.how-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: var(--red-bg);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 1.5px solid rgba(220, 38, 38, .12);
  transition: all var(--t);
}

.how-step:hover .how-step__icon {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(220, 38, 38, .3);
  transform: scale(1.08);
}

.how-step__num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
}

.how-step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.how-step p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AI CHAT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.ai-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
}

.ai-chat__trigger {
  background: var(--red);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-red);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.ai-chat__trigger:hover {
  transform: scale(1.05);
  background: var(--red-dk);
}

.ai-chat__trigger span {
  font-weight: 700;
  font-size: 0.9rem;
}

.ai-chat__window {
  position: absolute;
  bottom: calc(100% + 20px);
  right: 0;
  width: 350px;
  background: white;
  border-radius: 24px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
}

.ai-chat.active .ai-chat__window {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.ai-chat__header {
  padding: 20px;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.ai-chat__status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.ai-chat__header h4 {
  font-size: 1rem;
  font-weight: 700;
}

.ai-chat__header p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.ai-chat__close {
  position: absolute;
  right: 20px;
  color: white;
  opacity: 0.6;
  cursor: pointer;
}

.ai-chat__body {
  padding: 20px;
  height: 300px;
  overflow-y: auto;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-msg {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  max-width: 85%;
  line-height: 1.5;
}

.ai-msg--bot {
  background: white;
  color: var(--ink);
  border-bottom-left-radius: 4px;
  box-shadow: var(--sh-sm);
}

.ai-chat__input {
  padding: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  background: white;
}

.ai-chat__input input {
  flex: 1;
  border: none;
  font-size: 0.9rem;
  outline: none;
}

.ai-chat__input button {
  color: var(--red);
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MULTI-STEP CONTACT FORM
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.step-form {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  position: relative;
}

.step-progress {
  display: flex;
  height: 4px;
  background: var(--bg);
}

.step-bar {
  height: 100%;
  background: var(--red);
  width: 25%;
  transition: width 0.4s var(--ease);
}

.step-content {
  padding: 40px 48px;
  min-height: 460px;
  display: none;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: background .3s, color .3s;
}

.step-content.active {
  display: block;
  animation: slide-fade-up 0.4s var(--ease);
}

@keyframes slide-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header {
  margin-bottom: 32px;
}

.step-header h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.step-header p {
  color: var(--muted);
}

/* Selection Cards */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.choice-card {
  position: relative;
  padding: 24px;
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choice-card:hover {
  border-color: var(--red);
  background: var(--red-bg);
}

.choice-card.selected {
  border-color: var(--red);
  background: var(--red-bg);
}

.choice-card input {
  position: absolute;
  opacity: 0;
}

.choice-card i {
  font-size: 1.5rem;
  color: var(--red);
}

.choice-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.choice-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COMPARE TABLE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-table th,
.compare-table td {
  padding: 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: var(--bg);
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.compare-table td {
  font-size: 0.95rem;
  color: var(--muted);
}

.compare-table td:first-child {
  font-weight: 700;
  color: var(--ink);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:not(:first-child) {
  text-align: center;
}

@media (max-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .testi-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-chat__window {
    width: calc(100vw - 40px);
    right: -10px;
  }
}

.q-input {
  width: 100%;
  padding: 16px;
  border-radius: var(--r-md);
  border: 2px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.q-input:focus {
  border-color: var(--red);
  background: var(--white);
  outline: none;
}

.step-footer {
  padding: 24px 48px;
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}

/* Animations for icons */
.c-red {
  color: var(--red);
}

.bg-red-soft {
  background: var(--red-bg);
  padding: 10px;
  border-radius: 8px;
}

/* â”€â”€ Auth nav elements â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav__auth-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  transition: all .2s;
  white-space: nowrap;
}

.nav__login-btn:hover {
  color: var(--ink);
  border-color: var(--ink-2);
  background: var(--bg);
}

.nav__user-menu {
  position: relative;
}

.nav__user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 6px;
  border-radius: var(--r-pill);
  background: var(--bg);
  border: 1.5px solid var(--border);
  cursor: pointer;
  font-family: inherit;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  transition: all .2s;
}

.nav__user-btn:hover {
  border-color: var(--red);
}

.nav__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav__user-name {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav__user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  min-width: 200px;
  padding: .5rem;
  z-index: 200;
}

.nav__user-dropdown a,
.nav__user-dropdown button {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .85rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink);
  transition: background .15s;
  cursor: pointer;
  width: 100%;
  text-align: left;
  text-decoration: none;
  background: none;
  border: none;
  font-family: inherit;
}

.nav__user-dropdown a:hover,
.nav__user-dropdown button:hover {
  background: var(--bg);
}

.nav__user-dropdown hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: .3rem 0;
}

.nav__dropdown-logout {
  color: #dc2626 !important;
}

.nav__dropdown-logout:hover {
  background: #fef2f2 !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRICING
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.price-card {
  padding: 48px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--red);
  box-shadow: var(--sh-md);
}

.price-card--featured {
  border: 2px solid var(--red);
  transform: scale(1.05);
  z-index: 2;
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.price-card__head h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.price-card__head .price {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1;
}

.price-card__head .price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.price-card__head p {
  font-size: .9rem;
  margin-bottom: 32px;
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.price-card__list li {
  font-size: .92rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE RESPONSIVENESS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 44px;
  }

  .section__head {
    margin-bottom: 22px;
  }

  .container {
    padding-inline: 16px;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding-block: 20px 32px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Grilles */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-card--featured {
    transform: none;
    margin-block: 0;
  }

  .price-card {
    padding: 24px 20px;
  }

  .price-card__head h3 {
    font-size: 1.3rem !important;
    margin-bottom: 6px !important;
  }

  .price-card__head .price {
    font-size: 2rem !important;
  }

  .price-card__head p {
    font-size: .85rem !important;
    margin-bottom: 16px !important;
    line-height: 1.45 !important;
  }

  .price-card__list {
    gap: 10px;
    margin-bottom: 20px;
  }

  .price-card__list li {
    font-size: .88rem;
    gap: 8px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .projects {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* ── Processus mobile — étapes verticales lisibles ── */
  .how-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-inline: 0 !important;
  }
  .how-step {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 16px !important;
    gap: 0 !important;
  }
  .how-step__icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 10px !important;
  }
  .how-step__icon svg { width: 18px !important; height: 18px !important; }
  .how-step__num {
    position: static !important;
    display: inline-block !important;
    font-size: .65rem !important;
    font-weight: 800 !important;
    color: var(--red) !important;
    background: #fff0f0 !important;
    border: 1px solid var(--red) !important;
    border-radius: 100px !important;
    padding: 2px 10px !important;
    margin-bottom: 8px !important;
    top: auto !important; right: auto !important;
  }
  .how-step h3 {
    font-size: .95rem !important;
    font-weight: 800 !important;
    margin-bottom: 5px !important;
    line-height: 1.25 !important;
  }
  .how-step p {
    display: block !important;
    font-size: .78rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* ── Avantages mobile — 2 colonnes propres ── */
  .why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-inline: 0 !important;
  }
  .why-card {
    padding: 14px 12px !important;
    gap: 0 !important;
    text-align: left !important;
    border-radius: 16px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .why-card__icon {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 8px !important;
  }
  .why-card__icon svg { width: 17px !important; height: 17px !important; }
  .why-card h3 {
    font-size: .82rem !important;
    font-weight: 800 !important;
    margin-bottom: 5px !important;
    line-height: 1.2 !important;
  }
  .why-card p {
    display: block !important;
    font-size: .72rem !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
  }
  .why-card__tag {
    font-size: .62rem !important;
    padding: 3px 8px !important;
    margin: 4px 0 0 !important;
    align-self: flex-start !important;
  }

  .process__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .testi__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Nombres — 2 par ligne */
  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    text-align: center;
  }

  .number+.number {
    border-left: 1px solid rgba(255, 255, 255, .07);
    border-top: none;
  }

  .number:nth-child(3) {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .07);
  }

  /* Padding cartes */
  .why-card {
    padding: 22px 16px;
    gap: 10px;
  }

  .how-step {
    padding: 22px 16px;
  }

  .testi-card {
    padding: 22px 16px;
  }

  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__actions .btn {
    display: none;
  }

  /* Footer — colonnes côte à côte */
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .footer__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: left;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  /* Modal métriques — 3 sur une ligne */
  .modal__metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  /* Tableau comparatif */
  .compare-table th,
  .compare-table td {
    padding: 10px 6px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding-block: 36px;
  }

  .section__head {
    margin-bottom: 16px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  /* ── Processus 480px — ajustements fins ── */
  .how-step {
    padding: 14px !important;
  }
  .how-step h3 {
    font-size: .88rem !important;
  }
  .how-step p {
    font-size: .74rem !important;
  }

  /* ── Avantages 480px — cartes très petites ── */
  .why-card {
    padding: 12px 10px !important;
  }
  .why-card__icon {
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 6px !important;
  }
  .why-card__icon svg { width: 15px !important; height: 15px !important; }
  .why-card h3 {
    font-size: .76rem !important;
  }
  .why-card p {
    font-size: .68rem !important;
  }
  .why-card__tag {
    font-size: .58rem !important;
  }

  .price-card {
    padding: 22px 16px;
  }

  .hero__btns .btn {
    width: 100%;
  }

  .ai-chat {
    bottom: 16px;
    right: 16px;
  }

  .ai-chat__trigger span {
    display: none;
  }

  .ai-chat__trigger {
    padding: 12px;
  }

  .modal__box {
    padding: 20px 14px;
  }

  .modal__metrics {
    gap: 6px;
  }

  .mm {
    padding: 10px 6px;
  }
}

.footer .logo:hover {
  transform: none !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TYPEWRITER + PARTICLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}

.tw-cursor {
  display: inline-block;
  width: 4px;
  height: .75em;
  background: var(--red);
  margin-left: 2px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink .8s steps(1) infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COUNTER GLOW
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes counter-pop {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.1);
  }

  65% {
    transform: scale(.97);
  }

  100% {
    transform: scale(1);
  }
}

.number__val.popped {
  animation: counter-pop .55s var(--ease) forwards;
  text-shadow: 0 0 28px rgba(220, 38, 38, .75), 0 0 56px rgba(220, 38, 38, .3);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COMPARISON SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cmp-section {
  background: linear-gradient(180deg, var(--bg-subtle) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.cmp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(220, 38, 38, .05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cmp-grid {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-md);
}

.cmp-header-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 2px solid var(--border);
}

.cmp-header-cell {
  padding: 20px 24px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  display: flex;
  align-items: center;
}

.cmp-header-cell--clairtis {
  background: var(--red);
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.cmp-header-badge {
  background: rgba(255, 255, 255, .22);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.cmp-data-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}

.cmp-data-row:last-child {
  border-bottom: none;
}

.cmp-data-row:hover {
  background: rgba(220, 38, 38, .025);
}

.cmp-data-row>div {
  padding: 18px 24px;
  font-size: .88rem;
  display: flex;
  align-items: center;
}

.cmp-label {
  font-weight: 600;
  color: var(--ink);
}

.cmp-clairtis {
  background: rgba(220, 38, 38, .04);
  border-left: 3px solid var(--red);
  border-right: 3px solid var(--red);
  font-weight: 600;
}

.cmp-data-row:last-child .cmp-clairtis {
  border-bottom: 3px solid var(--red);
}

.cmp-other {
  color: var(--muted);
  justify-content: center;
  text-align: center;
}

.cmp-yes {
  color: #16a34a;
  font-weight: 700;
}

.cmp-warn {
  color: #d97706;
  font-weight: 600;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CASE STUDIES SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cases {
  background: linear-gradient(135deg, #fff 0%, #fef2f2 50%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.cases::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(220, 38, 38, .06) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: box-shadow .3s var(--ease), border-color .3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.case-card:hover {
  box-shadow: 0 24px 60px rgba(220, 38, 38, .12), 0 0 0 1px var(--red);
  border-color: var(--red);
}

.case-card__top {
  background: linear-gradient(135deg, #111 0%, #1a0505 100%);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.case-card__top::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(220, 38, 38, .35) 0%, transparent 70%);
  pointer-events: none;
}

.case-card__tag {
  display: inline-block;
  background: rgba(220, 38, 38, .18);
  color: #fca5a5;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
  border: 1px solid rgba(220, 38, 38, .3);
  position: relative;
  z-index: 1;
}

.case-card__top h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.case-card__top p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  position: relative;
  z-index: 1;
}

.case-card__metrics {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.case-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}

.case-metric:last-child {
  border-bottom: none;
}

.case-metric__label {
  font-size: .78rem;
  color: var(--muted);
  flex: 1;
}

.case-metric__values {
  display: flex;
  align-items: center;
  gap: 6px;
}

.case-metric__before {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: line-through;
}

.case-metric__sep {
  color: var(--red);
  font-weight: 800;
  font-size: .9rem;
}

.case-metric__after {
  font-size: .9rem;
  font-weight: 800;
  color: var(--ink);
}

.case-card__cta {
  margin: 0 24px 24px;
  padding: 12px 20px;
  background: transparent;
  border: 1.5px solid var(--red);
  border-radius: var(--r-pill);
  color: var(--red);
  font-weight: 600;
  font-size: .84rem;
  cursor: pointer;
  transition: all .2s var(--ease);
  text-align: center;
  font-family: inherit;
}

.case-card__cta:hover {
  background: var(--red);
  color: #fff;
  box-shadow: var(--sh-red);
}

@media (max-width: 900px) {
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cmp-header-row,
  .cmp-data-row {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }

  .cmp-data-row>div,
  .cmp-header-cell {
    padding: 14px 14px;
    font-size: .82rem;
  }
}

@media (max-width: 620px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }

  /* ── Comparaison : 3 colonnes (Critère + Clairtis + Agence) ── */
  .cmp-header-row,
  .cmp-data-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Masquer seulement Freelance (4e colonne) */
  .cmp-header-cell:nth-child(4),
  .cmp-data-row > div:nth-child(4) {
    display: none;
  }

  .cmp-data-row > div,
  .cmp-header-cell {
    padding: 11px 9px;
    font-size: .76rem;
  }

  .cmp-header-cell {
    font-size: .6rem;
    letter-spacing: .06em;
  }

  .cmp-header-cell--clairtis {
    gap: 3px;
  }

  .cmp-header-badge {
    font-size: .52rem;
    padding: 2px 6px;
  }

  .cmp-yes {
    font-size: .74rem;
  }
}

/* ── Très petits écrans : 2 colonnes (Critère + Clairtis seulement) ── */
@media (max-width: 400px) {
  .cmp-header-row,
  .cmp-data-row {
    grid-template-columns: 1fr 1fr;
  }

  .cmp-header-cell:nth-child(3),
  .cmp-header-cell:nth-child(4),
  .cmp-data-row > div:nth-child(3),
  .cmp-data-row > div:nth-child(4) {
    display: none;
  }

  .cmp-data-row > div,
  .cmp-header-cell {
    padding: 10px 10px;
    font-size: .74rem;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COOKIE BANNER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 50px));
  z-index: 3000;
  width: calc(100% - 40px);
  max-width: 880px;
  transition: transform .55s cubic-bezier(.34, 1.56, .64, 1), opacity .4s;
  opacity: 0;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: var(--r-xl);
  padding: 20px 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .14), 0 0 0 1px rgba(220, 38, 38, .06), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.cookie-banner__emoji {
  font-size: 2.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .1));
}

.cookie-banner__content {
  flex: 1;
  min-width: 0;
}

.cookie-banner__content strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.cookie-banner__content p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__link {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: underline;
  white-space: nowrap;
  transition: color .15s;
}

.cookie-banner__link:hover {
  color: var(--ink);
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-banner__emoji {
    display: none;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICE DETAIL PAGES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 90px;
  background: linear-gradient(135deg, #0c0c0f 0%, #1a0404 60%, #0c0c0f 100%);
  overflow: hidden;
}

.svc-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.svc-hero__bg .hero-orb--1 {
  opacity: .45;
}

.svc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(220, 38, 38, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, .055) 1px, transparent 1px);
  background-size: 52px 52px;
}

.svc-hero__inner {
  position: relative;
  z-index: 1;
}

.svc-hero__breadcrumb {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-hero__breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: color .15s;
}

.svc-hero__breadcrumb a:hover {
  color: #fff;
}

.svc-hero .eyebrow {
  color: var(--red);
  margin-bottom: 14px;
}

.svc-hero h1 {
  color: #fff;
  margin-bottom: 22px;
}

.svc-hero__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .58);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.svc-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.svc-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  transition: border-color .2s, background .2s;
}

.svc-pill:hover {
  background: rgba(220, 38, 38, .15);
  border-color: rgba(220, 38, 38, .4);
}

.svc-pill::before {
  content: '\2713';
  color: var(--red);
  font-size: .82rem;
  font-weight: 800;
}

.svc-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Problem / Solution */
.svc-ps {
  background: var(--white);
}

.svc-ps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.svc-ps__label {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.svc-ps__label--problem {
  color: #dc2626;
}

.svc-ps__label--problem::before {
  content: '\2717';
}

.svc-ps__label--solution {
  color: #16a34a;
}

.svc-ps__label--solution::before {
  content: '\2713';
}

.svc-ps__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink);
}

.svc-ps__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-ps__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--r-md);
  font-size: .875rem;
  line-height: 1.55;
  color: var(--ink-2);
}

.svc-ps__item--problem {
  background: #fef2f2;
  border: 1px solid rgba(220, 38, 38, .1);
}

.svc-ps__item--problem::before {
  content: '\2717';
  color: #dc2626;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.svc-ps__item--solution {
  background: #f0fdf4;
  border: 1px solid rgba(22, 163, 74, .12);
}

.svc-ps__item--solution::before {
  content: '\2713';
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Features grid */
.svc-features {
  background: var(--bg-subtle);
}

.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}

.svc-feature:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: var(--sh-md);
}

.svc-feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.svc-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.svc-feature p {
  font-size: .86rem;
  line-height: 1.65;
}

/* Results numbers */
.svc-results {
  background: linear-gradient(135deg, #0c0c0f 0%, #1c0404 50%, #0c0c0f 100%);
  padding-block: 70px;
  position: relative;
  overflow: hidden;
}

.svc-results::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(220, 38, 38, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, .06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.svc-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.svc-result {
  padding: 40px 24px;
}

.svc-result+.svc-result {
  border-left: 1px solid rgba(255, 255, 255, .07);
}

.svc-result__val {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.svc-result__unit {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
}

.svc-result p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 8px;
}

/* Service FAQ */
.svc-faq {
  background: var(--white);
}

/* Service CTA */
.svc-cta {
  background:
    radial-gradient(ellipse 80% 80% at 95% 5%, rgba(255, 255, 255, .18) 0%, transparent 55%),
    linear-gradient(135deg, var(--red) 0%, #9b1c1c 100%);
  padding-block: 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.svc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.svc-cta .container {
  position: relative;
  z-index: 1;
}

.svc-cta h2 {
  color: #fff;
  margin-bottom: 14px;
}

.svc-cta p {
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: .95rem;
}

.svc-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* How-it-works Process Steps */
.how-it-works {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(220, 38, 38, .04) 0%, transparent 50%),
    var(--white);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(220, 38, 38, .04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.how-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
  transition: all var(--t) var(--ease);
}

.how-step:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 16px 48px rgba(220, 38, 38, .12);
}

.how-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red-bg);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(220, 38, 38, .1);
  box-shadow: 0 4px 12px rgba(220, 38, 38, .08);
  transition: all var(--t);
}

.how-step:hover .how-step__icon {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(220, 38, 38, .3);
}

.how-step__num {
  font-size: .7rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--red-bg);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(220, 38, 38, .1);
}

.how-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.how-step p {
  font-size: .86rem;
  line-height: 1.65;
}

/* service page nav active state */
.nav__link--services {
  color: var(--red) !important;
}

@media (max-width: 860px) {
  .svc-ps__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .svc-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-results__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-result+.svc-result {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .07);
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .svc-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .svc-hero {
    padding-top: 120px;
  }
}

/* ═══════════════════════════════════════════
   REFONTE PAGE — UNIQUE SECTIONS
═══════════════════════════════════════════ */

/* Signals — why you need a redesign */
.svc-refonte-signals {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.svc-signal {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 28px;
  transition: all .25s var(--ease);
}

.svc-signal:hover {
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(220, 38, 38, .08);
  transform: translateY(-2px);
}

.svc-signal__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: var(--red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(220, 38, 38, .08);
}

.svc-signal__content h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.svc-signal__content p {
  font-size: .86rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Scope — what we rebuild (numbered cards) */
.svc-refonte-scope {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-scope-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .25s var(--ease);
}

.svc-scope-card:hover {
  border-color: var(--red);
  box-shadow: 0 14px 44px rgba(220, 38, 38, .1);
  transform: translateY(-4px);
}

.svc-scope-card__num {
  font-size: .72rem;
  font-weight: 800;
  color: var(--red);
  background: var(--red-bg);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(220, 38, 38, .1);
  display: inline-block;
  width: fit-content;
  letter-spacing: .06em;
}

.svc-scope-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.svc-scope-card p {
  font-size: .86rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Guarantees — checkmark list */
.svc-refonte-guarantees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.svc-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px 24px;
  transition: all .25s var(--ease);
}

.svc-guarantee:hover {
  border-color: #16a34a;
  box-shadow: 0 8px 28px rgba(22, 163, 74, .08);
}

.svc-guarantee__check {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(22, 163, 74, .2);
}

.svc-guarantee h3 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}

.svc-guarantee p {
  font-size: .84rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Refonte page responsive */
@media (max-width: 860px) {
  .svc-refonte-scope {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-refonte-guarantees {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .svc-refonte-scope {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .svc-signal {
    flex-direction: column;
    gap: 14px;
  }
}

/* ═══════════════════════════════════════════
   E-COMMERCE PAGE — UNIQUE SECTIONS
═══════════════════════════════════════════ */

/* Pillar rows — alternating layout */
.ecom-pillar {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.ecom-pillar:last-child {
  border-bottom: none;
}

.ecom-pillar--reverse {
  direction: rtl;
}

.ecom-pillar--reverse>* {
  direction: ltr;
}

.ecom-pillar__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: sticky;
  top: 120px;
}

.ecom-pillar__badge {
  font-size: .7rem;
  font-weight: 800;
  color: var(--red);
  background: var(--red-bg);
  border: 1px solid rgba(220, 38, 38, .12);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  letter-spacing: .08em;
}

.ecom-pillar__emoji {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--red-bg) 0%, rgba(220, 38, 38, .06) 100%);
  border: 1.5px solid rgba(220, 38, 38, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 24px rgba(220, 38, 38, .06);
}

.ecom-pillar__text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

.ecom-pillar__text>p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.ecom-pillar__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ecom-pillar__details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
}

.ecom-pillar__details li::before {
  content: '\2713';
  color: var(--red);
  font-weight: 800;
  font-size: .9rem;
}

/* Integration tags cloud */
.ecom-integrations {
  background: var(--bg-subtle);
}

.ecom-integrations__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.ecom-integration-tag {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  transition: all .2s var(--ease);
  cursor: default;
}

.ecom-integration-tag:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 4px 16px rgba(220, 38, 38, .08);
  transform: translateY(-2px);
}

/* Checklist section */
.ecom-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  max-width: 780px;
  margin: 0 auto;
}

.ecom-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .2s;
}

.ecom-check-item:hover {
  border-color: var(--red);
}

.ecom-check-item__icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-weight: 800;
  font-size: .78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 163, 74, .15);
}

/* E-commerce responsive */
@media (max-width: 860px) {
  .ecom-pillar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ecom-pillar--reverse {
    direction: ltr;
  }

  .ecom-pillar__visual {
    flex-direction: row;
    position: static;
  }

  .ecom-checklist {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .ecom-pillar__text h3 {
    font-size: 1.05rem;
  }
}

/* ═══════════════════════════════════════════
   INCLUDED BANNER (All Service Pages)
═══════════════════════════════════════════ */
.svc-included {
  padding: 60px 0 0 0;
  background: var(--bg);
}

.svc-included__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.svc-included__icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--red-bg) 0%, rgba(220, 38, 38, .06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px solid rgba(220, 38, 38, .1);
}

.svc-included__text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.svc-included__text p {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 768px) {
  .svc-included__inner {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
    gap: 16px;
  }
}

/* ══════════════════════════════════════
   AUTH SPLIT LAYOUT
══════════════════════════════════════ */
.auth-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 5fr 6fr;
}

.auth-split__brand {
  position: relative;
  background: #080808;
  display: flex;
  flex-direction: column;
  padding: 48px 52px;
  overflow: hidden;
}

.auth-split__brand::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,38,38,.22) 0%, transparent 60%);
  top: -300px;
  left: -200px;
  pointer-events: none;
}

.auth-split__brand::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.auth-brand__header {
  position: relative;
  z-index: 1;
}

.auth-brand__logo {
  display: inline-flex;
}

.auth-brand__logo img {
  height: 112px;
  filter: brightness(0) invert(1);
}

.auth-brand__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 60px 48px;
}

.auth-brand__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ef4444;
  margin-bottom: 20px;
}

.auth-brand__eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: #ef4444;
  border-radius: 2px;
  flex-shrink: 0;
}

.auth-brand__title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: #ffffff;
  margin-bottom: 18px;
}

.auth-brand__title em {
  font-style: normal;
  background: linear-gradient(135deg, #ef4444 0%, #f87171 50%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-brand__sub {
  font-size: .88rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 340px;
}

.auth-brand__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-brand__feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .86rem;
  color: #9ca3af;
  font-weight: 500;
}

.auth-brand__feat-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(220,38,38,.14);
  border: 1px solid rgba(220,38,38,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f87171;
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 800;
}

.auth-brand__footer {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.auth-brand__testimonial {
  font-size: .8rem;
  color: #374151;
  line-height: 1.65;
  font-style: italic;
}

.auth-brand__testimonial strong {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 600;
  color: #4b5563;
  font-size: .75rem;
}

.auth-split__form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 52px;
  background: #ffffff;
  overflow-y: auto;
}

.auth-form-inner {
  width: 100%;
  max-width: 400px;
}

.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color .15s;
}

.auth-back-link:hover {
  color: var(--ink);
}

@media (max-width: 860px) {
  .auth-split {
    grid-template-columns: 1fr;
  }
  .auth-split__brand {
    display: none;
  }
  .auth-split__form {
    padding: 100px 28px 48px;
    min-height: 100vh;
  }
}

/* ══════════════════════════════════════
   PARTICLES — processus section
══════════════════════════════════════ */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ══════════════════════════════════════
   SECTION BACKGROUND CANVAS
══════════════════════════════════════ */
.section-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ══════════════════════════════════════
   CSS 3D FLOATING RINGS
══════════════════════════════════════ */
.bg-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: transparent;
}

.bg-ring--light { border: 1.5px solid rgba(220,38,38,.1); }
.bg-ring--dark  { border: 1px solid rgba(220,38,38,.22); }

@keyframes float3d-a {
  0%,100% { transform: perspective(620px) rotateX(0deg)   rotateY(0deg)   translateY(0px);   }
  20%      { transform: perspective(620px) rotateX(22deg)  rotateY(-14deg) translateY(-18px); }
  45%      { transform: perspective(620px) rotateX(-8deg)  rotateY(28deg)  translateY(-10px); }
  70%      { transform: perspective(620px) rotateX(16deg)  rotateY(12deg)  translateY(-24px); }
}

@keyframes float3d-b {
  0%,100% { transform: perspective(620px) rotateX(0deg)   rotateY(0deg)   translateY(0px);   }
  25%      { transform: perspective(620px) rotateX(-18deg) rotateY(20deg)  translateY(-14px); }
  55%      { transform: perspective(620px) rotateX(12deg)  rotateY(-22deg) translateY(8px);   }
  80%      { transform: perspective(620px) rotateX(-6deg)  rotateY(8deg)   translateY(-20px); }
}

@keyframes float3d-c {
  0%,100% { transform: perspective(620px) rotateX(0deg)  rotateY(0deg)  translateY(0px) scale(1); }
  30%      { transform: perspective(620px) rotateX(10deg) rotateY(18deg) translateY(-12px) scale(1.03); }
  60%      { transform: perspective(620px) rotateX(-14deg) rotateY(-8deg) translateY(-8px) scale(.97); }
}

/* ══════════════════════════════════════
   3D CARD TILT SMOOTH RESET
══════════════════════════════════════ */
.nproc-step,
.nadv-card,
.ncmp-col {
  will-change: transform;
  backface-visibility: hidden;
}

/* ══════════════════════════════════════
   HERO ORBS BOOST
══════════════════════════════════════ */
.hero-orb--1 {
  opacity: .95;
}

.hero-orb--3 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(220,38,38,.055) 0%, transparent 68%);
  animation: orb-drift 24s ease-in-out infinite alternate;
}

/* ══════════════════════════════════════
   PRE-FOOTER SPARKS SECTION
══════════════════════════════════════ */
.sparks-section {
  position: relative;
  height: 180px;
  overflow: hidden;
  background-image: radial-gradient(rgba(220,38,38,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 26px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(220, 38, 38, .38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.85);
  transition: opacity .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1), visibility .3s, background .2s;
  z-index: 900;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.back-to-top:hover {
  background: #b91c1c;
  transform: translateY(-3px) scale(1.05);
}
.back-to-top:active { transform: translateY(0) scale(.95); }
@media (max-width: 600px) {
  .back-to-top { bottom: 76px; right: 16px; width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity .2s ease, visibility .2s; }
}

/* ════════════════════════════════
   CHATBOT WIDGET
════════════════════════════════ */
.cbot-launcher {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(220, 38, 38, .42);
  z-index: 950;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .2s;
}
.cbot-launcher:hover { background: #b91c1c; transform: scale(1.07); }
.cbot-launcher:active { transform: scale(.94); }
.cbot-launcher__close { display: none; }
.cbot-launcher.is-open .cbot-launcher__open { display: none; }
.cbot-launcher.is-open .cbot-launcher__close { display: block; }

/* badge ping */
.cbot-launcher__dot {
  position: absolute;
  top: 4px; right: 6px;
  width: 11px; height: 11px;
  background: #22c55e;
  border: 2px solid #fff;
  border-radius: 50%;
}
.cbot-launcher.is-open .cbot-launcher__dot { display: none; }

.cbot-panel {
  position: fixed;
  bottom: 96px;
  right: 26px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 130px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.22), 0 4px 16px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.96);
  transform-origin: bottom right;
  transition: opacity .28s ease, transform .28s cubic-bezier(.34,1.4,.64,1), visibility .28s;
}
.cbot-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cbot-header {
  background: linear-gradient(135deg, var(--red) 0%, #b91c1c 100%);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cbot-header__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cbot-header__txt { line-height: 1.3; }
.cbot-header__name { font-weight: 800; font-size: .95rem; }
.cbot-header__status { font-size: .72rem; opacity: .9; display: flex; align-items: center; gap: 5px; }
.cbot-header__status::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
}

.cbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cbot-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: .86rem;
  line-height: 1.5;
  word-wrap: break-word;
  animation: cbotMsgIn .3s ease both;
}
@keyframes cbotMsgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cbot-msg--bot {
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  border: 1px solid #e5e7eb;
  border-bottom-left-radius: 4px;
}
.cbot-msg--user {
  align-self: flex-end;
  background: var(--red);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.cbot-msg a { color: var(--red); font-weight: 700; text-decoration: underline; }
.cbot-msg--user a { color: #fff; }

.cbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 16px 12px;
  background: #f8fafc;
}
.cbot-chip {
  border: 1.5px solid var(--red);
  background: #fff;
  color: var(--red);
  font-size: .76rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .18s, color .18s;
  font-family: inherit;
}
.cbot-chip:hover { background: var(--red); color: #fff; }

.cbot-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  flex-shrink: 0;
}
.cbot-input {
  flex: 1;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  padding: 10px 16px;
  font-size: .86rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.cbot-input:focus { border-color: var(--red); }
.cbot-send {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.cbot-send:hover { background: #b91c1c; }
.cbot-send:active { transform: scale(.9); }

/* typing dots */
.cbot-typing { display: flex; gap: 4px; align-items: center; }
.cbot-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: #9ca3af;
  animation: cbotBlink 1.2s infinite ease-in-out both;
}
.cbot-typing span:nth-child(2) { animation-delay: .2s; }
.cbot-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes cbotBlink { 0%, 80%, 100% { opacity: .3; } 40% { opacity: 1; } }

@media (max-width: 600px) {
  .cbot-launcher { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .cbot-panel {
    bottom: 74px;
    right: 14px;
    left: auto;
    width: 300px;
    max-width: calc(100vw - 28px);
    height: 62vh;
    max-height: 440px;
  }
}
@media (max-width: 360px) {
  .cbot-panel { width: calc(100vw - 28px); height: 58vh; }
}
@media (max-width: 600px) {
  /* puces sur une seule ligne défilable → ne mangent pas la hauteur */
  .cbot-quick {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 12px 9px;
    gap: 6px;
  }
  .cbot-quick::-webkit-scrollbar { display: none; }
  .cbot-chip {
    flex: 0 0 auto;
    font-size: .72rem;
    padding: 5px 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cbot-panel, .cbot-launcher, .cbot-msg { transition: opacity .2s ease, visibility .2s; animation: none; }
}

/* Performance: cut animation on reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .section-canvas { display: none; }
  .bg-ring,
  .hero-orb { animation: none !important; }
}