.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* padding: 14px 24px; */
  border: 2px solid #000;
  background: transparent;
  color: #000;
  font-size: 16px;
  cursor: pointer;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Modal Base */
.modal {
  background: #ffffff;
  padding: 20px;
  width: 600px;
  max-width: 95%;
  border-radius: 6px;
  position: relative;
  text-align: center;
  overflow: visible;
}

/* Video Modal Specific */
.video-modal {
  position: relative;
  overflow: visible;
}

.modal-overlay .close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: white;
  color: #333;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  font-weight: 600;
  line-height: 1;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.video-modal .close-btn:hover {
  background: white;
  color: #333;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Video Player */
.video-popup-player {
  width: 100%;
  border-radius: 6px;
  outline: none;
}

/* Demo Button */
.demo-btn {
  margin-top: 16px;
  padding: 12px;
  width: 100%;
  background: #232d63;
  color: #ffffff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}