.onboarding-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.wizard-container {
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.1);
}

.wizard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wizard-header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.wizard-header .logo .logo-slogan {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.wizard-header h1 {
    font-size: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.wizard-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.form-step {
    margin-bottom: 2.5rem;
}

.form-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.radio-grid.two-cols {
    grid-template-columns: repeat(2, 1fr);
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.radio-card .card-content i {
    font-size: 2rem;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

.radio-card .card-content span {
    font-weight: 600;
    color: var(--text-main);
}

.radio-card .card-content small {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.other-sector-input-container {
    display: none;
    margin-top: 1rem;
}

.other-sector-input-container input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

.radio-card input[type="radio"]:checked + .card-content {
    border-color: var(--brand-primary);
    background-color: rgba(111, 66, 193, 0.05);
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.2);
}

.form-select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background-color: #fff;
    font-weight: 500;
    transition: border-color 0.3s;
}

.form-select:focus {
    outline: none;
    border-color: var(--brand-primary);
}