/* ===== LEAD POPUP – Tattoo Respect stílus ===== */
.lead-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  z-index: 2147483000;
  backdrop-filter: blur(3px);
}
.lead-overlay.is-open { display: block; }

.lead-modal {
  position: absolute;
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
  width: min(680px, 94vw);
  background: linear-gradient(180deg, #3d2c0f 0%, #241a08 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,.6);
  border: 2px solid #d4af37;
}

/* Fejléc */
.lead-head {
  padding: 22px 20px;
  background: linear-gradient(180deg, #4b3615, #2c1f09);
  text-align: center;
  border-bottom: 1px solid #cfae4c;
}
.lead-head h2 {
  margin: .2rem 0;
  font: 800 28px/1.15 "Inter", system-ui;
  color: #f5d974;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lead-head p {
  margin: .4rem 0 0;
  color: #d9c792;
}

/* Jelvény */
.lead-badge {
  background: #d4af37;
  color: #1a1206;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  margin: 16px auto 0;
  max-width: 520px;
  padding: 10px 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}

/* Form */
.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px 20px 28px;
}
.lead-label {
  font: 700 13px/1.2 "Inter", system-ui;
  color: #f5d974;
  margin-bottom: 6px;
}
.lead-input {
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid #a37e27;
  background: #fff;
  font: 600 15px/1.25 "Inter", system-ui;
  color: #141a17;
}
.lead-input::placeholder {
  color: #8a8a8a;
}

/* Checkbox / jogi rész */
.lead-legal {
  font: 13px/1.55 "Inter", system-ui;
  color: #d9c792;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* Gomb */
.lead-btn {
  margin-top: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(180deg, #f5d974, #d4af37);
  color: #1a1206;
  font: 800 15px/1 "Inter", system-ui;
  box-shadow: 0 8px 24px rgba(212,175,55,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.lead-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(212,175,55,.45);
}

/* Bezáró gomb */
.lead-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  background: #d4af37;
  color: #1a1206;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.lead-close:before,
.lead-close:after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.lead-close:before { transform: rotate(45deg); }
.lead-close:after { transform: rotate(-45deg); }

@media (max-width:520px){
  .lead-head h2 { font-size:22px; }
  .lead-badge { font-size:14px; }
  .lead-modal { top:3%; }
}
