/* ================================================================
   DÉCROCHE-MOI — Design System (version tout public)
   Palette tirée du logo : rose framboise + violet profond + lilas
   Note : les noms de variables (--orange, --green, --cream) sont
   conservés volontairement pour préserver la compatibilité avec
   les 2000+ lignes de CSS qui les utilisent. Seules les valeurs
   ont été remappées vers la nouvelle palette.
   ================================================================ */

:root {
  /* Couleurs principales (anciennement "orange" → désormais rose framboise) */
  --orange: #E91E63;        /* Rose framboise (anciennement orange vif) */
  --orange-deep: #C2185B;   /* Rose foncé (hover, accents profonds) */
  --orange-soft: #F8BBD0;   /* Rose pâle (badges, fonds doux) */

  /* Couleurs secondaires (anciennement "green" → désormais violet profond) */
  --green: #6A1B9A;         /* Violet profond (anciennement vert sapin) */
  --green-soft: #8E24AA;    /* Violet médium */
  --green-glow: #BA68C8;    /* Violet clair (highlights) */

  /* Fonds (anciennement "cream" → désormais lilas/crème rosée) */
  --cream: #FAF5FA;         /* Crème lilas très clair (fond général) */
  --cream-warm: #F3E5F5;    /* Lilas pâle (alternance de sections) */
  --cream-deep: #E1BEE7;    /* Lilas plus saturé (accents) */

  /* Texte */
  --ink: #2D1B3D;           /* Texte principal — aubergine très sombre */
  --ink-soft: #5A4A6A;      /* Texte secondaire — violet-gris */
  --muted: #8A7B98;         /* Texte tertiaire — violet pâle */

  /* Lignes & cartes */
  --line: rgba(45, 27, 61, 0.10);
  --line-soft: rgba(45, 27, 61, 0.05);
  --card: rgba(255, 250, 253, 0.78);

  /* Ombres (recolorées vers le violet pour cohérence) */
  --shadow-sm: 0 4px 14px rgba(106, 27, 154, 0.08);
  --shadow-md: 0 18px 48px rgba(106, 27, 154, 0.12);
  --shadow-lg: 0 32px 90px rgba(106, 27, 154, 0.18);
  --shadow-orange: 0 20px 50px rgba(233, 30, 99, 0.32);

  /* Typographie */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Geom */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(248, 187, 208, 0.40), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 40%, rgba(106, 27, 154, 0.08), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(233, 30, 99, 0.10), transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Texture grain */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.15 0 0 0 0 0.1 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

::selection { background: var(--orange); color: #fff; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(250, 245, 250, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.3s;
}

.site-header.scrolled {
  background: rgba(250, 245, 250, 0.92);
  border-bottom-color: var(--line);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 4px 20px rgba(45, 27, 61, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out-back);
}

.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.08); }

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.brand-text em {
  font-style: italic;
  color: var(--orange);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav a:not(.nav-cta):hover {
  background: rgba(45, 27, 61, 0.05);
}

.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 11px 20px !important;
  font-weight: 600 !important;
  transition: all 0.25s var(--ease-out-expo);
}

.nav-cta:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

/* Burger mobile */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ================================================================
   SECTIONS
   ================================================================ */
main { position: relative; z-index: 2; }

.section {
  position: relative;
  padding: clamp(70px, 10vw, 140px) clamp(20px, 6vw, 90px);
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 11px;
  color: var(--orange-deep);
  margin-bottom: 18px;
}

.eyebrow::before, .section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(44px, 7.2vw, 110px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 em {
  font-style: italic;
  color: var(--orange);
  font-weight: 400;
}

h1 .accent-green {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}

h2 {
  font-size: clamp(32px, 4.8vw, 64px);
  letter-spacing: -0.025em;
  max-width: 16ch;
}

h2.wide-heading { max-width: 22ch; }

h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.lead {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 540px;
  margin: 24px 0 32px;
  font-weight: 400;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  justify-items: start;
  padding-top: clamp(120px, 14vh, 160px);
  padding-bottom: clamp(60px, 8vh, 100px);
  position: relative;
  overflow: hidden;
}

/* Limiter la largeur du contenu sur grand écran (sinon le texte s'étire trop) */
.hero .hero-copy {
  max-width: 720px;
}

/* Vidéo de fond du hero — responsive desktop / mobile */
.hero-bg-video,
video.hero-bg-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  z-index: 0 !important;
  display: block !important;
  /* Fade-in doux au chargement */
  opacity: 0;
  animation: hero-video-fade-in 1.2s ease-out 0.3s forwards;
  /* Sur Safari iOS, éviter le menu de contrôles */
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  /* Sortir du grid flow */
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

@keyframes hero-video-fade-in {
  to { opacity: 1; }
}

/* Overlay sombre + dégradé pour garder la lisibilité du texte */
.hero-bg-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 1 !important;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  background:
    linear-gradient(105deg,
      rgba(250, 245, 250, 0.92) 0%,
      rgba(250, 245, 250, 0.78) 35%,
      rgba(250, 245, 250, 0.40) 60%,
      rgba(250, 245, 250, 0.20) 100%
    );
  pointer-events: none;
}

