/* =========================================================
   WAAPLUKA — Système de design
   Violet #B373FC / Noir / Blanc — Clash Display + Prompt
   ========================================================= */

/* ---------- Fonts ----------
   Chargées via <link> dans le <head> du HTML (pas d'@import : bloquant) :
   Clash Display (Fontshare, titres) + Prompt (Google Fonts, corps). */

/* ---------- Tokens ---------- */
:root {
  /* Couleurs — socle neutre chaud · violet en accent · indigo + crème en soutien
     Ratio cible : ~80% neutre, ~15% violet, ~5% indigo */
  --violet: #B373FC;            /* accent : CTA, liens, gros titres, décor */
  --violet-bright: #C9A0FF;     /* violet pâle de liaison */
  --violet-deep: #7A3FD4;       /* violet LISIBLE en texte (AA ~4.7:1) */
  --violet-soft: #F1E9FF;       /* fond d'icône / puce */
  --indigo: #2E2A5E;            /* accent froid de soutien */
  --indigo-soft: #ECEAF4;
  --cream: #EDE6DA;             /* accent chaud de soutien */
  --ink: #141316;              /* soft black, jamais #000 */
  --ink-soft: #1E1C22;         /* surface sombre élevée */
  --paper: #F7F5F2;            /* off-white chaud — fond principal */
  --paper-2: #FCFBF9;          /* surface claire (cartes) */
  --grey-700: #555158;         /* texte secondaire chaud */
  --grey-500: #87828B;
  --grey-300: #BBB6BE;
  --grey-150: #E2DDD6;         /* hairlines chaudes */
  --grey-50: #F1ECE4;          /* bande de respiration */
  --white: #FCFBF9;            /* « blanc » adouci (off-white-2) */

  /* Dégradés */
  --grad-violet: linear-gradient(135deg, #C9A0FF 0%, #B373FC 45%, #8B4BE0 100%);
  --grad-text: linear-gradient(100deg, #B373FC 0%, #8B4BE0 70%, #6C34C9 100%);

  /* Typo */
  --font-display: 'Clash Display', 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Prompt', system-ui, -apple-system, sans-serif;

  /* Rayons & ombres */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(14, 14, 18, 0.06);
  --shadow-md: 0 18px 50px rgba(14, 14, 18, 0.10);
  --shadow-violet: 0 18px 44px rgba(123, 47, 247, 0.30);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
p { color: var(--grey-700); }
.text-violet { color: var(--violet-deep); }
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(70px, 10vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-deep);
}
.eyebrow::before { content: "✦"; color: var(--violet); font-size: 0.9em; }
.eyebrow--light { color: var(--violet-bright); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--grey-700);
  max-width: 56ch;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-violet); color: var(--white); box-shadow: var(--shadow-violet); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(123, 47, 247, 0.40); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { transform: translateY(-3px); background: var(--ink-soft); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--grey-300); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--violet-deep);
  transition: gap .3s var(--ease);
}
.arrow-link:hover { gap: 14px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--grey-150);
}
.nav__logo img { height: 28px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color .25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--violet);
  border-radius: 2px;
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--violet-deep); }
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
.nav__burger span { display: block; height: 2px; width: 24px; background: var(--ink); margin-inline: auto; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 32px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid var(--grey-150); }
.mobile-menu .btn { margin-top: 20px; justify-content: center; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(40px, 8vw, 90px));
  padding-bottom: clamp(40px, 6vw, 70px);
  overflow: hidden;
}
/* Mesh gradient animé : orbes floues qui dérivent lentement (transform = GPU) */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}
.hero__glow--1 {
  top: -12%; right: -6%;
  width: 52vw; height: 52vw; max-width: 680px; max-height: 680px;
  background: radial-gradient(circle, rgba(179,115,252,0.42) 0%, rgba(179,115,252,0) 66%);
  animation: drift1 26s ease-in-out infinite;
}
.hero__glow--2 {
  bottom: -18%; left: -12%;
  width: 46vw; height: 46vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(46,42,94,0.30) 0%, rgba(46,42,94,0) 62%);
  animation: drift2 34s ease-in-out infinite;
}
.hero__glow--3 {
  top: 24%; left: 38%;
  width: 38vw; height: 38vw; max-width: 520px; max-height: 520px;
  background: radial-gradient(circle, rgba(201,160,255,0.34) 0%, rgba(201,160,255,0) 60%);
  animation: drift3 30s ease-in-out infinite;
}
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6vw,5vh) scale(1.14); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1.1); } 50% { transform: translate(-5vw,-4vh) scale(1); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-4vw,6vh) scale(1.18); } }
.hero__inner { display: grid; gap: clamp(36px, 5vw, 60px); }
.hero h1 { margin-bottom: 22px; }
.hero h1 .grad-text { display: inline; }
.hero__lead { font-size: clamp(1.1rem, 1.8vw, 1.35rem); margin-bottom: 34px; max-width: 50ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero__trust-text { font-size: 0.9rem; color: var(--grey-500); }
.hero__stars { color: var(--violet); letter-spacing: 2px; }

/* Stats inline */
.hero__stats { display: flex; gap: clamp(24px, 5vw, 56px); margin-top: 44px; flex-wrap: wrap; }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1; color: var(--ink); }
.stat__num .grad-text { -webkit-background-clip: text; background-clip: text; }
.stat__label { font-size: 0.86rem; color: var(--grey-500); margin-top: 6px; max-width: 18ch; }

