.kti-steps {
  padding: 24px 12px 40px;
}

.kti-steps-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 85%;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 6px;
  /* hide scrollbar but allow scroll */
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none;    /* Firefox */
}
.kti-steps-track::-webkit-scrollbar { /* Chrome/Safari */
  display: none;
}

.kti-step {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  scroll-snap-align: start;
}

.kti-steps .kti-step-number {
  color: #3cb64b;
  font-weight: bolder;
  font-size: 20px;
  font-family: 'DM Sans', sans-serif !important;
  margin-bottom: 8px;
}

.kti-steps .kti-step-title {
  margin: 0 0 10px;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 24px;
  font-weight: 500;
}

.kti-steps .kti-step-text {
  margin: 0;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
}

.kti-steps-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.kti-steps-prev, .kti-steps-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #3cb64b;
  color: #fff;
  cursor: pointer;
}

.kti-steps-dots { display: none; }
.kti-steps-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; background: #cfe8d6; padding: 0;
}
.kti-steps-dots button[aria-current="true"] { background: #3cb64b; }

@media (min-width: 992px) {
  .kti-steps-track { grid-auto-columns: calc((100% - 40px) / 3); }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .kti-steps { padding: 24px 0 40px 0px; }
  /* Side peek + perfect centering of active card */
  .kti-steps-track { padding: 0 7.5%; grid-auto-columns: 85%; }
  .kti-step { scroll-snap-align: center; }
}


