/* Process Section */
.process {
    /* 🎨 Устанавливаем основной цвет текста для всей секции */
    color: #1f6071; 
    text-align: center;
    padding: 100px 0; 
}

.process h2 {
    color: #1f6071;
    margin-bottom: 60px;
}

/* 🛑 УДАЛЯЕМ ДИАГОНАЛЬНУЮ ЛИНИЮ */
.process-timeline:before {
    display: none; 
}

/* Контейнер временной шкалы */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
    padding-top: 30px; 
}

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

/* 1. СТИЛЬ НОМЕРА ШАГА */
.step-number {
    width: 60px;
    height: 60px;
    background: #1f6071; 
    color: white; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

/* ✨ ВОССТАНАВЛИВАЕМ ПОВОРОТ ЦИФРЫ */
.process-step:hover .step-number {
    transform: scale(1.1) rotate(15deg); /* Поворот на 15 градусов */
    background: #1f6071; 
}

/* 2. СТИЛЬ КОНТЕНТА ШАГА */
.step-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #1f6071;
    transform: none; 
    transition: all 0.3s ease;
}

/* ✨ ДЕЛАЕМ КАРТОЧКИ ДИНАМИЧНЫМИ */
.process-step:hover .step-content {
    /* Подъем и небольшой наклон */
    transform: translateY(-8px) rotate(-1deg); 
    
    /* Усиленное свечение */
    box-shadow: 0 15px 30px rgba(31, 96, 113, 0.3);
}

.step-content h3 {
    color: #1f6071;
}

.step-content p {
    color: #1f6071;
}


/* АДАПТИВНОСТЬ */
@media (max-width: 992px) {
    .process-timeline {
        flex-direction: column;
        gap: 30px;
        padding-top: 0;
    }
}