/* Delivery Framework Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
}

.process-step {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: relative;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: var(--font-heading);
    /* Remove absolute positioning to fix alignment */
    top: auto;
    right: auto;
    transition: all 0.3s ease;
}

.process-card:hover .process-step {
    color: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    position: relative;
    z-index: 1;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Connecting line (Desktop only) */
@media (min-width: 1024px) {
    .process-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .process-card:hover::before {
        opacity: 1;
    }
}

/* Icon styling for Process Cards (Home Page variant) */
.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.step-icon i {
    width: 32px;
    height: 32px;
}

.process-card:hover .step-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}