.indy-creation-widget {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.indy-creation-widget .main-title {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.64px;
  margin: 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.indy-creation-widget .main-wrapper {
  display: flex;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}


.indy-creation-widget .steps-section {
  display: flex;
  flex-direction: column;
  column-gap: 20px;
  row-gap: 24px;
  min-width: auto;
  width: 100%;
  max-width: fit-content;
  align-items: flex-start;
}

.indy-creation-widget .image-wrapper.desktop {
  display: none;
}

.indy-creation-widget .image-wrapper.mobile {
  display: block;
}

.indy-creation-widget .image-wrapper {
  max-width: 392px;
  margin-inline: auto;
}

.indy-creation-widget .step-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  position: relative;
  text-align: left;
  width: 100%;
}

.indy-creation-widget .step-item:not(:last-child)::after {
  display: block;
  left: 19px;
  top: 48px;
  height: calc(100% - 12px);
}

.indy-creation-widget .step-connector {
  position: absolute;
  left: 15px;
  top: 32px;
  width: 1px;
  height: 0;
  background: #fa5d89;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.indy-creation-widget .step-connector.animate {
  height: 100%;
}

.indy-creation-widget .step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent;
  border: 1px solid #fa5d89;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.indy-creation-widget .step-item.animate .step-circle {
  background: linear-gradient(0deg, #e35072 -65%, #fa5d89 171.25%);
}

.indy-creation-widget .checkmark {
  width: 18px;
  height: 18px;
  color: #fff;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.indy-creation-widget .step-item.animate .checkmark {
  transform: scale(1);
}

.indy-creation-widget .step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.indy-creation-widget .step-item.animate .step-content {
  opacity: 1;
}

.indy-creation-widget .step-content .step-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.432px;
}

.indy-creation-widget .step-content .step-description {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.16px;
}

.indy-creation-widget .button-wrapper {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .indy-creation-widget {
    gap: 48px;
  }

  .indy-creation-widget .main-title {
    font-size: 40px;
    letter-spacing: -0.88px;
    max-width: 496px;
    margin-inline: auto;
  }

  .indy-creation-widget .main-wrapper {
    flex-direction: column-reverse;
  }

  .indy-creation-widget .checkmark {
    width: 20px;
    height: 20px;
  }

  .indy-creation-widget .step-item:not(:last-child)::after {
    height: calc(100% - 16px);
  }

  .indy-creation-widget .image-wrapper.desktop {
    display: block;
  }

  .indy-creation-widget .image-wrapper.mobile {
    display: none;
  }
}

@media (min-width: 1024px) {
  .indy-creation-widget .main-wrapper {
    flex-direction: row;
    gap: 112px;
  }

  .indy-creation-widget .steps-section {
    gap: 32px;
    max-width: 377px;
  }

  .indy-creation-widget .step-item {
    width: auto;
  }

  .indy-creation-widget .step-item:not(:last-child)::after {
    display: none;
  }

  .indy-creation-widget .button-wrapper {
    margin: 0;
    flex-direction: row;
  }
}

.indy-creation-widget.reduced-motion * {
  animation: none;
  transition: none;
}

.indy-creation-widget.reduced-motion .step-item {
  opacity: 1;
  transform: none;
}