/* ==========================================================================
   AGENCE LOOM — STUDIO DIGITAL
   Design system : dark premium (charte ads) — noir profond + bleu électrique
   ========================================================================== */

:root {
  --bg: #06070c;
  --bg-2: #0a0d16;
  --bg-3: #0e1220;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.14);
  --txt: #f4f6ff;
  --muted: rgba(214, 222, 243, 0.62);
  --muted-2: rgba(214, 222, 243, 0.42);
  --blue: #2e63f6;
  --blue-bright: #4d7dff;
  --blue-soft: #8fb0ff;
  --green: #22c55e;
  --wa: #25d366;
  --gold: #ffc94d;
  --radius: 22px;
  --radius-lg: 30px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  --shadow-blue: 0 12px 40px -10px rgba(46, 99, 246, 0.55);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

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

/* Pas de scroll-behavior:smooth ici : Lenis pilote le défilement (conflit sinon).
   Les ancres restent douces via main.js (Lenis) ou scrollIntoView en fallback. */
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

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

::selection { background: rgba(46, 99, 246, 0.45); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* Grain global très léger */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

/* ===================== PRELOADER ===================== */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark { width: 76px; opacity: 0; animation: preloaderIn 0.9s var(--ease) 0.1s forwards; }
@keyframes preloaderIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  width: min(1180px, calc(100% - 32px));
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s, transform 0.5s var(--ease);
}
.nav { animation: navDrop 0.75s var(--ease) 0.25s backwards; }
@keyframes navDrop {
  from { transform: translateX(-50%) translateY(-130%); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.nav.is-scrolled {
  background: rgba(8, 10, 18, 0.72);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav.is-hidden { transform: translateX(-50%) translateY(-120%); }
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 14.5px; font-weight: 600; color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--blue-bright);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--txt); }
.nav__links a:hover::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700; font-size: 15.5px;
  border: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn--primary {
  position: relative; overflow: hidden;
  background: var(--blue); color: #fff; box-shadow: var(--shadow-blue);
  transform: translate3d(var(--mx-btn, 0px), var(--my-btn, 0px), 0);
  transition: transform 0.2s ease-out, box-shadow 0.3s, background 0.3s;
}
.btn--primary:hover {
  transform: translate3d(var(--mx-btn, 0px), calc(var(--my-btn, 0px) - 2px), 0);
  box-shadow: 0 18px 50px -10px rgba(46, 99, 246, 0.7);
  background: var(--blue-bright);
}
/* Reflet qui balaye le bouton (inspiration Amphora) */
.btn--primary::after {
  content: "";
  position: absolute; top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.38) 50%, transparent 100%);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease);
  pointer-events: none;
}
.btn--primary:hover::after { left: 130%; }
.btn--ghost { background: rgba(255, 255, 255, 0.05); color: var(--txt); border: 1px solid var(--line-2); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.08); }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.nav__burger {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.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 {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(5, 6, 11, 0.96);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-size: 30px; font-weight: 800; padding: 10px;
  color: var(--txt);
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.25s;
}
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:hover { color: var(--blue-bright); }
.mobile-menu .btn { margin-top: 18px; font-size: 17px; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 168px 0 90px;
  overflow: hidden;
}
.hero__glow {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(120px); will-change: transform;
}
.hero__glow--1 { width: 620px; height: 620px; top: -240px; right: -140px; background: radial-gradient(circle, rgba(46, 99, 246, 0.4), transparent 65%); }
.hero__glow--2 { width: 520px; height: 520px; bottom: -260px; left: -180px; background: radial-gradient(circle, rgba(46, 99, 246, 0.22), transparent 65%); }
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 30%, #000 30%, transparent 75%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(77, 125, 255, 0.4);
  background: rgba(46, 99, 246, 0.1);
  color: var(--blue-soft);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 12px var(--blue-bright); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
/* Étiquette « en direct » : pas d'encadré, juste un point vert + texte neutre */
.live-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.live-tag .dot--live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: blinkDot 1.5s ease-in-out infinite;
}
@keyframes blinkDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.15; } }

