/* Process Section Styles */
.process-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

/* Connecting Line (Desktop) */
.process-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(to right,
            rgba(0, 255, 127, 0) 0%,
            rgba(0, 255, 127, 0.2) 50%,
            rgba(0, 255, 127, 0) 100%);
    z-index: 1;
    display: block;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 127, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-num {
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.process-card:hover .step-num {
    color: rgba(0, 255, 127, 0.05);
    transform: scale(1.1) translateY(-10px);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1), rgba(0, 163, 255, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff7f;
    font-size: 1.6rem;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 255, 127, 0.1);
}

.process-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    word-break: keep-all;
}

.process-card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
}

/* Second row spacing for 6 items */
.process-grid>div:nth-child(n+4) {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-card {
        padding: 30px;
    }

    .step-num {
        font-size: 4rem;
    }

    .process-grid>div:nth-child(n+4) {
        margin-top: 0;
    }
}