/* Process Page Styles */

.process-hero {
    padding-top: var(--space-24);
    padding-bottom: var(--space-16);
}

.process-hero .hero-title {
    margin-bottom: var(--space-6);
    line-height: 1.05;
}

.process-hero .hero-lead {
    font-size: var(--size-text-lg);
    color: var(--color-text-muted);
}

/* Timeline Steps */
.process-steps {
    padding: var(--space-16) 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
}

.timeline-step {
    margin-bottom: var(--space-12);
    position: relative;
}

.step-number {
    font-size: var(--size-text-4xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

.timeline-step:nth-child(odd) .step-content {
    margin-left: 0;
    margin-right: 52%;
    text-align: right;
}

.timeline-step:nth-child(even) .step-content {
    margin-left: 52%;
    margin-right: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .timeline-step:nth-child(odd) .step-content,
    .timeline-step:nth-child(even) .step-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border: 4px solid var(--color-background);
    border-radius: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-step::before {
        left: 30px;
    }
}

.step-content h3 {
    font-size: var(--size-text-2xl);
    margin-bottom: var(--space-3);
}

.step-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    line-height: var(--line-height-relaxed);
}

.step-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.timeline-step:hover .step-image img {
    transform: scale(1.05);
}

/* Commitment Section */
.commitment {
    padding: var(--space-16) 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.commitment-card {
    background: var(--color-background);
    padding: var(--space-8);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-normal);
}

.commitment-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(230, 0, 122, 0.1);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.commitment-card h3 {
    margin-bottom: var(--space-2);
}

.commitment-card p {
    color: var(--color-text-muted);
    font-size: var(--size-text-sm);
}

/* CTA Section */
.process-cta {
    padding: var(--space-16) 0;
    text-align: center;
}

.process-cta h2 {
    margin-bottom: var(--space-4);
}

.process-cta p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }

/* Responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .step-image {
        height: 200px;
    }
}