.hero h1 {
  margin: 24px 0 42px;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.hero h1 .accent {
  position: relative; white-space: nowrap;
  background: linear-gradient(90deg, #4d7dff 0%, #a3bdff 50%, #4d7dff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--blue-bright);
  animation: accentSheen 7s linear infinite;
}
@keyframes accentSheen { to { background-position: -200% 0; } }
.hero h1 .accent svg { position: absolute; left: 0; bottom: -26px; width: 100%; height: 18px; }
.hero h1 .accent svg path { stroke: var(--blue); fill: none; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.hero h1 .accent svg .u1 { stroke-width: 4; animation: draw 1s var(--ease) 1.45s forwards; }
.hero h1 .accent svg .u2 { stroke-width: 3; opacity: 0.75; animation: draw 0.9s var(--ease) 1.75s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); max-width: 500px; margin-bottom: 34px; }
.hero__sub strong { color: var(--txt); font-weight: 700; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 38px; }

/* Preuve sociale — avatars + note */
.proof { display: flex; align-items: center; gap: 16px; }
.proof__avatars-img { height: 44px; width: auto; flex-shrink: 0; }
.proof__avatars-img--lg { height: 56px; }
.proof__avatars { display: flex; }
.proof__avatars span {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
}
.proof__avatars span:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.av-2 { background: linear-gradient(135deg, #10b981, #0ea5e9); }
.av-3 { background: linear-gradient(135deg, #6366f1, #a855f7); }
.av-4 { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.av-5 { background: linear-gradient(135deg, #2e63f6, #22d3ee); }
.proof__txt { font-size: 14px; color: var(--muted); line-height: 1.45; }
.proof__txt strong { color: var(--txt); font-weight: 800; }
.stars { display: inline-flex; gap: 2px; vertical-align: -2px; margin-right: 6px; }
.stars svg { width: 15px; height: 15px; fill: var(--gold); }
.stars .half { position: relative; }
.stars .half .base { fill: rgba(255, 201, 77, 0.25); }
.stars .half .top { position: absolute; inset: 0; clip-path: inset(0 30% 0 0); }

/* Mockup navigateur (visuel héro, 100% CSS) */
.hero__visual { position: relative; }
.browser {
  position: relative;
  background: linear-gradient(160deg, #0d1120, #0a0d18);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8), 0 0 80px -30px rgba(46, 99, 246, 0.35);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
}
.browser__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.browser__dots { display: flex; gap: 6px; }
.browser__dots i { width: 10px; height: 10px; border-radius: 50%; }
.browser__dots i:nth-child(1) { background: #ff5f57; }
.browser__dots i:nth-child(2) { background: #febc2e; }
.browser__dots i:nth-child(3) { background: #28c840; }
.browser__url {
  flex: 1; max-width: 260px; margin-inline: auto;
  font-size: 11.5px; color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  display: flex; align-items: center; gap: 6px; justify-content: center;
}
.browser__url svg { width: 10px; height: 10px; fill: var(--green); }
.browser__body { padding: 26px 26px 30px; }
.bskel__nav { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.bskel__logo { width: 26px; height: 26px; border-radius: 8px; background: var(--blue); flex-shrink: 0; }
.bskel__links { display: flex; gap: 8px; margin-left: auto; }
.bskel__links i { width: 38px; height: 7px; border-radius: 4px; background: rgba(255, 255, 255, 0.12); }
.bskel__pill { width: 74px; height: 22px; border-radius: 999px; background: var(--blue); opacity: 0.9; }
.bskel__h1 { height: 18px; border-radius: 6px; background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.4)); width: 78%; margin-bottom: 10px; }
.bskel__h1--2 { width: 55%; margin-bottom: 18px; background: linear-gradient(90deg, rgba(77,125,255,0.9), rgba(77,125,255,0.4)); }
.bskel__p { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.14); margin-bottom: 8px; }
.bskel__p--1 { width: 92%; } .bskel__p--2 { width: 70%; margin-bottom: 20px; }
.bskel__cta { display: flex; gap: 10px; margin-bottom: 24px; }
.bskel__cta .c1 { width: 108px; height: 30px; border-radius: 999px; background: var(--blue); box-shadow: 0 8px 22px -6px rgba(46, 99, 246, 0.7); }
.bskel__cta .c2 { width: 92px; height: 30px; border-radius: 999px; border: 1px solid var(--line-2); }
.bskel__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bskel__card { height: 74px; border-radius: 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); padding: 10px; }
.bskel__card i { display: block; width: 18px; height: 18px; border-radius: 6px; background: rgba(77, 125, 255, 0.5); margin-bottom: 9px; }
.bskel__card b { display: block; width: 70%; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.18); }

/* Notifications flottantes (référence ad "meilleur commercial") */
.notif {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(13, 17, 30, 0.88);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 13px 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.8);
  animation: floatY 5.5s ease-in-out infinite;
  z-index: 3;
}
.notif--1 { top: 6%; left: -50px; animation-delay: 0.4s; }
.notif--2 { bottom: 12%; right: -34px; animation-delay: 1.6s; }
.notif--3 { bottom: -34px; left: 12%; animation-delay: 2.7s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.notif__ico {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.notif__ico svg { width: 19px; height: 19px; }
.notif__ico--blue { background: rgba(46, 99, 246, 0.18); }
.notif__ico--blue svg { stroke: var(--blue-bright); }
.notif__ico--green { background: rgba(34, 197, 94, 0.15); }
.notif__ico--green svg { stroke: var(--green); }
.notif b { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.notif small { font-size: 11.5px; color: var(--muted); }

/* ===================== MARQUEE LOGOS ===================== */
.trust { padding: 30px 0 76px; position: relative; }
.trust__label {
  text-align: center;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 34px;
}
.marquee {
  position: relative; 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);
}
.marquee__track {
  display: flex; align-items: center; gap: 74px;
  width: max-content;
  animation: marquee 38s linear infinite;
  padding-block: 6px;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__track img {
  height: 44px; width: auto; max-width: 150px; object-fit: contain;
  opacity: 0.6; filter: grayscale(1) brightness(1.6);
  transition: opacity 0.3s, transform 0.3s;
}
.marquee__track img:hover { opacity: 1; transform: scale(1.07); }
.marquee--rev { margin-top: 30px; }
.marquee__track--rev { animation-direction: reverse; animation-duration: 48s; }

/* ===================== SECTIONS COMMUNES ===================== */
.section { padding: 110px 0; position: relative; }
.section--alt {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.sec-head .badge { margin-bottom: 22px; }
.sec-head h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.sec-head h2 .accent { color: var(--blue-bright); }
.sec-head p { color: var(--muted); font-size: 17px; }

/* Reveal (JS ajoute .is-in) */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ===================== SERVICES (bento) ===================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bcard {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s;
}
.bcard::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(46, 99, 246, 0.13), transparent 55%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.bcard:hover { transform: translateY(-6px); border-color: rgba(77, 125, 255, 0.35); }
.bcard:hover::before { opacity: 1; }
.bcard--wide { grid-column: span 2; }
.bcard__ico {
  width: 52px; height: 52px; border-radius: 15px;
  background: rgba(46, 99, 246, 0.14);
  border: 1px solid rgba(77, 125, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.bcard__ico svg { width: 24px; height: 24px; stroke: var(--blue-bright); }
.bcard h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.bcard p { color: var(--muted); font-size: 15px; }
.bcard__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.bcard__tags span {
  font-size: 12.5px; font-weight: 600; color: var(--blue-soft);
  background: rgba(46, 99, 246, 0.1);
  border: 1px solid rgba(77, 125, 255, 0.22);
  padding: 5px 12px; border-radius: 999px;
}

/* ===================== OFFRE 650€ ===================== */
.offer { position: relative; overflow: hidden; }
.offer__glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(46, 99, 246, 0.16), transparent 60%);
  filter: blur(80px); pointer-events: none;
}
.offer__card {
  position: relative;
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(165deg, rgba(20, 26, 46, 0.9), rgba(9, 12, 22, 0.95));
  border: 1px solid rgba(77, 125, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 56px 58px;
  overflow: hidden;
  box-shadow: 0 40px 100px -40px rgba(46, 99, 246, 0.4);
}
.offer__card::before {
  content: "";
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 160, 255, 0.8), transparent);
}
.offer__flag {
  position: absolute; top: 26px; right: -46px;
  transform: rotate(38deg);
  background: var(--blue);
  color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 56px;
  box-shadow: 0 10px 30px -8px rgba(46, 99, 246, 0.8);
}
.offer__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 46px; align-items: center; }
.offer__kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-soft); margin-bottom: 14px;
}
.offer__call {
  font-size: clamp(40px, 5.4vw, 62px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.04;
  margin-bottom: 18px;
}
.offer__call span {
  background: linear-gradient(92deg, var(--blue-bright), var(--blue-soft));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 26px rgba(46, 99, 246, 0.45));
}
.offer__price { display: flex; align-items: baseline; gap: 16px; margin: 14px 0 6px; }
.offer__old { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--muted-2); text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: rgba(239, 68, 68, 0.75); }
.offer__new { font-size: clamp(56px, 8vw, 88px); font-weight: 800; letter-spacing: -0.04em; color: var(--blue-bright); line-height: 1; text-shadow: 0 0 50px rgba(46, 99, 246, 0.5); }
.offer__tag { font-size: 17px; color: var(--muted); margin-bottom: 26px; }
.offer__tag strong { color: var(--txt); }
.offer h3 { font-size: 15px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-soft); margin-bottom: 16px; }
.offer__list { display: flex; flex-direction: column; gap: 13px; }
.offer__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: rgba(230, 236, 255, 0.85); }
.offer__list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; stroke: var(--green); }
.offer__foot { margin-top: 36px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.offer__note { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2); }
.note-item { display: inline-flex; align-items: center; gap: 8px; }
.note-item svg { width: 15px; height: 15px; stroke: var(--blue-soft); flex-shrink: 0; opacity: 0.85; }

/* ===================== RÉALISATIONS ===================== */
.works { position: relative; }
.works__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; perspective: 1400px; }
.wcard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transform: translateY(var(--ty, 0px)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.25s ease-out, border-color 0.5s, box-shadow 0.5s;
  will-change: transform;
}
.wcard:hover { --ty: -8px; border-color: rgba(77, 125, 255, 0.4); box-shadow: 0 34px 80px -30px rgba(0, 0, 0, 0.8), 0 0 60px -20px rgba(46, 99, 246, 0.25); }
.wcard__frame { position: relative; overflow: hidden; aspect-ratio: 14 / 9; }
.wcard__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 7, 12, 0.9));
}
.wcard__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.8s var(--ease);
}
.wcard:hover .wcard__frame img { transform: scale(1.05); }
.wcard__bar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(8, 10, 18, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.wcard__bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.wcard__bar i:first-child { background: #ff5f57; }
.wcard__bar span { margin-left: 8px; font-size: 11.5px; color: var(--muted); }
.wcard__info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
  padding: 20px 22px;
}
.wcard__info h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.wcard__info p { font-size: 13px; color: var(--muted); margin-top: 3px; }
.wcard__link {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700;
  color: var(--blue-soft);
  background: rgba(46, 99, 246, 0.14);
  border: 1px solid rgba(77, 125, 255, 0.35);
  padding: 9px 16px; border-radius: 999px;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.wcard__link:hover { background: rgba(46, 99, 246, 0.3); transform: translateY(-2px); }
.works__disclaimer {
  margin-top: 30px;
  text-align: center;
  font-size: 13px; color: var(--muted-2);
  max-width: 640px; margin-inline: auto;
}
.works__disclaimer a { color: var(--blue-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ===================== PROCESS ===================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.step {
  position: relative;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015) 55%, rgba(46, 99, 246, 0.05));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 30px 34px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.step::before {
  content: "";
  position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 140, 255, 0.6), transparent);
  opacity: 0.35;
  transition: opacity 0.45s, left 0.45s var(--ease), right 0.45s var(--ease);
}
.step::after {
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 99, 246, 0.16), transparent 65%);
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.step:hover { transform: translateY(-6px); border-color: rgba(77, 125, 255, 0.38); }
.step:hover::before { opacity: 1; left: 8%; right: 8%; }
.step:hover::after { opacity: 1; }
.step__ghost {
  position: absolute; top: 18px; right: 26px;
  font-size: 84px; font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  color: transparent;
  background: linear-gradient(160deg, #3f6bff, #1b3fb8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.55;
  pointer-events: none; user-select: none;
  transition: opacity 0.45s, transform 0.45s var(--ease);
  z-index: 0;
}
.step:hover .step__ghost { opacity: 0.9; transform: translateY(-3px) scale(1.04); }
.step__ico {
  position: relative; z-index: 1;
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(46, 99, 246, 0.13);
  border: 1px solid rgba(77, 125, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px -10px rgba(46, 99, 246, 0.5);
}
.step__ico svg { width: 22px; height: 22px; stroke: var(--blue-bright); }
.step__phase {
  display: block; position: relative; z-index: 1;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 8px;
}
.step h3 { position: relative; z-index: 1; font-size: 18.5px; font-weight: 800; margin-bottom: 9px; letter-spacing: -0.015em; }
.step p { position: relative; z-index: 1; font-size: 14.5px; color: var(--muted); }
.step__dur {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px;
  font-size: 12px; font-weight: 700; color: var(--blue-soft);
  background: rgba(46, 99, 246, 0.1);
  padding: 6px 13px; border-radius: 999px;
  border: 1px solid rgba(77, 125, 255, 0.2);
}
.step__dur svg { width: 13.5px; height: 13.5px; stroke: var(--blue-soft); flex-shrink: 0; }

/* ===================== ÉQUIPE ===================== */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 980px; margin: 0 auto; }
.tmate {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.tmate:hover { transform: translateY(-8px); border-color: rgba(77, 125, 255, 0.4); box-shadow: 0 40px 90px -34px rgba(0, 0, 0, 0.85), 0 0 70px -24px rgba(46, 99, 246, 0.3); }
.tmate__photo { position: relative; aspect-ratio: 5 / 4.4; overflow: hidden; }
.tmate__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.tmate--tom .tmate__photo img { object-position: 72% 20%; }
.tmate--brayan .tmate__photo img { object-position: 58% 18%; }
.tmate:hover .tmate__photo img { transform: scale(1.05); }
.tmate__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 13, 22, 0.55) 78%, var(--bg-2));
}
.tmate__role {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
  background: rgba(46, 99, 246, 0.85);
  padding: 7px 15px; border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 26px -8px rgba(46, 99, 246, 0.7);
}
.tmate__body { padding: 26px 28px 30px; position: relative; margin-top: -12px; }
.tmate__body h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.tmate__body > p { color: var(--muted); font-size: 14.5px; margin: 8px 0 20px; }
.tmate__skills { display: flex; flex-direction: column; gap: 13px; }
.skill { font-size: 13px; font-weight: 600; color: rgba(230, 236, 255, 0.8); }
.skill__row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.skill__row b { color: var(--blue-soft); font-weight: 700; }
.skill__bar { height: 6px; border-radius: 4px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.skill__bar i {
  display: block; height: 100%; width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  box-shadow: 0 0 14px rgba(46, 99, 246, 0.6);
  transition: width 1.3s var(--ease);
}
.tmate.is-in .skill__bar i { width: var(--w); }
.tmate__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tmate__tags span {
  font-size: 12px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--line-2);
  padding: 5px 12px; border-radius: 999px;
  transition: color 0.3s, border-color 0.3s;
}
.tmate__tags span:hover { color: var(--blue-soft); border-color: rgba(77, 125, 255, 0.4); }

