/* How It Works section — matches reference steps-row structure */
.section-blush {
    background: var(--blush-100, #f9e3f1);
}

.how-it-works {
    padding-top: 92px;
    padding-bottom: 92px;
}

.how-it-works .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
}

.how-it-works .reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* step row (4-col with connecting line) */
.steps-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 90px;
    right: 90px;
    height: 2px;
    background: var(--line, #e8dfe1);
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--sage-500, #639463);
    color: var(--plum-700, #5a2d91);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display, 'Playfair Display', Georgia, serif);
    font-weight: 700;
    font-size: 21px;
    margin-bottom: 18px;
    transition: all .3s cubic-bezier(.22, .61, .36, 1);
}

.step-item:hover .step-num {
    background: var(--sage-500, #639463);
    color: #fff;
    transform: scale(1.08);
}

.step-item h4 {
    font-family: var(--body, 'Inter', -apple-system, sans-serif);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink-900, #241620);
}

.step-item p {
    font-size: 13px;
    color: var(--gray-600, #7d6e79);
    line-height: 1.6;
    max-width: 220px;
    margin: 0;
}

@media (max-width: 860px) {
    .steps-row { flex-direction: column; gap: 32px; }
    .steps-row::before { display: none; }
    .how-it-works { padding-top: 56px; padding-bottom: 56px; }
}
