.how-it-work-section {
  text-align: center;
  overflow: hidden;
  position: relative;
  height: 100vh; /* ensures full viewport height */
  min-height: 100vh; /* safeguard for responsive */
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 1;
}

.how-it-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 100px 100px 50px 100px;
}

span.how-it-headings {
  background: linear-gradient(180deg, #9C03A6, #69018D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 90px;
  font-weight: 700;
  line-height: 100px !important;
}

span.how-it-egifters {
  color: transparent;
  -webkit-text-stroke: 2px #720074;
  text-stroke: 2px #720074;
  font-size: 90px;
  font-weight: 700;
  line-height: 100px !important;
}

.how-it-description {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: #1F1F1F;
  margin-bottom: 0px !important;
}

.steps {
  display: flex;
  flex-direction: row;
  width: calc(400% + 1px);
  gap: 0;
  margin: 0;
  flex: 1;
  will-change: transform;
}

.step {
  flex: 0 0 25%;
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

.step-number {
  width: 74px;
  height: 74px;
  background: transparent;
  font-size: 36px;
  font-weight: 500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  background: 
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(180deg, #8B0791, #5600C5) border-box;
  margin-bottom: 10px !important;
  z-index: 2;
}

.step-number span {
  background: linear-gradient(180deg, #8B0791, #5600C5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step h3 {
  font-size: 36px;
  margin-bottom: 10px !important;
  color: #000000;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 100%;
}

.step p {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  max-width: 700px;
  line-height: 27px;
  margin-bottom: 30px !important;
}

.step-img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.step-img:hover {
  transform: scale(1.05);
}