/* Onboarding Section Styles */

.onboarding-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
}

.onboarding-header {
    text-align: center;
    margin-bottom: 4rem;
}

.onboarding-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.onboarding-intro {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-bottom: 4rem;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.intro-icon i {
    font-size: 2.5rem;
    color: white;
}

.onboarding-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.onboarding-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
}

.onboarding-process {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.process-step {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.process-step.free-consultation {
    border: 3px solid #4CAF50;
}

.process-step.paid-onboarding {
    border: 3px solid var(--primary-color);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.free-consultation .step-badge {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.free-consultation .step-icon i {
    color: #4CAF50;
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.process-step > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.step-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.step-details li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.step-details li:last-child {
    border-bottom: none;
}

.step-details i {
    color: var(--success);
    font-size: 1rem;
    flex-shrink: 0;
}

.free-consultation .step-details i {
    color: #4CAF50;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.onboarding-why {
    margin-bottom: 4rem;
}

.onboarding-why h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

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

.why-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(233, 30, 99, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.why-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.onboarding-cta {
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 4rem 3rem;
    border-radius: 20px;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-box .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-box .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-box .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-box .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .onboarding-process {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .onboarding-section {
        padding: 3rem 0;
    }

    .onboarding-header h2 {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .onboarding-intro {
        padding: 2rem;
    }

    .onboarding-intro h3 {
        font-size: 1.5rem;
    }

    .process-step {
        padding: 2rem;
    }

    .process-step h4 {
        font-size: 1.3rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .onboarding-why h3 {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h3 {
        font-size: 2rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .cta-box .cta-buttons {
        flex-direction: column;
    }

    .cta-box .btn-large {
        width: 100%;
    }
}
