/* SECTION 5: THE PROCESS */
.process-section {
    position: relative;
    padding: 140px 0;
    background-color: #FFFFFF;
    overflow: hidden;
}

/* Magic Pattern Overlay */
.process-pattern-overlay { 
    position: absolute; /* Changed from relative to cover the whole section */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50%;
    background-position: center center;
    background-repeat: repeat-y;
    background-color: #FFFFFF;
    background-image: url('../assets/cube-patterns.png');  
    z-index: 1; /* Sits behind the container but above the section background */
    opacity: 0.3; /* Optional: adjust this to make it more or less subtle */
    pointer-events: none; /* Ensures users can still click cards/text through the overlay */
    /* Fixed Attachment added here */
    background-attachment: fixed;
}

.process-header {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 80px;
}

/* Strict Style Guide Match */
.process-header .section-head {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 42px; 
    line-height: 1.2;
    color: var(--primary); 
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
}

.process-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

/* Your Updated Step Number Style */
.step-number {
    font-family: 'League Spartan', sans-serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    /* Using your Primary-to-Transparent Gradient */
    background: linear-gradient(180deg, rgb(64 56 121 / 56%) 0%, rgba(160, 149, 238, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.process-step h3 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.process-step p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
}

.process-cta-wrap {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 80px;
}