/* HOME FIX - Photo pleine hauteur + formulaire fond noir */
.w-hero-photo {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.w-hero-photo video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.w-hero-cta-wrap {
  position: relative;
  z-index: 3;
  text-align: center;
}
.w-hero-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #ffffff !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 56px;
  border: 1.5px solid rgba(255,255,255,0.65);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.w-hero-cta-main:hover { background: rgba(255,255,255,0.22); border-color: #fff; }
.w-hero-cta-main svg { width:18px; height:18px; animation: arrowBounce 2s ease-in-out infinite; }
@keyframes arrowBounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(6px); } }

.w-form-section {
  background: #0a0a0a !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 100px;
  position: relative;
}
.w-form-section .w-lux-form {
  width: 100%;
  max-width: 780px;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px;
  padding: 32px 36px 36px;
}
.w-back-to-top {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.w-back-to-top:hover { background:rgba(255,255,255,0.15); color:#fff; transform:translateX(-50%) translateY(-3px); }
@media (max-width:768px) {
  .w-hero-cta-main { padding:16px 36px; font-size:0.82rem; }
  .w-form-section { padding:48px 16px 80px; }
  .w-form-section .w-lux-form { padding:22px 16px 24px; }
}
