/* ===========================
   TREATMENT PROCESS - process.css
   =========================== */

.treatment-process {
    padding: 80px 0;
    background-color: var(--light-gray);
}

/* ===========================
   КРОКИ ПРОЦЕСУ
   =========================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

/* Лінія між кроками */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--border-color));
    z-index: 0;
}

/* ===========================
   ОКРЕМИЙ КРОК
   =========================== */

.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

/* ===========================
   НОМЕР КРОКУ
   =========================== */

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(145, 208, 114, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(145, 208, 114, 0.5);
}

/* ===========================
   КОНТЕНТ КРОКУ
   =========================== */

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.step-content p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ===========================
   АДАПТИВНІСТЬ
   =========================== */

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-content h3 {
        font-size: 1rem;
    }

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