/* Sur mobile, overlay plus opaque (le texte passe au-dessus de toute la vidéo) */
@media (max-width: 1024px) {
  .hero-bg-overlay {
    background:
      linear-gradient(180deg,
        rgba(250, 245, 250, 0.88) 0%,
        rgba(250, 245, 250, 0.65) 50%,
        rgba(250, 245, 250, 0.35) 100%
      );
  }
}

/* Réduire le motion pour les utilisateurs sensibles */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { display: none !important; }
}

.hero-copy { position: relative; z-index: 3; }

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(106, 27, 154, 0.06);
  border: 1px solid rgba(106, 27, 154, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 24px;
}

.hero-date .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(233, 30, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.3s var(--ease-out-expo);
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: "→";
  display: inline-block;
  transition: transform 0.3s var(--ease-out-back);
  font-size: 17px;
}

.btn:hover::after { transform: translateX(4px); }

.btn.primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn.secondary:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn.accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn.accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(233, 30, 99, 0.45);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ink-soft);
  background: rgba(255, 250, 240, 0.5);
  font-weight: 500;
  font-size: 13px;
}

.trust-row span::before {
  content: "●";
  color: var(--green);
  font-size: 10px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 3;
  aspect-ratio: 1 / 1.15;
  max-height: 680px;
  display: grid;
  place-items: center;
}

.hero-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 30% 20%, rgba(42, 128, 104, 0.4), transparent 60%),
    linear-gradient(160deg, var(--green-soft) 0%, var(--green) 60%, #3A0E5C 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  color: #fff;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 90%, rgba(233, 30, 99, 0.22), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(248, 187, 208, 0.18), transparent 45%);
  pointer-events: none;
}

.hero-logo-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 90px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero-logo {
  width: 78%;
  max-width: 440px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.35));
  animation: float-logo 6s ease-in-out infinite;
  transform-origin: center;
}

/* Polaroid-style plate for the logo - becomes an editorial element */
.hero-logo-plate {
  position: relative;
  width: 70%;
  max-width: 380px;
  aspect-ratio: 1 / 1.12;
  border-radius: 8px;
  background: #fffaf1;
  padding: 14px 14px 40px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.38),
    0 10px 20px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-logo 6.5s ease-in-out infinite;
  transform: rotate(-3deg);
}

.hero-logo-plate::after {
  content: "depuis 2025";
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.hero-logo-plate img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  animation: none;
  filter: none;
  mix-blend-mode: multiply;
}

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

.hero-card-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.hero-card-top .tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.8;
}

.hero-card-top .dot-line {
  display: flex;
  gap: 4px;
}
.hero-card-top .dot-line i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  font-style: normal;
}
.hero-card-top .dot-line i:last-child { background: var(--orange); }

.hero-card-bottom {
  position: relative;
  z-index: 2;
}

.hero-card-bottom p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
  margin: 0;
  font-weight: 400;
  max-width: 15ch;
}

.hero-card-bottom p em {
  color: var(--orange-soft);
  font-style: italic;
}

/* Marquee ticker below hero */
.marquee {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 3;
}

.marquee-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll-x 32s linear infinite;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-track span::after {
  content: "✦";
  color: var(--orange);
  font-style: normal;
}

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

/* ================================================================
   PROBLEM SECTION — 3 cards
   ================================================================ */
.problem-intro {
  max-width: 820px;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(233, 30, 99, 0.25);
}

.card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 38px;
  color: var(--orange);
  opacity: 0.5;
  font-weight: 400;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ================================================================
   CONCEPT SPLIT
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.split-sticky {
  position: sticky;
  top: 120px;
}

.copy-block {
  display: grid;
  gap: 22px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
}

.copy-block p { margin: 0; }

.copy-block p strong {
  color: var(--ink);
  font-weight: 600;
}

.copy-block p::first-letter {
  color: var(--orange);
  font-weight: 700;
}

.concept-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  color: var(--green);
  padding-left: 24px;
  border-left: 3px solid var(--orange);
  margin-top: 16px;
}

