/* =============================
   one-stop
============================= */
.one-stop {
  padding: 100px 0;
  background: var(--color-bg-gray);
  text-align: center;
}

.one-stop__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.one-stop__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 16px;
}

.one-stop__label::before,
.one-stop__label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.one-stop__title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.one-stop__title-grad {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.one-stop__lead {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}

/* --- steps --- */
.one-stop__steps {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
}

.one-stop__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-bg);
  padding: 22px 28px;
  border: 1px solid var(--color-border);
  border-top: none;
  text-align: left;
}

.one-stop__step:first-child {
  border-top: 1px solid var(--color-border);
  border-radius: 12px 12px 0 0;
}

.one-stop__step:last-child {
  border-radius: 0 0 12px 12px;
}

.one-stop__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--color-text);
  font-weight: 900;
  font-size: 0.9375rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold-xs);
}

.one-stop__step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.one-stop__step-title {
  font-size: var(--fs-base);
  font-weight: 800;
  color: var(--color-text);
}

.one-stop__step-desc {
  font-size: var(--fs-xs);
  color: var(--color-text-lighter);
}

@media (max-width: 600px) {
  .one-stop {
    padding: 64px 0;
  }

  .one-stop__step {
    padding: 18px 20px;
  }
}