.help-guide-card {
    padding: var(--space-4);
    max-width: 620px;
    margin: 0 auto;
}
.help-guide-step h2 {
    margin-bottom: var(--space-2);
    text-align: center;
}
.help-guide-options {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.help-guide-options button {
    padding: .9rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-surface-border);
    background: var(--color-surface);
    color: #fff;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all .2s ease;
}
.help-guide-options button:hover {
    border-color: var(--color-accent-soft);
    background: rgba(124,110,242,.12);
}

.help-guide-progress {
    display: flex;
    gap: .4rem;
    justify-content: center;
    margin-top: var(--space-3);
}
.help-guide-progress span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-surface-border);
}
.help-guide-progress span.active { background: var(--color-accent); }
.help-guide-progress span.done { background: var(--color-accent-soft); }

.help-guide-path {
    background: var(--color-surface);
    border: 1px solid var(--color-surface-border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    margin-bottom: var(--space-2);
}
.help-guide-path h3 { margin: 0 0 .4rem; }
.help-guide-path p { margin: 0 0 .8rem; color: rgba(255,255,255,.75); font-size: .9rem; }

.help-guide-disclaimer {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    margin-top: var(--space-3);
}
