/* ══════════════════════════════════════════
   OZ ACADEMY — Design system
   ══════════════════════════════════════════ */
:root {
  /* Marque */
  --teal: #62b6ad;
  --teal-600: #3f9a90;
  --teal-700: #2f7c74;
  --teal-300: #93d6ce;
  --purple: #9a8db1;
  --purple-600: #7a6b95;
  --purple-300: #c5bad7;
  --sand: #f2be3c;
  --sand-soft: #ffd977;

  /* Neutres */
  --ink: #101614;
  --ink-2: #18211e;
  --slate: #464f47;
  --light: #ececec;
  --cream: #fbfaf8;
  --white: #ffffff;

  --txt: #1d2522;
  --txt-soft: rgba(29, 37, 34, 0.66);
  --line: rgba(29, 37, 34, 0.09);

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 40px;

  --sh-sm: 0 6px 18px rgba(16, 22, 20, 0.06);
  --sh-md: 0 18px 44px rgba(16, 22, 20, 0.1);
  --sh-lg: 0 34px 80px rgba(16, 22, 20, 0.16);

  --grad: linear-gradient(115deg, var(--teal) 0%, var(--purple) 100%);
  --grad-warm: linear-gradient(115deg, var(--teal) 0%, var(--sand) 100%);

  --font-d: "Bricolage Grotesque", "Manrope", system-ui, sans-serif;
  --font-b: "Manrope", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--txt);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-d); letter-spacing: -0.03em; margin: 0; line-height: 1.05; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(1360px, calc(100% - 48px)); margin: 0 auto; }
@media (max-width: 760px) { .container { width: calc(100% - 28px); } }
.section { padding: clamp(70px, 9vw, 60px) 0; position: relative; }

/* ── Reveal au scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ══════════ BOUTONS ══════════ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .25s ease;
}
.btn svg { width: 17px; height: 17px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-lg { padding: 1.05rem 1.7rem; font-size: 1rem; }

.btn-primary {
  color: #fff;
  background: linear-gradient(115deg, var(--teal-600), var(--teal));
  box-shadow: 0 14px 30px rgba(63, 154, 144, .35), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(63, 154, 144, .45); }

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(16, 22, 20, .3);
}
.btn-dark:hover { transform: translateY(-3px); background: #000; }

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .14); transform: translateY(-3px); }

.play-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad);
  display: inline-grid; place-items: center; flex: none;
  box-shadow: 0 0 0 0 rgba(98,182,173,.6);
  animation: ping 2.4s ease-out infinite;
}
.play-dot::after { content: ""; border-left: 7px solid #fff; border-top: 5px solid transparent; border-bottom: 5px solid transparent; margin-left: 3px; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(98,182,173,.55); } 70%,100% { box-shadow: 0 0 0 14px rgba(98,182,173,0); } }

.btn-glow {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 26px rgba(122, 107, 149, .32);
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(122, 107, 149, .45); }

/* ══════════ ANNONCE ══════════ */
.announce {
  background: var(--ink);
  color: rgba(255, 255, 255, .82);
  font-size: .8rem;
  overflow: hidden;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.announce__track {
  display: flex; gap: 26px; width: max-content;
  animation: scroll-x 34s linear infinite;
}
.announce__track b { color: var(--teal-300); }
.announce__track span[aria-hidden] { color: var(--purple-300); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ══════════ NAV ══════════ */
.topbar {
  position: sticky; top: 0; z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.topbar.stuck {
  background: rgba(251, 250, 248, .82);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(16,22,20,.05);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  border-radius: 14px; overflow: hidden;
  display: block; flex: none;
  background: #eceeed; /* même gris que le fond du logo */
  box-shadow: 0 0 0 1px rgba(98, 182, 173, .25), 0 10px 22px rgba(98, 182, 173, .28);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.05); }
.brand-mark img { height: 50px; width: auto; }
.site-footer .brand-mark { box-shadow: none; }
.site-footer .brand-mark img { height: 58px; }
.brand-text { font-family: var(--font-d); font-weight: 800; font-size: 1.22rem; letter-spacing: -0.04em; }
.brand-text em { font-style: normal; font-weight: 500; color: var(--teal-600); }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  position: relative; padding: 8px 14px; border-radius: 999px;
  font-weight: 600; font-size: .94rem; color: var(--txt-soft);
  transition: color .2s ease, background .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px;
  background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover { color: var(--txt); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 44px; height: 40px; border-radius: 12px; background: rgba(29,37,34,.06); border: 0; padding: 11px 12px; flex-direction: column; justify-content: space-between; }
.burger span { display: block; height: 2px; background: var(--txt); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════ HERO ══════════ */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 78% 8%, #1c2a27 0%, var(--ink) 55%);
  color: #fff;
  padding: clamp(50px, 7vw, 84px) 0 0;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}
/* Les blobs sont clippés par .aurora pour laisser les compteurs déborder du hero */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; border-radius: inherit; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.blob-1 { width: 620px; height: 620px; background: var(--teal); top: -220px; right: -140px; animation: drift 18s ease-in-out infinite alternate; }
.blob-2 { width: 520px; height: 520px; background: var(--purple); bottom: -220px; left: -120px; opacity: .42; animation: drift 22s ease-in-out infinite alternate-reverse; }
.blob-3 { width: 360px; height: 360px; background: var(--sand); top: 34%; left: 46%; opacity: .16; animation: drift 26s ease-in-out infinite alternate; }
@keyframes drift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(60px, 50px, 0) scale(1.14); }
}
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(80% 60% at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000 0%, transparent 78%);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 40px; align-items: center;
  padding-bottom: 40px;
}

.social-proof { display: inline-flex; align-items: center; gap: 14px; padding: 8px 18px 8px 8px; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px); }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-size: .68rem; font-weight: 800; color: #fff;
  border: 2px solid var(--ink-2);
  margin-left: calc(var(--i) * -0px - 10px);
  background: linear-gradient(135deg, var(--teal), var(--purple));
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background: linear-gradient(135deg, var(--purple), var(--teal-600)); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, var(--sand), var(--teal)); color: var(--ink); }
.avatars span:nth-child(4) { background: linear-gradient(135deg, var(--teal-700), var(--purple-600)); }
.avatars .avatars__more { width: auto; min-width: 34px; padding: 0 9px; border-radius: 999px; background: rgba(255,255,255,.16) !important; }
.stars { color: var(--sand-soft); letter-spacing: 2px; font-size: .82rem; line-height: 1; }
.social-proof__text small { color: rgba(255,255,255,.72); font-size: .82rem; }
.social-proof__text b { color: #fff; }

.hero-copy h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.9rem);
  font-weight: 800;
  margin: 22px 0 20px;
  letter-spacing: -0.045em;
}
.h1-last { display: block; }

/* Mot qui tourne */
.rotator {
  position: relative;
  display: inline-grid;
  vertical-align: bottom;
}
.rotator__item {
  grid-area: 1 / 1;
  background: linear-gradient(95deg, #7fe3d6 0%, #a9d0e8 42%, #bda6e2 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  opacity: 0; transform: translateY(60%) rotateX(-40deg);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.rotator__item.is-active { opacity: 1; transform: none; }
.rotator__item.is-out { opacity: 0; transform: translateY(-60%) rotateX(40deg); }

.hero-lead { font-size: 1.08rem; line-height: 1.75; color: rgba(255,255,255,.74); max-width: 560px; }
.hero-lead b { color: var(--teal-300); font-weight: 700; }
.hero-lead p + p { margin-top: 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; font-size: .88rem; color: rgba(255,255,255,.62); }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--teal-300); flex: none; }

/* ── Visuel hero ── */
.hero-visual { position: relative; height: 520px; }
.hv-card {
  position: absolute;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(18px);
  border-radius: var(--r-md);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.hv-main { width: min(360px, 92%); right: 0; top: 6px; padding: 20px; }
.hv-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hv-ava { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--grad); font-weight: 800; font-size: .8rem; color: #fff; flex: none; }
.hv-head strong { display: block; font-size: .96rem; }
.hv-head small { color: rgba(255,255,255,.55); font-size: .76rem; }
.hv-live { margin-left: auto; font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--teal-300); background: rgba(98,182,173,.16); padding: 5px 9px; border-radius: 999px; white-space: nowrap; }

