/* =============================================================================
   GLOBAL ESSOR — HOME · 3 SECTIONS (v8)
   Section 1 : Pain (constat) · Section 2 : Approach (carrousel 3D)
   Section 3 : Method Premium (plan stratégique en perspective)
   ============================================================================= */


/* =========================================================================
   1. RESET CIBLÉ — neutralise les anciens styles qui causaient les bugs
   ========================================================================= */
.bb-home-pain *,
.bb-home-approach *,
.bb-home-method * {
  box-sizing: border-box;
}

.bb-home-pain h2,
.bb-home-pain h3,
.bb-home-approach h2,
.bb-home-approach h3,
.bb-home-method h2,
.bb-home-method h3 {
  display: block !important;
  white-space: normal !important;
  position: static !important;
  max-width: none !important;
  overflow: visible !important;
}


/* =========================================================================
   2. DESIGN TOKENS · partagés
   ========================================================================= */
.bb-home-pain,
.bb-home-approach,
.bb-home-method {
  --bb-ink:         #0B1B2B;
  --bb-ink-soft:    #3A4A5A;
  --bb-ink-mute:    #5A6B7B;
  --bb-line:        #E8EEF6;
  --bb-bg:          #FFFFFF;

  --bb-shadow-sm: 0 14px 40px rgba(11, 27, 43, 0.07);
  --bb-shadow-md: 0 26px 70px rgba(11, 27, 43, 0.12);
  --bb-shadow-lg: 0 40px 100px rgba(7, 26, 61, 0.18);

  --bb-radius:    20px;
  --bb-radius-lg: 28px;
  --bb-ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --bb-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  font-family: var(--bb-font);
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.bb-home-pain__inner,
.bb-home-approach__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
  position: relative;
  z-index: 1;
}


/* =========================================================================
   3. ÉLÉMENTS COMMUNS — kicker, titre, sous-titre
   ========================================================================= */
.ge-kicker {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 16px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: rgba(var(--color-blue-rgb), 0.08);
  border: 1px solid rgba(var(--color-blue-rgb), 0.16);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-blue) !important;
  width: auto;
  max-width: max-content;
  overflow: hidden;
  isolation: isolate;
}

@keyframes bb-kicker-shimmer {
  0%, 70%, 100% { transform: translateX(0); opacity: 0; }
  80%          { opacity: 1; }
  90%          { transform: translateX(400%); opacity: 0; }
}

.ge-kicker__dot {
  display: inline-block;
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-blue);
  box-shadow:
    0 0 0 0 rgba(var(--color-blue-rgb), 0.5),
    0 0 8px rgba(47, 123, 255, 0.6);
  flex-shrink: 0;
  z-index: 1;
  animation: bb-kicker-pulse 2.5s ease-out infinite;
}

@keyframes bb-kicker-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(var(--color-blue-rgb), 0.6),
      0 0 8px rgba(47, 123, 255, 0.6);
  }
  70% {
    box-shadow:
      0 0 0 8px rgba(var(--color-blue-rgb), 0),
      0 0 8px rgba(47, 123, 255, 0.6);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(var(--color-blue-rgb), 0),
      0 0 8px rgba(47, 123, 255, 0.6);
  }
}


.bb-home-pain__title,
.bb-home-approach__title {
  font-family: var(--bb-font);
  font-size: clamp(30px, 3.2vw, 46px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em;
  margin: 0 0 18px !important;
  color: var(--bb-ink) !important;
  max-width: 22ch;
  text-wrap: balance;
}

.bb-home-pain__subtitle,
.bb-home-approach__subtitle {
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0;
  color: var(--bb-ink-soft);
  max-width: 720px;
}


/* =========================================================================
   4. SECTION PAIN — Premium edition (numéro + spotlight + liseré)
   ========================================================================= */
.bb-home-pain__head { margin: 0 auto 56px; max-width: 880px; text-align: center; }
.bb-home-pain__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.bb-home-pain__card {
  --mx: 50%;
  --my: 50%;

  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 30px 28px;
  border-radius: var(--bb-radius);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
  border: 1px solid var(--bb-line);
  box-shadow: var(--bb-shadow-sm);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.5s var(--bb-ease),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.bb-home-pain__num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--bb-font);
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(var(--color-blue-rgb), 0.07);
  pointer-events: none;
  user-select: none;
  transition: color 0.5s ease;
  z-index: 0;
}

.bb-home-pain__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    500px circle at var(--mx) var(--my),
    rgba(var(--color-blue-rgb), 0.12),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.bb-home-pain__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(var(--color-blue-rgb), 0.6),
    rgba(47, 123, 255, 0.3) 40%,
    transparent 70%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.bb-home-pain__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px rgba(11, 27, 43, 0.10),
    0 8px 20px rgba(var(--color-blue-rgb), 0.10);
  border-color: rgba(var(--color-blue-rgb), 0.18);
}

.bb-home-pain__card:hover::before,
.bb-home-pain__card:hover::after { opacity: 1; }

.bb-home-pain__card:hover .bb-home-pain__num {
  color: rgba(var(--color-blue-rgb), 0.16);
}

.bb-home-pain__icon {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 0 24px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #2A5BE5, var(--color-blue) 50%, #1840B5);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 12px 24px rgba(var(--color-blue-rgb), 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  z-index: 2;
  transition: transform 0.5s var(--bb-ease), box-shadow 0.5s ease;
}

.bb-home-pain__card:hover .bb-home-pain__icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.05);
  box-shadow:
    0 20px 40px rgba(var(--color-blue-rgb), 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.bb-home-pain__icon svg { width: 24px; height: 24px; }

.bb-home-pain__cardTitle {
  position: relative;
  font-family: var(--bb-font);
  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em;
  margin: 0 0 12px !important;
  color: var(--bb-ink) !important;
  text-wrap: balance;
  z-index: 2;
}

.bb-home-pain__cardText {
  position: relative;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  color: var(--bb-ink-soft);
  flex: 1;
  z-index: 2;
}

.bb-home-pain__line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 24px;
  border-radius: 2px;
  background: var(--bb-line);
  overflow: hidden;
  z-index: 2;
}

.bb-home-pain__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-blue), var(--color-blue-bright));
  transform: translateX(-101%);
  transition: transform 0.6s var(--bb-ease);
}

.bb-home-pain__card:hover .bb-home-pain__line::after {
  transform: translateX(0);
}


/* =========================================================================
   5. RESPONSIVE (Pain)
   ========================================================================= */
@media (max-width: 1100px) {
  .bb-home-pain__inner { padding: 90px 0; }
}

@media (max-width: 760px) {
  .bb-home-pain__inner { padding: 72px 0; }
  .bb-home-pain__grid { grid-template-columns: 1fr; }
  .bb-home-pain__card { padding: 26px 22px; }
}


@media (prefers-reduced-motion: reduce) {
  .bb-home-pain__card,
  .bb-home-pain__card::before {
    transition: none !important;
  }
}

/* =============================================================================
   SECTION 2 — APPROACH
   ============================================================================= */

/* =========================================================================
   v8.1  WORDPRESS BULLETPROOF — overrides for theme conflicts
   ========================================================================= */
#bb-approach-section .bb-home-approach__mockup,
#bb-approach-section .bb-home-approach__frame {
  background-color: transparent;
}

#bb-approach-section .bb-home-approach__mockup {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  outline-offset: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 620px !important;
  height: 400px !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

@media (max-width: 1100px) {
  #bb-approach-section .bb-home-approach__mockup {
    width: 540px !important;
    height: 360px !important;
  }
}

@media (max-width: 860px) {
  #bb-approach-section .bb-home-approach__mockup {
    width: 460px !important;
    height: 320px !important;
  }
}

@media (max-width: 600px) {
  #bb-approach-section .bb-home-approach__mockup {
    width: calc(100vw - 60px) !important;
    height: auto !important;
    aspect-ratio: 620 / 400 !important;
  }
}

#bb-approach-section .bb-home-approach__frame {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}

#bb-approach-section .bb-home-approach__mockup--dashboard .bb-home-approach__frame {
  background: transparent !important;
  background-color: transparent !important;
}

/* =========================================================================
   v8.2  SCOPE & DEFENSIVE RESETS
   ========================================================================= */
.bb-home-approach,
.bb-home-approach *,
.bb-home-approach *::before,
.bb-home-approach *::after {
  box-sizing: border-box;
}

.bb-home-approach__mockup,
.bb-home-approach__mockup * {
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
  font-synthesis: none !important;
  font-style: normal !important;
  text-decoration: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Neutralise les pseudo-éléments parasites du CSS parent */
.bb-home-approach__windowUrl::before,
.bb-home-approach__windowUrl::after {
  content: none !important;
  display: none !important;
}
/* Aurora très subtile en background pour donner de la profondeur */
/* =========================================================================
   v8.3  DESIGN TOKENS
   ========================================================================= */
.bb-home-approach {
  --bb-ink:         #0B1B2B;
  --bb-ink-soft:    #3A4A5A;
  --bb-ink-mute:    #5A6B7B;
  --bb-line:        #E8EEF6;
  --bb-line-strong: #D8E0EC;
  --bb-bg:          #FFFFFF;
  --bb-green:       #1B9B5A;
  --bb-green-soft:  rgba(27, 155, 90, 0.12);

  --bb-shadow-sm: 0 14px 40px rgba(11, 27, 43, 0.07);
  --bb-shadow-md: 0 26px 70px rgba(11, 27, 43, 0.12);

  --bb-radius:    20px;
  --bb-ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --bb-ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --bb-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  font-family: var(--bb-font);
  position: relative;
  /* FOND 100% BLANC PUR — comme demandé */
  background: #FFFFFF;
  overflow: hidden;
}

/* Pas d'aurora bleue — supprimée */

.bb-home-approach__inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0 90px;
  position: relative;
  z-index: 1;
}

/* =========================================================================
   v8.4  HEADER
   ========================================================================= */
.bb-home-approach__head {
  margin: 0 auto 56px;
  max-width: 880px;
  text-align: center;
}

.bb-home-approach__kicker {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 16px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: rgba(var(--color-blue-rgb), 0.08);
  border: 1px solid rgba(var(--color-blue-rgb), 0.16);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-blue) !important;
  width: auto;
  max-width: max-content;
  overflow: hidden;
  isolation: isolate;
}

.bb-home-approach__title {
  font-family: var(--bb-font);
  font-size: clamp(32px, 3.4vw, 50px) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.025em;
  margin: 0 auto 20px !important;
  color: var(--bb-ink) !important;
  max-width: 22ch;
  text-wrap: balance;
}

.bb-home-approach__title-accent {
  position: relative;
  display: inline-block;
  color: var(--color-blue);
  white-space: nowrap;
}

.bb-home-approach__title-accent::after {
  content: "" !important;
  position: absolute !important;
  bottom: 4px !important;
  left: -4px !important;
  right: -4px !important;
  height: 16px !important;
  background: rgba(47, 123, 255, 0.35) !important;
  background-image: none !important;
  border-radius: 4px !important;
  z-index: 0 !important;
  display: block !important;
  pointer-events: none;
  /* Animation : la barre se déploie de gauche à droite au scroll */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.bb-home-approach.is-revealed .bb-home-approach__title-accent::after {
  transform: scaleX(1);
}

.bb-home-approach__subtitle {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 auto;
  color: var(--bb-ink-soft);
  max-width: 660px;
}

/* =========================================================================
   v8.5  SCOPE BAR — pills "Stratégie · Site · Google · Suivi"
   ========================================================================= */
.bb-home-approach__scope {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px auto 0;
  max-width: 720px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.7s var(--bb-ease) 0.45s,
    transform 0.7s var(--bb-ease) 0.45s;
}

.bb-home-approach.is-revealed .bb-home-approach__scope {
  opacity: 1;
  transform: translateY(0);
}

.bb-home-approach__scopeChip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid var(--bb-line);
  font-family: var(--bb-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--bb-ink-soft);
  letter-spacing: -0.005em;
  box-shadow: 0 4px 14px rgba(11, 27, 43, 0.04);
  transition:
    transform 0.3s var(--bb-ease),
    color 0.3s var(--bb-ease),
    border-color 0.3s var(--bb-ease),
    box-shadow 0.3s var(--bb-ease);
}

