/* ViziNote vitrine — raffinements globaux (aucun build) */
.skip-to-content {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4338ca;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.12);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-to-content:focus {
  transform: translateY(0);
  outline: 2px solid #6366f1;
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-enter {
    animation: none !important;
  }
}

::selection {
  background-color: rgb(199 210 254);
  color: rgb(15 23 42);
}

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

.hero-enter {
  animation: hero-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-enter-delay-1 {
  animation-delay: 0.07s;
}

.hero-enter-delay-2 {
  animation-delay: 0.14s;
}

.hero-enter-delay-3 {
  animation-delay: 0.21s;
}

/* Grille discrète type “SaaS” */
.bg-grid-slate {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%2394a3b8' fill-opacity='0.12' d='M0 0h1v1H0V0zm31 0h1v1h-1V0zM0 31h1v1H0v-1zm31 0h1v1h-1v-1z'/%3E%3C/svg%3E");
}

/* FAQ accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Sticky CTA mobile */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid rgb(226 232 240 / 0.8);
  padding: 0.875rem 1rem;
  box-shadow: 0 -4px 24px rgb(15 23 42 / 0.08);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(8px);
}
.sticky-mobile-cta--visible { transform: translateY(0); }
@media (min-width: 640px) { .sticky-mobile-cta { display: none !important; } }

/* Ping badge */
@keyframes ping { 75%,100% { transform: scale(2); opacity: 0; } }
.animate-ping { animation: ping 1.4s cubic-bezier(0, 0, 0.2, 1) infinite; }

