/* =========================
   HOW WE WORK SECTION
========================= */
.how-we-work-section {
    padding: 60px 2%;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.how-we-work-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(126, 217, 87, 0.15);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.how-we-work-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(108, 92, 231, 0.15);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.how-we-work-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* LEFT COLUMN */
.how-we-work-left {
    flex: 1 1 600px;
}

.how-we-work-header {
    text-align: left;
    margin-bottom: 40px;
}


.expertise-header .section-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.how-we-work-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--color-white);
}

.how-we-work-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
}

/* PROCESS GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(126, 217, 87, 0.15), rgba(108, 92, 231, 0.15));
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 16px;
    z-index: 0;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 122, 25, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.process-card .process-icon {
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.process-card .process-icon img {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon img {
    filter: drop-shadow(0 0 12px var(--color-orange));
}

.process-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.process-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* RIGHT COLUMN IMAGE */
.how-we-work-right {
    flex: 1 1 400px;
    text-align: center;
}

.how-we-work-right img {
    width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .how-we-work-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .how-we-work-header h2 {
        font-size: 32px;
    }

    .how-we-work-header p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .how-we-work-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .how-we-work-left,
    .how-we-work-right {
        flex: 1 1 100%;
    }

    .how-we-work-header h2 {
        font-size: 28px;
    }

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

@media (max-width: 480px) {
    .process-card .process-icon img {
        width: 50px;
        height: 50px;
    }
}