.bb-home-approach__scopeChip:hover {
  transform: translateY(-2px);
  color: var(--color-blue);
  border-color: rgba(var(--color-blue-rgb), 0.25);
  box-shadow: 0 8px 20px rgba(var(--color-blue-rgb), 0.10);
}

.bb-home-approach__scopeChipIcon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(var(--color-blue-rgb), 0.10), rgba(47, 123, 255, 0.18));
  color: var(--color-blue);
  flex-shrink: 0;
}

.bb-home-approach__scopeChipIcon svg {
  width: 10px;
  height: 10px;
}

.bb-home-approach__scopeSep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--bb-line-strong);
  flex-shrink: 0;
}

/* =========================================================================
   v10.6  STAGE — carrousel 3D : center grand + 2 peeks latéraux derrière
   ========================================================================= */
.bb-home-approach__stage {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 460px;
  margin: 56px auto 0;
  perspective: 2200px;
  perspective-origin: 50% 45%;
  transform-style: preserve-3d;
}

@media (max-width: 1100px) {
  .bb-home-approach__stage {
    max-width: 880px;
    height: 420px;
  }
}

@media (max-width: 860px) {
  .bb-home-approach__stage {
    max-width: 100%;
    height: 380px;
  }
}

@media (max-width: 600px) {
  .bb-home-approach__stage {
    height: auto;
    aspect-ratio: 1000 / 460;
  }
}

/* =========================================================================
   v11  NAV ZONES — zones invisibles cliquables sur les côtés
   Solution au bug "on ne peut pas cliquer sur les peeks" :
   les hit-boxes des mockups 3D sont cachées derrière le central (z-index).
   Les nav zones contournent ça en captant les clics directement.
   ========================================================================= */
.bb-home-approach__navZone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(50% - 310px);   /* va du bord du stage jusqu'au bord du mockup central */
  z-index: 4;                  /* au-dessus des peeks (z 1-2) mais sous le central (z 3) */
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  /* Le z-index 4 est juste au-dessus des peeks, mais comme on ne couvre pas
     l'espace du central, ça n'interfère pas avec les clics centraux. */
}

.bb-home-approach__navZone--left  { left: 0; }
.bb-home-approach__navZone--right { right: 0; }

.bb-home-approach__navZone:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: -4px;
  border-radius: 12px;
}

/* Bouton circulaire flottant qui apparaît dans la zone au hover (style Mac) */
.bb-home-approach__navZoneArrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  color: var(--bb-ink);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) scale(0.85);
  transition: opacity 0.3s var(--bb-ease), transform 0.3s var(--bb-ease);
  box-shadow:
    0 8px 22px rgba(11, 27, 43, 0.18),
    0 0 0 1px rgba(11, 27, 43, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bb-home-approach__navZoneArrow svg {
  width: 18px;
  height: 18px;
}

.bb-home-approach__navZone--left  .bb-home-approach__navZoneArrow { left: 22px; }
.bb-home-approach__navZone--right .bb-home-approach__navZoneArrow { right: 22px; }

.bb-home-approach__navZone:hover .bb-home-approach__navZoneArrow {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

@media (max-width: 1100px) {
  .bb-home-approach__navZone { width: calc(50% - 270px); }
}

@media (max-width: 860px) {
  .bb-home-approach__navZone { width: calc(50% - 230px); }
  .bb-home-approach__navZoneArrow { width: 40px; height: 40px; }
  .bb-home-approach__navZoneArrow svg { width: 14px; height: 14px; }
}

@media (max-width: 600px) {
  .bb-home-approach__navZone { width: 50px; }
  .bb-home-approach__navZoneArrow { width: 34px; height: 34px; }
  .bb-home-approach__navZone--left  .bb-home-approach__navZoneArrow { left: 8px; }
  .bb-home-approach__navZone--right .bb-home-approach__navZoneArrow { right: 8px; }
}

/* =========================================================================
   v10.7  MOCKUP — div role=button, transformations 3D
   ========================================================================= */
.bb-home-approach__mockup {
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: pointer;
  text-align: left;
  user-select: none;
  transform-style: preserve-3d;
  /* État initial caché */
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition:
    transform 1s var(--bb-ease),
    opacity 0.8s var(--bb-ease),
    filter 0.6s ease,
    box-shadow 0.4s ease;
  pointer-events: none;
}

.bb-home-approach__mockup:focus-visible {
  outline: 3px solid var(--color-blue) !important;
  outline-offset: 5px !important;
  border-radius: 22px;
}

/* Frame intérieur — premium shadow */
.bb-home-approach__frame {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: #FFFFFF;
  border: 1px solid rgba(11, 27, 43, 0.06);
  box-shadow:
    0 50px 110px rgba(7, 26, 61, 0.18),
    0 20px 40px rgba(11, 27, 43, 0.10),
    0 0 0 1px rgba(11, 27, 43, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.4s ease;
}

/* =========================================================================
   v10.8  ÉTATS 3D : center grand devant + 2 peeks latéraux derrière
   ========================================================================= */

/* CENTRE : la fenêtre principale, grande et frontale */
.bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-center {
  opacity: 1;
  transform: translate(-50%, -50%) translateZ(40px);
  pointer-events: auto;
  z-index: 3;
}

/* LEFT PEEK : derrière, dépasse sur la gauche, tilté en 3D */
.bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-left {
  opacity: 0.92;
  transform:
    translate(calc(-50% - 250px), -50%)
    translateZ(-180px)
    rotateY(32deg)
    scale(0.66);
  filter: brightness(0.78) saturate(0.85);
  pointer-events: auto;
  z-index: 1;
}

/* RIGHT PEEK : derrière, dépasse sur la droite, tilté en 3D */
.bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-right {
  opacity: 0.92;
  transform:
    translate(calc(-50% + 250px), -50%)
    translateZ(-180px)
    rotateY(-32deg)
    scale(0.66);
  filter: brightness(0.78) saturate(0.85);
  pointer-events: auto;
  z-index: 1;
}

/* =========================================================================
   v11  MAC-STYLE SELECTION — quand on hover sur la nav zone
   Le peek correspondant s'illumine + ring bleu type Finder/Mission Control
   ========================================================================= */

/* Hover left zone → left peek devient "selected" */
.bb-home-approach.is-hovering-left .bb-home-approach__mockup.is-pos-left {
  opacity: 1;
  filter: brightness(1) saturate(1);
  transform:
    translate(calc(-50% - 250px + 28px), -50%)
    translateZ(-100px)
    rotateY(24deg)
    scale(0.74);
  z-index: 2;
}

/* Hover right zone → right peek devient "selected" */
.bb-home-approach.is-hovering-right .bb-home-approach__mockup.is-pos-right {
  opacity: 1;
  filter: brightness(1) saturate(1);
  transform:
    translate(calc(-50% + 250px - 28px), -50%)
    translateZ(-100px)
    rotateY(-24deg)
    scale(0.74);
  z-index: 2;
}

.bb-home-approach.is-hovering-left  .bb-home-approach__mockup.is-pos-left  .bb-home-approach__frame,
.bb-home-approach.is-hovering-right .bb-home-approach__mockup.is-pos-right .bb-home-approach__frame {
  box-shadow:
    /* Halo doux bleu — sans contour épais */
    0 0 50px rgba(47, 123, 255, 0.30),
    /* Ombre portée pour la profondeur */
    0 35px 70px rgba(7, 26, 61, 0.22),
    /* Trait fin pour démarquer le frame */
    0 0 0 1px rgba(var(--color-blue-rgb), 0.25),
    /* Highlight intérieur */
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
/* Ombre prononcée sur le mockup central pour son authority */
.bb-home-approach__mockup.is-pos-center .bb-home-approach__frame {
  box-shadow:
    0 60px 130px rgba(7, 26, 61, 0.25),
    0 25px 50px rgba(11, 27, 43, 0.13),
    0 0 0 1px rgba(11, 27, 43, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Responsive : peeks plus rapprochés sur écrans plus petits */
@media (max-width: 1100px) {
  .bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-left {
    transform:
      translate(calc(-50% - 210px), -50%)
      translateZ(-160px)
      rotateY(30deg)
      scale(0.62);
  }
  .bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-right {
    transform:
      translate(calc(-50% + 210px), -50%)
      translateZ(-160px)
      rotateY(-30deg)
      scale(0.62);
  }
  .bb-home-approach.is-hovering-left .bb-home-approach__mockup.is-pos-left {
    transform:
      translate(calc(-50% - 210px + 22px), -50%)
      translateZ(-90px)
      rotateY(22deg)
      scale(0.7);
  }
  .bb-home-approach.is-hovering-right .bb-home-approach__mockup.is-pos-right {
    transform:
      translate(calc(-50% + 210px - 22px), -50%)
      translateZ(-90px)
      rotateY(-22deg)
      scale(0.7);
  }
}

@media (max-width: 860px) {
  .bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-left {
    transform:
      translate(calc(-50% - 170px), -50%)
      translateZ(-130px)
      rotateY(28deg)
      scale(0.55);
  }
  .bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-right {
    transform:
      translate(calc(-50% + 170px), -50%)
      translateZ(-130px)
      rotateY(-28deg)
      scale(0.55);
  }
  .bb-home-approach.is-hovering-left .bb-home-approach__mockup.is-pos-left {
    transform:
      translate(calc(-50% - 170px + 18px), -50%)
      translateZ(-70px)
      rotateY(20deg)
      scale(0.62);
  }
  .bb-home-approach.is-hovering-right .bb-home-approach__mockup.is-pos-right {
    transform:
      translate(calc(-50% + 170px - 18px), -50%)
      translateZ(-70px)
      rotateY(-20deg)
      scale(0.62);
  }
}

@media (max-width: 600px) {
  .bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-left {
    transform:
      translate(calc(-50% - 130px), -50%)
      translateZ(-90px)
      rotateY(24deg)
      scale(0.45);
  }
  .bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-right {
    transform:
      translate(calc(-50% + 130px), -50%)
      translateZ(-90px)
      rotateY(-24deg)
      scale(0.45);
  }
}

/* =========================================================================
   v9.9  NOTIFICATION BADGE — "Cliquez pour pauser" sur le mockup actif
   Disparaît quand l'utilisateur a cliqué (= pausé)
   ========================================================================= */
.bb-home-approach__notification {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-bright) 100%);
  color: #FFFFFF !important;
  font-family: var(--bb-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow:
    0 12px 28px rgba(var(--color-blue-rgb), 0.50),
    0 0 0 3.5px #FFFFFF,
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.6) translateY(-6px);
  transition:
    opacity 0.5s var(--bb-ease),
    transform 0.6s var(--bb-ease);
}

.bb-home-approach__notification svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Visible UNIQUEMENT sur le mockup centré, et UNIQUEMENT si auto-rotation active */
.bb-home-approach.is-revealed:not(.is-stopped) .bb-home-approach__mockup.is-pos-center .bb-home-approach__notification {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 1.2s;
  animation:
    bb-notif-bounce 2.4s ease-in-out infinite 2.2s,
    bb-notif-pulse 2.4s ease-in-out infinite 2.2s;
}

@keyframes bb-notif-bounce {
  0%, 100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1.06) translateY(-3px); }
}

@keyframes bb-notif-pulse {
  0%, 100% {
    box-shadow:
      0 12px 28px rgba(var(--color-blue-rgb), 0.50),
      0 0 0 3.5px #FFFFFF,
      0 0 0 6px rgba(var(--color-blue-rgb), 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow:
      0 12px 28px rgba(var(--color-blue-rgb), 0.50),
      0 0 0 3.5px #FFFFFF,
      0 0 0 14px rgba(var(--color-blue-rgb), 0.20),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* Badge "Pausé" REDESIGNÉ — glassmorphic blanc, subtil et premium */
.bb-home-approach__pausedBadge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  color: var(--bb-ink) !important;
  font-family: var(--bb-font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px) scale(0.92);
  transition: opacity 0.4s var(--bb-ease), transform 0.4s var(--bb-ease);
  box-shadow:
    0 6px 18px rgba(11, 27, 43, 0.22),
    0 0 0 1px rgba(11, 27, 43, 0.06);
}

.bb-home-approach__pausedBadge svg {
  width: 9px;
  height: 9px;
  color: var(--color-blue);
  flex-shrink: 0;
}

.bb-home-approach.is-stopped .bb-home-approach__mockup.is-pos-center .bb-home-approach__pausedBadge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================================================================
   v8.10  WINDOW CHROME (barre macOS)
   ========================================================================= */
.bb-home-approach__windowBar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(11, 27, 43, 0.06);
  background: linear-gradient(180deg, #FAFBFE 0%, #F4F6FB 100%);
  position: relative;
  z-index: 2;
}

.bb-home-approach__windowDot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  flex-shrink: 0;
  border: 0.5px solid rgba(0, 0, 0, 0.05);
}

.bb-home-approach__windowDot:nth-child(1) { background: #FF6058; }
.bb-home-approach__windowDot:nth-child(2) { background: #FFBE2E; }
.bb-home-approach__windowDot:nth-child(3) { background: #28C940; }

.bb-home-approach__windowUrl {
  flex: 1;
  height: 22px;
  margin: 0 6px;
  border-radius: 7px;
  background: rgba(11, 27, 43, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--bb-font);
  font-size: 10px;
  font-weight: 600;
  color: var(--bb-ink-mute);
  letter-spacing: 0.02em;
  min-width: 0;
}

.bb-home-approach__windowUrl svg {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  opacity: 0.6;
}

.bb-home-approach__windowLive {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--bb-green-soft);
  color: var(--bb-green);
  font-family: var(--bb-font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.bb-home-approach__windowLive::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--bb-green);
  animation: bb-live-pulse 1.5s ease-in-out infinite;
}

@keyframes bb-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

/* =========================================================================
   v8.11  WINDOW BODY — base
   ========================================================================= */
.bb-home-approach__windowBody {
  position: relative;
  padding: 22px 22px 20px;
  height: calc(100% - 44px);
  overflow: hidden;
  font-family: var(--bb-font);
}

/* =========================================================================
   v8.12  MOCKUP TEAM — Interlocuteur unique
   ========================================================================= */
.bb-home-approach__teamAvatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-bright) 100%);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-family: var(--bb-font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow:
    0 8px 18px rgba(var(--color-blue-rgb), 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.bb-home-approach__teamAvatar::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--bb-green);
  border: 2.5px solid #FFFFFF;
  animation: bb-avatar-pulse 2.2s ease-out infinite;
}

@keyframes bb-avatar-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(27, 155, 90, 0.6); }
  70%  { box-shadow: 0 0 0 7px rgba(27, 155, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 155, 90, 0); }
}

.bb-home-approach__teamMeta {
  flex: 1;
  min-width: 0;
}

.bb-home-approach__teamName {
  font-family: var(--bb-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--bb-ink);
  margin: 0 0 3px;
  line-height: 1.2;
}

.bb-home-approach__teamStatus {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--bb-font);
  font-size: 11px;
  font-weight: 500;
  color: var(--bb-ink-mute);
  line-height: 1.2;
}

