/* Aytech quote popup - isolated module */
body.quote-modal-open{
  overflow:hidden;
}

.quote-modal[hidden]{
  display:none !important;
}

.quote-modal{
  position:fixed;
  inset:0;
  z-index:2000;
  display:grid;
  place-items:center;
  padding:22px;
}

.quote-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,6,12,.74);
  backdrop-filter:blur(12px);
}

.quote-modal-card{
  position:relative;
  z-index:1;
  width:min(920px,100%);
  max-height:calc(100vh - 44px);
  overflow:auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  border-radius:28px;
  background:#fff;
  box-shadow:0 34px 120px rgba(0,0,0,.42);
}

.quote-modal-info{
  position:relative;
  overflow:hidden;
  padding:34px;
  color:#fff;
  background:
    radial-gradient(circle at 80% 18%,rgba(255,255,255,.18),transparent 15rem),
    radial-gradient(circle at 18% 88%,rgba(227,27,35,.34),transparent 14rem),
    linear-gradient(145deg,#06101d,#111827 58%,#2b0508);
}

.quote-modal-info h2{
  margin:0;
  font-size:clamp(28px,3.5vw,42px);
  line-height:1.04;
  letter-spacing:-.04em;
}

.quote-modal-info p{
  margin:18px 0 0;
  color:#d9e3f0;
  font-size:15px;
  line-height:1.65;
}

.quote-modal-eyebrow{
  display:inline-flex;
  margin-bottom:18px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.07);
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.quote-modal-points{
  display:grid;
  gap:12px;
  margin-top:26px;
}

.quote-modal-points span{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#eef4ff;
  font-size:13px;
  font-weight:800;
}

.quote-modal-points span::before{
  content:"";
  width:9px;
  height:9px;
  margin-top:5px;
  flex:0 0 auto;
  border-radius:50%;
  background:#e31b23;
  box-shadow:0 0 0 5px rgba(227,27,35,.22);
}

.quote-modal-body{
  position:relative;
  padding:30px;
}

.quote-modal-close{
  position:absolute;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#f1f5f9;
  color:#0f172a;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.quote-modal-close:hover{
  background:#e2e8f0;
}

.quote-flash{
  margin:0 52px 18px 0;
  padding:12px 14px;
  border-radius:14px;
  font-size:13px;
  font-weight:800;
  line-height:1.45;
}

.quote-flash.success{
  background:#ecfdf5;
  color:#047857;
  border:1px solid #a7f3d0;
}

.quote-flash.error{
  background:#fef2f2;
  color:#b91c1c;
  border:1px solid #fecaca;
}

.quote-form{
  display:grid;
  gap:14px;
}

.quote-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.quote-field{
  display:grid;
  gap:7px;
}

.quote-field span{
  color:#334155;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.quote-field input,
.quote-field textarea{
  width:100%;
  border:1px solid #dbe4ef;
  border-radius:14px;
  background:#f8fafc;
  color:#0f172a;
  padding:13px 14px;
  font:inherit;
  outline:none;
}

.quote-field textarea{
  min-height:126px;
  resize:vertical;
  line-height:1.5;
}

.quote-field input:focus,
.quote-field textarea:focus{
  border-color:#e31b23;
  background:#fff;
  box-shadow:0 0 0 4px rgba(227,27,35,.10);
}

.quote-form-trap{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.quote-submit{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  height:50px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg,#e31b23,#b81218);
  color:#fff;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 16px 34px rgba(227,27,35,.24);
}

.quote-note{
  margin:0;
  color:#64748b;
  font-size:12px;
  line-height:1.45;
}

@media(max-width:760px){
  .quote-modal{
    padding:14px;
  }

  .quote-modal-card{
    grid-template-columns:1fr;
    border-radius:22px;
  }

  .quote-modal-info{
    padding:26px;
  }

  .quote-modal-body{
    padding:24px;
  }

  .quote-form-row{
    grid-template-columns:1fr;
  }

  .quote-modal-close{
    top:12px;
    right:12px;
  }
}
/* End Aytech quote popup */
