@media (min-width: 993px){
  /* ... (diğer masaüstü stillerin kalsın) ... */

  /* CTA konteyner: sola yaslı, altta; otomatik genişlik */
  #scsCta{
    position: fixed;
    left: 24px;                 /* EKRANIN SOLUNDAN boşluk */
    bottom: 34px;
    transform: none;            /* ortalamayı kapat */
    width: auto;                /* genişliği içeriğe göre */
    display: flex;
    flex-direction: column;
    align-items: flex-start;    /* SOLA YASLA */
    gap: 14px;
    z-index: 3;
  }

  /* Butonlar: metin hem yatay hem dikey ortalı */
  #scsCta a{
    display: inline-flex;       /* ortalama için */
    align-items: center;        /* dikey ortala */
    justify-content: center;    /* yatay ortala */
    padding: 16px 26px;
    font: var(--cta-font);
    border-radius: 28px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;        /* satır kırma yok */
    box-sizing: border-box;
    /* genişlik JS ile eşitlenecek; burada elle sabitlemiyoruz */
  }
  #scsCta .prim{  color:#fff; background:#7c3aed; }
  #scsCta .ghost{ color:#111; background:#fff;   }
}