.bb-home-approach__teamStatus::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--bb-green);
}

/* =========================================================================
   v8.13  MOCKUP DASHBOARD — Pilotage stratégique (DARK)
   ========================================================================= */
.bb-home-approach__mockup--dashboard .bb-home-approach__windowBar {
  background: linear-gradient(180deg, #0F2552 0%, var(--color-blue-deep) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.bb-home-approach__mockup--dashboard .bb-home-approach__windowUrl {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.7);
}

.bb-home-approach__mockup--dashboard .bb-home-approach__windowBody {
  background:
    radial-gradient(ellipse 60% 40% at 75% 25%, rgba(47, 123, 255, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(var(--color-blue-rgb), 0.15) 0%, transparent 60%),
    linear-gradient(155deg, var(--color-blue-deep) 0%, #0F2552 60%, #1A3A7A 100%);
  color: #FFFFFF;
}

.bb-home-approach__mockup--dashboard .bb-home-approach__windowBody::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 40%, transparent 90%);
}

.bb-home-approach__dashEyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--bb-font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #FFFFFF;
  z-index: 1;
}

.bb-home-approach__dashEyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-blue-bright);
  box-shadow: 0 0 6px rgba(47, 123, 255, 0.9);
  animation: bb-live-pulse 2s ease-in-out infinite;
}

/* =========================================================================
   v8.16  HINT TEXT
   ========================================================================= */
.bb-home-approach__hint {
  text-align: center;
  margin: 22px auto 0;
  font-family: var(--bb-font);
  font-size: 12.5px;
  color: var(--bb-ink-mute);
  letter-spacing: -0.005em;
  opacity: 0;
  transition: opacity 0.7s var(--bb-ease) 1.7s;
}

.bb-home-approach.is-revealed .bb-home-approach__hint {
  opacity: 1;
}

.bb-home-approach__hint kbd {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  margin: 0 2px;
  border-radius: 6px;
  background: #FFFFFF;
  border: 1px solid var(--bb-line);
  box-shadow: 0 1.5px 0 rgba(11, 27, 43, 0.06);
  font-family: var(--bb-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--bb-ink);
  vertical-align: middle;
}

.bb-home-approach__hint--sep {
  display: inline-block;
  margin: 0 8px;
  opacity: 0.4;
}

/* =========================================================================
   v9.17  RESPONSIVE — propre, sans vars 3D obsolètes
   ========================================================================= */
@media (max-width: 1100px) {
  .bb-home-approach__inner { padding: 90px 0; }
}

@media (max-width: 600px) {
  .bb-home-approach__inner { padding: 72px 0; }
  .bb-home-approach__notification {
    top: -12px;
    right: -12px;
    font-size: 10px;
    padding: 6px 11px 6px 8px;
  }
  .bb-home-approach__notification svg { width: 11px; height: 11px; }
  .bb-home-approach__pausedBadge {
    top: 10px;
    right: 10px;
    font-size: 9.5px;
    padding: 4px 9px 4px 7px;
  }
  .bb-home-approach__hint { font-size: 11.5px; padding: 0 14px; line-height: 1.6; }
}

/* =========================================================================
   v8.18  SCROLL REVEAL header
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .bb-home-approach__kicker,
  .bb-home-approach__title,
  .bb-home-approach__subtitle {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
    transition:
      opacity 0.9s var(--bb-ease),
      transform 1s var(--bb-ease),
      filter 0.9s var(--bb-ease);
  }

  .bb-home-approach.is-revealed .bb-home-approach__kicker,
  .bb-home-approach.is-revealed .bb-home-approach__title,
  .bb-home-approach.is-revealed .bb-home-approach__subtitle {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }

  .bb-home-approach.is-revealed .bb-home-approach__kicker   { transition-delay: 0.05s; }
  .bb-home-approach.is-revealed .bb-home-approach__title    { transition-delay: 0.18s; }
  .bb-home-approach.is-revealed .bb-home-approach__subtitle { transition-delay: 0.32s; }
}

@media (prefers-reduced-motion: reduce) {
  .bb-home-approach *,
  .bb-home-approach *::before,
  .bb-home-approach *::after {
    animation: none !important;
    transition-duration: 0.1s !important;
  }
}

/* =========================================================================
   v12.A  MOCKUP 1 — MESSAGERIE (Conversation Maxime ↔ Maître Lambert)
   ========================================================================= */

/* Avatar Maître Lambert — vraie photo embarquée (B&W portrait professionnel) */
.bb-home-approach__teamAvatar--plaque {
  background-image: url('data:image/jpeg;base64,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') !important;
  background-size: cover !important;
  background-position: center 30% !important;
  background-color: #2A2A2A !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    inset 0 0 0 1px rgba(11, 27, 43, 0.12),
    0 6px 16px rgba(11, 27, 43, 0.25) !important;
}

/* Le span CL n'est plus visible — la photo le remplace */
.bb-home-approach__teamAvatar--plaque span {
  display: none !important;
}

/* Le pulse vert "en ligne" reste désactivé sur l'avatar photo
   (on garde le badge "En ligne" texte à droite) */
.bb-home-approach__teamAvatar--plaque::after {
  display: none;
}

/* Window bar : titre "Messages" au lieu d'URL fictive */
.bb-home-approach__mockup--team .bb-home-approach__windowUrl {
  background: transparent;
  font-weight: 700;
  color: var(--bb-ink);
  font-size: 11.5px;
  justify-content: flex-start;
  padding: 0 4px;
}
.bb-home-approach__mockup--team .bb-home-approach__windowUrl strong { font-weight: 700; }
.bb-home-approach__mockup--team .bb-home-approach__windowUrl em {
  font-style: normal;
  font-weight: 500;
  color: var(--bb-ink-mute);
  margin-left: 6px;
}

/* Header conversation : avatar + identité + statut "En ligne" */
.bb-home-approach__chatHeader {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--bb-line);
}

.bb-home-approach__chatStatus {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bb-green-soft);
  color: var(--bb-green);
  font-family: var(--bb-font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.bb-home-approach__chatStatus::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--bb-green);
  animation: bb-live-pulse 1.6s ease-in-out infinite;
}

/* Fil de messages */
.bb-home-approach__chatStream {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}

.bb-home-approach__msg {
  display: flex;
  flex-direction: column;
  max-width: 78%;
  gap: 3px;
}
.bb-home-approach__msg--received { align-self: flex-start; align-items: flex-start; }
.bb-home-approach__msg--sent     { align-self: flex-end;   align-items: flex-end; }

.bb-home-approach__msgBubble {
  padding: 9px 13px;
  border-radius: 16px;
  font-family: var(--bb-font);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  word-wrap: break-word;
}
.bb-home-approach__msg--received .bb-home-approach__msgBubble {
  background: #F4F6FB;
  color: var(--bb-ink);
  border-bottom-left-radius: 4px;
}
.bb-home-approach__msg--sent .bb-home-approach__msgBubble {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-bright) 100%);
  color: #FFFFFF;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(var(--color-blue-rgb), 0.20);
}

.bb-home-approach__msgTime {
  font-family: var(--bb-font);
  font-size: 9.5px;
  font-weight: 600;
  color: var(--bb-ink-mute);
  letter-spacing: 0.01em;
}

/* Footer : pills coordonnées (téléphone, mail, horaires) */
.bb-home-approach__contactStrip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--bb-line);
  flex-wrap: wrap;
}

.bb-home-approach__contactItem {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  background: rgba(var(--color-blue-rgb), 0.05);
  border: 1px solid rgba(var(--color-blue-rgb), 0.10);
  font-family: var(--bb-font);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--bb-ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.bb-home-approach__contactItem svg {
  width: 11px;
  height: 11px;
  color: var(--color-blue);
  flex-shrink: 0;
}


/* =========================================================================
   v12.B  MOCKUP 2 — Feuille de route KANBAN (Cabinet Lambert pilotage)
   ========================================================================= */

/* Window bar dark : libellé du projet */
.bb-home-approach__mockup--dashboard .bb-home-approach__windowUrl {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--bb-font);
  font-weight: 600;
  justify-content: flex-start;
  padding: 0 10px;
}

/* Header roadmap : titre + meta + chip prochain point */
.bb-home-approach__roadmapHeader {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  z-index: 1;
}

.bb-home-approach__roadmapTitle {
  font-family: var(--bb-font);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 6px 0 4px;
  line-height: 1.18;
}
.bb-home-approach__roadmapTitle em {
  font-style: normal;
  background: linear-gradient(90deg, var(--color-blue-bright) 0%, #C9DCFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bb-home-approach__roadmapMeta {
  font-family: var(--bb-font);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: -0.005em;
}
.bb-home-approach__roadmapMeta strong { color: #FFFFFF; font-weight: 700; }

.bb-home-approach__roadmapNextPoint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--bb-font);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.005em;
  white-space: nowrap;
  flex-shrink: 0;
}
.bb-home-approach__roadmapNextPoint svg {
  width: 11px;
  height: 11px;
  color: var(--color-blue-bright);
  flex-shrink: 0;
}

/* Grille kanban 3 colonnes */
.bb-home-approach__kanban {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  z-index: 1;
}

