
/* Smart CTA Tools */
.smart-cta{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9999;
  font-family:Arial,Helvetica,sans-serif;
}
.smart-cta-toggle{
  border:1px solid rgba(232,185,77,.55);
  background:rgba(3,8,11,.94);
  color:#f5f5f3;
  border-radius:999px;
  padding:12px 18px;
  font-size:10px;
  letter-spacing:2px;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  transition:transform .25s ease,border-color .25s ease;
}
.smart-cta-toggle:hover{transform:translateY(-2px);border-color:#e8b94d}
.smart-cta-panel{
  display:none;
  margin-top:10px;
  width:230px;
  padding:10px;
  border:1px solid #273036;
  border-radius:16px;
  background:rgba(3,8,11,.97);
  box-shadow:0 15px 40px rgba(0,0,0,.45);
}
.smart-cta.open .smart-cta-panel{display:grid;gap:7px}
.smart-cta-panel a,
.smart-cta-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:11px 12px;
  border-radius:10px;
  background:#080d11;
  color:#f5f5f3;
  font-size:11px;
  text-decoration:none;
  transition:background .2s ease,transform .2s ease;
}
.smart-cta-panel a:hover{background:#10181e;transform:translateX(2px)}
@media(max-width:760px){
  .smart-cta{
    left:50%;
    right:auto;
    bottom:calc(12px + env(safe-area-inset-bottom));
    transform:translateX(-50%);
    width:min(250px,calc(100% - 40px));
  }
  .smart-cta-toggle{
    width:100%;
    padding:11px 14px;
    font-size:9px;
    letter-spacing:2px;
  }
  .smart-cta-panel{width:100%;}
}

.smart-cta-link.disabled{cursor:default;opacity:.6;}
