.process-hero {
    background-color: var(--color-bg-warm);
    padding: var(--space-20) 0 var(--space-16);
    text-align: center;
}

.process-hero .breadcrumb {
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

.process-hero .breadcrumb ol {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    padding: 0;
    margin: 0;
}

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

.process-hero .breadcrumb a {
    color: var(--color-text-secondary);
    text-decoration: none;
}

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

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

.process-hero .lead {
    font-size: var(--text-xl);
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
}

.process-steps {
    padding: var(--space-24) 0;
    background-color: var(--color-bg);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--color-neutral-300);
}

.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-20);
    align-items: center;
}

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

.timeline-step:nth-child(even) .step-content {
    grid-column: 2;
    text-align: left;
}

.timeline-step:nth-child(even) .step-image {
    grid-column: 1;
    grid-row: 1;
}

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

.step-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    color: var(--color-primary);
    opacity: 0.3;
    font-weight: 400;
    line-height: 1;
    margin-bottom: var(--space-4);
}

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

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

.step-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-bg-elevated);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.timeline-step::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
    border: 3px solid var(--color-bg);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.process-cta {
    padding: var(--space-20) 0;
    background-color: var(--color-bg-warm);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.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);
    margin-bottom: var(--space-8);
    font-size: var(--text-lg);
}

@media (max-width: 768px) {
    .process-hero {
        padding: var(--space-16) 0 var(--space-12);
    }
    
    .process-hero h1 {
        font-size: var(--text-4xl);
    }
    
    .process-hero .lead {
        font-size: var(--text-lg);
    }
    
    .timeline::before {
        left: var(--space-4);
    }
    
    .timeline-step {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        padding-left: var(--space-12);
        margin-bottom: var(--space-16);
    }
    
    .timeline-step:nth-child(even) .step-content,
    .timeline-step:nth-child(odd) .step-content {
        grid-column: 1;
        text-align: left;
    }
    
    .timeline-step:nth-child(even) .step-image,
    .timeline-step:nth-child(odd) .step-image {
        grid-column: 1;
        grid-row: auto;
    }
    
    .timeline-step::after {
        left: var(--space-4);
        transform: translateX(-50%);
    }
    
    .step-number {
        font-size: var(--text-4xl);
    }
    
    .step-content h3 {
        font-size: var(--text-xl);
    }
}