/* ============================================================
   LOOPFY - style.css
   Cream #FFF6EA | Paper #F5EFE0 | Ink #0E0E14
   Violet #5840FF | Pink #FF3D88 | Lime #D4FB5C | Yellow #FFC73D
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #FFF6EA;
  color: #0E0E14;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

:root {
  --cream: #FFF6EA;
  --paper: #F5EFE0;
  --ink: #0E0E14;
  --violet: #5840FF;
  --pink: #FF3D88;
  --lime: #D4FB5C;
  --yellow: #FFC73D;
  --r: 16px;
  --shadow: 4px 4px 0px #0E0E14;
  --shadow-sm: 2px 2px 0px #0E0E14;
}

/* ── TYPOGRAPHY ── */
.hero-title, .section-title, .cta-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-transform: uppercase;
}
.hero-title   { font-size: clamp(40px, 6.5vw, 96px); }
.section-title{ font-size: clamp(32px, 5vw, 68px); }
.cta-title    { font-size: clamp(38px, 5.5vw, 76px); }
.section-sub  { font-size: clamp(15px, 1.7vw, 18px); opacity: .72; line-height: 1.65; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── STICKERS ── */
.sticker {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 13px;
  padding: 6px 16px; border-radius: 100px;
  border: 2px solid var(--ink); box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sticker:hover { transform: rotate(-4deg) scale(1.06); box-shadow: var(--shadow); }
.sticker-pink   { background: var(--pink);   color: white; }
.sticker-lime   { background: var(--lime);   color: var(--ink); }
.sticker-violet { background: var(--violet); color: white; }
.sticker-yellow { background: var(--yellow); color: var(--ink); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px;
  padding: 12px 26px; border-radius: 100px;
  border: 2px solid var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover  { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
.btn:active { transform: none; box-shadow: none; }
.btn-primary { background: var(--violet); color: white; }
.btn-ghost   { background: transparent;  color: var(--ink); }
.btn-outline { background: white;         color: var(--ink); }
.btn-lg      { padding: 16px 34px; font-size: 16px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,246,234,.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: var(--ink); }
.nav-inner {
  display: flex; align-items: center; height: 120px; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-img {
  height: 112px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links li a { font-size: 14px; font-weight: 600; opacity: .65; transition: opacity .2s; }
.nav-links li a:hover { opacity: 1; }
.nav-cta { margin-left: 12px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-mobile { display: none; background: var(--cream); border-top: 2px solid var(--ink); padding: 20px 28px 28px; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 18px; }
.nav-mobile li a { font-weight: 600; font-size: 16px; }
.nav-mobile.open { display: block; }

/* ── HERO ── */
.hero { background: var(--cream); padding-top: 80px; position: relative; }

.hero-center {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 72px 0 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; opacity: .65;
  border: 1.5px solid rgba(14,14,20,.2);
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; animation: pulse-dot 2s ease-in-out infinite; }

.hero-title { max-width: 920px; }
.accent { color: var(--violet); }

.hero-sub {
  margin-top: 24px; font-size: 18px; opacity: .65;
  max-width: 560px; line-height: 1.7;
}

.hero-actions {
  display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; justify-content: center;
}
/* Floating hook badges */
.hook-float {
  position: absolute;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: 100px;
  border: 2px solid var(--ink); box-shadow: var(--shadow-sm);
  white-space: nowrap; z-index: 2;
  animation:
    popIn .55s var(--delay, 0s) cubic-bezier(.34,1.56,.64,1) both,
    float-badge 4s var(--fd, 1s) ease-in-out infinite;
  transition: box-shadow .2s ease;
}
.hook-float:hover {
  box-shadow: var(--shadow);
  animation-play-state: running, paused;
}
.hook-violet { background: var(--violet); color: white; }
.hook-lime   { background: var(--lime);   color: var(--ink); }
.hook-pink   { background: var(--pink);   color: white; }
.hook-yellow { background: var(--yellow); color: var(--ink); }
.hook-paper  { background: var(--paper);  color: var(--ink); }

@media (max-width: 1100px) { .hook-float { display: none; } }
.hero-hooks-mobile { display: none; }

.hero-note {
  margin-top: 14px; font-size: 13px; opacity: .65; text-align: center;
  animation: fadeUp .7s .62s ease both;
}

/* ── SCROLL HINT ── */
.scroll-hint {
  margin-top: 22px;
  display: flex; justify-content: center; align-items: center;
  color: var(--ink); opacity: .38;
  animation: scroll-hint-bounce 1.9s ease-in-out infinite;
  pointer-events: none;
  transition: opacity .5s ease;
}
.scroll-hint.hidden { opacity: 0; }

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}


/* ── PLAQUE SHOWCASE ── */
.plaque-reveal {
  background: var(--cream);
  padding: 56px 24px 72px;
}

.plaque-showcase {
  max-width: 660px;
  margin: 0 auto;
  perspective: 1000px;
  position: relative;
}

.plaque-bubble {
  position: absolute;
  top: 8%;
  right: -16px;
  z-index: 3;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  border-radius: 100px;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  transform: rotate(3deg);
  animation: bubble-float 3s ease-in-out infinite;
}

.plaque-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  color: var(--ink);
  opacity: 0.5;
}

.plaque-scroll-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.plaque-scroll-arrow {
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@keyframes bubble-float {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%       { transform: rotate(3deg) translateY(-6px); }
}

.plaque-showcase-img {
  display: block;
  width: 100%;
  height: auto;
  transform: rotateX(16deg);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.plaque-showcase.visible .plaque-showcase-img {
  transform: rotateX(0deg);
  animation: plaque-float 4s ease-in-out infinite;
}

@keyframes plaque-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@media (max-width: 760px) {
  .plaque-reveal { padding: 36px 16px 52px; }
}

/* ── PROBLÈME ── */
.probleme {
  background: var(--cream);
  padding: 90px 0 100px;
}
.probleme .section-header { margin-bottom: 56px; }

.probleme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.probleme-card {
  background: white;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  border-radius: var(--r);
  padding: 36px 32px;
}

.probleme-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.probleme-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.probleme-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(17px, 1.6vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.probleme-card-text {
  font-size: clamp(14px, 1.2vw, 16px);
  opacity: 0.68;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .probleme { padding: 52px 0 64px; }
  .probleme-grid { grid-template-columns: 1fr; gap: 16px; }
  .probleme .section-header { margin-bottom: 36px; }
  .probleme-card { padding: 28px 24px; }
}

/* ── FORMATS ── */
.formats {
  padding: 90px 0 100px;
  background: var(--cream);
  border-top: 2px solid rgba(14,14,20,.07);
}
.formats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.format-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.format-card {
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 18px;
  transition: transform .25s, box-shadow .25s;
}
.format-item:hover .format-card {
  transform: translate(-3px,-3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.format-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.format-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 8px;
}
.format-desc {
  font-size: 13px;
  opacity: .7;
  line-height: 1.55;
  max-width: 210px;
}

/* ── LOGO BAR ── */
.logo-bar {
  background: var(--paper);
  border-top: 2px solid rgba(14,14,20,.07);
  border-bottom: 2px solid rgba(14,14,20,.07);
  padding: 36px 0;
  overflow: hidden;
}
.logo-bar-label {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  opacity: .65; margin-bottom: 20px;
}
.logo-bar-track {
  display: flex; align-items: center;
  gap: 64px; flex-wrap: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.logo-bar-track:hover { animation-play-state: paused; }
.logo-bar-track span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 15px;
  opacity: .3; transition: opacity .2s; white-space: nowrap;
}
.logo-bar-track span:hover { opacity: .7; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-title { margin-top: 16px; }
.section-header .section-sub   { margin: 16px auto 0; max-width: 520px; }

/* -- HOW - stacked cards -- */
.how {
  padding: 60px 0 0;
  background: var(--cream);
}

.how-stack {
  margin-top: 56px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
}

.how-card {
  position: sticky;
  border-radius: 24px;
  border: 2px solid var(--ink);
  background: white;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 40px rgba(14,14,20,.10);
}
.how-card:nth-child(1) { top: 80px;  z-index: 1; }
.how-card:nth-child(2) { top: 96px;  z-index: 2; }
.how-card:nth-child(3) { top: 112px; z-index: 3; }
.how-card:nth-child(4) { top: 128px; z-index: 4; }

.how-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.how-card-content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.how-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.how-card-text {
  font-size: clamp(14px, 1.15vw, 16px);
  opacity: 0.68;
  line-height: 1.7;
}

.how-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}

.how-card-visual img {
  max-height: 340px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* ── PRODUCT ── */
.product {
  padding: 100px 0;
  background: var(--paper);
  border-top: 2px solid rgba(14,14,20,.07);
  border-bottom: 2px solid rgba(14,14,20,.07);
}
.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-list {
  display: flex; flex-direction: column; gap: 14px;
  margin: 28px 0 36px;
}
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500;
}
.feat-check { flex-shrink: 0; }

/* Product visual - vraies photos PNG sans fond */
.product-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 560px;
}
.product-mockup-img {
  width: 440px;
  height: auto;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-62%, -50%) rotate(-4deg);
  filter: drop-shadow(10px 12px 0 rgba(14,14,20,.18));
  transition: transform .25s, filter .25s;
}
.product-mockup-img:hover {
  transform: translate(-62%, -50%) rotate(-6deg);
  filter: drop-shadow(14px 16px 0 rgba(14,14,20,.22));
}
.product-mockup-img-rd {
  width: 270px;
  height: auto;
  object-fit: contain;
  position: absolute;
  right: 0;
  top: 8%;
  transform: rotate(5deg);
  filter: drop-shadow(6px 8px 0 rgba(14,14,20,.15));
  transition: transform .25s, filter .25s;
}
.product-mockup-img-rd:hover {
  transform: rotate(7deg);
  filter: drop-shadow(10px 12px 0 rgba(14,14,20,.2));
}

/* ── WHATSAPP ── */
.whatsapp-section {
  padding: 100px 0;
  background: var(--cream);
}
.wa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* WA phone mockup */
.wa-phone-wrap { display: flex; justify-content: center; }
.wa-phone {
  width: 320px;
  background: white;
  border: 2.5px solid var(--ink);
  border-radius: 32px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  display: flex; flex-direction: column;
  animation: float-phone 5s ease-in-out infinite;
}
.wa-status-bar {
  background: #075E54;
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 14px;
  color: white; font-size: 11px; opacity: .8;
}
.wa-header {
  background: #075E54;
  display: flex; align-items: center;
  padding: 10px 14px 14px;
  gap: 10px;
}
.wa-back { color: white; font-size: 16px; cursor: pointer; padding-right: 4px; }
.wa-avatar-wrap { display: flex; align-items: center; gap: 10px; flex: 1; }
.wa-avatar-circle {
  width: 38px; height: 38px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.wa-contact-name { color: white; font-weight: 700; font-size: 14px; }
.wa-online { color: rgba(255,255,255,.75); font-size: 11px; }
.wa-icons { color: white; font-size: 18px; letter-spacing: 3px; }

.wa-body {
  flex: 1;
  background: #ECE5DD;
  padding: 12px 10px;
  display: flex; flex-direction: column; gap: 6px;
  min-height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9b99a' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.wa-date-sep {
  text-align: center;
  font-size: 11px;
  background: rgba(14,14,20,.08);
  color: rgba(14,14,20,.5);
  padding: 3px 10px;
  border-radius: 8px;
  align-self: center;
  margin-bottom: 4px;
}
.wa-bubble {
  max-width: 82%;
  padding: 8px 12px 6px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  position: relative;
}
.wa-in  { background: white;    align-self: flex-start; border-top-left-radius: 3px; }
.wa-out { background: #DCF8C6;  align-self: flex-end;   border-top-right-radius: 3px; }
.wa-bubble-text { color: #0E0E14; }
.wa-bubble-time { font-size: 10px; opacity: .45; text-align: right; margin-top: 3px; }

.wa-recap-card { padding: 10px 14px; gap: 2px; display: flex; flex-direction: column; }

/* Typing indicator */
.wa-typing {
  display: flex; align-items: center; gap: 4px;
  background: white; border-radius: 10px; border-top-left-radius: 3px;
  padding: 10px 14px; align-self: flex-start; width: 56px;
}
.wa-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(14,14,20,.28);
  animation: typing-bounce 1.1s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: .15s; }
.wa-typing span:nth-child(3) { animation-delay: .30s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30%            { transform: translateY(-5px); opacity: 1; }
}
.recap-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; padding: 3px 0;
}
.recap-row span:first-child { font-size: 14px; }

.wa-input-bar {
  background: #F0F0F0;
  display: flex; align-items: center;
  padding: 10px 12px;
  gap: 10px;
  border-top: 1px solid rgba(14,14,20,.08);
}
.wa-input-fake {
  flex: 1; background: white; border-radius: 20px;
  padding: 8px 14px; font-size: 13px;
  color: rgba(14,14,20,.35);
  border: 1px solid rgba(14,14,20,.1);
}
.wa-send-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
}

/* ── RESULTS ── */
.results {
  padding: 100px 0;
  background: var(--paper);
  border-top: 2px solid rgba(14,14,20,.07);
}
.results-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.bento-card {
  background: white;
  border: 2px solid var(--ink);
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.bento-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.bento-large { padding: 40px 36px; }
.bento-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 56px; line-height: 1; margin-bottom: 8px;
}
.bento-large .bento-num { font-size: 72px; }
.bento-label { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.bento-desc  { font-size: 13px; opacity: .72; line-height: 1.5; }
.bento-deco  { position: absolute; bottom: -12px; right: -12px; pointer-events: none; }


.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: white;
  border: 2px solid rgba(14,14,20,.1);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.testi-card:hover { border-color: var(--ink); box-shadow: var(--shadow-sm); transform: translate(-2px,-2px); }
.testi-stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { font-size: 14px; line-height: 1.65; opacity: .78; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: white; flex-shrink: 0;
}
.testi-author > div  { display: flex; flex-direction: column; gap: 1px; }
.testi-author strong { font-size: 14px; display: block; line-height: 1.2; }
.testi-author span   { font-size: 12px; opacity: .7; line-height: 1.2; }

/* ── TESTIMONIALS CAROUSEL V2 ── */
.testi-carousel-wrap {
  position: relative;
}
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.testi-arrow:hover { transform: translateY(-50%) scale(1.08); box-shadow: var(--shadow); }
.testi-arrow:active { transform: translateY(-50%) scale(0.95); }
.testi-arrow-left  { left: 12px; }
.testi-arrow-right { right: 12px; }
.testi-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 0 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.testi-carousel::-webkit-scrollbar { display: none; }
.testi-carousel.dragging { cursor: grabbing; scroll-snap-type: none; }
.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 12px;
}
.testi-card-v2 { scroll-snap-align: start; }

.testi-card-v2 {
  flex: 0 0 340px;
  width: 340px;
  height: 340px;
  border-radius: 20px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}
.testi-card-v2 img.testi-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.testi-card-v2 .testi-overlay {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  background: rgba(14,14,20,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 16px;
  color: white;
  z-index: 2;
}
.testi-card-v2 .testi-stars {
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.testi-card-v2 .testi-overlay p {
  font-size: 12.5px;
  line-height: 1.45;
  margin: 0 0 10px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-card-v2 .testi-author { display: flex; flex-direction: column; gap: 1px; }
.testi-card-v2 .testi-author strong { font-size: 12px; line-height: 1.2; color: white; }
.testi-card-v2 .testi-author span { font-size: 11px; line-height: 1.2; color: rgba(255,255,255,.6); }

@media (prefers-reduced-motion: reduce) {
  .testi-carousel[data-auto] { scroll-behavior: smooth; }
}

/* ── PRICING ── */
.pricing { padding: 100px 0; background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}
.pricing-card {
  background: white;
  border: 2px solid var(--ink);
  border-radius: var(--r);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.pricing-featured {
  background: var(--ink); color: white;
  transform: translateY(-10px);
  box-shadow: 6px 6px 0 var(--violet);
}
.pricing-featured:hover { transform: translateY(-10px) translate(-3px,-3px); box-shadow: 10px 10px 0 var(--violet); }
.pricing-featured .plan-desc,
.pricing-featured .plan-features li { opacity: .75; }
.pricing-featured .plan-period { color: rgba(255,255,255,.45); }

.plan-popular {
  display: inline-block;
  background: var(--lime); color: var(--ink);
  font-weight: 700; font-size: 11px;
  padding: 4px 12px; border-radius: 100px;
  border: 1.5px solid var(--ink);
  margin-bottom: 16px;
}
.plan-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 22px; margin-bottom: 10px;
}
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.plan-amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 44px; line-height: 1;
}
.plan-period { font-size: 14px; opacity: .65; }
.plan-setup { font-size: 12px; opacity: .65; margin-top: 4px; margin-bottom: 18px; }
.plan-desc { font-size: 13px; opacity: .75; margin-bottom: 24px; line-height: 1.5; }
.plan-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 8px; font-size: 14px;
}
.plan-features li svg {
  flex-shrink: 0;
  display: block;
  width: 16px; height: 16px;
  min-width: 16px; min-height: 16px;
  margin-top: 2px;
}
.plan-btn { width: 100%; justify-content: center; }
.pricing-featured .plan-btn { background: var(--violet); color: white; border-color: var(--violet); }
.pricing-note { text-align: center; font-size: 13px; opacity: .45; margin-bottom: 56px; }


/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: var(--paper);
  border-top: 2px solid rgba(14,14,20,.07);
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid rgba(14,14,20,.1); }
.faq-item:first-child { border-top: 1.5px solid rgba(14,14,20,.1); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0;
  font-size: 15px; font-weight: 700;
  transition: color .2s;
}
.faq-q:hover { color: var(--violet); }
.faq-chev { flex-shrink: 0; transition: transform .3s; }
.faq-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); }
.faq-q[aria-expanded="true"] { color: var(--violet); }
.faq-a {
  font-size: 14px; opacity: .7; line-height: 1.7;
  padding-bottom: 22px; display: none;
}
.faq-a.open { display: block; }

/* ── CTA ── */
.cta-section {
  padding: 100px 0;
  background: var(--cream);
  border-top: 2px solid rgba(14,14,20,.07);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-social-proof {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px; font-size: 14px; font-weight: 600; opacity: .65;
}
.proof-avatars { display: flex; }
.proof-av {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: white;
  border: 2px solid white;
  margin-left: -8px;
}
.proof-av:first-child { margin-left: 0; }

.cta-form {
  background: white;
  border: 2.5px solid var(--ink);
  border-radius: var(--r);
  padding: 36px 32px;
  box-shadow: 8px 8px 0 var(--ink);
  display: flex; flex-direction: column; gap: 20px;
}
.tally-iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  border: 0;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; opacity: .65; }
.form-group input {
  padding: 14px 16px;
  border: 2px solid rgba(14,14,20,.12);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; color: var(--ink);
  background: var(--paper);
  transition: border-color .2s; outline: none;
}
.form-group input:focus { border-color: var(--violet); }
.form-group input::placeholder { opacity: .38; }
.form-note { font-size: 12px; text-align: center; opacity: .45; margin-top: -4px; }



/* ── FOOTER ── */
.footer {
  background: var(--paper);
  border-top: 2px solid var(--ink);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.footer-brand .logo-img { height: 40px; }
.footer-brand p { font-size: 13px; opacity: .7; margin-top: 12px; line-height: 1.5; }
.footer-copy { font-size: 12px; opacity: .6; margin-top: 20px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-col h3 {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; opacity: .65; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; opacity: .65; transition: opacity .2s; }
.footer-col li a:hover { opacity: 1; }

/* ── KEYFRAMES ── */
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  60%       { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes float-phone {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-12px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@keyframes popIn {
  from { opacity: 0; transform: rotate(var(--r, 0deg)) scale(.5); }
  to   { opacity: 1; transform: rotate(var(--r, 0deg)) scale(1); }
}

@keyframes float-badge {
  0%, 100% { transform: rotate(var(--r, 0deg)) translateY(0px); }
  50%       { transform: rotate(var(--r, 0deg)) translateY(-9px); }
}

/* ── HERO ENTRANCE ── */
.hero-badge   { animation: fadeUp .6s      ease both; }
.hero-title   { animation: fadeUp .7s .10s ease both; }
.hero-sub     { animation: fadeUp .7s .20s ease both; }
.hero-actions { animation: fadeUp .7s .30s ease both; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── RESPONSIVE ── */

/* Large tablet - 1024px */
@media (max-width: 1024px) {
  .results-bento { grid-template-columns: 1fr 1fr; }
  .bento-large   { grid-column: span 2; }
  .formats-row   { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Tablet - 900px */
@media (max-width: 900px) {
  .product-inner    { grid-template-columns: 1fr; gap: 40px; }
  .product-visual   { order: -1; }
  .wa-inner         { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner        { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 32px; }
  .pricing-featured { transform: none; order: -1; }
  .pricing-featured:hover { transform: translate(-3px,-3px); }
  .testimonials     { grid-template-columns: 1fr; }
.footer-inner     { grid-template-columns: 1fr; gap: 40px; }
  .formats-row      { grid-template-columns: repeat(2, 1fr); }
  .how, .product, .whatsapp-section, .results, .pricing, .faq, .cta-section, .formats {
    padding: 64px 0;
  }
  .formats { padding-bottom: 64px; }
  .section-header  { margin-bottom: 40px; }
  .wa-phone        { animation: none; }
}

/* Large mobile - 760px */
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger           { display: flex; }
  .logo-img             { height: 92px; }
  .how-card-inner       { grid-template-columns: 1fr; min-height: auto; }
  .how-card-visual      { min-height: 220px; order: -1; }
  .how-card-content     { padding: 32px 24px; gap: 16px; }
  .how-card             { position: relative; top: auto; }
  .results-bento        { grid-template-columns: 1fr 1fr; }
  .bento-large          { grid-column: span 2; }
  .bento-large .bento-num { font-size: 52px; }
  .testimonials         { grid-template-columns: 1fr; }
  .testi-card-v2        { flex: 0 0 280px; width: 280px; height: 280px; }
  .testi-card-v2 .testi-overlay { left: 10px; right: 10px; bottom: 10px; padding: 12px 14px; }
  .testi-card-v2 .testi-overlay p { font-size: 11.5px; -webkit-line-clamp: 5; }
  .testi-arrow          { width: 38px; height: 38px; }
  .testi-arrow-left     { left: 4px; }
  .testi-arrow-right    { right: 4px; }
  .footer-links         { grid-template-columns: 1fr 1fr; }
  .hero                 { padding-top: 120px; }
  .hero-center          { padding-top: 40px; padding-bottom: 16px; }
  .plaque-reveal-stage  { min-height: 360px; }
  .plaque-bubble        { font-size: 11px; padding: 8px 14px; top: 8%; right: -8px; }

  /* 3 hooks flottants sous les boutons hero */
  .hero-hooks-mobile {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px; margin-top: 20px;
  }
  .hero-hooks-mobile .hook-float {
    display: inline-flex;
    position: static;
    font-size: 11px; padding: 5px 10px;
  }
  .cta-inner            { gap: 32px; }
  .cta-copy .sticker    { display: flex; flex-wrap: wrap; justify-content: center; white-space: normal; text-align: center; width: 100%; max-width: 100%; box-sizing: border-box; line-height: 1.4; padding: 8px 14px; font-size: 12px; }
  .results-bento        { gap: 14px; }
}

/* Mobile - 520px */
@media (max-width: 520px) {
  .container            { padding: 0 20px; }
  .results-bento        { grid-template-columns: 1fr; }
  .bento-large          { grid-column: auto; }
  .footer-links         { grid-template-columns: 1fr; }
  .hero                 { padding-top: 120px; }
  .hero-center          { padding-top: 36px; }
  .hero-actions         { flex-direction: column; width: 100%; }
  .hero-actions .btn    { width: 100%; justify-content: center; }
  .plaque-reveal-stage > picture { width: calc(100vw - 12px); }
  .product-mockup-img   { width: min(300px, 70vw); }
  .product-mockup-img-rd{ width: min(200px, 46vw); }
  .product-mockup-wrap  { height: 400px; }
  .wa-phone             { width: min(320px, calc(100vw - 40px)); }
  .cta-form             { padding: 24px 18px; }
  .tally-iframe         { min-height: 520px; }
  .cta-copy .sticker    { display: flex; flex-wrap: wrap; justify-content: center; white-space: normal; text-align: center; width: 100%; max-width: 100%; box-sizing: border-box; line-height: 1.4; padding: 8px 14px; font-size: 12px; }
  .formats-row          { gap: 12px; }
  .format-desc          { display: none; }
  .format-name          { font-size: 14px; }
  .how { padding: 36px 0; }
  .product, .whatsapp-section, .results, .pricing, .faq, .cta-section, .formats {
    padding: 52px 0;
  }
  .cta-section          { padding: 36px 0; }
  .cta-title            { font-size: clamp(30px, 8vw, 40px); }
  .cta-inner            { gap: 20px; }
  .cta-social-proof     { display: none; }
  .section-header       { margin-bottom: 28px; }
  .wa-phone             { animation: none; }
}

/* Small mobile - 420px */
@media (max-width: 420px) {
  .container              { padding: 0 16px; }
  .formats-row            { grid-template-columns: 1fr; }
  .product-mockup-wrap    { height: 340px; }
  .product-mockup-img     { width: min(260px, 78vw); }
  .product-mockup-img-rd  { width: min(160px, 42vw); }
  .bento-num              { font-size: 44px; }
  .results-bento          { gap: 10px; }
  .hero-title             { font-size: clamp(34px, 9vw, 56px); }
  .section-title          { font-size: clamp(28px, 8vw, 48px); }
  .pricing-card           { padding: 28px 20px; }
  .plan-amount            { font-size: 36px; }
  .faq-q                  { font-size: 14px; }
}

/* Very small - 380px */
@media (max-width: 380px) {
  .plaque-reveal-stage  { min-height: auto; padding-bottom: 16px; }
  .plaque-reveal-stage > picture { width: calc(100vw - 12px); }
  .testi-card           { padding: 20px 16px; }
  .footer               { padding: 40px 0 28px; }
  .cta-form             { padding: 20px 14px; }
}

/* ════════════════════════════════════════
   DYNAMIC ANIMATIONS
════════════════════════════════════════ */

/* Sticker pop entrance */
.sticker {
  opacity: 0;
  transform: scale(0.7) rotate(-5deg);
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .2s ease;
}
.sticker.visible {
  opacity: 1;
  transform: none;
}
.sticker.visible:hover { transform: rotate(-4deg) scale(1.06); box-shadow: var(--shadow); }

/* Section sub text slide - only for headers without their own .reveal */
.section-header:not(.reveal) .section-sub {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s 0.2s ease, transform 0.5s 0.2s ease;
}
.section-header:not(.reveal).visible .section-sub {
  opacity: 1;
  transform: none;
}

/* Problème cards - alternating horizontal slide */
.probleme-grid .probleme-card.reveal:nth-child(odd)  { transform: translateX(-44px); }
.probleme-grid .probleme-card.reveal:nth-child(even) { transform: translateX(44px); }
.probleme-grid .probleme-card.reveal.visible          { transform: none; }

/* Feature list items stagger */
.feature-list li {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.product-content.visible .feature-list li,
.wa-copy.visible .feature-list li {
  opacity: 1;
  transform: none;
}
.feature-list li:nth-child(1) { transition-delay: 0.08s; }
.feature-list li:nth-child(2) { transition-delay: 0.16s; }
.feature-list li:nth-child(3) { transition-delay: 0.24s; }
.feature-list li:nth-child(4) { transition-delay: 0.32s; }
.feature-list li:nth-child(5) { transition-delay: 0.40s; }

/* How card visual hover zoom */
.how-card-visual img { transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.how-card:hover .how-card-visual img { transform: scale(1.06) translateY(-6px); }

/* CTA primary button glow pulse */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 4px 4px 0 var(--ink); }
  50%       { box-shadow: 4px 4px 0 var(--ink), 0 0 24px rgba(157, 107, 255, 0.4); }
}
.cta-section .btn-primary:not(:hover) { animation: cta-pulse 2.5s ease-in-out infinite; }
