/* Titan Easy Quote */
.teq-wrap{
  max-width:860px;
  margin:24px auto;
  padding:20px;
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:24px;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
}
.teq-head{text-align:center;margin-bottom:16px}
.teq-head span{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(249,115,22,.12);
  border:1px solid rgba(249,115,22,.22);
  font-size:13px;
  font-weight:900;
  color:#111;
}
.teq-head h2{margin:10px 0 6px;font-size:clamp(26px,4vw,36px);line-height:1.1;color:#111}
.teq-head p{margin:0;color:#555;line-height:1.6}
.teq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.teq-field label{display:block;font-size:13px;font-weight:900;margin-bottom:6px;color:#111}
.teq-field input,.teq-field select,.teq-field textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.14);
  border-radius:14px;
  padding:12px;
  font-size:15px;
  background:#fff;
  color:#111;
}
.teq-full{grid-column:1/-1}
.teq-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.teq-submit,.teq-open{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:13px 18px;
  border-radius:999px;
  border:0;
  background:linear-gradient(90deg,#f6c453,#f97316);
  color:#111;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(249,115,22,.22);
}
.teq-call{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:13px 18px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#111;
  font-weight:950;
  text-decoration:none;
}
.teq-message{margin-top:12px;font-weight:900}
.teq-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.teq-modal.is-open{display:flex}
.teq-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.58)}
.teq-panel{
  position:relative;
  width:min(720px,100%);
  max-height:92vh;
  overflow:auto;
  background:#fff;
  border-radius:24px;
  padding:20px;
  box-shadow:0 25px 70px rgba(0,0,0,.30);
}
.teq-close{
  position:absolute;
  right:12px;
  top:12px;
  width:38px;
  height:38px;
  border:0;
  border-radius:12px;
  background:#f3f4f6;
  font-weight:900;
  cursor:pointer;
}
@media(max-width:700px){
  .teq-grid{grid-template-columns:1fr}
  .teq-actions > *{width:100%}
  .teq-panel{padding:18px}
}
