/* Numbered Steps
   Centered intro + 4 auto-numbered steps joined by a dashed line.
   Stacks vertically on mobile (line removed). Brand: $darkblue #023769 / $blue #03a1e2. */

.numbered-steps {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Intro */
.numbered-steps .steps-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.numbered-steps .steps-intro h2 {
  margin-bottom: 14px;
}
.numbered-steps .steps-subheading {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(2, 55, 105, 0.75);
  margin: 0;
}

/* Steps row */
.numbered-steps .steps {
  display: flex;
  position: relative;
}
/* Dashed connector — runs from the center of the first icon to the center of the
   last icon, behind the circles (which have an opaque fill, so it reads as segments). */
.numbered-steps .steps::before {
  content: "";
  position: absolute;
  top: 82px;
  left: 12.5%;
  right: 12.5%;
  border-top: 2px dashed #c4d4e3;
  z-index: 0;
}

.numbered-steps .step {
  flex: 1 1 0;
  text-align: center;
  padding: 0 15px;
}

.numbered-steps .step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #023769;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.numbered-steps .step-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(3, 161, 226, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.numbered-steps .step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.numbered-steps .step-body {
  margin-top: 18px;
}
.numbered-steps .step-body h3 {
  font-size: 17px;
  line-height: 1.3;
  color: #023769;
  margin: 0 0 8px;
}
.numbered-steps .step-body p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(2, 55, 105, 0.72);
  margin: 0;
}

/* Tablet — keep 4 across, tighten spacing so they fit */
@media (max-width: 991.98px) {
  .numbered-steps .step {
    padding: 0 8px;
  }
}

/* Mobile — stack vertically and drop the connector line */
@media (max-width: 767.98px) {
  .numbered-steps {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .numbered-steps .steps {
    flex-direction: column;
  }
  .numbered-steps .steps::before {
    display: none;
  }
  .numbered-steps .step {
    flex: 0 0 auto;
    padding: 0;
    margin-bottom: 34px;
  }
  .numbered-steps .step:last-child {
    margin-bottom: 0;
  }
}
