/* Steps section (Getting Started) */
.steps-section {
  width: 100%;
  background: #fff;
}

.steps-container {
  max-width: 1200px;
  margin: 30px auto 0 auto;
  padding: 64px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.steps-title {
  text-align: center;
  font-family: inherit;
  letter-spacing: 0.2px;
}

.steps-subtitle {
  text-align: center;
  margin: 14px 0 4px;
  color: #5a616a;
  font-size: 1.3em;
}

.steps-viewport {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  /* prevent accidental overflow on slide */
  /* Remove any borders, shadows, rounded corners */
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.steps-track {
  display: flex;
  width: 100%;
  height: auto;
  /* let image define height */
  transform: translateX(0%);
  transition: transform 260ms ease;
}

.steps-slide {
  flex: 0 0 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-slide img {
  width: 100%;
  height: auto;
  /* keep natural aspect ratio */
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0;
  /* remove rounding */
}

.steps-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.step-btn {
  appearance: none;
  border: none;
  /* remove border as requested */
  background: transparent;
  /* clean look */
  color: #2b2f36;
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  /* icon above text */
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 140px;
  text-align: center;
  box-shadow: none;
  transition: background-color 150ms ease, transform 120ms ease;
}

.step-btn .step-icon {
  width: clamp(24px, 3.2vw, 32px);
  height: clamp(24px, 3.2vw, 32px);
  display: inline-block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.step-btn .step-index {
  font-weight: 700;
  color: #595959;
  line-height: 1.2;
}

.step-btn .step-title {
  font-weight: 700;
}

.step-btn .step-title {
  grid-area: title;
  font-weight: 700;
}

.step-btn .step-desc {
  grid-area: desc;
  font-size: 0.92rem;
  color: #5a616a;
}

.step-btn:hover {
  background: rgba(91, 108, 255, 0.08);
}

.step-btn.active,
.step-btn[aria-selected="true"] {
  background: #fdf9ea;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-container {
    padding: 40px 16px;
    gap: 20px;
  }

  .steps-controls {
    justify-content: stretch;
  }

  .step-btn {
    width: 100%;
    min-width: 0;
  }

  .steps-viewport {
    width: 100%;
  }
}

.step-btn[data-step="0"] .step-icon {
  background-image: url('../images/gocayin/icon-step-create.svg');
}

.step-btn[data-step="1"] .step-icon {
  background-image: url('../images/gocayin/icon-step-customize.svg');
}

.step-btn[data-step="2"] .step-icon {
  background-image: url('../images/gocayin/icon-step-play.svg');
}