.bb-home-approach__kanbanCol {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.bb-home-approach__kanbanColHeader {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  font-family: var(--bb-font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.bb-home-approach__kanbanColHeader::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  flex-shrink: 0;
}
.bb-home-approach__kanbanCol--inProgress .bb-home-approach__kanbanColHeader::before {
  background: var(--color-blue-bright);
  box-shadow: 0 0 6px rgba(47, 123, 255, 0.7);
  animation: bb-live-pulse 1.6s ease-in-out infinite;
}
.bb-home-approach__kanbanCol--planned .bb-home-approach__kanbanColHeader::before {
  background: rgba(255, 255, 255, 0.45);
}
.bb-home-approach__kanbanCol--done .bb-home-approach__kanbanColHeader::before {
  background: var(--bb-green);
}

.bb-home-approach__kanbanCount {
  margin-left: auto;
  padding: 1px 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--bb-font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

/* Cartes kanban */
.bb-home-approach__kCard {
  position: relative;
  padding: 9px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.bb-home-approach__kCardTag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 1px 7px;
  border-radius: 999px;
  font-family: var(--bb-font);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bb-home-approach__kCardTag--seo     { background: rgba(47, 123, 255, 0.22); color: #9FBEFF; }
.bb-home-approach__kCardTag--content { background: rgba(27, 155, 90, 0.28); color: #5BD49B; }
.bb-home-approach__kCardTag--google  { background: rgba(232, 88, 88, 0.20); color: #FFA8A8; }
.bb-home-approach__kCardTag--ads     { background: rgba(255, 168, 47, 0.22); color: #FFD089; }
.bb-home-approach__kCardTag--video   { background: rgba(168, 88, 232, 0.22); color: #D5A8FF; }
.bb-home-approach__kCardTag--site    { background: rgba(47, 123, 255, 0.22); color: #9FBEFF; }

.bb-home-approach__kCardTitle {
  font-family: var(--bb-font);
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.005em;
  line-height: 1.32;
}

.bb-home-approach__kCardMeta {
  font-family: var(--bb-font);
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.005em;
}

.bb-home-approach__kCard--done .bb-home-approach__kCardTitle {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.30);
  color: rgba(255, 255, 255, 0.78);
}

.bb-home-approach__kCardCheck {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--bb-green);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  flex-shrink: 0;
}
.bb-home-approach__kCardCheck svg { width: 8px; height: 8px; }


/* =========================================================================
   v12.C  MOCKUP 3 — GOOGLE SEARCH (Cabinet Lambert en position #1)
   ========================================================================= */

.bb-home-approach__mockup--analytics .bb-home-approach__windowBody {
  padding: 14px 18px 12px;
  background: #FFFFFF;
  font-family: arial, sans-serif;
}

/* Logo Google + barre de recherche */
.bb-home-approach__googleHeader {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 8px;
}

.bb-home-approach__googleLogo {
  font-family: arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  display: inline-flex;
  line-height: 1;
}
.bb-home-approach__googleLogo span:nth-child(1) { color: #4285F4; }
.bb-home-approach__googleLogo span:nth-child(2) { color: #EA4335; }
.bb-home-approach__googleLogo span:nth-child(3) { color: #FBBC05; }
.bb-home-approach__googleLogo span:nth-child(4) { color: #4285F4; }
.bb-home-approach__googleLogo span:nth-child(5) { color: #34A853; }
.bb-home-approach__googleLogo span:nth-child(6) { color: #EA4335; }

.bb-home-approach__googleSearchBox {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid #DFE1E5;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.06);
  min-width: 0;
}
.bb-home-approach__googleSearchInput {
  flex: 1;
  font-family: arial, sans-serif;
  font-size: 12.5px;
  color: var(--bb-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.005em;
}
.bb-home-approach__googleSearchIcon {
  width: 14px;
  height: 14px;
  color: #4285F4;
  flex-shrink: 0;
}

/* Tabs Google */
.bb-home-approach__googleTabs {
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0 0 8px;
  font-family: arial, sans-serif;
  font-size: 11px;
  color: #5F6368;
  border-bottom: 1px solid #EBEBEB;
}
.bb-home-approach__googleTab {
  padding: 5px 0 7px;
  font-weight: 400;
  position: relative;
}
.bb-home-approach__googleTab--active {
  color: #1A0DAB;
  font-weight: 500;
}
.bb-home-approach__googleTab--active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1A0DAB;
}

.bb-home-approach__googleCount {
  font-family: arial, sans-serif;
  font-size: 9.5px;
  color: #70757A;
  margin-bottom: 8px;
}

/* Carte Maps : le client en #1 */
.bb-home-approach__mapsCard {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  margin: 8px 0 10px;
}

/* Badge #1 standalone — placé DEVANT l'icône, plus en surimpression */
.bb-home-approach__mapsCardRank {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-bright) 100%);
  color: #FFFFFF;
  font-family: var(--bb-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow:
    0 6px 16px rgba(var(--color-blue-rgb), 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

/* Icône plaque dorée — vraie photo embarquée (cabinet d'avocats) */
.bb-home-approach__mapsCardImg {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background-image: url('data:image/jpeg;base64,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');
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.40),
    inset 0 -1px 0 rgba(40, 25, 5, 0.25),
    inset 0 0 0 1px rgba(140, 100, 30, 0.30),
    0 4px 14px rgba(140, 100, 30, 0.28);
}
.bb-home-approach__mapsCardImg::after {
  display: none;
}

.bb-home-approach__mapsCardBody {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bb-home-approach__mapsCardName {
  font-family: arial, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #1A0DAB;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.bb-home-approach__mapsCardRating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: arial, sans-serif;
  font-size: 11px;
  color: #5F6368;
}
.bb-home-approach__mapsCardStars {
  color: #FBBC05;
  letter-spacing: -0.5px;
  font-size: 10px;
}

.bb-home-approach__mapsCardCat {
  font-family: arial, sans-serif;
  font-size: 11px;
  color: #5F6368;
  line-height: 1.3;
}

.bb-home-approach__mapsCardOpen {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: arial, sans-serif;
  font-size: 10.5px;
  color: var(--bb-green);
  font-weight: 600;
  margin-top: 1px;
}

/* Résultat organique */
.bb-home-approach__organicResult {
  padding: 0 4px;
}
.bb-home-approach__organicUrl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: arial, sans-serif;
  font-size: 10.5px;
  color: #202124;
  margin-bottom: 2px;
}
.bb-home-approach__organicFav {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-bright));
  color: #FFFFFF;
  font-family: var(--bb-font);
  font-size: 7.5px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0;
}
.bb-home-approach__organicTitle {
  font-family: arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #1A0DAB;
  line-height: 1.25;
  margin-bottom: 2px;
}
.bb-home-approach__organicSnippet {
  font-family: arial, sans-serif;
  font-size: 10.5px;
  color: #4D5156;
  line-height: 1.42;
}

/* Barre de stats du bas */
.bb-home-approach__perfBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--color-blue-rgb), 0.06) 0%, rgba(47, 123, 255, 0.04) 100%);
  border: 1px solid rgba(var(--color-blue-rgb), 0.10);
}
.bb-home-approach__perfStat {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.bb-home-approach__perfStat strong {
  font-family: var(--bb-font);
  font-size: 14px;
  font-weight: 800;
  color: var(--color-blue);
  letter-spacing: -0.02em;
  line-height: 1;
}
.bb-home-approach__perfStat span {
  font-family: var(--bb-font);
  font-size: 9px;
  color: var(--bb-ink-mute);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bb-home-approach__perfDivider {
  width: 1px;
  height: 24px;
  background: rgba(var(--color-blue-rgb), 0.14);
  flex-shrink: 0;
}

/* Defensive : neutralise les pseudo-éléments parasites WP sur les nouvelles classes */
.bb-home-approach__msgBubble::before,
.bb-home-approach__msgBubble::after,
.bb-home-approach__msgTime::before,
.bb-home-approach__msgTime::after,
.bb-home-approach__contactItem::before,
.bb-home-approach__contactItem::after,
.bb-home-approach__roadmapTitle::before,
.bb-home-approach__roadmapTitle::after,
.bb-home-approach__roadmapMeta::before,
.bb-home-approach__roadmapMeta::after,
.bb-home-approach__kCardTitle::before,
.bb-home-approach__kCardTitle::after,
.bb-home-approach__kCardMeta::before,
.bb-home-approach__kCardMeta::after,
.bb-home-approach__kCardTag::before,
.bb-home-approach__kCardTag::after,
.bb-home-approach__googleSearchInput::before,
.bb-home-approach__googleSearchInput::after,
.bb-home-approach__mapsCardName::before,
.bb-home-approach__mapsCardName::after,
.bb-home-approach__mapsCardCat::before,
.bb-home-approach__mapsCardCat::after,
.bb-home-approach__mapsCardRating::before,
.bb-home-approach__mapsCardRating::after,
.bb-home-approach__organicTitle::before,
.bb-home-approach__organicTitle::after,
.bb-home-approach__organicUrl::before,
.bb-home-approach__organicUrl::after,
.bb-home-approach__organicSnippet::before,
.bb-home-approach__organicSnippet::after,
.bb-home-approach__perfStat::before,
.bb-home-approach__perfStat::after,
.bb-home-approach__perfStat strong::before,
.bb-home-approach__perfStat strong::after,
.bb-home-approach__perfStat span::before,
.bb-home-approach__perfStat span::after {
  content: none !important;
  display: none !important;
}

/* =============================================================================
   SECTION 3 — METHOD PREMIUM
   ============================================================================= */

/* =========================================================================
   v13.METHOD  RESET CIBLÉ + DESIGN TOKENS
   ========================================================================= */
.bb-home-method-premium,
.bb-home-method-premium *,
.bb-home-method-premium *::before,
.bb-home-method-premium *::after {
  box-sizing: border-box;
}

.bb-home-method-premium h2,
.bb-home-method-premium h3 {
  display: block !important;
  white-space: normal !important;
  position: static !important;
  max-width: none !important;
  overflow: visible !important;
}

.bb-home-method-premium {
  --bb-ink:         #0B1B2B;
  --bb-ink-soft:    #3A4A5A;
  --bb-ink-mute:    #5A6B7B;
  --bb-line:        #E8EEF6;
  --bb-bg:          #FFFFFF;
  --bb-radius:      20px;
  --bb-radius-lg:   28px;
  --bb-ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --bb-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  position: relative;
  font-family: var(--bb-font);
  background: #FFFFFF;
  overflow: hidden;
  isolation: isolate;
}

/* Aurora très subtile en background pour donner de la profondeur */
.bb-home-method-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(47, 123, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 100%, rgba(var(--color-blue-rgb), 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.bb-home-method-premium__inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

/* =========================================================================
   v13.METHOD  HEADER — kicker, titre, sous-titre
   ========================================================================= */
.bb-home-method-premium__head {
  margin: 0 auto 70px;
  max-width: 880px;
  text-align: center;
}

.bb-home-method-premium .ge-kicker,
.bb-home-method-premium__kicker {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 16px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: rgba(var(--color-blue-rgb), 0.08);
  border: 1px solid rgba(var(--color-blue-rgb), 0.16);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-blue) !important;
  width: auto;
  max-width: max-content;
  overflow: hidden;
  isolation: isolate;
}

.bb-home-method-premium__kicker::before {
  content: "";
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-blue);
  box-shadow: 0 0 0 0 rgba(var(--color-blue-rgb), 0.5), 0 0 8px rgba(47, 123, 255, 0.6);
  flex-shrink: 0;
  z-index: 1;
  animation: bb-mp-pulse 2.5s ease-out infinite;
}

@keyframes bb-mp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(var(--color-blue-rgb), 0.6), 0 0 8px rgba(47, 123, 255, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(var(--color-blue-rgb), 0), 0 0 8px rgba(47, 123, 255, 0.6); }
  100% { box-shadow: 0 0 0 0 rgba(var(--color-blue-rgb), 0), 0 0 8px rgba(47, 123, 255, 0.6); }
}

.bb-home-method-premium__title {
  font-family: var(--bb-font) !important;
  font-size: clamp(32px, 3.4vw, 50px) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.025em;
  margin: 0 auto 20px !important;
  color: var(--bb-ink) !important;
  max-width: 24ch;
  text-wrap: balance;
}

.bb-home-method-premium__title-accent {
  position: relative;
  display: inline-block;
  color: var(--color-blue) !important;
  white-space: nowrap;
  isolation: isolate;
}
.bb-home-method-premium__title-accent::after {
  content: "" !important;
  position: absolute !important;
  bottom: 4px !important;
  left: -4px !important;
  right: -4px !important;
  height: 16px !important;
  background: rgba(47, 123, 255, 0.35) !important;
  background-image: none !important;
  border-radius: 4px !important;
  z-index: 0 !important;
  display: block !important;
  pointer-events: none;
  /* Animation : la barre se déploie de gauche à droite au scroll */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.bb-home-method-premium.is-in-view .bb-home-method-premium__title-accent::after {
  transform: scaleX(1) !important;
}

.bb-home-method-premium__subtitle {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 auto;
  color: var(--bb-ink-soft);
  max-width: 660px;
}

/* =========================================================================
   v13.METHOD  ROADMAP CONTAINER — perspective 3D
   ========================================================================= */
.bb-home-method-premium__roadmap {
  position: relative;
  perspective: 2000px;
  perspective-origin: 50% 30%;
  margin: 0 auto;
  max-width: 1180px;
}

.bb-home-method-premium__plan {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(8deg);
  padding: 48px 36px 40px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 90% 100% at 50% 0%, rgba(47, 123, 255, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFCFF 100%);
  border: 1px solid rgba(var(--color-blue-rgb), 0.10);
  box-shadow:
  0 34px 70px rgba(7, 26, 61, 0.13),
  0 14px 32px rgba(11, 27, 43, 0.08),
  0 0 0 1px rgba(11, 27, 43, 0.03),
  inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

/* Subtle grid pattern overlay (effet "feuille technique") */
.bb-home-method-premium__plan::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(var(--color-blue-rgb), 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--color-blue-rgb), 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 30%, transparent 90%);
  z-index: 0;
}

/* =========================================================================
   v13.METHOD  SPINE — la ligne lumineuse qui traverse + checkpoints
   ========================================================================= */
.bb-home-method-premium__spine {
  position: absolute;
  top: 45px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--color-blue-rgb), 0.30) 6%,
    rgba(47, 123, 255, 0.55) 50%,
    rgba(var(--color-blue-rgb), 0.30) 94%,
    transparent 100%);
  z-index: 1;
  overflow: hidden;
  border-radius: 2px;
}

/* Lumière qui glisse sur la spine */
.bb-home-method-premium__spineLight {
  position: absolute;
  top: -2px;
  left: -25%;
  width: 30%;
  height: calc(100% + 4px);
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(47, 123, 255, 0.95) 40%,
    rgba(255, 255, 255, 1) 50%,
    rgba(47, 123, 255, 0.95) 60%,
    transparent 100%);
  filter: blur(3px);
  border-radius: 999px;
}

@keyframes bb-mp-flow {
  0%   { left: -25%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 95%; opacity: 0; }
}

/* Les 4 checkpoints sur la spine (positionnés au-dessus des badges des panneaux) */
.bb-home-method-premium__checkpoints {
  position: absolute;
  top: 38px;
  left: 36px;
  right: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  pointer-events: none;
  z-index: 2;
}
.bb-home-method-premium__checkpoint {
  position: relative;
  justify-self: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 2px solid var(--color-blue);
  box-shadow:
    0 0 0 4px #FFFFFF,
    0 6px 14px rgba(var(--color-blue-rgb), 0.30);
}
.bb-home-method-premium__checkpoint::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-blue), var(--color-blue-bright));
}

/* =========================================================================
   v13.METHOD  STEPS GRID — les 4 panneaux
   ========================================================================= */
.bb-home-method-premium__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 50px;
  z-index: 2;
}

.bb-home-method-premium__step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFE 100%);
  border: 1px solid rgba(var(--color-blue-rgb), 0.10);
  box-shadow: 0 8px 24px rgba(11, 27, 43, 0.05);
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  transition:
    transform 0.55s var(--bb-ease),
    box-shadow 0.55s ease,
    border-color 0.55s ease;
}

