/* ---- How It Works section ---- */

.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--accent-fg);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ---- Deal Discovery Callout ---- */

.deal-discovery-callout {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.deal-discovery-callout p {
    font-size: 1.125rem;
    color: var(--fg);
    margin: 0 0 1.25rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

