.process-section {
  padding: 100px 172px;
  padding-top: 0;
}

.process-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.process-wrap .section-heading {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* Desktop: horizontal row, each step is number-row + card stacked,
   naturally keeping the number centered above its own card */
.process-steps-row {
  display: flex;
  gap: 24px;
  margin-bottom: 50px;
}

.process-step-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step-top {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* .white-glass-bg (global) already provides the circle's background,
   box-shadow, and blur — this just handles size/shape/text layout */
.process-step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--raleway);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Spans from this circle's center to the next circle's center by
   overflowing across the item's gap */
.process-step-connector {
  position: absolute;
  top: 50%;
  left: 63%;
  width: calc(73% + 24px);
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
  z-index: 0;
}

/* .glass-card-bg (global) already provides the card's background,
   box-shadow, and blur — this just handles layout/spacing */
.process-card {
  width: 100%;
  flex: 1; /* ← add this */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  min-height: 190px;
}

.process-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.process-card h4 {
  font-family: var(--raleway);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

/* Book Now button uses .white-glass-bg .white-glass-bg-hover (global) for
   its background/hover states — same pattern as every other CTA button
   on the page (concerns-cta, consult-section, treatments-section, etc.).
   Only shared layout/typography for the button lives here. */
.btn-book-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

a.btn-book-now.white-glass-bg.white-glass-bg-hover.js-scroll-to-contact {
  width: 100%;
  max-width: 399px;
  margin: 0 auto;
}

@media (max-width: 1500px) {
  .process-step-connector {
    display: none;
  }
  .process-section {
    padding: 70px 30px;
    padding-top: 0;
  }
}

@media (max-width: 1500px) {
  .process-step-top {
    margin-bottom: -22px;
  }

  .process-steps-row {
    flex-wrap: wrap;
  }

  .process-step-item {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .process-section {
    padding: 50px 20px;
    padding-top: 0;
  }
  .process-wrap .section-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }

  /* Mobile: stack each step fully vertically. The number overlaps the
     top edge of its own card instead of sitting in a separate row. */
  .process-steps-row {
    flex-direction: column;
    gap: 30px;
  }

  .process-step-item {
    flex: 1 1 auto;
    width: 100%;
  }

  .process-step-top {
    margin-bottom: -22px; /* half the circle's height, pulls it onto the card */
  }

  .process-step-connector {
    display: none;
  }

  .process-card {
    min-height: auto;
    padding: 44px 20px 30px;
  }
}
