.hcp-overlay {
  position: fixed;
  inset: 0;
  display: none; /* shown by JS */
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.6);
  z-index: 999999;
}

.hcp-modal {
  position: relative;
  background: #fff;
  max-width: 680px;
  width: 92vw;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  padding: 28px;
  line-height: 1.5;
}

.hcp-modal h2 { margin: 0 0 10px; font-size: 22px; }
.hcp-modal p { margin: 8px 0; }

.hcp-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hcp-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.hcp-btn-primary { background: #111; color: #fff; }
.hcp-btn-ghost { background: transparent; color: #111; }

.hcp-close-x {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: 0;
  font-size: 22px;
  cursor: pointer;
}

.hcp-no-scroll { overflow: hidden !important; }