/* NPT consultation form + modal (reusable) */

/* ---------- modal ---------- */
.npt-modal-trigger{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 22px;border-radius:6px;border:2px solid #27b24d;
  background:#fff;color:#27b24d;font-weight:800;font-size:16px;
  cursor:pointer;transition:.2s ease;
}
.npt-modal-trigger:hover{background:#27b24d;color:#fff}
body.npt-modal-open{overflow:hidden}
.npt-modal-overlay{
  position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,.55);
  display:flex;align-items:flex-start;justify-content:center;
  padding:40px 16px;overflow-y:auto;
}
.npt-modal-overlay[hidden]{display:none}
.npt-in-modal{max-width:920px;width:100%}

/* ---------- card ---------- */
.npt-form-wrap{
  background:#fff;border-radius:8px;box-shadow:0 24px 70px rgba(0,0,0,.22);
  font-family:Inter,Arial,Helvetica,sans-serif;color:#2c2d3f;
}
.npt-form-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 28px;border-bottom:1px solid #eee;
}
.npt-form-head h3{margin:0;color:#27b24d;font-size:26px;letter-spacing:-.01em}
.npt-modal-close{
  border:0;background:transparent;font-size:26px;line-height:1;
  color:#555;cursor:pointer;padding:2px 8px;
}
.npt-modal-close:hover{color:#000}

/* ---------- stepper ---------- */
.npt-stepper{display:flex;gap:34px;padding:22px 28px 4px}
.npt-step-label{color:#aaa;font-weight:600;font-size:16px}
.npt-step-label b{font-weight:700;margin-right:6px}
.npt-step-label.is-active{color:#2c2d3f}

/* ---------- steps / panel ---------- */
.npt-form{padding:18px 28px 28px}
.npt-step{display:none;background:#efefef;border-radius:10px;padding:26px}
.npt-step.is-active{display:block}
.npt-intro{margin:0 0 20px;font-weight:600;line-height:1.5}

.npt-grid{display:grid;gap:16px;margin-bottom:16px}
.npt-grid-2{grid-template-columns:1fr 1fr}
.npt-grid-3{grid-template-columns:1fr 1fr 1fr}

.npt-field{margin-bottom:14px}
.npt-grid .npt-field{margin-bottom:0}
.npt-field label{
  display:block;font-size:14px;font-weight:800;color:#2c2d3f;margin-bottom:8px;
}
.npt-field label em{color:#c0392b;font-style:normal}
.npt-field input,.npt-field select{
  width:100%;padding:13px 14px;border:1px solid #ccc;border-radius:4px;
  font:inherit;font-size:15px;background:#fff;box-sizing:border-box;
}
.npt-field input:focus,.npt-field select:focus{
  outline:none;border-color:#27b24d;box-shadow:0 0 0 2px rgba(39,178,77,.15);
}
.npt-invalid{border-color:#e13138!important;box-shadow:0 0 0 2px rgba(225,49,56,.12)!important}

/* ---------- repeater ---------- */
.npt-repeater{margin-top:6px}
.npt-repeater-toolbar{display:flex;justify-content:flex-end;margin-bottom:10px}
.npt-btn-pill{
  background:#1a7fc4;color:#fff;border:0;border-radius:999px;
  padding:8px 16px;font-weight:700;font-size:13px;cursor:pointer;
}
.npt-btn-pill:hover{background:#166ba5}
.npt-repeater-row{
  position:relative;background:#e4e4e4;border-radius:10px;
  padding:20px;margin-bottom:14px;
}
.npt-row-remove{
  position:absolute;top:-10px;right:-10px;width:26px;height:26px;
  border-radius:50%;border:0;background:#e13138;color:#fff;
  font-size:15px;line-height:1;cursor:pointer;
}

/* ---------- buttons ---------- */
.npt-actions{display:flex;gap:14px;margin-top:20px;padding-top:16px;border-top:1px solid #ddd}
.npt-btn{
  border:0;border-radius:4px;padding:14px 34px;font-weight:800;
  font-size:15px;cursor:pointer;transition:.2s ease;
}
.npt-btn-green{background:#27b24d;color:#fff}
.npt-btn-green:hover{background:#1f9440}
.npt-btn-green:disabled{opacity:.6;cursor:default}
.npt-btn-dark{background:#3a3a3a;color:#fff}
.npt-btn-dark:hover{background:#222}

/* ---------- error / thank you ---------- */
.npt-error{
  margin:14px 28px 24px;padding:12px 16px;border-radius:6px;
  background:#fdecec;color:#a12026;border:1px solid #f3b6ba;font-weight:600;
}
.npt-form .npt-error{margin:14px 0 0}
.npt-thankyou{padding:44px 28px 40px;text-align:center}
.npt-thankyou h3{margin:0 0 8px;font-size:32px;color:#111;letter-spacing:-.02em}
.npt-ty-sub{margin:0 0 6px;font-size:22px;font-weight:700;color:#111}
.npt-ty-sub span{color:#27b24d}
.npt-thankyou p{margin:6px 0;font-size:18px;color:#222}
.npt-thankyou .npt-btn{margin-top:22px}

/* ---------- responsive ---------- */
@media(max-width:760px){
  .npt-grid-2,.npt-grid-3{grid-template-columns:1fr}
  .npt-modal-overlay{padding:16px 8px}
  .npt-form,.npt-form-head,.npt-stepper{padding-left:16px;padding-right:16px}
  .npt-step{paddin