.snb-price-display {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  padding: 0.45rem 0 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.snb-price-line,
.snb-price-meta {
  display: flex;
  align-items: baseline;
}

.snb-price-line {
  gap: 0.35rem;
  flex-wrap: wrap;
}

.snb-price-meta {
  gap: 0.55rem;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.snb-price-main {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.snb-price-period {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
  font-weight: 400;
}

.snb-price-sub,
.snb-price-badge {
  font-size: 0.78rem;
  line-height: 1.2;
}

.snb-price-sub {
  color: rgba(255, 255, 255, 0.64);
}

.snb-price-badge {
  width: fit-content;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

#pricing .offre-layout {
  justify-content: center;
}

#pricing .offre-layout > .flex-col:first-child {
  display: none;
}

#call {
  display: none;
}

.header .nav_menu_item:has(a[href="#demo"]) {
  display: none;
}

.snb-social-proof {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  z-index: 9999;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  width: min(26rem, calc(100vw - 4rem));
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(15, 20, 40, 0.95), rgba(8, 12, 28, 0.97));
  box-shadow:
    0 0.5rem 1.5rem rgba(0, 0, 0, 0.35),
    0 1.5rem 4rem rgba(0, 0, 0, 0.25),
    0 0 0 0.5px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(1rem) scale(0.96);
  transition: opacity 350ms cubic-bezier(0.16, 1, 0.3, 1), transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  backdrop-filter: blur(20px);
}

/* Étincelle bleue — même style que [animated-line] de la LP */
.snb-social-proof::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  translate: -50% -50%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(50, 75, 216, 1) 15%,
    rgba(255, 255, 255, 0.08) 16%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(50, 75, 216, 1) 65%,
    rgba(255, 255, 255, 0.08) 66%
  );
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

/* Masque intérieur pour ne garder que le contour */
.snb-social-proof::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(1rem - 1px);
  background: linear-gradient(135deg, rgba(15, 20, 40, 0.95), rgba(8, 12, 28, 0.97));
  pointer-events: none;
}

.snb-social-proof > * {
  position: relative;
  z-index: 1;
}

.snb-social-proof.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  cursor: pointer;
  overflow: hidden;
}

.snb-social-proof.is-visible::before {
  opacity: 1;
  animation: snb-sp-spin 10s linear infinite;
}

@keyframes snb-sp-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.snb-social-proof__avatar {
  display: flex;
  flex: 0 0 2.25rem;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.25rem;
  line-height: 1;
}

.snb-social-proof__content {
  min-width: 0;
}

.snb-social-proof__title {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
}

.snb-social-proof__action {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.25;
}

@media screen and (max-width: 767px) {
  .header .nav_button_row a[data-trial-cta="true"] {
    display: none;
  }


  .snb-social-proof {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    width: auto;
    padding: 0.8rem 0.9rem;
    border-radius: 0.875rem;
  }

  .snb-social-proof__avatar {
    flex-basis: 2rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
  }

  .snb-social-proof__title {
    font-size: 0.95rem;
  }

  .snb-social-proof__action {
    font-size: 0.85rem;
  }

}