/* =========================================================
   BANDEAU LOGOS CLIENTS (marquee)
   ========================================================= */
.marquee {
  border-block: 1px solid var(--grey-150);
  padding-block: 30px;
  overflow: hidden;
  background: var(--white);
}
.marquee__label { text-align: center; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 22px; }
.marquee__track {
  display: flex;
  gap: clamp(40px, 6vw, 80px);
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img {
  height: 34px; width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity .3s, filter .3s;
  flex-shrink: 0;
}
.marquee__track img:hover { opacity: 1; filter: grayscale(0); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   SECTIONS génériques
   ========================================================= */
.section-head { max-width: 60ch; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-block: 14px 18px; }

/* Section sombre */
.section--dark { background: var(--ink); color: var(--white); }
.section--dark p { color: var(--grey-300); }
.section--dark .section-head h2 { color: var(--white); }

/* =========================================================
   SERVICES (grid cards)
   ========================================================= */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-150);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute; inset: auto auto -40% -40%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(179,115,252,0.10), transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { opacity: 1; }
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--violet-soft);
  display: grid; place-items: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
}
.service-card h3 { margin-bottom: 10px; }
.service-card__list { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.service-card__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--grey-700); }
.service-card__list li::before { content: "✦"; color: var(--violet); flex-shrink: 0; }

/* =========================================================
   ÉTAPES / PROCESS
   ========================================================= */
.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-block: clamp(28px, 3vw, 40px);
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  min-width: 2ch;
}
.step__body h3 { color: var(--white); margin-bottom: 10px; }
.step__body p { max-width: 60ch; }
.step__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.step__tags span {
  font-size: 0.78rem; font-weight: 500;
  padding: 5px 13px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.18); color: var(--grey-300);
}

/* =========================================================
   RÉALISATIONS (cartes carrées)
   ========================================================= */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.work-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--grey-50);
  border: 1px solid var(--grey-150);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.work-card__media { aspect-ratio: 1 / 1; overflow: hidden; position: relative; background: var(--ink); }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.72rem; font-weight: 600; font-family: var(--font-display);
  padding: 6px 13px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.92); color: var(--ink);
  backdrop-filter: blur(8px);
}
.work-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 6px; }
.work-card__body h3 { font-size: 1.3rem; }
.work-card__meta { font-size: 0.88rem; color: var(--grey-500); }
.work-card__link { margin-top: 12px; font-size: 0.9rem; }

/* =========================================================
   À PROPOS
   ========================================================= */
.about { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--r-lg); width: 100%; box-shadow: var(--shadow-md); }
.about__badge {
  position: absolute; bottom: 22px; left: -18px;
  background: var(--white); border-radius: var(--r-md);
  padding: 16px 22px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
}
.about__badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 4px rgba(52,211,153,0.18); }
.about__badge strong { font-family: var(--font-display); font-size: 0.95rem; display: block; }
.about__badge span { font-size: 0.8rem; color: var(--grey-500); }
.about__sign { font-family: var(--font-display); font-weight: 600; color: var(--violet-deep); margin-top: 22px; }

/* =========================================================
   CTA final
   ========================================================= */
