/* PROCESS PAGE STYLES */

.process-hero {
    text-align: center;
    padding: 120px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.process-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.process-hero p {
    font-size: 20px;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Timeline Layout */
.timeline-section {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 100px;
    bottom: 100px;
    width: 2px;
    background: rgba(0, 0, 0, 0.06);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
}

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

.step-content {
    width: 42%;
    padding: 40px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
}

.step-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #0071e3;
    border: 4px solid #fbfbfd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 3;
}

.step-image {
    width: 42%;
    text-align: center;
}

.step-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.svg-container {
    background: #fbfbfd;
    border-radius: 24px;
    padding: 40px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03), 0 20px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.svg-container svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

/* Alternate Layout */
.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.step-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #0071e3;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 800px) {
    .process-hero h1 {
        font-size: 40px;
    }

    .timeline-line {
        left: 30px;
        transform: none;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .step-marker {
        left: 30px;
        top: 0;
        transform: translateX(-50%);
        margin-top: 0;
    }

    .step-content {
        width: 100%;
        margin-bottom: 30px;
    }

    .step-image {
        width: 100%;
        margin-top: 20px;
    }
}