/* Proces Pracy Timeline */

.proces-pracy-section {
    background: #1d1d1d;
    padding: 80px 0;
    position: relative;
}

.proces-pracy-header {
    text-align: center;
    margin-bottom: 60px;
}

.proces-pracy-subtitle {
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ddd;
    margin-bottom: 20px;
    margin-top: 10px;
}

.proces-pracy-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
}

.proces-pracy-description {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Timeline Horizontal */
.proces-timeline {
    position: relative;
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: start;
    margin-top: 60px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -40px;
    top: 25px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
}

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.timeline-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 12px;
    color: #aaa;
    margin: 0;
    line-height: 1.5;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1200px) {
    .proces-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .timeline-step {
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        background: transparent;
    }

    .timeline-step:not(:last-child)::after {
        display: none;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .timeline-content h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .timeline-content p {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .proces-pracy-section {
        padding: 60px 0;
    }

    .proces-pracy-title {
        font-size: 32px;
    }

    .proces-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .timeline-step {
        padding: 25px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .timeline-content h4 {
        font-size: 15px;
    }

    .timeline-content p {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .proces-pracy-section {
        padding: 40px 0;
    }

    .proces-pracy-title {
        font-size: 26px;
    }

    .proces-pracy-description {
        font-size: 15px;
    }

    .proces-timeline {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .timeline-step {
        padding: 20px;
    }

    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .timeline-content h4 {
        font-size: 14px;
    }

    .timeline-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .proces-timeline {
        grid-template-columns: 1fr;
    }
}