.cta-band { position: relative; overflow: hidden; }
.cta-card {
  background: var(--grad-violet);
  border-radius: var(--r-lg);
  padding: clamp(44px, 7vw, 90px);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.cta-card::before {
  content: "✦"; position: absolute; top: 10%; left: 8%;
  font-size: 4rem; color: rgba(255,255,255,0.16);
}
.cta-card::after {
  content: "✦"; position: absolute; bottom: 12%; right: 9%;
  font-size: 6rem; color: rgba(255,255,255,0.12);
}
.cta-card h2 { color: var(--white); max-width: 18ch; margin-inline: auto; }
.cta-card p { color: rgba(255,255,255,0.92); max-width: 50ch; margin: 18px auto 32px; }
.cta-card .btn { position: relative; z-index: 1; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: var(--grey-300); padding-block: clamp(50px, 7vw, 80px) 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer__logo img { height: 30px; margin-bottom: 18px; }
.footer__brand p { color: var(--grey-500); max-width: 32ch; font-size: 0.95rem; }
.footer h4 { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer__col a, .footer__col li { display: block; font-size: 0.94rem; color: var(--grey-300); padding-block: 6px; transition: color .25s; }
.footer__col a:hover { color: var(--violet-bright); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: var(--grey-500); }
.footer__bottom a:hover { color: var(--violet-bright); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); display: grid; place-items: center; transition: background .25s, border-color .25s; }
.footer__social a:hover { background: var(--violet-deep); border-color: var(--violet-deep); }
.footer__social svg { width: 18px; height: 18px; }

/* =========================================================
   PAGE HEADER (sous-pages)
   ========================================================= */
.page-hero { padding-top: calc(var(--nav-h) + clamp(50px, 8vw, 90px)); padding-bottom: clamp(30px, 5vw, 50px); position: relative; overflow: hidden; }
.page-hero__glow { position: absolute; top: -30%; right: -10%; width: 50vw; height: 50vw; max-width: 600px; background: radial-gradient(circle, rgba(179,115,252,0.22), transparent 65%); z-index: -1; }
.page-hero h1 { max-width: 16ch; margin-block: 16px 20px; }
.page-hero .lead { font-size: clamp(1.1rem, 1.8vw, 1.3rem); }

/* =========================================================
   PROSE (légales)
   ========================================================= */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-top: 48px; margin-bottom: 14px; }
.prose h3 { font-size: 1.2rem; margin-top: 28px; margin-bottom: 8px; }
.prose p, .prose li { color: var(--grey-700); margin-bottom: 12px; font-size: 1rem; }
.prose ul { padding-left: 22px; list-style: disc; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--violet-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon { width: 46px; height: 46px; border-radius: 14px; background: var(--violet-soft); display: grid; place-items: center; flex-shrink: 0; font-size: 1.2rem; }
.contact-item strong { font-family: var(--font-display); display: block; font-size: 1rem; margin-bottom: 2px; }
.contact-item a, .contact-item span { color: var(--grey-700); font-size: 0.96rem; }
.contact-item a:hover { color: var(--violet-deep); }
.calendly-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--grey-150); min-height: 660px; box-shadow: var(--shadow-sm); }

/* =========================================================
   REVEAL (scroll animations)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease), clip-path .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; filter: none; clip-path: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }

/* Variantes premium (1 effet par type de bloc) */
.reveal--blur { filter: blur(14px); transform: translateY(16px); }      /* gros titres */
.reveal--clip { clip-path: inset(0 0 100% 0); transform: translateY(20px); } /* images / médias */
.reveal--clip.is-visible { clip-path: inset(0 0 0 0); }
.reveal--scale { transform: scale(.95); }                                /* cartes */
.reveal--scale.is-visible { transform: scale(1); }

