/* Guide Section - Minimalistic Design */
.setup-guide {
    padding: 80px 0;
    background: #fafafa;
}

.setup-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.step-minimal {
    text-align: center;
    flex: 1;
}

.step-number-minimal {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto 16px;
}

.step-content-minimal h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.step-content-minimal p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.step-arrow {
    color: #cbd5e1;
    font-size: 24px;
    font-weight: 300;
}

.setup-cta-minimal {
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.setup-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--background-white);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.setup-cta h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.setup-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.setup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, var(--background-light), var(--background-gray));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.step-detail {
    background: var(--background-light);
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Monaco', 'Consolas', monospace;
    border-left: 3px solid var(--accent-color);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .steps-minimal {
        flex-direction: column;
        gap: 30px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .setup-cta-minimal {
        flex-direction: column;
        align-items: center;
    }

    .setup-cta-minimal .btn {
        width: 100%;
        max-width: 250px;
    }

    .setup-actions {
        flex-direction: column;
        align-items: center;
    }
}

