/* Onboarding Page Styles */

/* Hero Section */
.onboarding-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    overflow: hidden;
}

.onboarding-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 132, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(107, 115, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.onboarding-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230084FF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-subtle);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-3px);
    border-color: var(--accent-blue);
    color: var(--text-primary);
}

.hero-badge i {
    color: var(--accent-blue);
    margin-right: 0.5rem;
}

/* Onboarding Container */
.onboarding-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

.form-container {
    background: rgba(26, 27, 30, 0.8);
    border: 1px solid var(--border-accent);
    border-radius: 1rem;
    padding: 2.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan), var(--accent-purple));
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.form-section {
    margin-bottom: 1.5rem;
}

.form-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(30, 31, 35, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.required {
    color: var(--accent-cyan);
    margin-left: 0.25rem;
}

/* Custom Select Styling */
.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.custom-select::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

/* Submit Button */
.submit-btn {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    border: none;
    border-radius: 0.5rem;
    padding: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-text {
    position: relative;
    z-index: 1;
}

/* Loading State */
.submit-btn.loading {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    pointer-events: none;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: calc(50% - 0.5rem);
    left: calc(50% - 0.5rem);
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Errors */
.field-error {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    animation: fadeIn 0.3s ease-out forwards;
}

.form-message {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: fadeIn 0.3s ease-out forwards;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
}

/* Thank You Message */
.thank-you-message {
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeIn 0.5s ease-out forwards;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease-out forwards;
}

.thank-you-message h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.thank-you-message p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Benefits Section */
.benefits-section {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.benefits-header {
    margin-bottom: 2rem;
}

.benefits-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefits-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: rgba(26, 27, 30, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    background: rgba(26, 27, 30, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.1), rgba(107, 115, 255, 0.1));
    border-radius: 12px;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    font-size: 1.5rem;
}

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

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(26, 27, 30, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
}

.testimonial {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2.5rem;
    color: var(--accent-blue);
    opacity: 0.5;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Steps Process */
.process-steps {
    margin-top: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background: var(--border-subtle);
    z-index: 0;
}

.process-step {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
    z-index: 1;
}

.process-step:last-child {
    padding-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

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

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Privacy Notice */
.privacy-notice {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.privacy-notice a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-notice a:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .onboarding-container {
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-section {
        position: relative;
        top: unset;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .onboarding-container {
        grid-template-columns: 1fr;
    }
    
    .onboarding-form-wrapper {
        padding: 2rem 1.5rem;
        order: 1;
    }
    
    .benefits-section {
        order: 2;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .onboarding-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
}

/* Accessibility Improvements */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
    .onboarding-form-wrapper {
        background: rgba(15, 15, 20, 0.8);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--secondary-dark);
    border: 1px solid var(--border-accent);
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.success-icon i {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-body h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0084ff, #7b68ee);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Completely revised onboarding steps */
.onboarding-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    width: 100%;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    width: auto;
    min-width: 130px;
    text-align: center;
    padding: 0 15px;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--surface-dark);
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem; /* Increased space between number and text */
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.step.active .step-number {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--text-primary);
    box-shadow: 0 0 0 5px rgba(0, 132, 255, 0.2);
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    white-space: nowrap;
    position: absolute;
    top: 62px; /* Position below the circle */
    width: 100%;
}

.step.active .step-label {
    color: var(--text-primary);
    font-weight: 500;
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--border-subtle);
    margin: 0 5px;
    position: relative;
    top: -26px; /* Align with center of circles */
    min-width: 30px;
    max-width: 60px;
    z-index: 1;
}

/* Update form step margins to account for step labels */
.form-step {
    margin-top: 2.5rem;
    padding-top: 1rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .onboarding-steps {
        flex-direction: row;
        padding: 0.5rem;
        margin-bottom: 4rem; /* Extra space for labels on mobile */
    }
    
    .step {
        min-width: 90px;
        padding: 0 5px;
    }
    
    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .step-label {
        font-size: 0.8rem;
        top: 52px;
    }
    
    .step-line {
        margin: 0 2px;
        top: -21px;
    }
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.btn-next, .btn-back, .btn-submit {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-primary);
}

.btn-next, .btn-submit {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: var(--text-primary);
}

.btn-back {
    background-color: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.btn-next:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-back:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Checkbox styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.75rem;
    width: auto;
    min-width: 18px;
    height: 18px;
    margin-top: 3px;
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Error styling */
input.error, select.error, textarea.error {
    border-color: var(--error) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Steps Styling */
.form-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.form-step h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
}

/* Feature styling */
.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature i {
    font-size: 1.25rem;
    color: var(--accent-blue);
    margin-right: 1rem;
    background: rgba(0, 132, 255, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Testimonial styling */
.testimonial {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 3px solid var(--accent-blue);
}

.testimonial p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2rem;
    color: var(--accent-blue);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    padding-left: 1.5rem;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Additional Fixes */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* Fix for Privacy Checkbox */
.form-group .checkbox-container {
    margin-bottom: 0;
}

/* Additional Button Styling */
.btn-next, .btn-submit {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.btn-back {
    background-color: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-accent);
}

/* Fix for Form Container */
.form-container {
    background: rgba(26, 27, 30, 0.8);
    border: 1px solid var(--border-accent);
    border-radius: 1rem;
    padding: 2.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Fix for onboarding-info */
.onboarding-info {
    background: rgba(26, 27, 30, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    padding: 2rem;
    height: fit-content;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
} 