/* Révélation de titre ligne par ligne */
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; transform: translateY(112%); transition: transform 1s var(--ease); }
.line-mask.is-visible > span { transform: translateY(0); }
.line-mask.is-visible > span:nth-child(2) { transition-delay: .08s; }
.line-mask.is-visible > span:nth-child(3) { transition-delay: .16s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .about__badge { left: 12px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   AJOUTS v2 — Contenu réel, méthode Waa·Pluka, motion, mascotte
   ========================================================= */

/* ---------- Badge pill (ex: +15 clients) ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: var(--violet-soft); color: var(--violet-deep);
  font-weight: 500; font-size: 0.9rem;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 4px rgba(179,115,252,0.22); }
.pill--dark { background: rgba(255,255,255,0.08); color: var(--violet-bright); }

/* ---------- Count-up stat (compteur) ---------- */
.stat__num[data-count] { font-variant-numeric: tabular-nums; }

/* =========================================================
   PAIN POINTS
   ========================================================= */
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.pain-card {
  background: var(--white); border: 1px solid var(--grey-150);
  border-radius: var(--r-md); padding: 26px 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.pain-card__x {
  width: 34px; height: 34px; border-radius: 10px;
  background: #FCEBEB; color: #E0556B; display: grid; place-items: center;
  font-size: 1rem; margin-bottom: 14px; font-weight: 700;
}
.pain-card p { font-size: 0.96rem; color: var(--ink); margin: 0; font-weight: 500; }
.pain-note {
  margin-top: 36px; text-align: center;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.35; letter-spacing: -0.01em;
}
.pain-note strong { color: var(--violet-deep); font-weight: 600; }

/* =========================================================
   MÉTHODE WAA · PLUKA
   ========================================================= */
.method-split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.method-card {
  border-radius: var(--r-lg); padding: clamp(30px, 4vw, 46px);
  position: relative; overflow: hidden;
  transition: transform .4s var(--ease);
}
.method-card:hover { transform: translateY(-4px); }
.method-card--waa { background: var(--grad-violet); color: var(--white); box-shadow: var(--shadow-violet); }
.method-card--pluka { background: var(--indigo); color: var(--white); }
.method-card__tag {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; line-height: 1;
}
.method-card--pluka .method-card__tag { color: var(--violet-bright); }
.method-card__sub { font-size: 1.05rem; font-weight: 500; margin: 6px 0 22px; opacity: 0.92; }
.method-card ul { display: flex; flex-direction: column; gap: 12px; }
.method-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.method-card li::before {
  content: "✓"; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.18); display: grid; place-items: center;
  font-size: 0.8rem; font-weight: 700;
}
.method-card__num {
  position: absolute; right: 22px; top: 18px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 5rem; line-height: 1; opacity: 0.12;
}

/* =========================================================
   FEATURE LIST (Ce qu'on prend en charge — 6 items)
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--grey-50); border: 1px solid var(--grey-150);
  border-radius: var(--r-md); padding: 22px 22px;
  transition: background .3s, transform .3s var(--ease);
}
.feature-item:hover { background: var(--violet-soft); transform: translateY(-3px); }
.feature-item__check {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: var(--grad-violet); color: #fff; display: grid; place-items: center;
  font-size: 0.85rem; font-weight: 700;
}
.feature-item strong { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; display: block; line-height: 1.25; }
.feature-item span { font-size: 0.9rem; color: var(--grey-500); }

/* =========================================================
   BÉNÉFICES (checklist)
   ========================================================= */
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.benefit-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; color: var(--ink); }
.benefit-list li::before {
  content: "✦"; color: var(--violet); font-size: 1.05rem; flex-shrink: 0; margin-top: 2px;
}

/* =========================================================
   MASCOTTE CRABY WAA (discrète)
   ========================================================= */
/* Mark rendu via mask-image → teintable selon le fond (variable --craby-color) */
.craby {
  position: absolute; z-index: 2; pointer-events: none;
  width: clamp(56px, 6vw, 88px); aspect-ratio: 104 / 92;
  background-color: var(--craby-color, var(--violet));
  -webkit-mask: url(../assets/mascotte/craby.svg) center / contain no-repeat;
          mask: url(../assets/mascotte/craby.svg) center / contain no-repeat;
  animation: craby-float 6s ease-in-out infinite;
}
@keyframes craby-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
}
/* Discret en haut du hero, violet doux */
.craby--hero { right: clamp(12px, 6vw, 72px); top: calc(var(--nav-h) + 10px); width: clamp(48px, 5vw, 72px); opacity: 0.85; }
/* Filigrane très discret derrière la méthode (encre, faible opacité) */
.craby--peek { bottom: -10px; right: 4%; width: clamp(48px, 5vw, 70px); --craby-color: var(--violet-deep); opacity: 0.22; animation-duration: 7s; }

@media (max-width: 760px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .method-split { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .benefit-list { grid-template-columns: 1fr; }
  .craby--hero { display: none; }
}
@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__glow, .hero__glow--2, .craby { animation: none !important; }
}

/* =========================================================
   ACCESSIBILITÉ — focus clavier visible
   ========================================================= */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }
