.process-hero {
    background: linear-gradient(135deg, var(--color-surface-alt) 0%, var(--color-bg) 100%);
    padding: var(--space-20) 0 var(--space-16);
    position: relative;
    overflow: hidden;
}

.process-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-secondary));
}

.breadcrumb {
    margin-bottom: var(--space-6);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: var(--space-2);
    color: var(--color-gray-400);
}

.breadcrumb a {
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.process-hero h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.process-hero .lead {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
}

.process-timeline {
    background-color: var(--color-bg);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-8) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary-light), var(--color-primary), var(--color-primary-light));
    top: 0;
}

.timeline-step {
    position: relative;
    margin-bottom: var(--space-16);
    width: 100%;
    display: flex;
    justify-content: center;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-content {
    position: relative;
    width: calc(50% - var(--space-12));
    padding: var(--space-8);
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.timeline-step:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
}

.timeline-step:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: var(--space-6);
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: 4px solid var(--color-bg);
}

.timeline-step:nth-child(odd) .step-number {
    right: calc(-1 * (var(--space-12) + 30px));
    left: auto;
}

.timeline-step:nth-child(even) .step-number {
    left: calc(-1 * (var(--space-12) + 30px));
    right: auto;
}

.timeline-content h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.timeline-content p {
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
}

.timeline-content img {
    margin-top: var(--space-6);
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.process-cta {
    background: var(--color-surface-alt);
    position: relative;
}

.process-cta h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    color: var(--color-text);
}

.process-cta p {
    color: var(--color-text-secondary);
    font-size: var(--text-lg);
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.timeline-step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .timeline::before {
        left: var(--space-6);
    }
    
    .timeline-step {
        justify-content: flex-start;
    }
    
    .timeline-content {
        width: calc(100% - var(--space-16));
        margin-left: var(--space-16) !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .step-number {
        left: calc(-1 * (var(--space-12) + 20px)) !important;
        right: auto !important;
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }
    
    .timeline-content h2 {
        font-size: var(--text-xl);
    }
}

@media (max-width: 640px) {
    .process-hero {
        padding: var(--space-16) 0 var(--space-12);
    }
    
    .process-hero h1 {
        font-size: var(--text-4xl);
    }
    
    .timeline-content {
        padding: var(--space-6);
        width: calc(100% - var(--space-12));
        margin-left: var(--space-10) !important;
    }
    
    .step-number {
        left: calc(-1 * (var(--space-10))) !important;
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
        top: var(--space-4);
    }
    
    .timeline::before {
        left: var(--space-4);
    }
}