.vc-modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(2,6,18,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 9999;
}

.vc-modal-backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Modal shell */
.vc-modal{
  width: min(520px, 92vw);
  border-radius: 20px;
  background: rgba(8,12,26,.95);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  overflow: hidden;
  transform: translateY(8px);
  transition: transform .2s ease;
}

.vc-modal-backdrop.is-open .vc-modal{
  transform: translateY(0);
}

/* Header */
.vc-modal-header{
  padding: 16px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  background:
    linear-gradient(90deg,
      rgba(51,242,154,.10),
      rgba(106,164,255,.08),
      rgba(74,120,255,.10));
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.vc-modal-title{
  margin:0;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  display:flex;
  align-items:center;
  gap:8px;
}

.vc-modal-close{
  background: none;
  border: none;
  color: rgba(255,255,255,.70);
  font-size: 18px;
  cursor:pointer;
}
.vc-modal-close:hover{
  color: rgba(255,255,255,.95);
}

/* Body */
.vc-modal-body{
  padding: 18px;
}

/* Form rows */
.vc-form-row{
  margin-bottom: 14px;
}

.vc-label{
  display:block;
  font-size: 13px;
  color: rgba(255,255,255,.70);
  margin-bottom: 4px;
}

.vc-input,
.vc-textarea{
  width:100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  font-size: 14px;
  outline:none;
}

.vc-input:focus,
.vc-textarea:focus{
  border-color: rgba(106,164,255,.55);
  box-shadow: 0 0 0 3px rgba(106,164,255,.15);
}

.vc-textarea{
  min-height: 90px;
  resize: vertical;
}

.vc-helper{
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.55);
}

/* Alert messages */
.vc-alert{
  margin-top: 4px;
  font-size: 13px;
  min-height: 18px;
}

.vc-alert.is-show{
  display:block;
}

.vc-alert.success{
  color: #33f29a;
}

.vc-alert.error{
  color: #ff6b6b;
}

/* Footer */
.vc-modal-footer{
  padding: 14px 18px;
  display:flex;
  justify-content:flex-end;
  gap:10px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

/* Responsive */
@media (max-width: 520px){
  .vc-modal{
    width: 94vw;
  }
}
/* VERROUILLAGE : le modal doit toujours gagner */
#vcContactBackdrop{
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  background: rgba(2,6,18,.72) !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
}

#vcContactBackdrop.is-open{
  display: flex !important;
}

#vcContactBackdrop .vc-modal{
  width: min(520px, 92vw) !important;
  border-radius: 20px !important;
  background: rgba(8,12,26,.95) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.55) !important;
}

.btn-cta {
      border: none;
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 13px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
      white-space: nowrap;
    }
.btn-cta i { font-size: 14px; }

    .btn-primaryish {
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #0b1120;
      box-shadow: 0 10px 30px rgba(22,163,74,0.55);
    }
    .btn-primaryish:hover {
      background: linear-gradient(135deg, #16a34a, #15803d);
      transform: translateY(-1px);
      box-shadow: 0 12px 32px rgba(22,163,74,0.65);
    }

    .btn-secondaryish {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border: 1px solid rgba(255,255,255,.12);
    /*  background: linear-gradient(135deg, #3b82f6, #1d4ed8);*/
      color: #eef2ff;
      box-shadow: 0 10px 30px rgba(37,99,235,0.55);
    }
    .btn-secondaryish:hover {
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      transform: translateY(-1px);
      box-shadow: 0 12px 32px rgba(37,99,235,0.65);
    }

    .btn-neutral {
      background: rgba(15,23,42,0.65);
      color: #e5e7eb;
      border: 1px solid rgba(148,163,184,0.45);
      box-shadow: 0 10px 26px rgba(15,23,42,0.55);
      backdrop-filter: blur(10px);
    }
    .btn-neutral:hover {
      transform: translateY(-1px);
      border-color: rgba(129,140,248,0.9);
      box-shadow: 0 12px 30px rgba(15,23,42,0.65);
    }
