.osago-steps {
  margin: 72px 0;
  background: #ffffff;
  border-radius: 32px;
}

.osago-steps-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.osago-steps-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f1f2e;
  margin-bottom: 40px;
}

/* ===== PROGRESS ===== */

.osago-steps-progress {
  position: relative;
  margin-bottom: 40px;
}

.progress-line {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 4px;
  background: #e6eef8;
  border-radius: 2px;
}

.progress-line-fill {
  width: 33%;
  height: 100%;
  background: #1e88e5;
  border-radius: 2px;
}

/* ===== STEPS ===== */

.steps-row {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 200px;
  text-align: center;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e6f0ff;
  color: #1e88e5;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step.active .step-circle {
  background: #1e88e5;
  color: #ffffff;
}

.step-text {
  font-size: 15px;
  color: #334455;
  line-height: 1.4;
}

/* ===== BUTTON ===== */

.osago-steps-btn {
  background: #1e88e5;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.osago-steps-btn:hover {
  background: #166fc1;
}

/* ===== MOBILE (VERTICAL STEPPER) ===== */
@media (max-width: 768px) {
  .progress-line {
    top: 0;
    bottom: 0;
    left: 22px;
    width: 4px;
    height: auto;
  }

  .progress-line-fill {
    width: 100%;
    height: 33%;
  }

  .steps-row {
    flex-direction: column;
    gap: 24px;
    margin-left: 40px;
  }

  .step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .step-circle {
    margin-top: 0;
  }
}
