
.bm-steps {
  --bm-gap: 28px;
  --bm-background: #0E2D27;
  overflow: hidden;
  position: relative;
}
.bm-steps *, .bm-steps *::before, .bm-steps *::after { box-sizing: border-box; }
.bm-steps__header { max-width: 760px; margin-bottom: 44px; }
.bm-steps__eyebrow { margin-bottom: 12px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.bm-steps__title { margin: 0 0 14px; color: inherit; font-size: clamp(30px,4vw,54px); line-height: 1.08; }
.bm-steps__description { opacity: .78; font-size: 17px; line-height: 1.7; }
.bm-steps__description p:last-child, .bm-step__content p:last-child { margin-bottom: 0; }

.bm-steps__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--bm-cols,7), minmax(0,1fr));
  gap: var(--bm-gap);
  align-items: start;
}
.bm-steps__track::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
}
.bm-step { min-width: 0; position: relative; z-index: 1; }
.bm-step::before { display: none; }

.bm-step__button,
.bm-step__button:hover,
.bm-step__button:focus,
.bm-step__button:active,
.bm-step__button:disabled {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: inherit !important;
  cursor: pointer;
  text-align: left;
  text-decoration: none !important;
  transform: none !important;
}
.bm-steps--always .bm-step__button,
.bm-step__button:disabled { cursor: default; opacity: 1; }

.bm-step__marker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: var(--bm-background);
  color: inherit;
  transition: border-color .2s ease, color .2s ease;
}
.bm-step__marker::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: inherit;
  background: transparent;
  transition: background-color .2s ease;
}
.bm-step__icon { display: inline-flex; align-items: center; justify-content: center; font-size: 15px; }
.bm-step__icon svg { width: 1em; height: 1em; fill: currentColor; }
.bm-step__number { display: block; margin-top: 18px; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.bm-step__title { display: block; margin-top: 6px; font-size: 18px; font-weight: 700; line-height: 1.35; }
.bm-step__content { margin-top: 16px; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.06); color: inherit; font-size: 14px; line-height: 1.65; animation: bmFadeUp .22s ease both; }
.bm-step__content[hidden] { display: none !important; }
.bm-step__button:hover .bm-step__marker,
.bm-step__button:focus-visible .bm-step__marker { border-color: rgba(255,255,255,.55); }
.bm-step__button:focus-visible { outline: 2px solid currentColor !important; outline-offset: 8px; }
.bm-step--finish .bm-step__marker { background: var(--bm-background); }

@keyframes bmFadeUp { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

@media (max-width: 1024px) {
  .bm-steps__track { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .bm-steps__track::before { display: none; }
}
@media (max-width: 767px) {
  .bm-steps { --bm-gap: 0px; }
  .bm-steps__header { margin-bottom: 32px; }
  .bm-steps__track { display: block; }
  .bm-step { position: relative; padding: 0 0 28px 66px; }
  .bm-step:last-child { padding-bottom: 0; }
  .bm-step::before { content:""; display:block; position:absolute; top:48px; left:24px; width:1px; height:calc(100% - 34px); }
  .bm-step:last-child::before { display:none; }
  .bm-step__button { position:relative; min-height:48px; }
  .bm-step__marker { position:absolute; top:0; left:-66px; }
  .bm-step__number { margin-top:0; }
  .bm-step__title { font-size:17px; }
}
