body {
    overflow-x: hidden;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    min-height: 100vh;
    padding-top: 1rem;
}

.back-to-home {
    max-width: 800px;
    margin: 0 auto 1rem;
    padding: 0 1.5rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #10b981;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-back svg {
    width: 20px;
    height: 20px;
}

.btn-back:hover {
    background: #10b981;
    color: #fff;
    transform: translateX(-4px);
}

body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.onboarding-container {
    max-width: 800px;
    margin: 1rem auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hidden-field {
    display: none;
}

.checkbox-agreement {
    border: none;
    padding: 0;
    background: none;
}

.review-note {
    margin-top: 1rem;
    color: #64748b;
}

.onboarding-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    color: white;
    border-radius: 16px;
}

.onboarding-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.25rem;
    color: #1e293b;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #10b981;
    font-weight: 700;
}

.form-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input::-webkit-scrollbar,
.form-group select::-webkit-scrollbar,
.form-group textarea::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.checkbox-group, .radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.checkbox-item, .radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.checkbox-item:hover, .radio-item:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.checkbox-item input, .radio-item input {
    width: auto;
    margin: 0;
}

.role-summary {
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    margin: 1.5rem 0;
}

.role-summary .highlight {
    color: #10b981;
    font-weight: bold;
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.deliverables-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.deliverables-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    background: rgba(16, 185, 129, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.declaration-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #f59e0b;
    margin: 1.5rem 0;
}

.declaration-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.declaration-box li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.submit-section {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
}

.btn-submit-onboarding {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-submit-onboarding:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.other-field {
    display: none;
    margin-top: 1rem;
}

.experience-fields {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(239, 246, 255, 0.5);
    border-radius: 8px;
    border: 1px solid #dbeafe;
}

.conditional-field {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(239, 246, 255, 0.5);
    border-radius: 8px;
    border: 1px solid #dbeafe;
}

.checkbox-agreement {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
}

.checkbox-agreement label {
    font-size: 0.95rem;
    color: #2d3748;
    font-weight: 500;
    margin-left: 10px;
    line-height: 1.5;
}

h4 {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    padding-left: 0.5rem;
    border-left: 3px solid #10b981;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    border: 2px dashed #d1d5db;
    background: #f9fafb;
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.form-group input[type="file"]:focus {
    border-color: #10b981;
    border-style: solid;
}

@media (max-width: 768px) {
    .onboarding-container {
        margin: 0.5rem;
        padding: 1rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .checkbox-group, .radio-group {
        grid-template-columns: 1fr;
    }
    .onboarding-header h1 {
        font-size: 1.5rem;
    }
    .onboarding-header {
        padding: 1.5rem;
    }
}
