.steps {
  position: relative;
  padding-block: 5vi;
  background: rgba(26, 26, 26, 0.03);
  overflow: hidden;
}

.steps__blob {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 160, 220, 0.2) 0%, rgba(8, 160, 220, 0.06) 50%, transparent 75%);
  pointer-events: none;
  filter: blur(50px);
}

.steps__blob--1 {
  top: 8%;
  left: 20%;
}

.steps__blob--2 {
  top: 35%;
  right: -5%;
}

.steps__blob--3 {
  top: 60%;
  left: 45%;
}

.steps__blob--4 {
  top: 90%;
  left: 15%;
}

.steps__header {
  text-align: center;
  margin-block-end: 3vi;
}

.steps__video-styles {
  width: 100%;
  margin-block-end: 4vi;
}

.steps__video-styles img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.steps__title {
  font-weight: 400;
  font-size: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.steps__subtitle {
  font-size: clamp(0.875rem, 0.6rem + 0.8vw, 1.25rem);
  line-height: 1.2;
  color: var(--color-text);
  opacity: 0.6;
  max-inline-size: 580px;
  margin-inline: auto;
  margin-block-start: 12px;
}

.steps__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

.steps__item {
  position: relative;
  padding-inline-start: 60px;
  padding-block-start: 112px;
  padding-block-end: 32px;
}

.steps__item .steps__line {
  position: absolute;
  left: 50px;
  top: 116px;
  bottom: 16px;
  width: 1px;
  background: rgba(26, 26, 26, 0.15);
  transform: translateX(-50%);
}

.steps__number {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffc024;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.steps__content {
  margin-inline-start: 32px;
}

.steps__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 42%;
}

.steps__text h3 {
  font-weight: 500;
  font-size: clamp(1.25rem, 0.8rem + 1.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.steps__text p {
  font-size: clamp(0.875rem, 0.7rem + 0.5vw, 1.125rem);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.steps__image {
  position: absolute;
  top: 112px;
  right: 0;
  width: 50%;
  display: flex;
  align-items: start;
  justify-content: flex-end;
}

.steps__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

@media (max-width: 768px) {
  .steps__item {
    padding-inline-start: 40px;
    padding-block-start: 72px;
  }

  .steps__item .steps__line {
    left: 30px;
    top: 72px;
    bottom: 12px;
  }

  .steps__number {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .steps__content {
    margin-inline-start: 12px;
  }

  .steps__text {
    width: 100%;
  }

  .steps__image {
    position: static;
    width: 100%;
    margin-block-start: 24px;
  }

  .steps__blob {
    width: 600px;
    height: 600px;
  }
}