/* ================================================================
   STEPS — Timeline étapes
   ================================================================ */
.steps-intro { margin-bottom: clamp(40px, 6vw, 60px); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  backdrop-filter: blur(10px);
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.step:hover::before { transform: scaleX(1); }

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 30, 99, 0.3);
  box-shadow: var(--shadow-md);
}

.step-num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}

.step-num b {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--orange);
  line-height: 0.8;
  font-style: italic;
}

.step-num small {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.step h3 { margin-bottom: 10px; font-size: 20px; }

.step p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* ================================================================
   ETHICAL — carte verte large
   ================================================================ */
.ethical-wrap {
  padding-top: clamp(40px, 6vw, 70px);
  padding-bottom: clamp(40px, 6vw, 70px);
}

.ethical-card {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(42, 128, 104, 0.45), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(233, 30, 99, 0.15), transparent 50%),
    linear-gradient(145deg, var(--green-soft), var(--green) 60%, #3A0E5C);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.ethical-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.18), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.ethical-card .section-kicker {
  color: var(--orange-soft);
}
.ethical-card .section-kicker::before { background: var(--orange-soft); }

.ethical-card h2 {
  color: #fff;
  max-width: 20ch;
  margin-bottom: 20px;
}

.ethical-card h2 em {
  font-style: italic;
  color: var(--orange-soft);
  font-weight: 400;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
}

.check-list li {
  position: relative;
  padding-left: 38px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  line-height: 1.5;
  padding-top: 2px;
  padding-bottom: 2px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ================================================================
   AUDIENCE
   ================================================================ */
.audience h2 { max-width: 22ch; margin-bottom: 28px; }

.audience-lead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-soft);
  max-width: 780px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.not-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.not-list > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s var(--ease-out-expo);
}

.not-list > div:hover { transform: translateY(-4px); }

.not-list .tag-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.not-list .tag-label.negative { color: #B84A3F; }
.not-list .tag-label.positive { color: var(--green-glow); }

.not-list .tag-label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.not-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}

/* ================================================================
   INFO BAND — Event details
   ================================================================ */
.info-band-wrap {
  padding: 0;
  background: var(--ink);
  color: var(--cream);
}

.info-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(20px, 6vw, 90px);
}

.info-band > div {
  padding: 44px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.info-band > div:last-child { border-right: none; }

.info-band > div:hover {
  background: rgba(233, 30, 99, 0.08);
}

.info-band span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}

.info-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.info-band strong em {
  font-style: italic;
  color: var(--orange);
}

/* ================================================================
   FORM
   ================================================================ */
.form-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 120px;
}

.form-intro h2 { margin-bottom: 20px; max-width: 14ch; }

.form-intro > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.form-meta {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(106, 27, 154, 0.05);
  border: 1px solid rgba(106, 27, 154, 0.1);
  border-radius: var(--radius-md);
}

.form-meta div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.form-meta div span:first-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 600;
}

.form-meta div span:last-child {
  font-weight: 600;
  color: var(--ink);
}

