/* Chemouli — modale de capture email avant téléchargement PDF (lead gen Brevo). */
.chz-lead-gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  visibility: hidden;
  pointer-events: none;
}
.chz-lead-gate[data-open="1"] {
  visibility: visible;
  pointer-events: auto;
}
.chz-lead-gate__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.chz-lead-gate[data-open="1"] .chz-lead-gate__scrim {
  opacity: 1;
}
.chz-lead-gate__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92vw, 440px);
  transform: translate(-50%, -46%);
  opacity: 0;
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px 28px 28px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.chz-lead-gate[data-open="1"] .chz-lead-gate__panel {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.chz-lead-gate__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-black);
  opacity: 0.6;
}
.chz-lead-gate__close:hover {
  opacity: 1;
}
.chz-lead-gate__title {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--color-black);
}
.chz-lead-gate__lead {
  margin: 0 0 20px;
  font-weight: var(--fw-light);
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--grey-700);
}
.chz-lead-gate__input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  margin-bottom: 12px;
  border: 2px solid var(--hairline);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-black);
  background: var(--color-white);
}
.chz-lead-gate__input:focus {
  outline: none;
  border-color: var(--accent-emerald);
}
.chz-lead-gate__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border: 2px solid var(--accent-emerald);
  border-radius: var(--radius-pill);
  background: var(--accent-emerald);
  color: var(--color-black);
  font-weight: var(--fw-medium);
  font-size: 15px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
}
.chz-lead-gate__submit:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--accent-emerald);
}
.chz-lead-gate__submit:disabled {
  opacity: 0.6;
  cursor: default;
}
.chz-lead-gate__error {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: #c0392b;
}
.chz-lead-gate__consent {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--grey-400);
}
