.bg-lead-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

.bg-lead-popup.is-open {
  display: flex;
}

.bg-lead-popup__scrim {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(4px);
}

.bg-lead-popup__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: min(94vh, 760px);
  overflow: auto;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  padding: 22px 20px 20px;
}

.bg-lead-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f4f4f5;
  color: #18181b;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.bg-lead-popup__close:hover {
  background: #e4e4e7;
}

.bg-lead-popup__kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0672cb;
}

.bg-lead-popup__title {
  margin: 8px 28px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #18181b;
}

.bg-lead-popup__copy {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #71717a;
}

.bg-lead-popup__form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bg-lead-popup__field {
  display: grid;
  gap: 6px;
}

.bg-lead-popup__field label {
  font-size: 12px;
  font-weight: 600;
  color: #3f3f46;
}

.bg-lead-popup__field input,
.bg-lead-popup__field select {
  height: 44px;
  width: 100%;
  border: 1px solid #e4e4e7;
  border-radius: 11px;
  background: #fafafa;
  padding: 0 12px;
  font: inherit;
  font-size: 14.5px;
  color: #18181b;
  outline: none;
}

.bg-lead-popup__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2371717a' d='M1.1 1.1 6 6l4.9-4.9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.bg-lead-popup__field input:focus,
.bg-lead-popup__field select:focus {
  border-color: #0672cb;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(6, 114, 203, 0.14);
}

.bg-lead-popup__hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.bg-lead-popup__msg {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

.bg-lead-popup__msg.is-error {
  color: #dc2626;
}

.bg-lead-popup__msg.is-ok {
  color: #15803d;
}

.bg-lead-popup__submit {
  height: 46px;
  border: 0;
  border-radius: 11px;
  background: #0672cb;
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.bg-lead-popup__submit:hover:not(:disabled) {
  background: #0559a1;
}

.bg-lead-popup__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #0672cb;
}

body.bg-lead-popup-locked {
  overflow: hidden;
}

@media (min-width: 640px) {
  .bg-lead-popup {
    align-items: center;
    padding: 24px;
  }
}