.application-form {
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.progress-wrap {
  padding: 26px 32px 10px;
  background: var(--cream-warm);
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.progress-labels b {
  color: var(--orange-deep);
  font-weight: 700;
}

.progress {
  height: 4px;
  background: rgba(45, 27, 61, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  border-radius: 4px;
  transition: width 0.45s var(--ease-out-expo);
}

.form-step {
  display: none;
  border: none;
  margin: 0;
  padding: 32px;
  animation: step-in 0.5s var(--ease-out-expo);
}

.form-step.active {
  display: grid;
  gap: 18px;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

legend {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  padding: 0;
  width: 100%;
  color: var(--ink);
}

legend em { font-style: italic; color: var(--orange); font-weight: 400; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

input:hover, select:hover, textarea:hover {
  border-color: rgba(45, 27, 61, 0.25);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.15);
}

textarea { resize: vertical; min-height: 92px; }

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231A1410' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(233, 30, 99, 0.06);
  border: 1px solid rgba(233, 30, 99, 0.18);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox input {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--orange-deep);
}

.checkbox span { font-weight: 500; }

.charter {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(106, 27, 154, 0.06);
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.6;
  border-left: 3px solid var(--green);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 32px 32px;
  align-items: stretch;
}

.form-actions .btn { width: 100%; }

/* Bouton Retour : flèche à gauche, plus discret */
.btn.btn-back {
  order: 99; /* toujours en dernier visuellement */
}
.btn.btn-back::after {
  content: none;
}
.btn.btn-back .arrow-back {
  display: inline-block;
  margin-right: 6px;
  font-size: 17px;
  transition: transform 0.3s var(--ease-out-back);
}
.btn.btn-back:hover .arrow-back {
  transform: translateX(-4px);
}

/* ================================================================
   FAQ
   ================================================================ */
.faq h2 { margin-bottom: 40px; }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.faq details[open] {
  background: rgba(255, 250, 240, 0.9);
  border-color: rgba(233, 30, 99, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--ink);
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--orange);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details p {
  padding-top: 16px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ================================================================
   CTA final
   ================================================================ */
.cta-final {
  text-align: center;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.cta-final h2 {
  max-width: 18ch;
  margin: 0 auto 20px;
  font-size: clamp(36px, 5.5vw, 72px);
}

.cta-final h2 em { font-style: italic; color: var(--orange); font-weight: 400; }

.cta-final p {
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  position: relative;
  z-index: 2;
  padding: 40px clamp(20px, 6vw, 90px);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}

.footer-left { text-align: left; }
.footer-center { text-align: center; font-family: var(--font-display); font-style: italic; color: var(--orange); }
.footer-right { text-align: right; }

.footer a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover { color: var(--orange-deep); }

/* ================================================================
   REVEAL ANIMATIONS (scroll-triggered)
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }

/* ================================================================
   VOICE RECORDER
   ================================================================ */
.voice-intro {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: -4px 0 8px;
  padding: 16px 18px;
  background: rgba(233, 30, 99, 0.08);
  border: 1px solid rgba(233, 30, 99, 0.2);
  border-radius: var(--radius-sm);
}

.voice-intro strong {
  color: var(--orange-deep);
  font-weight: 600;
}

.voice-recorder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.voice-recorder.is-recording {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.12);
}

.voice-recorder.is-done {
  border-color: var(--green-glow);
  background: rgba(42, 128, 104, 0.04);
}

.voice-question {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.voice-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
  font-weight: 400;
  margin-top: -2px;
}

.voice-question p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}

.voice-question p em {
  color: var(--orange-deep);
  font-style: normal;
  font-weight: 600;
}

.voice-question p small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

.voice-control {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0 4px;
}

.voice-btn-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  width: 120px;
}

.voice-btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  display: grid;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.voice-btn:hover { background: var(--orange-deep); }
.voice-btn:active { transform: scale(0.94); }

.voice-btn-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0;
  transition: opacity 0.25s;
}

.voice-btn-dot {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.25s var(--ease-out-back);
}

.voice-btn-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  max-width: 120px;
}

.voice-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.voice-recorder.is-recording .voice-btn {
  background: var(--orange);
  animation: pulse-record 1.2s ease-in-out infinite;
}

.voice-recorder.is-recording .voice-btn-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
}

.voice-recorder.is-recording .voice-btn-ring {
  opacity: 1;
  animation: ring-pulse 1.5s ease-out infinite;
}

