/* =========================================
   06-PROCESS.CSS
   EVMT PROCESS SECTION - ISOLATED STYLES
   ========================================= */

#evmt-process {
    position: relative;
    background-color: var(--evmt-navy-dark, #050810);
    background-image: 
        radial-gradient(circle at 50% -10%, #0a1a3a 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(6, 15, 31, 0.4) 0%, transparent 50%),
        linear-gradient(180deg, var(--evmt-navy-dark, #050810) 0%, #060F1F 100%);
        
    color: var(--evmt-white, #ffffff);
    padding: 120px 20px;
    font-family: var(--font-primary);
    overflow: hidden;
    width: 100%;
    cursor: none; 
}

#evmt-process * {
    box-sizing: border-box;
    cursor: none;
}

/* --- BACKGROUND LAYERS --- */
#evmtp-canvas-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at 70% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 70% 50%, black 30%, transparent 80%);
}

#evmtp-cursor-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 999;
    pointer-events: none;
}

.evmtp-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, rgba(2, 4, 8, 0.2));
}

/* --- LAYOUT --- */
.evmtp-container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width, 1350px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* --- LEFT COLUMN --- */
.evmtp-left-col {
    position: sticky;
    top: 120px;
}

.evmtp-eyebrow {
    font-family: var(--font-secondary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--evmt-gold);
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    opacity: 0; 
    transform: translateY(10px);
}

.evmtp-heading {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 32px 0;
    color: #fff;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(10px);
}

.evmtp-highlight {
    background: linear-gradient(to right, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: evmtShine 6s linear infinite;
    font-weight: 800;
}

@keyframes evmtShine { to { background-position: 200% center; } }

.evmtp-desc {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(10px);
}

/* CTA BUTTON */
.evmtp-cta {
    position: relative; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    height: 56px; 
    padding: 0 40px; 
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 14px; 
    font-weight: 700; 
    text-transform: uppercase; 
    border-radius: 100px;
    cursor: none; 
    overflow: hidden;
    background: transparent;
    opacity: 0;
    transform: translateY(10px);
    transition: transform .3s ease, box-shadow .3s ease;
}

.evmtp-cta::before {
    content: "";
    position: absolute;
    z-index: -2;
    animation: eagleBeam 4s linear infinite;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 60deg, var(--evmt-gold) 160deg, #fff 180deg, transparent 200deg);
}

.evmtp-cta::after {
    content: "";
    position: absolute;
    inset: 1.5px;
    border-radius: 100px;
    z-index: -1;
    background: rgba(2, 17, 36, 0.95);
    transition: all 0.4s ease;
}

@keyframes eagleBeam { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.evmtp-cta span {
    position: relative; z-index: 5;
    color: var(--evmt-gold-light);
    text-shadow: 0 0 8px rgba(240, 208, 117, 0.4);
    letter-spacing: 0.5px;
}

.evmtp-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold, 0 4px 25px rgba(211,160,47,0.25));
}
.evmtp-cta:hover span { color: #FFFFFF; }

/* --- RIGHT COLUMN (TIMELINE) --- */
.evmtp-timeline {
    position: relative;
    padding-left: 20px;
    padding-top: 20px;
}

.evmtp-timeline::before {
    content: '';
    position: absolute;
    left: 49px; 
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 15%, rgba(255,255,255,0.1) 85%, rgba(255,255,255,0) 100%);
    z-index: 0;
}

.evmtp-step {
    position: relative;
    padding-left: 100px; 
    margin-bottom: 80px;
    opacity: 0.3; 
    filter: blur(2px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: translateX(20px);
}

.evmtp-step:last-child { margin-bottom: 0; }

.evmtp-step.active {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

/* Step Marker */
.evmtp-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    
    background: rgba(10, 20, 40, 0.6); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-family: var(--font-secondary);
    font-size: 14px; 
    font-weight: 600;
    letter-spacing: 0.5px;
    
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.evmtp-step.active .evmtp-marker {
    border-color: var(--evmt-gold);
    color: #fff;
    box-shadow: 0 0 20px rgba(211, 160, 47, 0.3), inset 0 0 10px rgba(211, 160, 47, 0.1);
    background: linear-gradient(145deg, rgba(6, 15, 31, 0.9), rgba(2, 6, 12, 0.9));
}

.evmtp-step-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
}

.evmtp-step-desc {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .evmtp-container { grid-template-columns: 1fr; gap: 60px; }
    .evmtp-left-col { position: static; text-align: center; margin-bottom: 60px; }
    .evmtp-desc { margin-left: auto; margin-right: auto; }
    
    #evmtp-canvas-container { 
        mask-image: none !important;
        -webkit-mask-image: none !important;
        opacity: 0.5; 
    }
}

@media (max-width: 480px) {
    #evmt-process { padding: 80px 20px; cursor: auto; }
    #evmt-process * { cursor: auto; }
    #evmtp-cursor-canvas { display: none; }
    
    .evmtp-heading { font-size: 2.2rem; }
    
    .evmtp-timeline::before { left: 29px; }
    .evmtp-marker { 
        left: 10px; width: 40px; height: 40px; 
        font-size: 12px; 
    }
    .evmtp-step { padding-left: 70px; margin-bottom: 50px; }
}