.synergy {
  max-width: 980px; margin: 26px auto 0;
  display: flex; align-items: center; gap: 22px;
  background: linear-gradient(120deg, rgba(46, 99, 246, 0.13), rgba(46, 99, 246, 0.03));
  border: 1px solid rgba(77, 125, 255, 0.28);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.synergy__ico {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 16px;
  background: rgba(46, 99, 246, 0.16);
  display: flex; align-items: center; justify-content: center;
}
.synergy__ico svg { width: 26px; height: 26px; stroke: var(--blue-bright); }
.synergy b { font-size: 17px; display: block; margin-bottom: 3px; }
.synergy p { font-size: 14.5px; color: var(--muted); }

/* ===================== AVIS ===================== */
.rating-hero {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-bottom: 54px;
}
.rating-hero__score { display: flex; align-items: center; gap: 20px; }
.rating-hero__num { font-size: clamp(60px, 8vw, 96px); font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.rating-hero__num small { font-size: 0.42em; color: var(--muted); font-weight: 700; }
.rating-hero__stars { display: flex; flex-direction: column; gap: 8px; }
.rating-hero__stars .stars svg { width: 26px; height: 26px; }
.rating-hero__stars p { font-size: 15px; color: var(--muted); }
.rating-hero__stars p strong { color: var(--txt); }
.rating-hero .proof__avatars span { width: 48px; height: 48px; font-size: 15px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.45s var(--ease), border-color 0.45s;
}
.review:hover { transform: translateY(-6px); border-color: rgba(77, 125, 255, 0.3); }
.review p { font-size: 15px; color: rgba(230, 236, 255, 0.85); flex: 1; }
.review__by { display: flex; align-items: center; gap: 13px; }
.review__by .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff;
}
.review__by b { display: block; font-size: 14.5px; }
.review__by small { color: var(--muted-2); font-size: 12.5px; }
.review .stars { margin: 0; }

/* ===================== RDV / CAL ===================== */
.rdv__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.rdv__side { position: sticky; top: 110px; }
.rdv__side h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin: 20px 0 16px; }
.rdv__side h2 .accent { color: var(--blue-bright); }
.rdv__side > p { color: var(--muted); font-size: 16px; margin-bottom: 28px; }
.rdv__points { display: flex; flex-direction: column; gap: 15px; margin-bottom: 32px; }
.rdv__points li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; color: rgba(230, 236, 255, 0.85); }
.rdv__points svg { width: 21px; height: 21px; flex-shrink: 0; stroke: var(--green); margin-top: 1px; }
.rdv__alt { display: flex; gap: 12px; flex-wrap: wrap; }
.rdv__alt .btn--wa { background: rgba(37, 211, 102, 0.14); color: #7bf0ab; border: 1px solid rgba(37, 211, 102, 0.35); }
.rdv__alt .btn--wa:hover { background: rgba(37, 211, 102, 0.25); transform: translateY(-2px); }
.rdv__cal-wrap {
  background: #10141f;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8), 0 0 70px -24px rgba(46, 99, 246, 0.3);
  overflow: hidden;
  min-height: 620px;
}
#my-cal-inline-15min { width: 100%; height: 640px; overflow: auto; }

/* ===================== FAQ ===================== */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 13px; }
.faq__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
}
.faq__item.is-open { border-color: rgba(77, 125, 255, 0.35); background: var(--panel-2); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 21px 26px;
  background: none; border: none;
  color: var(--txt);
  font-size: 16.5px; font-weight: 700; text-align: left;
  letter-spacing: -0.01em;
}
.faq__q svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--blue-soft); transition: transform 0.4s var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq__a p { padding: 0 26px 22px; color: var(--muted); font-size: 15px; }

/* ===================== CTA FINAL ===================== */
.final {
  position: relative;
  text-align: center;
  padding: 130px 0 140px;
  overflow: hidden;
}
.final__glow {
  position: absolute; left: 50%; bottom: -320px; transform: translateX(-50%);
  width: 900px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 99, 246, 0.35), transparent 60%);
  filter: blur(90px);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { transform: translateX(-52%) scale(1); opacity: 0.8; }
  to { transform: translateX(-48%) scale(1.18); opacity: 1; }
}
/* Lignes du SplitText : masque pour la révélation mot à mot */
.st-line { overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }

/* Barre de progression du scroll */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2.5px; z-index: 160;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--blue), var(--blue-soft));
  box-shadow: 0 0 14px rgba(46, 99, 246, 0.7);
  pointer-events: none;
}

/* Halo qui suit le curseur (desktop) */
.cursor-glow {
  position: fixed; left: 0; top: 0;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 99, 246, 0.09), transparent 62%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s;
}
.cursor-glow.is-on { opacity: 1; }
@media (pointer: coarse) { .cursor-glow { display: none; } }
.final h2 { font-size: clamp(36px, 5.4vw, 68px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 18px; }
.final h2 .accent { color: var(--blue-bright); }
.final p { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto 36px; }
.final__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 64px 0 34px;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand img { height: 34px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 14.5px; max-width: 300px; }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 14.5px; color: var(--muted); transition: color 0.25s; }
.footer__col a:hover { color: var(--txt); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted-2);
}
.footer__bottom a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom a:hover { color: var(--txt); }