@keyframes pulse-record {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.voice-timer {
  font-family: var(--font-display);
  color: var(--ink);
  white-space: nowrap;
}

.voice-timer b {
  font-size: 32px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.voice-timer span {
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
}

.voice-recorder.is-recording .voice-timer b {
  color: var(--orange-deep);
}

.voice-status {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.voice-status.ok { color: var(--green-glow); }
.voice-status.warn { color: #B84A3F; }

.voice-playback {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voice-playback[hidden] {
  display: none !important;
}

.voice-playback audio {
  width: 100%;
  height: 42px;
  border-radius: 999px;
  outline: none;
}

.voice-playback audio::-webkit-media-controls-panel {
  background: var(--cream-warm);
}

.voice-redo {
  align-self: flex-start;
  padding: 10px 18px;
  font-size: 13px;
}

.voice-recorder[data-denied="true"] .voice-control {
  opacity: 0.5;
}

.voice-recorder[data-denied="true"] .voice-status::before {
  content: "⚠ ";
}

/* Toggle "Je préfère écrire" */
.voice-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.voice-toggle:hover {
  background: rgba(233, 30, 99, 0.08);
  border-color: rgba(233, 30, 99, 0.4);
  color: var(--orange-deep);
}

/* Mode texte (alternative à l'enregistrement vocal) */
.voice-mode-text textarea {
  width: 100%;
  min-height: 110px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.voice-mode-text textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.15);
}
.voice-text-counter {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.voice-text-counter em {
  font-style: italic;
  color: var(--orange-deep);
  font-weight: 600;
}
.voice-text-counter.is-valid em { color: var(--green-glow); }
.voice-text-counter.is-valid em::before { content: "✓ "; }

.voice-mode[hidden] { display: none; }

/* Bouton verrouillé pendant les 12 premières secondes d'enregistrement */
.voice-btn.is-locked {
  background: var(--muted) !important;
  cursor: not-allowed;
  opacity: 0.6;
}
.voice-btn.is-locked:hover {
  background: var(--muted) !important;
  transform: none;
}
.voice-recorder.is-locked .voice-btn-label {
  color: var(--muted);
  font-style: italic;
  font-weight: 500;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 0; min-height: 100vh; padding-top: 130px; }
  .hero-visual { display: none !important; }
  .split, .form-section { grid-template-columns: 1fr; gap: 30px; }
  .split-sticky, .form-intro { position: static; }
  .grid-3, .steps-grid { grid-template-columns: 1fr 1fr; }
  .info-band { grid-template-columns: 1fr 1fr; }
  .info-band > div:nth-child(2) { border-right: none; }
  .info-band > div:nth-child(1), .info-band > div:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  h1 { font-size: clamp(40px, 9vw, 72px); }
  .section { padding-top: clamp(60px, 9vw, 100px); padding-bottom: clamp(60px, 9vw, 100px); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: block; }
  .check-list { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 720px) {
  .nav.mobile-open {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    padding: 30px 24px;
    gap: 8px;
    z-index: 99;
    border-top: 1px solid var(--line);
  }
  .nav.mobile-open a {
    padding: 18px 20px;
    font-size: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: #fff;
  }
  .nav.mobile-open .nav-cta {
    background: var(--ink);
    text-align: center;
    margin-top: 12px;
  }

  .grid-3, .steps-grid, .not-list { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; gap: 10px; }
  .info-band { grid-template-columns: 1fr; }
  .info-band > div { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .info-band > div:last-child { border-bottom: none; }

  .field-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; }

  .footer { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .footer-left, .footer-right { text-align: center; }

  .hero {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .hero-actions .btn { width: 100%; }
  .hero-card { padding: 24px; border-radius: var(--radius-lg); }
  .hero-logo-plate { width: 84%; max-width: 320px; }

  h1 { font-size: clamp(38px, 11vw, 60px); }
  h2 { font-size: clamp(28px, 8vw, 42px); }

  .form-step { padding: 24px 20px; }
  .form-actions { padding: 0 20px 24px; }
  .progress-wrap { padding: 20px 20px 8px; }

  .ethical-card { padding: 36px 24px; }

  .voice-recorder { padding: 18px; }
  .voice-control { gap: 14px; }
  .voice-btn-wrap { width: 90px; }
  .voice-timer b { font-size: 26px; }
  .voice-btn-label { font-size: 9.5px; max-width: 100px; }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.whatsapp-fab,
a.whatsapp-fab,
a.whatsapp-fab:link,
a.whatsapp-fab:visited {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  left: auto !important;
  top: auto !important;
  width: 60px !important;
  height: 60px !important;
  min-width: 60px !important;
  max-width: 60px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  background-color: #25D366 !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35), 0 4px 10px rgba(0,0,0,0.1) !important;
  z-index: 90 !important;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-back) !important;
  -webkit-tap-highlight-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 0;
  line-height: 0;
  border: none !important;
  outline: none !important;
}

.whatsapp-fab.revealed,
a.whatsapp-fab.revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

.whatsapp-fab:hover {
  background: #1FAB54;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45), 0 6px 14px rgba(0,0,0,0.15);
}

.whatsapp-fab:active {
  transform: translateY(0) scale(0.96);
}

.whatsapp-icon,
a.whatsapp-fab .whatsapp-icon {
  width: 32px !important;
  height: 32px !important;
  position: relative !important;
  z-index: 2 !important;
  color: #fff !important;
  fill: #fff !important;
  display: block !important;
}

.whatsapp-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: 1;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--ink);
  color: var(--cream);
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.3s var(--ease-out-back);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--ink);
}

.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 720px) {
  .whatsapp-fab,
  a.whatsapp-fab,
  a.whatsapp-fab:link,
  a.whatsapp-fab:visited {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    bottom: 18px !important;
    right: 18px !important;
  }
  .whatsapp-icon,
  a.whatsapp-fab .whatsapp-icon { width: 28px !important; height: 28px !important; }
  /* Sur mobile, on cache le tooltip (le tap suffit) */
  .whatsapp-tooltip { display: none !important; }
}

/* Désactivation du pulse pour les utilisateurs sensibles */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-pulse { animation: none; opacity: 0; }
  .whatsapp-fab { transition-duration: 0.01ms !important; }
}
