/* SALES CLOSER MODE PATCH */
#atiVoicePanel .voice-title strong:after{
  content:" Sales Closer";
  color:#8ee7ff;
}
#atiVoicePanel .ati-msg.ati-ai:first-child{
  background:linear-gradient(135deg,rgba(44,201,255,.13),rgba(115,87,255,.10))!important;
}
#atiVoiceActions a.primary,
#atiVoiceActions a:first-child{
  animation:atiSalesGlow 1.8s ease-in-out infinite;
}
@keyframes atiSalesGlow{
  0%,100%{filter:brightness(1)}
  50%{filter:brightness(1.16)}
}
.ati-sales-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:16px auto;
  width:min(1120px,100% - 28px);
}
.ati-sales-strip a{
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
  border-radius:17px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(101,213,255,.16);
  color:#eaf5ff;
  text-decoration:none;
  font-weight:950;
  text-align:center;
}
.ati-sales-strip a:first-child{
  background:linear-gradient(135deg,#2cc9ff,#7357ff);
  color:#061121;
  border:0;
}
@media(max-width:760px){
  .ati-sales-strip{
    grid-template-columns:1fr;
    width:min(100% - 20px,1120px);
  }
}
