
.sds-booking-steps {
  position: relative;
  padding: 36px 20px 58px;
  background: #fff;
  overflow: hidden;
}

.sds-booking-steps__container {
  max-width: var(--sds-container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sds-booking-steps__intro {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.sds-booking-steps__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 0 15px;
  padding: 7px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--sds-red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.sds-booking-steps__title {
  margin: 0;
  color: var(--sds-heading);
  font-size: clamp(32px, 2.7vw, 46px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.sds-booking-steps__description {
  max-width: 790px;
  margin: 15px auto 0;
  color: #4d5660;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.7;
}

.sds-booking-steps__road {
  width: 100%;
  margin: 0 auto -6px;
}

.sds-booking-steps__road svg {
  display: block;
  width: 100%;
  height: auto;
}

.sds-booking-steps__road-fill {
  fill: none;
  stroke: rgba(33, 118, 189, 0.24);
  stroke-width: 36;
  stroke-linecap: round;
}

.sds-booking-steps__road-dash {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 10;
}

.sds-booking-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.sds-booking-step-card {
  position: relative;
  min-height: 222px;
  height: 100%;
  padding: 42px 20px 22px;
  border: 1.5px solid rgba(33, 118, 189, 0.28);
  border-radius: 24px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sds-booking-step-card__number {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sds-red);
  color: #fff;
  border: 5px solid #fff;
  box-shadow: 0 0 0 2px rgba(33, 118, 189, 0.18);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  z-index: 2;
}

.sds-booking-step-card__pin {
  display: none;
}

.sds-booking-step-card__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sds-blue);
  position: relative;
  flex: 0 0 auto;
}

.sds-booking-step-card__icon svg {
  width: 42px;
  height: 42px;
}


.sds-booking-step-card__title {
  margin: 3px 0 8px;
  color: var(--sds-heading);
  font-size: 18px;
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: -.02em;
}

.sds-booking-step-card__text {
  margin: 0;
  color: #4d5660;
  font-size: 15px;
  line-height: 1.44;
  font-weight: 400;
}

.sds-booking-steps__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-top: 38px;
}

.sds-booking-steps__button {
  min-width: 280px;
  padding: 20px 34px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.sds-booking-steps__button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.sds-booking-steps__button--primary {
  background: var(--sds-red);
  border: 2px solid var(--sds-red);
  color: #fff;
}

.sds-booking-steps__button--primary:hover,
.sds-booking-steps__button--primary:focus-visible {
  background: #bf0b09;
  border-color: #bf0b09;
  color: #fff;
}

.sds-booking-steps__button--secondary {
  background: #fff;
  border: 2px solid var(--sds-blue);
  color: var(--sds-blue);
}

.sds-booking-steps__button--secondary:hover,
.sds-booking-steps__button--secondary:focus-visible {
  background: var(--sds-blue);
  border-color: var(--sds-blue);
  color: #fff;
}

.sds-booking-steps__decor {
  position: absolute;
  pointer-events: none;
}


.sds-booking-steps__decor--corner {
  right: -54px;
  top: -40px;
  width: 280px;
  height: 280px;
  border: 28px solid rgba(33, 118, 189, 0.06);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 0 0 120px;
}

@media (max-width: 1180px) {
  .sds-booking-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 60px;
  }

  .sds-booking-steps__road {
    display: none;
  }
}

@media (max-width: 767px) {
  .sds-booking-steps {
    padding: 32px 16px 56px;
  }

  .sds-booking-steps__intro {
    margin-bottom: 28px;
  }

  .sds-booking-steps__description {
    font-size: 16px;
  }

  .sds-booking-steps__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sds-booking-step-card {
    min-height: auto;
    padding: 40px 18px 20px;
  }

  .sds-booking-step-card__number {
    width: 64px;
    height: 64px;
    font-size: 24px;
    top: -32px;
  }

  .sds-booking-step-card__title {
    font-size: 18px;
  }

  .sds-booking-step-card__text {
    font-size: 15px;
  }

  .sds-booking-steps__actions {
    gap: 14px;
    margin-top: 34px;
  }

  .sds-booking-steps__button {
    min-width: 100%;
    width: 100%;
    padding: 18px 24px;
    font-size: 17px;
  }

  .sds-booking-steps__decor--corner {
    display: none;
  }
}
