.scorix-wizard {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #ffffff;
}

.scorix-wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.scorix-wizard-app {
    font-weight: 600;
    font-size: 1rem;
}

.scorix-wizard-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
}

.scorix-wizard-progress-bar {
    position: relative;
    width: 220px;
    height: 6px;
    border-radius: 999px;
    background: rgba(0,0,0,0.08);
    overflow: hidden;
}

.scorix-wizard-progress-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: #0073aa;
    transition: width 0.2s ease;
}

.scorix-wizard-progress-label {
    margin-top: 0.35rem;
    font-size: 0.8rem;
    text-align: right;
}

.scorix-wizard-body {
    margin-bottom: 1.5rem;
}

.scorix-card {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

/* Steps */

.scorix-step {
    display: none;
}

.scorix-step.is-active {
    display: block;
}

.scorix-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.scorix-feature-card {
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
}

.scorix-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.scorix-learn-list ol {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
}

.scorix-info-box {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(0,115,170,0.06);
    font-size: 0.9rem;
}

.scorix-footnote {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* nummerierte Arbeitsschritte */

.scorix-step-item {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: flex-start;
}

.scorix-step-number {
    flex: 0 0 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.scorix-step-content h3 {
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.scorix-screenshot-placeholder {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px dashed rgba(0,0,0,0.2);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Footer */

.scorix-wizard-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.scorix-wizard-button {
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    border: 1px solid rgba(0,0,0,0.2);
    background: #f5f5f5;
    font-size: 0.9rem;
    cursor: pointer;
}

.scorix-wizard-button.is-primary {
    border-color: #0073aa;
    background: #0073aa;
    color: #ffffff;
}

.scorix-wizard-button:disabled {
    opacity: 0.5;
    cursor: default;
}

/* Mobile */

@media (max-width: 768px) {
    .scorix-wizard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .scorix-wizard-progress-bar {
        width: 100%;
    }

    .scorix-step-item {
        align-items: flex-start;
    }
}