.hv-steps { display: grid; gap: 9px; margin-bottom: 18px; }
.hv-step { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.55); }
.hv-step i { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); flex: none; position: relative; }
.hv-step.done { color: rgba(255,255,255,.85); }
.hv-step.done i { background: var(--teal); border-color: var(--teal); }
.hv-step.done i::after { content: ""; position: absolute; inset: 0; background: no-repeat center/9px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23101614' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"); }
.hv-step.now { color: #fff; font-weight: 700; }
.hv-step.now i { border-color: var(--sand); box-shadow: 0 0 0 0 rgba(242,190,60,.5); animation: ping-s 2s ease-out infinite; }
@keyframes ping-s { 0% { box-shadow: 0 0 0 0 rgba(242,190,60,.5); } 70%,100% { box-shadow: 0 0 0 10px rgba(242,190,60,0); } }

.hv-progress__bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; }
.hv-progress__bar span { display: block; height: 100%; width: var(--w); border-radius: 999px; background: linear-gradient(90deg, var(--teal), var(--purple-300)); animation: grow 1.6s cubic-bezier(.2,.8,.2,1) both; }
@keyframes grow { from { width: 0; } }
.hv-progress__meta { display: flex; justify-content: space-between; margin-top: 8px; font-size: .76rem; color: rgba(255,255,255,.6); }
.hv-progress__meta b { color: var(--teal-300); }

.hv-chat { left: 0; top: 330px; padding: 0; border: 0; background: none; backdrop-filter: none; box-shadow: none; max-width: 248px; }
.chat-bubble {
  background: linear-gradient(135deg, #dcf8c6, #c9f2b0);
  color: #12291a; padding: 13px 15px 8px; border-radius: 18px 18px 18px 5px;
  font-size: .88rem; line-height: 1.45; box-shadow: 0 18px 40px rgba(0,0,0,.3);
}
.chat-bubble small { display: block; text-align: right; font-size: .66rem; color: rgba(18,41,26,.5); margin-top: 3px; }

.hv-audio { right: 0; top: 348px; display: flex; align-items: center; gap: 12px; padding: 12px 16px; }
.mini-play { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; flex: none; }
.mini-play::after { content: ""; border-left: 8px solid #fff; border-top: 5px solid transparent; border-bottom: 5px solid transparent; margin-left: 2px; }
.mini-wave { display: flex; align-items: center; gap: 3px; height: 22px; }
.mini-wave i { width: 3px; border-radius: 2px; background: var(--teal-300); height: 40%; animation: bounce 1.1s ease-in-out infinite alternate; }
.mini-wave i:nth-child(2n) { background: var(--purple-300); animation-delay: .12s; height: 80%; }
.mini-wave i:nth-child(3n) { animation-delay: .24s; height: 60%; }
.mini-wave i:nth-child(4n) { animation-delay: .36s; height: 100%; }
@keyframes bounce { from { transform: scaleY(.35); } to { transform: scaleY(1); } }
.hv-audio small { font-size: .72rem; color: rgba(255,255,255,.6); }

.hv-badge {
  position: absolute; right: 26px; top: -20px;
  background: #fff; color: var(--ink);
  font-weight: 800; font-size: .82rem;
  padding: 11px 16px; border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
}
.hv-badge--2 { right: 6px; top: auto; bottom: 6px; background: var(--sand); }

.float-a { animation: fl 7s ease-in-out infinite alternate; }
.float-b { animation: fl 5.5s ease-in-out .4s infinite alternate-reverse; }
.float-c { animation: fl 6.4s ease-in-out .8s infinite alternate; }
.float-d { animation: fl 5s ease-in-out .2s infinite alternate-reverse; }
.float-e { animation: fl 6.8s ease-in-out .6s infinite alternate; }
@keyframes fl { from { transform: translateY(-8px); } to { transform: translateY(10px); } }

/* ── Compteurs ── */
.counters {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: -60px;
  backdrop-filter: blur(20px);
}
.counter { background: rgba(16,22,20,.72); padding: 26px 24px; }
.counter strong {
  display: flex; align-items: baseline; gap: 2px;
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  letter-spacing: -0.05em;
  background: linear-gradient(120deg, #fff, var(--teal-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.counter i { font-style: normal; font-size: .42em; font-weight: 700; margin-left: 4px; color: var(--teal); -webkit-text-fill-color: var(--teal); }
.counter span { display: block; margin-top: 4px; font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.4; }

/* ══════════ EN-TÊTES DE SECTION ══════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px 7px 11px; border-radius: 999px;
  background: rgba(98, 182, 173, .13);
  color: var(--teal-700);
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(98,182,173,.2); }
.eyebrow--light { background: rgba(255,255,255,.18); color: #fff; }
.eyebrow--light i { background: var(--sand); box-shadow: 0 0 0 4px rgba(242,190,60,.25); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { max-width: 660px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  margin: 18px 0 14px;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  font-weight: 800;
}
.section-head p { color: var(--txt-soft); font-size: 1.04rem; line-height: 1.7; }

/* Surlignage marqueur */
.hl { position: relative; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; left: -.08em; right: -.08em; bottom: .07em; height: .34em;
  background: linear-gradient(90deg, rgba(98,182,173,.42), rgba(154,141,177,.42));
  border-radius: .2em; z-index: -1;
  transform: rotate(-1deg);
}

/* ══════════ PARTENAIRES ══════════ */
.partners { padding: 92px 0 40px; }
.partners__title { text-align: center; color: var(--txt-soft); font-size: .92rem; margin-bottom: 26px; }
.partners__title b { color: var(--txt); }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  padding: 7px 0;
}
.marquee__track { display: flex; gap: 14px; width: max-content; animation: scroll-x 42s linear infinite; }
.marquee--rev .marquee__track { animation-duration: 52s; animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee--rev { margin-top: 4px; }
.logo-tile {
  flex: none;
  display: grid; place-items: center;
  height: 84px; min-width: 110px; padding: 12px 24px;
  border-radius: var(--r-sm);
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.logo-tile img {
  height: 56px; width: auto; max-width: 190px;
  object-fit: contain; border-radius: 8px;
}
.logo-tile:hover { transform: translateY(-3px); border-color: rgba(98,182,173,.5); box-shadow: var(--sh-md); }
.partners__legal {
  max-width: 780px; margin: 24px auto 0;
  text-align: center; font-size: .76rem; line-height: 1.6;
  color: var(--txt-soft); opacity: .85;
}

/* ══════════ SERVICES ══════════ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.section-head p b { color: var(--txt); }
.scard {
  --tint: var(--teal);
  position: relative; isolation: isolate;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px 24px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
}
.scard--teal { --tint: var(--teal); }
.scard--purple { --tint: var(--purple); }
.scard--sand { --tint: var(--sand); }
.scard--deep { --tint: var(--teal-700); }
.scard::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px;
  background: linear-gradient(90deg, var(--tint), transparent);
  opacity: .9;
}
.scard__glow {
  position: absolute; z-index: -1; width: 260px; height: 260px; border-radius: 50%;
  background: var(--tint); filter: blur(70px); opacity: 0;
  top: -90px; right: -70px;
  transition: opacity .5s ease;
}
.scard:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.scard:hover .scard__glow { opacity: .26; }
.scard.is-featured { background: linear-gradient(180deg, #fff, rgba(154,141,177,.07)); border-color: rgba(154,141,177,.3); }
.scard__tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--purple); color: #fff;
  font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px;
  box-shadow: 0 8px 18px rgba(154,141,177,.4);
}
.scard__tag--sand { background: var(--sand); color: var(--ink); box-shadow: 0 8px 18px rgba(242,190,60,.4); }
.scard__icon {
  width: 54px; height: 54px; border-radius: 17px;
  display: grid; place-items: center; padding: 14px;
  background: color-mix(in srgb, var(--tint) 15%, transparent);
  color: var(--tint);
  margin-bottom: 20px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.scard:hover .scard__icon { transform: rotate(-7deg) scale(1.08); }
.scard h3 { font-size: 1.55rem; font-weight: 800; margin-bottom: 10px; }
.scard > p { color: var(--txt-soft); line-height: 1.65; margin-bottom: 18px; }
.scard ul { display: grid; gap: 10px; margin-bottom: 24px; }
.scard li { position: relative; padding-left: 26px; font-size: .94rem; font-weight: 500; }
.scard li::before {
  content: ""; position: absolute; left: 0; top: .32em;
  width: 16px; height: 16px; border-radius: 50%;
  background: color-mix(in srgb, var(--tint) 22%, transparent);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--tint) 55%, transparent);
}
.scard li::after {
  content: ""; position: absolute; left: 4px; top: .58em;
  width: 8px; height: 4px;
  border-left: 2px solid var(--tint); border-bottom: 2px solid var(--tint);
  transform: rotate(-45deg);
}
.scard__free {
  display: flex; align-items: flex-start; gap: 8px;
  margin: -6px 0 18px; padding: 10px 12px; border-radius: 12px;
  background: rgba(242,190,60,.16); border: 1px solid rgba(242,190,60,.45);
  color: #7a5600; font-weight: 700; font-size: .84rem; line-height: 1.4;
}
.scard__free .bi { flex: none; font-size: .95rem; margin-top: 1px; }
.scard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px dashed var(--line); }
.pill { font-size: .8rem; font-weight: 700; color: var(--slate); background: var(--light); padding: 6px 12px; border-radius: 999px; }
.scard__foot a { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; font-size: .92rem; color: var(--tint); }
.scard__foot a svg { width: 16px; height: 16px; transition: transform .25s ease; }
.scard__foot a:hover svg { transform: translateX(4px); }

/* ══════════ FORMATIONS ══════════ */
.formations { background: linear-gradient(180deg, transparent, rgba(236,236,236,.55) 20%, rgba(236,236,236,.55) 80%, transparent); }
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tool {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px 22px; box-shadow: var(--sh-sm);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.tool:hover { transform: translateY(-7px) rotate(-.6deg); box-shadow: var(--sh-md); }
.tool__badge {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 15px;
  background: rgba(var(--tone), .14);
  color: rgb(var(--tone));
  font-family: var(--font-d); font-weight: 800; font-size: .95rem;
  margin-bottom: 16px;
}
.tool h3 { font-size: 1.28rem; font-weight: 800; margin-bottom: 8px; }
.tool p { color: var(--txt-soft); font-size: .9rem; line-height: 1.6; min-height: 58px; }
.tool__meta { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: var(--txt-soft); margin: 16px 0 8px; }
.tool__meta b { color: rgb(var(--tone)); font-size: .92rem; }
.tool__bar { height: 6px; border-radius: 999px; background: rgba(29,37,34,.07); overflow: hidden; }
.tool__bar i { display: block; height: 100%; width: 0; border-radius: 999px; background: rgb(var(--tone)); transition: width 1.2s cubic-bezier(.2,.8,.2,1); }
.tool.in .tool__bar i { width: var(--w); }

/* ══════════ MÉTHODE ══════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 34px; left: 6%; right: 6%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(98,182,173,.5) 0 10px, transparent 10px 20px);
}
.step { position: relative; padding-top: 0; text-align: center; }
.step__num {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 68px; height: 68px; margin: 0 auto 18px;
  border-radius: 22px;
  background: #fff; border: 1px solid var(--line);
  font-family: var(--font-d); font-weight: 800; font-size: 1.2rem;
  color: var(--teal-700);
  box-shadow: var(--sh-sm);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), background .4s ease, color .4s ease;
}
.step:hover .step__num { transform: translateY(-6px) rotate(-8deg); background: var(--grad); color: #fff; }
.step h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--txt-soft); font-size: .93rem; line-height: 1.65; }

/* ══════════ AVIS ══════════ */
.reviews { background: var(--ink); color: #fff; border-radius: var(--r-xl); overflow: hidden; }
.reviews .section-head h2 { color: #fff; }
.reviews .section-head p { color: rgba(255,255,255,.6); }
.reviews .eyebrow { background: rgba(98,182,173,.16); color: var(--teal-300); }

.audio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audio-card {
  min-width: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-md);
  padding: 22px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s ease, background .4s ease;
}
.audio-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(98,182,173,.4); }
.audio-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.ava {
  width: 44px; height: 44px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  font-weight: 800; font-size: .8rem; color: #fff;
  background: var(--grad);
}
.ava--teal { background: linear-gradient(135deg, var(--teal), var(--teal-700)); }
.ava--purple { background: linear-gradient(135deg, var(--purple), var(--purple-600)); }
.ava--sand { background: linear-gradient(135deg, var(--sand-soft), var(--sand)); color: var(--ink); }
.audio-card__head strong { display: block; font-size: .98rem; }
.audio-card__head small { color: rgba(255,255,255,.5); font-size: .78rem; }
.badge-ok {
  margin-left: auto; flex: none;
  font-size: .68rem; font-weight: 800;
  color: var(--teal-300); background: rgba(98,182,173,.14);
  border: 1px solid rgba(98,182,173,.3);
  padding: 5px 10px; border-radius: 999px;
}

.player {
  display: flex; align-items: center; gap: 14px; min-width: 0;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 12px 16px;
  margin-bottom: 16px;
}
.play {
  width: 42px; height: 42px; border-radius: 50%; border: 0; flex: none;
  background: var(--grad); color: #fff;
  display: grid; place-items: center; padding: 11px;
  box-shadow: 0 8px 20px rgba(98,182,173,.35);
  transition: transform .25s ease;
}
.play:hover { transform: scale(1.08); }
.play svg { fill: currentColor; stroke: none; }
.play .ic-pause, .player.playing .ic-play { display: none; }
.player.playing .ic-pause { display: block; }
.player.playing .play { animation: pulse-ring 2s ease-out infinite; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(98,182,173,.5); } 70%,100% { box-shadow: 0 0 0 16px rgba(98,182,173,0); } }

.wave { flex: 1 1 0; min-width: 0; overflow: hidden; display: flex; align-items: center; gap: 3px; height: 36px; }
.wave b {
  flex: 1 1 0; min-width: 1px; border-radius: 999px;
  background: rgba(255,255,255,.22);
  height: var(--h);
  transition: background .2s ease, transform .2s ease;
}
.wave b.on { background: linear-gradient(180deg, var(--teal-300), var(--purple)); }
.player.playing .wave b.on { animation: wig .6s ease-in-out infinite alternate; }
@keyframes wig { to { transform: scaleY(1.25); } }
.time { font-size: .78rem; color: rgba(255,255,255,.55); font-variant-numeric: tabular-nums; flex: none; }
.audio-card > p { color: rgba(255,255,255,.78); font-size: .96rem; line-height: 1.65; font-style: italic; }

/* ── Captures d'écran ── */
.shots { margin-top: 56px; }
.shots__row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.shots__track { display: flex; gap: 18px; width: max-content; padding: 6px 0; animation: scroll-x 60s linear infinite; }
.shots__row:hover .shots__track { animation-play-state: paused; }
.shot {
  width: 320px; flex: none; margin: 0;
  background: #f6f5f1;
  border-radius: 20px; padding: 14px;
  box-shadow: 0 22px 50px rgba(0,0,0,.34);
  transform: rotate(var(--rot, 0deg));
  transition: transform .35s ease;
}
.shot:nth-child(odd) { --rot: -1.1deg; }
.shot:nth-child(even) { --rot: 1.1deg; }
.shot:hover { transform: rotate(0deg) translateY(-6px) scale(1.02); }
.shot__head {
  display: flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: .88rem; color: var(--ink);
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.shot__head .ava { width: 30px; height: 30px; border-radius: 10px; font-size: .64rem; }
.shot__head em { margin-left: auto; font-style: normal; font-size: .72rem; color: rgba(0,0,0,.4); font-weight: 600; }
.bubbles { display: grid; gap: 8px; }
.bubbles p { font-size: .87rem; line-height: 1.45; padding: 10px 13px; max-width: 88%; color: #14211c; }
.b-in { background: #fff; border-radius: 16px 16px 16px 4px; box-shadow: 0 1px 2px rgba(0,0,0,.08); }
.b-out { background: #dcf8c6; border-radius: 16px 16px 4px 16px; margin-left: auto; }
.b-hi { background: linear-gradient(135deg, rgba(98,182,173,.22), rgba(154,141,177,.22)); font-weight: 700; }

/* ══════════ FAQ ══════════ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: start; }
.faq-intro h2 { margin: 18px 0 14px; font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 800; }
.faq-intro p { color: var(--txt-soft); margin-bottom: 24px; }
.faq-list { display: grid; gap: 12px; }
.qa {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 4px 22px; box-shadow: var(--sh-sm);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.qa[open] { border-color: rgba(98,182,173,.4); box-shadow: var(--sh-md); }
.qa summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0; font-family: var(--font-d); font-weight: 700; font-size: 1.08rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::before {
  content: "+"; order: 3; margin-left: auto;
  display: grid; place-items: center; flex: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light); color: var(--teal-700);
  font-size: 1.15rem; font-weight: 700; line-height: 1;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .3s ease, color .3s ease;
}
.qa[open] summary::before { transform: rotate(135deg); background: var(--teal); color: #fff; }
.qa p { padding: 0 0 20px; color: var(--txt-soft); line-height: 1.7; max-width: 62ch; }

/* ══════════ CTA ══════════ */
.cta { padding: 20px 0 100px; }
.cta-box {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px) clamp(26px, 5vw, 70px);
  background: linear-gradient(125deg, var(--teal-700) 0%, var(--teal) 38%, var(--purple) 100%);
  color: #fff;
  box-shadow: 0 40px 90px rgba(63,154,144,.35);
  text-align: center;
}
.cta-glow {
  position: absolute; z-index: -1; inset: -40%;
  background: radial-gradient(closest-side, rgba(255,255,255,.35), transparent 70%);
  animation: swirl 14s linear infinite;
}
@keyframes swirl { to { transform: rotate(360deg); } }
.cta-box h2 { margin: 20px 0 14px; font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 800; }
.cta-box > p { color: rgba(255,255,255,.85); margin-bottom: 28px; }
.cta-form {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  max-width: 560px; margin: 0 auto 14px;
}
.cta-form input,
.cta-form select {
  flex: 1 1 260px; min-width: 0;
  border: 1px solid rgba(255,255,255,.3);
  background-color: rgba(255,255,255,.14);
  color: #fff; font: inherit; font-weight: 600;
  padding: 1.05rem 1.4rem; border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: border-color .25s ease, background-color .25s ease;
}
.cta-form select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  padding-right: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.2rem center; background-size: 18px;
}
.cta-form select:invalid { color: rgba(255,255,255,.75); }
.cta-form select option { color: var(--ink); background: #fff; }
.cta-form input::placeholder { color: rgba(255,255,255,.6); }
.cta-form input:focus,
.cta-form select:focus { outline: none; border-color: #fff; background-color: rgba(255,255,255,.22); }
.cta-form input.err,
.cta-form select.err { border-color: #ffb3a7; background-color: rgba(255,120,100,.2); }
.cta-note { font-size: .84rem; color: rgba(255,255,255,.72); }
.cta-note.ok { color: #fff; font-weight: 700; }
.cta-avatars { display: flex; align-items: center; justify-content: center; gap: 0; margin-top: 30px; flex-wrap: wrap; }
.cta-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .68rem; font-weight: 800;
  background: rgba(255,255,255,.22); border: 2px solid rgba(255,255,255,.5);
  margin-left: -10px; backdrop-filter: blur(6px);
}
.cta-avatars span:first-child { margin-left: 0; }
.cta-avatars small { margin-left: 14px; font-size: .84rem; color: rgba(255,255,255,.85); }

/* ══════════ FOOTER ══════════ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-top: 66px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text em { color: var(--teal-300); }
.footer-brand p { max-width: 340px; line-height: 1.7; font-size: .93rem; }
.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11);
  font-size: .74rem; font-weight: 800; color: rgba(255,255,255,.8);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.socials a:hover { transform: translateY(-4px); background: var(--grad); color: #fff; border-color: transparent; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; font-family: var(--font-b); font-weight: 800; }
.footer-col a, .footer-col span { font-size: .93rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--teal-300); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0 28px; font-size: .86rem; color: rgba(255,255,255,.45);
}
.footer-legal a:hover { color: var(--teal-300); }

/* ══════════ TOAST ══════════ */
.toast {
  position: fixed; left: 22px; bottom: 22px; z-index: 80;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 12px 18px 12px 14px;
  box-shadow: var(--sh-lg);
  transform: translateY(140%); opacity: 0;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .45s ease;
  max-width: min(330px, calc(100vw - 44px));
}
.toast.show { transform: none; opacity: 1; }
.toast__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); flex: none; box-shadow: 0 0 0 4px rgba(98,182,173,.2); animation: ping-s 2s ease-out infinite; }
.toast__body b { display: block; font-size: .9rem; }
.toast__body small { color: var(--txt-soft); font-size: .8rem; }

/* ══════════ FAB mobile ══════════ */
.fab {
  display: none;
  position: fixed; right: 16px; bottom: 16px; z-index: 70;
  background: var(--grad); color: #fff;
  font-weight: 800; font-size: .92rem;
  padding: 14px 22px; border-radius: 999px;
  box-shadow: 0 16px 34px rgba(63,154,144,.45);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1180px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { height: 440px; margin-top: 20px; }
  .hv-main { right: auto; left: 50%; transform: translateX(-50%); }
  .float-a { animation: none; }
  .services-grid, .tools-grid, .audio-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .steps::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute; top: 100%; left: 20px; right: 20px;
    flex-direction: column; gap: 2px;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--r-md); padding: 12px;
    box-shadow: var(--sh-lg);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { padding: 12px 14px; font-size: 1rem; }
  .burger { display: flex; }
  .nav-actions .btn-glow { display: none; }
  .fab { display: block; }

  .hero { border-radius: 0 0 26px 26px; }
  .hero-copy h1 { font-size: 2.5rem; }
  .rotator { display: block; }
  .rotator__item { white-space: normal; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { height: 380px; }
  .hv-main { width: 100%; top: 30px; }
  .hv-chat { max-width: 200px; top: 300px; }
  .hv-audio { top: 316px; right: 0; padding: 9px 12px; }
  .hv-badge { top: 0; right: 6px; font-size: .74rem; padding: 9px 13px; }
  .hv-badge--2 { display: none; }

  .counters { grid-template-columns: 1fr 1fr; margin-bottom: -40px; }
  .services-grid, .tools-grid, .audio-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .tool p { min-height: 0; }
  .shot { width: 270px; }
  .wave { gap: 2px; }
  .player { gap: 10px; padding: 12px; }
  .badge-ok { margin-left: 0; }
  .reviews { border-radius: 26px; }
  .toast { left: 12px; right: 12px; bottom: 82px; max-width: none; }
  .partners { padding-top: 76px; }
  .partners__legal { font-size: .72rem; }
  .brand-mark { border-radius: 12px; }
  .brand-mark img { height: 42px; }
  .brand-text { font-size: 1.1rem; }
  .marquee__track { gap: 10px; }
  .logo-tile { height: 68px; min-width: 88px; padding: 10px 16px; }
  .logo-tile img { height: 44px; max-width: 150px; }
  .hero-lead { font-size: 1rem; line-height: 1.7; }
  .cta-form .btn { width: 100%; }
  .cta-form select { flex-basis: 100%; }
}

/* ══════════ MOTION RÉDUIT ══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ══════════ UTILITAIRES ══════════ */
[hidden] { display: none !important; }

/* Icônes (Bootstrap Icons) */
.bi { display: inline-block; line-height: 1; vertical-align: -.125em; }
.announce .bi { color: var(--teal-300); margin-right: 3px; }
.hv-badge .bi { color: var(--teal-600); margin-right: 4px; }
.t-type .bi, .filters .bi, .t-meta .bi { margin-right: 3px; }
.t-meta .bi { opacity: .75; }

/* Logos ponctuels (Campus France, OZ Academy) */
.scard__title { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.scard__title h3 { margin-bottom: 10px; }
.scard__logo { height: 40px; width: auto; max-width: 88px; object-fit: contain; border-radius: 8px; background: #fff; padding: 3px 6px; box-shadow: var(--sh-sm); }
.cta-logo { display: block; width: 76px; height: auto; margin: 0 auto 18px; border-radius: 18px; box-shadow: 0 16px 34px rgba(0,0,0,.22); }
.aside-logo { width: 58px; height: auto; margin-bottom: 18px; border-radius: 16px; }
.form-success__logo { width: 62px; height: auto; margin: 30px auto 0; border-radius: 16px; opacity: .9; }
.nav-links a.is-active { color: var(--txt); }
.nav-links a.is-active::after { transform: scaleX(1); }
.grad-text {
  background: linear-gradient(95deg, #7fe3d6 0%, #a9d0e8 42%, #bda6e2 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ══════════ TÉMOIGNAGES DYNAMIQUES ══════════ */
.t-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 16px; min-height: 34px; }
.t-type {
  flex: none; font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal-300); background: rgba(98,182,173,.14); padding: 5px 10px; border-radius: 999px;
}
.t-logos { display: flex; gap: 6px; min-width: 0; }
.t-logo { display: grid; place-items: center; height: 34px; padding: 4px 8px; background: #fff; border-radius: 9px; box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.t-logo img { max-height: 26px; width: auto; max-width: 78px; object-fit: contain; }
.t-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.t-meta span {
  font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.66);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 4px 10px; border-radius: 999px;
}

.captures-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; margin-top: 40px; }
.capture-card {
  min-width: 0;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-md); padding: 14px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s ease, background .4s ease;
}
.capture-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(98,182,173,.4); }
.capture-card__img {
  position: relative; display: block; width: 100%; padding: 0; border: 0;
  aspect-ratio: 3 / 4; overflow: hidden; border-radius: 14px;
  background: #0b1110; cursor: zoom-in;
}
.capture-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.capture-card__img:hover img { transform: scale(1.04); }
.capture-card__img::after {
  content: "⤢ Agrandir"; position: absolute; right: 10px; bottom: 10px;
  font-size: .7rem; font-weight: 800; color: #fff;
  background: rgba(16,22,20,.75); backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 999px;
}
.capture-card__img:focus-visible { outline: 3px solid var(--teal-300); outline-offset: 3px; }
.capture-card__foot { display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.capture-card__foot .ava { width: 36px; height: 36px; border-radius: 12px; font-size: .7rem; }
.capture-card__foot > div { min-width: 0; flex: 1; }
.capture-card__foot strong { display: block; font-size: .92rem; }
.capture-card__foot small { display: block; font-size: .76rem; line-height: 1.35; color: rgba(255,255,255,.5); }
.reviews__more { display: flex; justify-content: center; margin-top: 44px; }

/* Agrandissement */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center; padding: 20px;
  background: rgba(8,12,11,.9); backdrop-filter: blur(6px);
}
.lightbox figure { margin: 0; display: grid; justify-items: center; gap: 12px; }
.lightbox img { max-width: min(560px, 100%); max-height: calc(100vh - 110px); width: auto; border-radius: 16px; box-shadow: var(--sh-lg); }
.lightbox figcaption { color: rgba(255,255,255,.8); font-weight: 700; font-size: .92rem; }
.lightbox__close {
  position: absolute; top: 16px; right: 16px;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: #fff; color: var(--ink); font-size: 1.6rem; line-height: 1;
}

/* ══════════ PAGE TÉMOIGNAGES ══════════ */
.page-head { position: relative; z-index: 2; max-width: 780px; text-align: center; padding: 10px 0 56px; }
.page-head h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); font-weight: 800; letter-spacing: -.045em; margin: 20px 0 18px; }
.page-head p { color: rgba(255,255,255,.72); font-size: 1.08rem; line-height: 1.75; max-width: 620px; margin: 0 auto; }
.wall-section { margin-top: 110px; }
.wall-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.wall-head .section-head { margin-bottom: 0; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filters button {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82); padding: 10px 18px; border-radius: 999px;
  font-weight: 700; font-size: .9rem; transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.filters button:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.filters button b { font-size: .72rem; background: rgba(255,255,255,.14); padding: 2px 8px; border-radius: 999px; }
.filters button.is-on { background: var(--grad); border-color: transparent; color: #fff; }
.wall-block { margin-top: 52px; }
.wall-block:first-of-type { margin-top: 8px; }
.wall-block__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.wall-block__head h3 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.95rem); font-weight: 800; letter-spacing: -.03em; }
.wall-block__head h3 .bi { color: var(--teal-300); margin-right: 6px; }
.wall-block__count {
  font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(98,182,173,.16); color: var(--teal-300); border: 1px solid rgba(98,182,173,.3);
}
.wall-block__sub { color: rgba(255,255,255,.55); font-size: .94rem; margin: 8px 0 24px; }
.wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.wall__empty {
  grid-column: 1 / -1; text-align: center; padding: 56px 20px;
  color: rgba(255,255,255,.62); border: 1px dashed rgba(255,255,255,.18); border-radius: var(--r-md);
}
.wall .capture-card__img { aspect-ratio: 4 / 5; }
.wall-legal { max-width: 780px; margin: 40px auto 0; text-align: center; font-size: .74rem; line-height: 1.6; color: rgba(255,255,255,.45); }
.page-cta { padding-top: 70px; }

/* ══════════ PAGE DEMANDE (formulaires) ══════════ */
.btn-light { background: #fff; color: var(--txt); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.btn-light:hover { transform: translateY(-3px); border-color: rgba(98,182,173,.5); }

.form-hero .page-head { padding-bottom: 40px; }
.form-types { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: -56px; }
.form-type {
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 18px 20px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.14); background: rgba(16,22,20,.8); backdrop-filter: blur(18px);
  color: #fff;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.form-type:hover { transform: translateY(-4px); border-color: rgba(98,182,173,.5); }
.form-type:focus-visible { outline: 3px solid var(--teal-300); outline-offset: 3px; }
.form-type__emoji { width: 50px; height: 50px; flex: none; display: grid; place-items: center; font-size: 1.4rem; border-radius: 16px; background: rgba(255,255,255,.08); }
.form-type__emoji--logo { background: #fff; padding: 6px; }
.form-type__emoji--logo img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; }
.form-card__emoji--logo { background: #fff; border: 1px solid var(--line); padding: 6px; }
.form-card__emoji--logo img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; }
.form-type strong { display: block; font-family: var(--font-d); font-size: 1.1rem; letter-spacing: -.02em; line-height: 1.2; }
.form-type small { display: block; margin-top: 3px; color: rgba(255,255,255,.6); font-size: .82rem; line-height: 1.4; }
.form-type.is-on { background: #fff; color: var(--txt); border-color: transparent; box-shadow: 0 24px 50px rgba(0,0,0,.28); }
.form-type.is-on small { color: var(--txt-soft); }
.form-type.is-on .form-type__emoji { background: var(--grad); }

.form-section { padding-top: 110px; }
.form-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 28px; align-items: start; }
.form-aside { position: sticky; top: 100px; }
.form-aside__card { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: clamp(24px, 3vw, 34px); }
.form-aside__card::before { content: ""; position: absolute; z-index: -1; width: 320px; height: 320px; right: -130px; top: -150px; border-radius: 50%; background: var(--teal); filter: blur(90px); opacity: .35; }
.form-aside__card h2 { margin: 16px 0 12px; font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800; }
.form-aside__card > p { color: rgba(255,255,255,.72); font-size: .96rem; line-height: 1.7; }
.form-steps { display: grid; gap: 16px; margin: 26px 0; }
.form-steps li { display: flex; align-items: flex-start; gap: 14px; }
.form-steps b { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 11px; background: rgba(98,182,173,.18); color: var(--teal-300); font-family: var(--font-d); }
.form-steps strong { display: block; font-size: .96rem; }
.form-steps span { color: rgba(255,255,255,.6); font-size: .86rem; }
.form-aside .btn-ghost { width: 100%; white-space: normal; text-align: center; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-md); padding: clamp(20px, 3.5vw, 40px); }
.form-card__head { display: flex; align-items: center; gap: 14px; padding-bottom: 22px; border-bottom: 1px dashed var(--line); }
.form-card__emoji { width: 54px; height: 54px; flex: none; display: grid; place-items: center; border-radius: 17px; font-size: 1.5rem; color: var(--teal-700); background: rgba(98,182,173,.13); }
.form-card__head h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 800; }
.form-card__head p { margin-top: 4px; color: var(--txt-soft); font-size: .86rem; }

#demandeForm { display: grid; gap: 24px; }
.form-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 14px;
  background: linear-gradient(115deg, rgba(98,182,173,.16), rgba(242,190,60,.2));
  border: 1px solid rgba(98,182,173,.35);
  color: var(--teal-700); font-weight: 700; font-size: .92rem; line-height: 1.45;
}
.form-badge .bi { font-size: 1.15rem; flex: none; }
.form-type__free {
  font-style: normal; font-size: .64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: var(--sand); color: var(--ink); padding: 2px 7px; border-radius: 999px; margin-left: 7px; vertical-align: 2px;
}
.f-field { display: grid; gap: 8px; min-width: 0; margin: 0; padding: 0; border: 0; }
/* Le libellé occupe toute la largeur : sinon il se casse mot par mot dans une grille */
.f-label { display: block; width: 100%; grid-column: 1 / -1; padding: 0; font-weight: 700; font-size: .96rem; color: var(--txt); line-height: 1.4; }
.req { color: #cf4b37; }
.f-help { margin-top: -4px; color: var(--txt-soft); font-size: .82rem; }
.f-input {
  width: 100%; min-width: 0; font: inherit; font-size: 1rem; color: var(--txt);
  background: var(--cream); border: 1px solid rgba(29,37,34,.14); border-radius: 14px;
  padding: .85rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
select.f-input {
  -webkit-appearance: none; appearance: none; cursor: pointer; padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d2522' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px;
}
textarea.f-input { resize: vertical; min-height: 100px; line-height: 1.55; }
.f-input::placeholder { color: rgba(29,37,34,.4); }
.f-input:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(98,182,173,.18); }

.f-options { display: flex; flex-wrap: wrap; gap: 8px; }
.f-options--grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.f-opt--wide { grid-column: 1 / -1; } /* réponse longue : toute la largeur, jamais tassée */
.f-opt { position: relative; display: flex; min-width: 0; cursor: pointer; }
.f-opt input { position: absolute; opacity: 0; pointer-events: none; }
.f-opt span {
  display: flex; align-items: center; gap: 12px; width: 100%; min-height: 56px;
  padding: .8rem 1.1rem; border: 1px solid rgba(29,37,34,.14); border-radius: 12px; background: var(--cream);
  font-weight: 600; font-size: .94rem; line-height: 1.45; text-wrap: balance;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.f-opt span::before {
  content: ""; width: 18px; height: 18px; flex: none; border-radius: 50%;
  border: 2px solid rgba(29,37,34,.25); background: #fff;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.f-opt input[type="checkbox"] + span::before { border-radius: 6px; }
.f-opt:hover span { border-color: rgba(98,182,173,.6); }
.f-opt input:checked + span { border-color: var(--teal); background: rgba(98,182,173,.1); color: var(--teal-700); }
.f-opt input[type="radio"]:checked + span::before { border-color: var(--teal-600); background: var(--teal-600); box-shadow: inset 0 0 0 3px #fff; }
.f-opt input[type="checkbox"]:checked + span::before {
  border-color: var(--teal-600);
  background: var(--teal-600) no-repeat center/12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}
.f-opt input:focus-visible + span { box-shadow: 0 0 0 4px rgba(98,182,173,.3); }

.f-error { color: #c0392b; font-size: .84rem; font-weight: 600; }
.f-error:empty { display: none; }
.f-field.has-error .f-input,
.f-field.has-error .f-opt span { border-color: #e3897c; }
.f-field.has-error .f-consent { box-shadow: inset 0 0 0 1px #e3897c; }

.f-consent {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  padding: 14px 16px; border-radius: 14px; background: var(--cream);
  color: var(--txt-soft); font-size: .88rem; line-height: 1.55;
}
.f-consent input { width: 20px; height: 20px; flex: none; margin-top: 1px; accent-color: var(--teal-600); }
.f-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.f-submit { width: 100%; }
.f-submit[aria-busy="true"] { opacity: .7; pointer-events: none; }
.f-status { min-height: 1.4em; text-align: center; color: var(--txt-soft); font-size: .9rem; font-weight: 600; }
.f-status.err { color: #c0392b; }
.f-status a { text-decoration: underline; }

.form-success { padding: 30px 10px; text-align: center; outline: none; }
.form-success__icon { width: 76px; height: 76px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: var(--grad); color: #fff; font-size: 2.2rem; box-shadow: 0 18px 40px rgba(98,182,173,.4); }
.form-success h2 { margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }
.form-success p { max-width: 460px; margin: 0 auto 26px; color: var(--txt-soft); line-height: 1.7; }
.form-success__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

@media (max-width: 1080px) {
  .form-layout { grid-template-columns: 1fr; }
  .form-aside { position: static; order: 2; }
}
@media (max-width: 760px) {
  .form-types { grid-template-columns: 1fr; gap: 8px; margin-bottom: -40px; }
  .form-type { padding: 12px 14px; gap: 12px; }
  .form-type__emoji { width: 40px; height: 40px; font-size: 1.25rem; border-radius: 12px; }
  .form-type small { display: none; }
  .form-section { padding-top: 80px; }
  .f-options--grid { grid-template-columns: 1fr; }
  .form-success__actions .btn { width: 100%; }
}

@media (max-width: 1080px) {
  .captures-grid { grid-template-columns: repeat(2, 1fr); }
  .wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .captures-grid { gap: 12px; margin-top: 28px; }
  .capture-card { padding: 10px; }
  .capture-card__img::after { content: "⤢"; padding: 4px 8px; }
  .capture-card__foot .badge-ok { display: none; }
  .wall { grid-template-columns: 1fr; }
  .wall .capture-card__img { aspect-ratio: 3 / 4; }
  .wall-block { margin-top: 40px; }
  .wall-block__sub { margin-bottom: 18px; }
  .wall-section { margin-top: 80px; }
  .page-head { padding-bottom: 44px; }
  .t-logo img { max-width: 64px; }
}
