.new-onboarding .moment {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 36px;
}

@media (min-height: 700px) {
  .new-onboarding .moment { padding-top: 48px; padding-bottom: 48px; }
}

.new-onboarding .m-line {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s cubic-bezier(.25, .1, .25, 1), transform 1.4s cubic-bezier(.25, .1, .25, 1);
}
.new-onboarding .m-line.vis { opacity: 1; transform: translateY(0) }

.new-onboarding .m-title {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -.025em;
}

@media (min-height: 700px) {
  .new-onboarding .m-title { font-size: 36px; }
}
.new-onboarding .m-title em { color: var(--coral); font-style: normal; font-weight: 700 }

.new-onboarding .m-body { font-size: 17px; line-height: 1.7; color: var(--text-secondary) }
.new-onboarding .m-detail { font-size: 14px; color: var(--text-muted); line-height: 1.6 }
.new-onboarding .m-spacer { height: 24px }

.new-onboarding .m-trust { display: flex; align-items: center; gap: 10px; margin-top: 28px }
.new-onboarding .m-trust svg { width: 16px; height: 16px; color: var(--text-hint); flex-shrink: 0 }
.new-onboarding .m-trust span { font-size: 13.5px; color: var(--text-hint); font-weight: 500 }

/* Step items */
.new-onboarding .step-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--coral-glow);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.new-onboarding .step-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 10px }
.new-onboarding .step-name { font-size: 15.5px; font-weight: 600; color: var(--text-primary); margin-bottom: 3px }
.new-onboarding .step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.45 }
