/* enquiry-form.css — modal de contacto compartido por las páginas de servicio */

.modal-bg{ position:fixed; inset:0; background:rgba(0,0,0,0.6); display:none; align-items:center; justify-content:center; z-index:50; padding:20px; }
.modal-bg.open{ display:flex; }
.modal{ background:var(--bg-2); border:1px solid var(--line); border-radius:14px; padding:32px; max-width:400px; width:100%; }
.modal h3{ font-family:'Space Grotesk'; font-size:18px; font-weight:600; margin-bottom:8px; }
.modal p{ color:var(--text-dim); font-size:13px; line-height:1.6; margin-bottom:18px; }
.modal input, .modal textarea{ width:100%; background:var(--bg); border:1px solid var(--line); border-radius:8px; padding:12px 14px; color:var(--text); font-family:'Inter'; font-size:14px; margin-bottom:12px; resize:vertical; }
.modal textarea{ min-height:90px; font-family:'Inter'; }
.modal input::placeholder, .modal textarea::placeholder{ color:var(--text-faint); }
.modal .close{ background:none; border:none; color:var(--text-faint); font-size:13px; cursor:pointer; margin-top:8px; width:100%; }
.modal .err{ color:var(--red); font-size:12px; margin-bottom:10px; display:none; }
.modal .err.on{ display:block; }