/* Glow bleu interne au hover — effet "active" */
.bb-home-method-premium__step::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(47, 123, 255, 0.6),
    rgba(var(--color-blue-rgb), 0.3) 40%,
    transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 3;
}

/* Shine effect — lumière qui traverse au hover */
.bb-home-method-premium__step::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 50%;
  height: 200%;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%);
  transform: translateX(-100%) rotate(15deg);
  transition: transform 1.2s var(--bb-ease);
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}

.bb-home-method-premium__step:hover {
  transform: translateY(-8px) translateZ(24px);
  border-color: rgba(var(--color-blue-rgb), 0.20);
  box-shadow:
    0 30px 60px rgba(var(--color-blue-rgb), 0.18),
    0 12px 28px rgba(11, 27, 43, 0.08);
}
.bb-home-method-premium__step:hover::before { opacity: 1; }
.bb-home-method-premium__step:hover::after {
  transform: translateX(400%) rotate(15deg);
}

/* Header : numéro + badge à gauche, icône à droite */
.bb-home-method-premium__stepHead {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
  z-index: 1;
}

/* Group numéro + badge à gauche */
.bb-home-method-premium__stepHeadLeft {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

/* Numéro premium — typographique, à gauche du badge */
.bb-home-method-premium__stepNum {
  font-family: var(--bb-font);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform 0.5s var(--bb-ease), color 0.5s ease;
}
.bb-home-method-premium__step:hover .bb-home-method-premium__stepNum {
  transform: scale(1.08);
  color: var(--color-blue-bright);
}

.bb-home-method-premium__stepBadge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(var(--color-blue-rgb), 0.08);
  border: 1px solid rgba(var(--color-blue-rgb), 0.16);
  font-family: var(--bb-font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-blue);
  white-space: nowrap;
  flex-shrink: 0;
}

.bb-home-method-premium__stepIcon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-bright) 100%);
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow:
    0 10px 22px rgba(var(--color-blue-rgb), 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.40);
  transition: transform 0.5s var(--bb-ease);
}
.bb-home-method-premium__step:hover .bb-home-method-premium__stepIcon {
  transform: rotate(-6deg) scale(1.08);
}
.bb-home-method-premium__stepIcon svg {
  width: 20px;
  height: 20px;
}

/* Titre + texte */
.bb-home-method-premium__stepName {
  position: relative;
  font-family: var(--bb-font);
  font-size: 22px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em;
  color: var(--bb-ink) !important;
  margin: 0 0 10px !important;
  z-index: 1;
}

.bb-home-method-premium__stepText {
  position: relative;
  font-family: var(--bb-font);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--bb-ink-soft);
  margin: 0 0 22px;
  flex: 1;
  z-index: 1;
}

/* Mini ligne de progression */
.bb-home-method-premium__stepProgress {
  position: relative;
  height: 3px;
  border-radius: 3px;
  background: rgba(var(--color-blue-rgb), 0.10);
  overflow: hidden;
  z-index: 1;
}
.bb-home-method-premium__stepProgressBar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--color-blue), var(--color-blue-bright));
  border-radius: 3px;
  transform-origin: left;
}

/* =========================================================================
   v13.METHOD  ANIMATIONS CSS AUTO-DÉCLENCHÉES (pas de dépendance JS)
   ─────────────────────────────────────────────────────────────────────────
   Important : les éléments sont VISIBLES par défaut (pas d'opacity:0 à la base).
   L'état initial de l'animation vient du `from` du @keyframes, appliqué grâce
   à `animation-fill-mode: both` pendant la phase de delay. Si l'animation est
   désactivée pour une raison quelconque (Elementor, prefers-reduced-motion,
   navigateur ancien), le contenu reste affiché normalement.
   ========================================================================= */
@media (prefers-reduced-motion: no-preference) {
  /* Header : kicker, titre, sous-titre */
  .bb-home-method-premium__kicker {
    animation: bb-mp-fadein-up 0.9s var(--bb-ease) 0.10s both;
  }
  .bb-home-method-premium__title {
    animation: bb-mp-fadein-up 1s var(--bb-ease) 0.25s both;
  }
  .bb-home-method-premium__subtitle {
    animation: bb-mp-fadein-up 0.9s var(--bb-ease) 0.40s both;
  }
  @keyframes bb-mp-fadein-up {
    from { opacity: 0; transform: translateY(28px); filter: blur(8px); }
    to   { opacity: 1; transform: none;             filter: blur(0); }
  }

  /* Surlignage du mot accentué dans le titre */
  .bb-home-method-premium__title-accent::after {
    animation: bb-mp-accent-grow 1.2s var(--bb-ease) 1.30s both;
  }
  @keyframes bb-mp-accent-grow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }

  /* Le plan se "déplie" depuis une inclinaison forte vers son état naturel rotateX(8deg) */
  .bb-home-method-premium__plan {
    animation: bb-mp-plan-unfold 1.4s var(--bb-ease) 0.55s both;
  }
  @keyframes bb-mp-plan-unfold {
    from { opacity: 0; transform: rotateX(28deg) translateY(80px); }
    to   { opacity: 1; transform: rotateX(8deg) translateY(0); }
  }

  /* Les panneaux apparaissent en cascade avec rotation 3D */
  .bb-home-method-premium__step {
    animation: bb-mp-step-in 1.1s var(--bb-ease) both;
    transform-origin: 50% 50% -120px;
  }
  .bb-home-method-premium__step:nth-child(1) { animation-delay: 0.95s; }
  .bb-home-method-premium__step:nth-child(2) { animation-delay: 1.10s; }
  .bb-home-method-premium__step:nth-child(3) { animation-delay: 1.25s; }
  .bb-home-method-premium__step:nth-child(4) { animation-delay: 1.40s; }
  @keyframes bb-mp-step-in {
    from { opacity: 0; transform: translateY(40px) rotateY(-25deg); }
    to   { opacity: 1; transform: translateY(0) rotateY(0); }
  }

  /* Checkpoints sur la spine — allumage en cascade */
  .bb-home-method-premium__checkpoint::before {
    animation: bb-mp-checkpoint-in 0.6s var(--bb-ease) both;
  }
  .bb-home-method-premium__checkpoint:nth-child(1)::before { animation-delay: 1.10s; }
  .bb-home-method-premium__checkpoint:nth-child(2)::before { animation-delay: 1.30s; }
  .bb-home-method-premium__checkpoint:nth-child(3)::before { animation-delay: 1.50s; }
  .bb-home-method-premium__checkpoint:nth-child(4)::before { animation-delay: 1.70s; }
  @keyframes bb-mp-checkpoint-in {
    from { opacity: 0; transform: scale(0.4); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* Lignes de progression — remplissage en cascade */
  .bb-home-method-premium__stepProgressBar {
    animation: bb-mp-progress 1s var(--bb-ease) both;
  }
  .bb-home-method-premium__step:nth-child(1) .bb-home-method-premium__stepProgressBar { animation-delay: 1.50s; }
  .bb-home-method-premium__step:nth-child(2) .bb-home-method-premium__stepProgressBar { animation-delay: 1.70s; }
  .bb-home-method-premium__step:nth-child(3) .bb-home-method-premium__stepProgressBar { animation-delay: 1.90s; }
  .bb-home-method-premium__step:nth-child(4) .bb-home-method-premium__stepProgressBar { animation-delay: 2.10s; }
  @keyframes bb-mp-progress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }

  /* Lumière qui circule sur la spine — démarre à 1.6s */
  .bb-home-method-premium__spineLight {
    animation: bb-mp-flow 5.5s ease-in-out 1.6s infinite;
  }
}

/* =========================================================================
   v13.METHOD  RESPONSIVE
   ========================================================================= */
@media (max-width: 1100px) {
  .bb-home-method-premium__inner { padding: 90px 0; }
  .bb-home-method-premium__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-top: 30px;
  }
  .bb-home-method-premium__plan {
    transform: rotateX(5deg);
    padding: 36px 26px 30px;
  }
  .bb-home-method-premium__spine,
  .bb-home-method-premium__checkpoints { display: none; }

  /* Sur tablette : inclinaison plus douce */
  .bb-home-method-premium__plan {
    transform: rotateX(5deg);
  }
  @media (prefers-reduced-motion: no-preference) {
    @keyframes bb-mp-plan-unfold {
      from { opacity: 0; transform: rotateX(20deg) translateY(60px); }
      to   { opacity: 1; transform: rotateX(5deg) translateY(0); }
    }
  }
}

