.recruitment-process {
    padding: 11.11vh 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.recruitment-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.recruitment-process .section-title {
    color: #000000;
    font-size: 3.8vh;
    font-weight: 800;
    margin-bottom: 2.22vh;
    text-align: center;
    line-height: 1.2;
}

.recruitment-process .title-highlight {
    color: #b3ce3a;
}

.recruitment-process .section-header {
    text-align: center;
    margin-bottom: 7.41vh;
    position: relative;
    z-index: 2;
}

.recruitment-process .section-badge-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.83vw;
    margin-bottom: 2.22vh;
}

.recruitment-process .section-line {
    width: 2.08vw;
    height: 0.09vh;
    background: linear-gradient(90deg, transparent, #000000, transparent);
    border-top: 0.09vh solid #000000;
}

.recruitment-process .section-category {
    font-family: 'Inter', sans-serif;
    font-size: 1.3vh;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.16vh;
}

.recruitment-process .section-subtitle {
    color: #545454;
    font-size: 1.8vh;
    line-height: 1.6;
    max-width: 26.04vw;
    margin: 0 auto 2.96vh;
    opacity: 0.8;
}

.modern-process-timeline {
    position: relative;
    max-width: 62.5vw;
    margin: 0 auto;
    padding: 0 1.04vw;
}

.timeline-container {
    position: relative;
    padding: 3.7vh 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0.104vw;
    height: 100%;
    background: linear-gradient(180deg, #b3ce3a 0%, rgba(179, 206, 58, 0.3) 50%, #b3ce3a 100%);
    border-radius: 0.052vw;
}

.process-step {
    position: relative;
    margin-bottom: 4.63vh;
    display: flex;
    align-items: center;
    gap: 2.08vw;
    opacity: 0;
    transform: translateY(2.78vh);
    transition: all 0.8s cubic-bezier(0.2, 0.65, 0.2, 1);
    padding-inline: 6% !important;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.step-marker {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.11vh;
    flex-shrink: 0;
}

.step-number {
    width: 5vh;
    height: 5vh;
    background: linear-gradient(135deg, #b3ce3a 0%, #9bb832 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.6vh;
    box-shadow: 0 0.74vh 2.22vh rgba(179, 206, 58, 0.3);
    transition: all 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 1.11vh 2.96vh rgba(179, 206, 58, 0.4);
}

.step-content {
    background: white;
    border-radius: 1.67vh;
    padding: 2.22vh;
    box-shadow: 0 0.74vh 2.96vh rgba(0, 0, 0, 0.08);
    border: 0.052vw solid rgba(226, 232, 240, 0.5);
    flex: 1;
    max-width: 26.04vw;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateY(-0.37vh);
    box-shadow: 0 1.48vh 4.44vh rgba(0, 0, 0, 0.12);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.48vh;
    gap: 1.48vh;
}

.step-header h3 {
    font-size: 1.63vh;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.step-duration {
    background: linear-gradient(135deg, #b3ce3a, #9bb832);
    color: white;
    padding: 0.8vh 1.4vh;
    border-radius: 1.85vh;
    font-size: 1vh;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.8vh;
}

.step-duration .step-icon {
    width: 2vh;
    height: 2vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: -0.1vh;
}

.step-duration .step-icon svg {
    color: white;
    width: 1.2vh;
    height: 1.2vh;
    vertical-align: middle;
}

.step-content p {
    color: #545454;
    font-size: 1.6vh;
    line-height: 1.5;
    margin-bottom: 1.48vh;
}

.step-details {
    display: flex;
    gap: 0.74vh;
    flex-wrap: wrap;
}

.detail-tag {
    background: rgba(179, 206, 58, 0.1);
    color: #b3ce3a;
    padding: 0.6vh 1.4vh;
    border-radius: 1.48vh;
    font-size: 1vh;
    font-weight: 600;
    border: 0.052vw solid rgba(179, 206, 58, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover .detail-tag {
    background: #b3ce3a;
    color: white;
    transform: translateY(-0.185vh);
}

@media (max-width: 480px) {
    .recruitment-process {
        padding: 6vh 4vw !important;
    }

    .recruitment-process .section-header {
        margin-bottom: 4vh !important;
    }

    .recruitment-process .section-title {
        font-size: 2.5vh !important;
        margin-bottom: 2vh !important;
    }

    .recruitment-process .section-subtitle {
        font-size: 1.2vh !important;
        max-width: 95% !important;
        margin: 0 auto 2vh auto !important;
    }

    .recruitment-process .section-badge-new {
        gap: 2vw !important;
        margin-bottom: 2vh !important;
    }

    .recruitment-process .section-line {
        width: 4vw !important;
        height: 0.1vh !important;
    }

    .recruitment-process .section-category {
        font-size: 1.1vh !important;
    }

    .modern-process-timeline {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .timeline-container {
        padding: 2vh 0 !important;
    }

    .timeline-line {
        left: 4vw !important;
        width: 0.3vw !important;
    }

    .process-step {
        flex-direction: row !important;
        gap: 3vw !important;
        margin-bottom: 3vh !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .process-step:nth-child(even) {
        flex-direction: row !important;
    }

    .step-marker {
        position: absolute !important;
        left: 4vw !important;
        transform: translateX(-50%) !important;
        z-index: 3 !important;
    }

    .step-number {
        width: 5vh !important;
        height: 5vh !important;
        font-size: 1.8vh !important;
    }

    .step-icon {
        width: 4vh !important;
        height: 4vh !important;
        margin-top: 1vh !important;
    }

    .step-content {
        margin-left: 8vw !important;
        max-width: calc(100% - 8vw) !important;
        padding: 1.8vh 2.5vw !important;
        border-radius: 1.2vh !important;
    }

    .step-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.8vh !important;
        margin-bottom: 1.5vh !important;
    }

    .step-header h3 {
        font-size: 1.6vh !important;
        margin-bottom: 0.3vh !important;
    }

    .step-duration {
        font-size: 1vh !important;
        padding: 0.6vh 1.2vh !important;
        align-self: flex-start !important;
        gap: 0.6vh !important;
        border-radius: 1.2vh !important;
    }

    .step-duration .step-icon {
        width: 1.8vh !important;
        height: 1.8vh !important;
        margin-top: -0.05vh !important;
    }

    .step-duration .step-icon svg {
        width: 1vh !important;
        height: 1vh !important;
        vertical-align: middle !important;
    }

    .step-content p {
        font-size: 1.6vh !important;
        line-height: 1.5 !important;
        margin-bottom: 2vh !important;
    }

    .step-details {
        gap: 1vh !important;
    }

    .detail-tag {
        font-size: 1.1vh !important;
        padding: 0.8vh 1.5vh !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .recruitment-process {
        padding: 8vh 6vw !important;
    }

    .recruitment-process .section-title {
        font-size: 3.5vh !important;
    }

    .recruitment-process .section-subtitle {
        font-size: 1.5vh !important;
        max-width: 85% !important;
    }

    .modern-process-timeline {
        max-width: 95% !important;
    }

    .process-step {
        margin-bottom: 5vh !important;
        gap: 2.5vw !important;
    }

    .step-content {
        padding: 2.2vh 2.5vw !important;
        max-width: 30vw !important;
    }

    .step-header h3 {
        font-size: 1.7vh !important;
    }

    .step-content p {
        font-size: 1.35vh !important;
    }

    .step-number {
        width: 4.5vh !important;
        height: 4.5vh !important;
        font-size: 1.6vh !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .recruitment-process {
        padding: 9vh 4vw !important;
    }

    .modern-process-timeline {
        max-width: 90% !important;
    }

    .recruitment-process .section-title {
        font-size: 3.6vh !important;
    }

    .recruitment-process .section-subtitle {
        font-size: 1.55vh !important;
        max-width: 75% !important;
    }

    .process-step {
        gap: 2vw !important;
    }

    .step-content {
        max-width: 28vw !important;
    }
}
