/* Onboarding Section */
.onboarding-section {
    padding: 6rem 0;
}

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

.onboarding-timeline {
    position: relative;
    padding-top: 2.5rem;
}

.timeline-line {
    position: absolute;
    top: 3.5rem;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,.12);
    border-radius: 999px;
}

.timeline-progress {
    position: absolute;
    top: 3.5rem;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 999px;
    animation: timelineFill 5s ease forwards;
}

@keyframes timelineFill {
    from { width: 0; }
    to { width: 100%; }
}

.onboarding-step {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}

.onboarding-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.step-title {
    font-size: 1.25rem;
    margin: 0 0 .5rem;
}

.step-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

.onboarding-deliverables {
    margin-top: 2.5rem;
}

.deliverables-heading {
    font-size: 1.1rem;
    opacity: .9;
}

.deliverables-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem 1.5rem;
    margin-top: .75rem;
}

.deliverables-list li {
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.deliverables-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .onboarding-steps { grid-template-columns: 1fr; }
    .deliverables-list { grid-template-columns: 1fr; }
    .timeline-line, .timeline-progress { display: none; }
}
/* Services Page Specific Styles */

/* Services Hero */
.services-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Services Sections */
.services-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.services-section.alt {
    background: var(--bg-secondary);
}

/* Service Cards */
.service-card-premium {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    content: "★ Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services-hero {
        padding: 6rem 0 4rem;
        min-height: 80vh;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .service-card-premium {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 4rem 0 3rem;
    }
    
    .service-card-premium {
        padding: 1.5rem 1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}
