#cta-bar-c {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0A0917;
  padding: 1rem;
  z-index: 9999;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
  border-top: 2px solid #F57E32;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#cta-bar-c.show {
  opacity: 1;
  pointer-events: auto;
}
#cta-bar-c a {
  text-decoration: none;
}
#cta-bar-c a.cta-btn-c:hover {
  color: #ffffff;
}
.cta-btn-c {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  min-width: 120px;
  margin: 0 auto;
}
.orange-btn-c {
  background-color: #F57E32;
}
@media (max-width: 768px) {
  #cta-bar-c {
    grid-template-columns: 1fr;
  }
}