/* ===== Process Section (How We Deliver) ===== */
.process-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 50%, #f0f4f8 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    overflow: hidden;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .process-section {
        animation: none;
    }

    .process-card {
        animation: none !important;
    }
}

.process-header {
    max-width: 720px;
    margin: 0 auto 64px;
}

.process-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.process-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.process-subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--muted-foreground);
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 48px 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(26, 31, 54, 0.05);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    animation: fadeUpIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-card {
        animation: none;
        opacity: 1;
    }
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(26, 31, 54, 0.12);
    border-color: var(--accent);
}

.process-step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
}

.process-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.process-card-description {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-section {
        padding: 60px 20px;
    }

    .process-header {
        margin-bottom: 48px;
    }

    .process-grid {
        gap: 24px;
    }

    .process-card {
        padding: 36px 24px;
    }

    .process-step-number {
        font-size: 36px;
    }

    .process-card-title {
        font-size: 18px;
    }

    .process-card-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 48px 16px;
    }

    .process-header {
        margin-bottom: 36px;
    }

    .process-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .process-card {
        padding: 28px 20px;
    }

    .process-step-number {
        font-size: 32px;
    }

    .process-card-title {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .process-card-description {
        font-size: 14px;
    }

    .process-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .process-subtitle {
        font-size: 14px;
    }
}