/* ===================== WIDGET WHATSAPP ===================== */
.wa-fab {
  position: fixed; left: 22px; bottom: 22px; z-index: 120;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #29e57a, #1cb85c);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 36px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.35s var(--ease);
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }
.wa-fab::after {
  content: "";
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPing 2.4s ease-out infinite;
}
@keyframes waPing { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

.wa-panel {
  position: fixed; left: 22px; bottom: 94px; z-index: 120;
  width: 340px; max-width: calc(100vw - 44px);
  border-radius: 22px;
  background: rgba(13, 17, 28, 0.97);
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 90px -25px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.97);
  transform-origin: bottom left;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  backdrop-filter: blur(18px);
}
.wa-panel.is-open { opacity: 1; visibility: visible; transform: none; }
.wa-panel__head {
  display: flex; align-items: center; gap: 13px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.06));
  border-bottom: 1px solid var(--line);
}
.wa-panel__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background-image: url("../assets/team/tom.png");
  background-size: 300%;
  background-position: 62% 18%;
  border: 2px solid rgba(37, 211, 102, 0.7);
  position: relative;
}
.wa-panel__avatar::after {
  content: "";
  position: absolute; right: 0; bottom: 0;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--wa);
  border: 2px solid #0d111c;
}
.wa-panel__head b { display: block; font-size: 15.5px; }
.wa-panel__head small { font-size: 12px; color: #7bf0ab; }
.wa-panel__close {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.07);
  border: none; border-radius: 10px;
  width: 32px; height: 32px;
  color: var(--muted); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.wa-panel__body { padding: 18px 20px 20px; }
.wa-bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 4px 16px 16px 16px;
  padding: 12px 15px;
  font-size: 14px; color: rgba(230, 236, 255, 0.9);
  margin-bottom: 14px;
}
.wa-quick { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.wa-quick button {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600;
  color: var(--blue-soft);
  background: rgba(46, 99, 246, 0.1);
  border: 1px solid rgba(77, 125, 255, 0.28);
  padding: 7px 13px; border-radius: 999px;
  transition: background 0.25s;
}
.wa-quick button svg { width: 13px; height: 13px; stroke: currentColor; flex-shrink: 0; }
.wa-quick button:hover { background: rgba(46, 99, 246, 0.24); }
.wa-panel textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  color: var(--txt);
  font-family: inherit; font-size: 14px;
  padding: 12px 14px;
  min-height: 74px;
  resize: none;
  outline: none;
  transition: border-color 0.3s;
}
.wa-panel textarea:focus { border-color: rgba(37, 211, 102, 0.55); }
.wa-panel__actions { display: flex; gap: 10px; margin-top: 12px; }
.wa-send {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(135deg, #29e57a, #1cb85c);
  color: #04170b; font-weight: 800; font-size: 14.5px;
  border: none; border-radius: 999px;
  padding: 13px;
  transition: transform 0.3s var(--ease), filter 0.3s;
}
.wa-send:hover { transform: translateY(-2px); filter: brightness(1.08); }
.wa-send svg { width: 18px; height: 18px; fill: #04170b; }
.wa-call {
  display: flex; align-items: center; justify-content: center;
  width: 48px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-2);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.wa-call:hover { background: rgba(255, 255, 255, 0.13); transform: translateY(-2px); }
.wa-call svg { width: 19px; height: 19px; stroke: var(--txt); }
.wa-panel__foot { text-align: center; font-size: 11.5px; color: var(--muted-2); padding: 0 20px 16px; }

/* ===================== PAGE LÉGALE ===================== */
.legal { padding: 170px 0 100px; max-width: 780px; margin: 0 auto; }
.legal h1 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 14px; }
.legal .updated { color: var(--muted-2); font-size: 13.5px; margin-bottom: 46px; }
.legal h2 { font-size: 22px; font-weight: 800; margin: 42px 0 14px; letter-spacing: -0.015em; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; margin-bottom: 12px; }
.legal ul { padding-left: 20px; list-style: disc; }
.legal .highlight {
  background: rgba(46, 99, 246, 0.08);
  border: 1px solid rgba(77, 125, 255, 0.3);
  border-left: 3px solid var(--blue-bright);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 18px 0;
}
.legal .highlight p { margin-bottom: 0; color: rgba(230, 236, 255, 0.85); }
.legal a { color: var(--blue-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 620px; margin: 0 auto; width: 100%; }
  .browser { transform: none; }
  .notif--1 { left: -8px; }
  .notif--2 { right: -8px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bcard--wide { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .rdv__grid { grid-template-columns: 1fr; }
  .rdv__side { position: static; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .review:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .container { width: calc(100% - 40px); }
  .nav__links, .nav > .btn { display: none; }
  .nav__burger { display: flex; }
  .nav { padding: 8px 10px 8px 16px; }
  .hero { padding: 130px 0 60px; }
  .hero h1 { font-size: clamp(38px, 10.5vw, 52px); }
  .hero__cta .btn { width: 100%; }
  .section { padding: 78px 0; }
  .sec-head { margin-bottom: 42px; }
  .bento { grid-template-columns: 1fr; }
  .bcard--wide { grid-column: span 1; }
  .offer__card { padding: 40px 26px; }
  .offer__grid { grid-template-columns: 1fr; gap: 30px; }
  .offer__flag { display: none; }
  .works__grid { grid-template-columns: 1fr; }
  .wcard__frame::after { background: linear-gradient(180deg, transparent 70%, rgba(6, 7, 12, 0.5)); }
  .wcard__info { position: static; padding: 18px 18px 20px; }
  .steps { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .synergy { flex-direction: column; text-align: center; }
  .reviews { grid-template-columns: 1fr; }
  .review:last-child { grid-column: span 1; }
  .rating-hero__score { flex-direction: column; gap: 10px; text-align: center; }
  .rating-hero__stars { align-items: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .notif { display: none; }
  .notif--2 { display: flex; bottom: -20px; right: 6px; }
  #my-cal-inline-15min { height: 580px; }
  .wa-panel { left: 16px; bottom: 88px; }
  .wa-fab { left: 16px; bottom: 16px; width: 54px; height: 54px; }
}

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