@media (max-width: 700px) {
  .bb-home-method-premium__inner { padding: 72px 0; }
  .bb-home-method-premium__head { margin-bottom: 50px; }
  .bb-home-method-premium__steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bb-home-method-premium__plan {
    transform: none;
    padding: 24px 18px;
    border-radius: 22px;
  }
  .bb-home-method-premium__step {
    padding: 24px 20px 20px;
  }
  .bb-home-method-premium__stepName { font-size: 20px !important; }
  .bb-home-method-premium__stepNum { font-size: 18px; }

  /* Sur mobile : pas de rotation 3D des panneaux pendant l'animation */
  @media (prefers-reduced-motion: no-preference) {
    @keyframes bb-mp-step-in {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
  }
}

/* SAFETY NET : si l'utilisateur préfère réduire les animations, ou si pour une
   raison quelconque les animations ne tournent pas, on force la visibilité
   complète de TOUS les éléments. Garantie que rien ne reste invisible. */
@media (prefers-reduced-motion: reduce) {
  .bb-home-method-premium *,
  .bb-home-method-premium *::before,
  .bb-home-method-premium *::after {
    animation: none !important;
    transition-duration: 0.1s !important;
    opacity: 1 !important;
    filter: none !important;
  }
  .bb-home-method-premium__plan {
    transform: rotateX(8deg) !important;
  }
  .bb-home-method-premium__step {
    transform: none !important;
  }
  .bb-home-method-premium__title-accent::after {
    transform: scaleX(1) !important;
  }
  .bb-home-method-premium__stepProgressBar {
    transform: scaleX(1) !important;
  }
  .bb-home-method-premium__checkpoint::before {
    transform: scale(1) !important;
  }
}

/* Defensive : neutralise les pseudo-éléments parasites WP */
.bb-home-method-premium__stepName::before,
.bb-home-method-premium__stepName::after,
.bb-home-method-premium__stepText::before,
.bb-home-method-premium__stepText::after,
.bb-home-method-premium__stepBadge::before,
.bb-home-method-premium__stepBadge::after,
.bb-home-method-premium__stepNum::before,
.bb-home-method-premium__stepNum::after {
  content: none !important;
  display: none !important;
}

/* =============================================================================
   RESPONSIVE & ANIMATIONS — mobile/desktop, scroll reveal (.is-in-view)
   ============================================================================= */

/* ============================================================
   GLOBAL — qualité tactile
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  .bb-home-pain__card,
  .bb-home-approach__mockup,
  .bb-home-method-premium__step {
    -webkit-tap-highlight-color: transparent;
  }
  .bb-home-pain__card:hover,
  .bb-home-method-premium__step:hover {
    transform: none !important;
  }
}


/* ============================================================
   SECTION 1 — PAIN · MOBILE
   ============================================================ */
@media (max-width: 700px) {
  .bb-home-pain__inner { padding: 64px 0; }
  .bb-home-pain__head { margin-bottom: 40px; }
  .bb-home-pain__grid { gap: 14px; }
  .bb-home-pain__card { padding: 28px 22px 22px; }
  .bb-home-pain__num { font-size: 48px; top: 14px; right: 18px; }
  .bb-home-pain__icon { width: 46px; height: 46px; margin: 0 0 18px; border-radius: 12px; }
  .bb-home-pain__icon svg { width: 22px; height: 22px; }
  .bb-home-pain__cardTitle { font-size: 17px !important; margin-bottom: 10px !important; }
  .bb-home-pain__cardText { font-size: 14px; line-height: 1.6; }
  .bb-home-pain__line { margin-top: 20px; }

  /* ANIMATIONS SECTION 1 au scroll-into-view */
  @media (prefers-reduced-motion: no-preference) {
    .bb-home-pain.is-in-view .bb-home-pain__kicker {
      animation: bb-mob-fadein-up 0.9s var(--bb-ease) 0.10s both;
    }
    .bb-home-pain.is-in-view .bb-home-pain__title {
      animation: bb-mob-fadein-up 1s var(--bb-ease) 0.25s both;
    }
    .bb-home-pain.is-in-view .bb-home-pain__subtitle {
      animation: bb-mob-fadein-up 0.9s var(--bb-ease) 0.40s both;
    }
    .bb-home-pain.is-in-view .bb-home-pain__card {
      animation: bb-mob-fadein-up 0.9s var(--bb-ease) both;
    }
    .bb-home-pain.is-in-view .bb-home-pain__card:nth-child(1) { animation-delay: 0.55s; }
    .bb-home-pain.is-in-view .bb-home-pain__card:nth-child(2) { animation-delay: 0.70s; }
    .bb-home-pain.is-in-view .bb-home-pain__card:nth-child(3) { animation-delay: 0.85s; }
  }
}


/* ============================================================
   SECTION 2 — APPROACH · STACK SPREAD HORIZONTAL
   ─────────────────────────────────────────────────────────
   Les 3 cartes sont superposées au centre du stage, mais avec un
   décalage horizontal important pour qu'elles soient TOUTES visibles.
   La carte centrale est devant, les latérales dépassent à gauche/droite.
   L'auto-rotation existante (6s) anime le switch entre les positions.
   ============================================================ */
@media (max-width: 700px) {
  .bb-home-approach__inner { padding: 64px 0; }
  .bb-home-approach__head { margin-bottom: 36px; }

  /* Scope chips */
  .bb-home-approach__scope { gap: 6px; margin-top: 18px; }
  .bb-home-approach__scopeChip { font-size: 11px; padding: 6px 11px 6px 8px; }
  .bb-home-approach__scopeSep { display: none; }

  /* STAGE : container avec hauteur fixe, overflow visible pour laisser
     dépasser les cartes latérales */
  .bb-home-approach__stage {
    perspective: none !important;
    transform-style: flat !important;
    height: 460px !important;
    aspect-ratio: unset !important;
    max-width: 100%;
    margin: 36px auto 46px;
    overflow: visible !important;
  }

  /* MASQUER les éléments inutiles en tactile */
  .bb-home-approach__navZone,
  .bb-home-approach__hint,
  .bb-home-approach__notification,
  .bb-home-approach__pausedBadge {
    display: none !important;
  }

  /* MOCKUPS : taille réduite pour laisser place au spread horizontal */
  #bb-approach-section .bb-home-approach__mockup {
    width: calc(100vw - 110px) !important;
    max-width: 320px !important;
    height: 410px !important;
    aspect-ratio: unset !important;
    transition:
      transform 0.7s var(--bb-ease),
      opacity 0.6s var(--bb-ease),
      filter 0.6s ease,
      box-shadow 0.4s ease !important;
  }

  /* CARTE CENTRALE — devant, plein scale, full opacity */
  .bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-center {
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 1 !important;
    z-index: 3 !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  /* CARTE DROITE — dépasse clairement à droite, scale légère, bien visible */
  .bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-right {
    transform: translate(calc(-50% + 56px), -50%) scale(0.92) !important;
    opacity: 0.85 !important;
    z-index: 2 !important;
    filter: brightness(0.96) saturate(0.94) !important;
    pointer-events: auto !important;
  }

  /* CARTE GAUCHE — dépasse clairement à gauche, scale plus petite, plus en arrière */
  .bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-left {
    transform: translate(calc(-50% - 56px), -50%) scale(0.86) !important;
    opacity: 0.65 !important;
    z-index: 1 !important;
    filter: brightness(0.92) saturate(0.88) !important;
    pointer-events: auto !important;
  }

  /* HOVER MAC-STYLE désactivé : retour aux states normaux */
  .bb-home-approach.is-hovering-left .bb-home-approach__mockup.is-pos-left {
    transform: translate(calc(-50% - 56px), -50%) scale(0.86) !important;
    filter: brightness(0.92) saturate(0.88) !important;
  }
  .bb-home-approach.is-hovering-right .bb-home-approach__mockup.is-pos-right {
    transform: translate(calc(-50% + 56px), -50%) scale(0.92) !important;
    filter: brightness(0.96) saturate(0.94) !important;
  }
  .bb-home-approach.is-hovering-left .bb-home-approach__mockup.is-pos-left .bb-home-approach__frame,
  .bb-home-approach.is-hovering-right .bb-home-approach__mockup.is-pos-right .bb-home-approach__frame {
    box-shadow:
      0 30px 60px rgba(7, 26, 61, 0.18),
      0 12px 24px rgba(11, 27, 43, 0.10),
      0 0 0 1px rgba(11, 27, 43, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  }

  /* Ombre prononcée sur la carte centrale */
  .bb-home-approach__mockup.is-pos-center .bb-home-approach__frame {
    box-shadow:
      0 50px 100px rgba(7, 26, 61, 0.22),
      0 20px 40px rgba(11, 27, 43, 0.12),
      0 0 0 1px rgba(11, 27, 43, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  }

  /* Hint visuel sous le stage */
  .bb-home-approach__stage::after {
    content: "Glissez ou tapez sur une carte pour la changer";
    position: absolute;
    bottom: -42px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--bb-font);
    font-size: 11px;
    font-weight: 500;
    color: var(--bb-ink-mute);
    letter-spacing: -0.005em;
    pointer-events: none;
    opacity: 0;
  }
  .bb-home-approach.is-in-view .bb-home-approach__stage::after {
    animation: bb-mob-hint-fadein 0.8s var(--bb-ease) 1.4s forwards;
  }

  /* Window bar : compact */
  .bb-home-approach__windowBar { padding: 9px 12px; }
  .bb-home-approach__windowDot { width: 8px; height: 8px; }
  .bb-home-approach__windowUrl { font-size: 9.5px; height: 20px; padding: 0 6px; }
  .bb-home-approach__windowUrl svg { width: 8px; height: 8px; }
  .bb-home-approach__windowLive { font-size: 8.5px; padding: 2px 7px; }
  .bb-home-approach__windowBody { padding: 16px 16px 14px; height: calc(100% - 40px); }

  /* === MOCKUP 1 : CHAT === */
  .bb-home-approach__chatHeader { gap: 10px; padding-bottom: 11px; margin-bottom: 12px; }
  .bb-home-approach__teamAvatar { width: 38px; height: 38px; font-size: 13px; border-radius: 10px; }
  .bb-home-approach__teamName { font-size: 12.5px; }
  .bb-home-approach__teamStatus { font-size: 10.5px; }
  .bb-home-approach__chatStatus { font-size: 8.5px; padding: 3px 8px; }
  .bb-home-approach__msg { max-width: 86%; }
  .bb-home-approach__msgBubble { font-size: 12.5px; padding: 9px 13px; }
  .bb-home-approach__msgTime { font-size: 9.5px; }
    .bb-home-approach__contactStrip { gap: 4px; padding-top: 10px; justify-content: flex-start; }
    .bb-home-approach__contactItem { font-size: 9.5px; padding: 4px 8px 4px 6px; gap: 4px; }
    .bb-home-approach__contactItem svg { width: 9px; height: 9px; flex-shrink: 0; }

  /* === MOCKUP 2 : DASHBOARD/KANBAN === */
  .bb-home-approach__dashEyebrow { font-size: 8.5px; padding: 4px 9px; }
  .bb-home-approach__roadmapHeader { margin-bottom: 12px; gap: 8px; }
  .bb-home-approach__roadmapTitle { font-size: 14px; }
  .bb-home-approach__roadmapMeta { font-size: 9.5px; }
  .bb-home-approach__roadmapNextPoint { font-size: 8.5px; padding: 4px 8px 4px 6px; }
  .bb-home-approach__roadmapNextPoint svg { width: 9px; height: 9px; }
  .bb-home-approach__kanban { gap: 6px; }
  .bb-home-approach__kanbanCol { gap: 5px; }
  .bb-home-approach__kanbanColHeader { font-size: 7.5px; padding-bottom: 5px; gap: 4px; letter-spacing: 0.05em; }
  .bb-home-approach__kanbanCount { font-size: 7.5px; padding: 1px 4px; }
  .bb-home-approach__kCard { padding: 6px 7px; gap: 3px; border-radius: 7px; }
  .bb-home-approach__kCardTag { font-size: 7px; padding: 1px 5px; letter-spacing: 0.04em; }
  .bb-home-approach__kCardTitle { font-size: 9px; line-height: 1.3; }
  .bb-home-approach__kCardMeta { font-size: 8px; }
  .bb-home-approach__kCardCheck { width: 11px; height: 11px; top: 5px; right: 5px; }
  .bb-home-approach__kCardCheck svg { width: 6px; height: 6px; }

  /* === MOCKUP 3 : GOOGLE === */
  .bb-home-approach__mockup--analytics .bb-home-approach__windowBody { padding: 14px 14px 12px; }
  .bb-home-approach__googleHeader { gap: 9px; padding-bottom: 8px; margin-bottom: 7px; }
  .bb-home-approach__googleLogo { font-size: 15px; }
  .bb-home-approach__googleSearchBox { padding: 6px 11px; gap: 6px; }
  .bb-home-approach__googleSearchInput { font-size: 11px; }
  .bb-home-approach__googleSearchIcon { width: 12px; height: 12px; }
  .bb-home-approach__googleTabs { font-size: 10px; gap: 14px; margin-bottom: 7px; }
  .bb-home-approach__googleTab { padding: 4px 0 6px; }
  .bb-home-approach__googleCount { font-size: 9px; margin-bottom: 7px; }
  .bb-home-approach__mapsCard { padding: 8px; gap: 7px; margin: 6px 0 8px; border-radius: 9px; }
  .bb-home-approach__mapsCardRank { width: 30px; height: 30px; font-size: 10px; }
  .bb-home-approach__mapsCardImg { width: 56px; height: 56px; border-radius: 6px; }
  .bb-home-approach__mapsCardName { font-size: 12px; }
  .bb-home-approach__mapsCardRating { font-size: 9.5px; gap: 4px; }
  .bb-home-approach__mapsCardCat { font-size: 9.5px; }
  .bb-home-approach__mapsCardOpen { font-size: 9px; }
  .bb-home-approach__organicTitle { font-size: 11.5px; }
  .bb-home-approach__organicSnippet { font-size: 9.5px; line-height: 1.45; }
  .bb-home-approach__organicUrl { font-size: 9px; }
  .bb-home-approach__perfBar { padding: 8px 10px; margin-top: 8px; gap: 5px; border-radius: 8px; }
  .bb-home-approach__perfStat strong { font-size: 12px; }
  .bb-home-approach__perfStat span { font-size: 8px; letter-spacing: 0.03em; }
  .bb-home-approach__perfDivider { height: 22px; }
}


/* ============================================================
   SECTION 3 — METHOD PREMIUM · MOBILE DYNAMIQUE
   ─────────────────────────────────────────────────────────
   Animations au scroll + spine qui se trace + icônes qui pop
   ============================================================ */
@media (max-width: 700px) {
  .bb-home-method-premium__inner { padding: 64px 0; }
  .bb-home-method-premium__head { margin-bottom: 44px; }

  /* Titre : taille réduite + casse autorisée du span */
  .bb-home-method-premium__title {
    font-size: 30px !important;
    letter-spacing: -0.02em;
  }
  .bb-home-method-premium__title-accent {
    white-space: normal !important;
    background-image: linear-gradient(
      to top,
      rgba(47, 123, 255, 0.22) 8px,
      transparent 8px
    );
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 2px;
  }
  .bb-home-method-premium__title-accent::after {
    display: none !important;
  }

  /* Plan + spine verticale */
  .bb-home-method-premium__plan {
    padding: 32px 20px 28px;
    border-radius: 22px;
    position: relative;
  }
  .bb-home-method-premium__plan::after {
    content: "";
    position: absolute;
    left: 36px;
    top: 76px;
    bottom: 76px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(var(--color-blue-rgb), 0.22) 6%,
      rgba(47, 123, 255, 0.50) 50%,
      rgba(var(--color-blue-rgb), 0.22) 94%,
      transparent 100%);
    z-index: 0;
    pointer-events: none;
    transform-origin: top;
  }

  .bb-home-method-premium__steps {
    gap: 18px;
    padding-top: 0;
    grid-template-columns: 1fr;
  }
  .bb-home-method-premium__step {
    padding: 22px 18px 18px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
  }
  .bb-home-method-premium__stepHead { gap: 8px; margin-bottom: 16px; }
  .bb-home-method-premium__stepNum { font-size: 19px; }
  .bb-home-method-premium__stepBadge { font-size: 9px; padding: 3px 9px; }
  .bb-home-method-premium__stepIcon { width: 38px; height: 38px; border-radius: 10px; }
  .bb-home-method-premium__stepIcon svg { width: 18px; height: 18px; }
  .bb-home-method-premium__stepName { font-size: 19px !important; margin-bottom: 8px !important; }
  .bb-home-method-premium__stepText { font-size: 13px; line-height: 1.6; margin-bottom: 18px; }

  /* ============================================================
     ANIMATIONS SECTION 3 — déclenchées au scroll-into-view
     Annule les animations au load existantes (qui auraient déjà fini
     quand l'utilisateur scrolle jusqu'ici), puis les ré-déclenche
     proprement quand la section apparaît dans le viewport.
     ============================================================ */
  @media (prefers-reduced-motion: no-preference) {
    /* 1. Annule les animations existantes au load */
    .bb-home-method-premium__kicker,
    .bb-home-method-premium__title,
    .bb-home-method-premium__subtitle,
    .bb-home-method-premium__plan,
    .bb-home-method-premium__step,
    .bb-home-method-premium__stepProgressBar,
    .bb-home-method-premium__stepIcon,
    .bb-home-method-premium__stepNum {
      animation: none;
    }

    /* 2. Re-déclenche les animations au is-in-view */
    .bb-home-method-premium.is-in-view .bb-home-method-premium__kicker {
      animation: bb-mob-fadein-up 0.9s var(--bb-ease) 0.10s both;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__title {
      animation: bb-mob-fadein-up 1s var(--bb-ease) 0.25s both;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__subtitle {
      animation: bb-mob-fadein-up 0.9s var(--bb-ease) 0.40s both;
    }

    /* Plan : apparait avec une légère élévation */
    .bb-home-method-premium.is-in-view .bb-home-method-premium__plan {
      animation: bb-mob-plan-rise 1s var(--bb-ease) 0.55s both;
    }

    /* SPINE qui se trace verticalement comme un trait au stylo */
    .bb-home-method-premium.is-in-view .bb-home-method-premium__plan::after {
      animation: bb-mob-spine-trace 1.4s var(--bb-ease) 0.95s both;
    }

    /* Steps en cascade */
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step {
      animation: bb-mob-step-in 0.9s var(--bb-ease) both;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(1) { animation-delay: 1.10s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(2) { animation-delay: 1.30s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(3) { animation-delay: 1.50s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(4) { animation-delay: 1.70s; }

    /* StepIcon : effet "pop" (scale up puis settle) */
    .bb-home-method-premium.is-in-view .bb-home-method-premium__stepIcon {
      animation: bb-mob-icon-pop 0.7s var(--bb-ease) both;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(1) .bb-home-method-premium__stepIcon { animation-delay: 1.40s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(2) .bb-home-method-premium__stepIcon { animation-delay: 1.60s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(3) .bb-home-method-premium__stepIcon { animation-delay: 1.80s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(4) .bb-home-method-premium__stepIcon { animation-delay: 2.00s; }

    /* StepNum : effet de scale-in */
    .bb-home-method-premium.is-in-view .bb-home-method-premium__stepNum {
      animation: bb-mob-num-pop 0.6s var(--bb-ease) both;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(1) .bb-home-method-premium__stepNum { animation-delay: 1.45s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(2) .bb-home-method-premium__stepNum { animation-delay: 1.65s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(3) .bb-home-method-premium__stepNum { animation-delay: 1.85s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(4) .bb-home-method-premium__stepNum { animation-delay: 2.05s; }

    /* Progress bars qui se remplissent en cascade */
    .bb-home-method-premium.is-in-view .bb-home-method-premium__stepProgressBar {
      animation: bb-mob-progress 1s var(--bb-ease) both;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(1) .bb-home-method-premium__stepProgressBar { animation-delay: 1.70s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(2) .bb-home-method-premium__stepProgressBar { animation-delay: 1.90s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(3) .bb-home-method-premium__stepProgressBar { animation-delay: 2.10s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(4) .bb-home-method-premium__stepProgressBar { animation-delay: 2.30s; }
  }
}


/* ============================================================
   KEYFRAMES MOBILE — utilisés par toutes les sections
   ============================================================ */
@keyframes bb-mob-fadein-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bb-mob-plan-rise {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes bb-mob-spine-trace {
  from { transform: scaleY(0); transform-origin: top; opacity: 0; }
  to   { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

@keyframes bb-mob-icon-pop {
  0%   { opacity: 0; transform: scale(0.5) rotate(-8deg); }
  60%  { opacity: 1; transform: scale(1.12) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes bb-mob-num-pop {
  0%   { opacity: 0; transform: scale(0.4); }
  60%  { opacity: 1; transform: scale(1.20); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes bb-mob-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes bb-mob-hint-fadein {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   TRÈS PETIT MOBILE (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {
  .bb-home-pain__inner,
  .bb-home-approach__inner,
  .bb-home-method-premium__inner {
    padding: 56px 0;
    width: calc(100% - 28px);
  }

  /* Section 1 */
  .bb-home-pain__title { font-size: 28px !important; line-height: 1.1 !important; }
  .bb-home-pain__card { padding: 24px 20px 20px; }
  .bb-home-pain__num { font-size: 44px; }

  /* Section 2 : décalages réduits pour les petits écrans */
  .bb-home-approach__title { font-size: 28px !important; line-height: 1.1 !important; }
  .bb-home-approach__stage { height: 430px !important; }
  #bb-approach-section .bb-home-approach__mockup {
    height: 380px !important;
    width: calc(100vw - 100px) !important;
    max-width: 280px !important;
  }
  /* Décalages adaptés pour très petits écrans */
  .bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-right {
    transform: translate(calc(-50% + 46px), -50%) scale(0.92) !important;
  }
  .bb-home-approach.is-revealed .bb-home-approach__mockup.is-pos-left {
    transform: translate(calc(-50% - 46px), -50%) scale(0.86) !important;
  }
  .bb-home-approach.is-hovering-right .bb-home-approach__mockup.is-pos-right {
    transform: translate(calc(-50% + 46px), -50%) scale(0.92) !important;
  }
  .bb-home-approach.is-hovering-left .bb-home-approach__mockup.is-pos-left {
    transform: translate(calc(-50% - 46px), -50%) scale(0.86) !important;
  }

  /* Section 3 */
  .bb-home-method-premium__title { font-size: 26px !important; line-height: 1.12 !important; }
  .bb-home-method-premium__plan { padding: 26px 16px 22px; }
  .bb-home-method-premium__plan::after { left: 32px; }
  .bb-home-method-premium__step { padding: 20px 16px 16px; }
}

/* FIX : barre titre des mockups — force 1 ligne avec ellipsis sur mobile */
@media (max-width: 700px) {
  .bb-home-approach__windowUrl {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    min-width: 0 !important;
    flex: 1 1 0 !important;
  }
  .bb-home-approach__mockup--dashboard .bb-home-approach__windowUrl {
    font-size: 8.5px !important;
    justify-content: flex-start !important;
    padding: 0 8px !important;
  }
  .bb-home-approach__mockup--dashboard .bb-home-approach__windowLive {
    flex-shrink: 0 !important;
    font-size: 7.5px !important;
    padding: 2px 6px !important;
  }
}
/* ============================================================
   v17.DESKTOP — animations au scroll-into-view sur ordinateur
   Reprend la mécanique mobile (.is-in-view) et l'applique
   aussi à Pain + Method Premium sur desktop.
   ============================================================ */

@media (min-width: 701px) and (prefers-reduced-motion: no-preference) {

  /* === SECTION 1 — PAIN === */
  .bb-home-pain.is-in-view .bb-home-pain__kicker {
    animation: bb-mob-fadein-up 0.9s var(--bb-ease) 0.10s both;
  }
  .bb-home-pain.is-in-view .bb-home-pain__title {
    animation: bb-mob-fadein-up 1s var(--bb-ease) 0.25s both;
  }
  .bb-home-pain.is-in-view .bb-home-pain__subtitle {
    animation: bb-mob-fadein-up 0.9s var(--bb-ease) 0.40s both;
  }
  .bb-home-pain.is-in-view .bb-home-pain__card {
    animation: bb-mob-fadein-up 0.9s var(--bb-ease) both;
  }
  .bb-home-pain.is-in-view .bb-home-pain__card:nth-child(1) { animation-delay: 0.55s; }
  .bb-home-pain.is-in-view .bb-home-pain__card:nth-child(2) { animation-delay: 0.70s; }
  .bb-home-pain.is-in-view .bb-home-pain__card:nth-child(3) { animation-delay: 0.85s; }


  /* === SECTION 3 — METHOD PREMIUM === */
  /* Annule les animations au LOAD (qui sont déjà finies quand on scrolle) */
  .bb-home-method-premium__kicker,
  .bb-home-method-premium__title,
  .bb-home-method-premium__subtitle,
  .bb-home-method-premium__plan,
  .bb-home-method-premium__step,
  .bb-home-method-premium__stepProgressBar,
  .bb-home-method-premium__title-accent::after,
  .bb-home-method-premium__checkpoint::before {
    animation: none;
  }

  /* Re-déclenche les animations au scroll-into-view */
  .bb-home-method-premium.is-in-view .bb-home-method-premium__kicker {
    animation: bb-mp-fadein-up 0.9s var(--bb-ease) 0.10s both;
  }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__title {
    animation: bb-mp-fadein-up 1s var(--bb-ease) 0.25s both;
  }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__subtitle {
    animation: bb-mp-fadein-up 0.9s var(--bb-ease) 0.40s both;
  }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__title-accent::after {
    animation: bb-mp-accent-grow 1.2s var(--bb-ease) 1.30s both;
  }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__plan {
    animation: bb-mp-plan-unfold 1.4s var(--bb-ease) 0.55s both;
  }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__step {
    animation: bb-mp-step-in 1.1s var(--bb-ease) both;
  }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(1) { animation-delay: 0.95s; }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(2) { animation-delay: 1.10s; }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(3) { animation-delay: 1.25s; }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(4) { animation-delay: 1.40s; }

  .bb-home-method-premium.is-in-view .bb-home-method-premium__checkpoint:nth-child(1)::before { animation: bb-mp-checkpoint-in 0.6s var(--bb-ease) 1.10s both; }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__checkpoint:nth-child(2)::before { animation: bb-mp-checkpoint-in 0.6s var(--bb-ease) 1.30s both; }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__checkpoint:nth-child(3)::before { animation: bb-mp-checkpoint-in 0.6s var(--bb-ease) 1.50s both; }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__checkpoint:nth-child(4)::before { animation: bb-mp-checkpoint-in 0.6s var(--bb-ease) 1.70s both; }

  .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(1) .bb-home-method-premium__stepProgressBar { animation: bb-mp-progress 1s var(--bb-ease) 1.50s both; }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(2) .bb-home-method-premium__stepProgressBar { animation: bb-mp-progress 1s var(--bb-ease) 1.70s both; }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(3) .bb-home-method-premium__stepProgressBar { animation: bb-mp-progress 1s var(--bb-ease) 1.90s both; }
  .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(4) .bb-home-method-premium__stepProgressBar { animation: bb-mp-progress 1s var(--bb-ease) 2.10s both; }
}

/* Centre le titre et le sous-titre de la Section 1 */
.bb-home-pain__title {
  margin-left: auto !important;
  margin-right: auto !important;
}
.bb-home-pain__subtitle {
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Accent souligné sur un mot de la Section 1 — comme Section 2 */
.bb-home-pain__title-accent {
  position: relative;
  display: inline-block;
  color: var(--color-blue);
  white-space: nowrap;
}
.bb-home-pain__title-accent::after {
  content: "" !important;
  position: absolute !important;
  bottom: 4px !important;
  left: -4px !important;
  right: -4px !important;
  height: 16px !important;
  background: rgba(47, 123, 255, 0.35) !important;
  background-image: none !important;
  border-radius: 4px !important;
  z-index: 0 !important;
  display: block !important;
  pointer-events: none;
  /* Animation : la barre se déploie de gauche à droite au scroll */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.bb-home-pain.is-in-view .bb-home-pain__title-accent::after {
  animation: bb-pain-accent-grow 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.30s both;
}
@keyframes bb-pain-accent-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
/* ============================================================
   PATCH MOBILE — Section 3 Method Premium
   · Spine verticale visible à gauche des cartes
   · Animation cascade rejouable au scroll
   ============================================================ */
@media (max-width: 700px) {

  /* === Décale les cartes vers la droite pour libérer la place à la spine === */
  .bb-home-method-premium__plan {
    padding-left: 56px !important;  
    position: relative !important;
  }

  /* === Spine verticale clairement visible === */
  .bb-home-method-premium__plan::after {
    content: "" !important;
    position: absolute !important;
    left: 24px !important;
    top: 28px !important;
    bottom: 28px !important;
    width: 3px !important;
    border-radius: 3px !important;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(var(--color-blue-rgb), 0.40) 6%,
      rgba(47, 123, 255, 0.90) 50%,
      rgba(var(--color-blue-rgb), 0.40) 94%,
      transparent 100%) !important;
    box-shadow: 0 0 14px rgba(47, 123, 255, 0.45) !important;
    z-index: 0 !important;
    pointer-events: none !important;
    transform-origin: top center;
  }

  /* === Animations REJOUABLES — transitions au lieu d'animations === */
  @media (prefers-reduced-motion: no-preference) {

    /* Annule les anciennes animations one-shot */
    .bb-home-method-premium__kicker,
    .bb-home-method-premium__title,
    .bb-home-method-premium__subtitle,
    .bb-home-method-premium__plan,
    .bb-home-method-premium__step,
    .bb-home-method-premium__stepIcon,
    .bb-home-method-premium__stepNum,
    .bb-home-method-premium__stepProgressBar {
      animation: none !important;
    }

    /* État de base : caché */
    .bb-home-method-premium__kicker,
    .bb-home-method-premium__title,
    .bb-home-method-premium__subtitle,
    .bb-home-method-premium__plan,
    .bb-home-method-premium__step {
      opacity: 0;
      transform: translateY(24px);
      transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Spine se trace verticalement */
    .bb-home-method-premium__plan::after {
      transform: scaleY(0) !important;
      transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    /* Progress bars partent de 0 */
    .bb-home-method-premium__stepProgressBar {
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* État visible (is-in-view) avec cascade */
    .bb-home-method-premium.is-in-view .bb-home-method-premium__kicker {
      opacity: 1; transform: translateY(0); transition-delay: 0.10s;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__title {
      opacity: 1; transform: translateY(0); transition-delay: 0.24s;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__subtitle {
      opacity: 1; transform: translateY(0); transition-delay: 0.38s;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__plan {
      opacity: 1; transform: translateY(0); transition-delay: 0.52s;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__plan::after {
      transform: scaleY(1) !important;
      transition-delay: 0.88s !important;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step {
      opacity: 1; transform: translateY(0);
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(1) { transition-delay: 1.05s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(2) { transition-delay: 1.22s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(3) { transition-delay: 1.39s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(4) { transition-delay: 1.56s; }

    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(1) .bb-home-method-premium__stepProgressBar { transform: scaleX(1); transition-delay: 1.50s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(2) .bb-home-method-premium__stepProgressBar { transform: scaleX(1); transition-delay: 1.67s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(3) .bb-home-method-premium__stepProgressBar { transform: scaleX(1); transition-delay: 1.84s; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(4) .bb-home-method-premium__stepProgressBar { transform: scaleX(1); transition-delay: 2.01s; }
  }
}

/* ============================================================
   PATCH DESKTOP — Section 3 Method Premium
   · Spine horizontale clairement visible (au-dessus des cartes)
   · Animation cascade rejouable au scroll
   ============================================================ */
@media (min-width: 701px) {

  /* === SPINE HORIZONTALE — Épaisse, lumineuse, au-dessus des cartes === */
  .bb-home-method-premium__spine {
    top: 44px !important;
    height: 4px !important;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(var(--color-blue-rgb), 0.65) 6%,
      rgba(47, 123, 255, 1) 50%,
      rgba(var(--color-blue-rgb), 0.65) 94%,
      transparent 100%) !important;
    box-shadow:
      0 0 14px rgba(47, 123, 255, 0.55),
      0 0 28px rgba(47, 123, 255, 0.25) !important;
    z-index: 100 !important;
    border-radius: 4px !important;
  }

  .bb-home-method-premium__checkpoint {
    z-index: 101 !important;
  }

  @media (prefers-reduced-motion: no-preference) {

    .bb-home-method-premium__kicker,
    .bb-home-method-premium__title,
    .bb-home-method-premium__subtitle,
    .bb-home-method-premium__plan,
    .bb-home-method-premium__step,
    .bb-home-method-premium__spine,
    .bb-home-method-premium__spineLight,
    .bb-home-method-premium__checkpoint::before,
    .bb-home-method-premium__stepProgressBar,
    .bb-home-method-premium__title-accent::after {
      animation: none !important;
    }

    .bb-home-method-premium__kicker,
    .bb-home-method-premium__title,
    .bb-home-method-premium__subtitle,
    .bb-home-method-premium__step {
      opacity: 0 !important;
      transform: translateY(28px) !important;
      transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    .bb-home-method-premium__plan {
      opacity: 0 !important;
      transform: rotateX(8deg) translateY(28px) !important;
      transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    .bb-home-method-premium__spine {
      transform: scaleX(0) !important;
      transform-origin: left center !important;
      transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    .bb-home-method-premium__checkpoint::before {
      transform: scale(0) !important;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    .bb-home-method-premium__stepProgressBar {
      transform: scaleX(0) !important;
      transform-origin: left center !important;
      transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    .bb-home-method-premium.is-in-view .bb-home-method-premium__kicker {
      opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.10s !important;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__title {
      opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.25s !important;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__subtitle {
      opacity: 1 !important; transform: translateY(0) !important; transition-delay: 0.40s !important;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__plan {
      opacity: 1 !important; transform: rotateX(8deg) translateY(0) !important; transition-delay: 0.55s !important;
    }

    .bb-home-method-premium.is-in-view .bb-home-method-premium__spine {
      transform: scaleX(1) !important; transition-delay: 0.90s !important;
    }

    .bb-home-method-premium.is-in-view .bb-home-method-premium__step {
      opacity: 1 !important; transform: translateY(0) !important;
    }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(1) { transition-delay: 1.05s !important; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(2) { transition-delay: 1.20s !important; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(3) { transition-delay: 1.35s !important; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(4) { transition-delay: 1.50s !important; }

    .bb-home-method-premium.is-in-view .bb-home-method-premium__checkpoint:nth-child(1)::before { transform: scale(1) !important; transition-delay: 1.10s !important; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__checkpoint:nth-child(2)::before { transform: scale(1) !important; transition-delay: 1.25s !important; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__checkpoint:nth-child(3)::before { transform: scale(1) !important; transition-delay: 1.40s !important; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__checkpoint:nth-child(4)::before { transform: scale(1) !important; transition-delay: 1.55s !important; }

    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(1) .bb-home-method-premium__stepProgressBar { transform: scaleX(1) !important; transition-delay: 1.60s !important; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(2) .bb-home-method-premium__stepProgressBar { transform: scaleX(1) !important; transition-delay: 1.75s !important; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(3) .bb-home-method-premium__stepProgressBar { transform: scaleX(1) !important; transition-delay: 1.90s !important; }
    .bb-home-method-premium.is-in-view .bb-home-method-premium__step:nth-child(4) .bb-home-method-premium__stepProgressBar { transform: scaleX(1) !important; transition-delay: 2.05s !important; }
  }
}

/* ============================================================
   FIX FINAL — force la spine mobile visible comme bb-deroule
   Spécificité maximale + !important pour battre tous les autres styles
   ============================================================ */
@media (max-width: 700px) {

  .bb-home-method-premium .bb-home-method-premium__plan {
    padding: 32px 20px 28px 56px !important;
    position: relative !important;
  }

  .bb-home-method-premium .bb-home-method-premium__plan::after {
    content: "" !important;
    position: absolute !important;
    left: 24px !important;
    top: 28px !important;
    bottom: 28px !important;
    width: 3px !important;
    border-radius: 3px !important;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(var(--color-blue-rgb), 0.40) 6%,
      rgba(47, 123, 255, 0.90) 50%,
      rgba(var(--color-blue-rgb), 0.40) 94%,
      transparent 100%) !important;
    box-shadow: 0 0 14px rgba(47, 123, 255, 0.45) !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }
}

@media (max-width: 380px) {
  .bb-home-method-premium .bb-home-method-premium__plan {
    padding: 26px 16px 22px 50px !important;
  }
  .bb-home-method-premium .bb-home-method-premium__plan::after {
    left: 20px !important;
  }
}
