/* Как стать партнёром */
.steps-section {
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.section-title span {
    color: #1a56db;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-bottom: 32px;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-item::after {
    content: '';
    position: absolute;
    top: 48px;
    left: 23px;
    width: 2px;
    bottom: 0;
    background: linear-gradient(to bottom, #e0e7ff, transparent);
}

.step-item:last-child::after {
    display: none;
}

.step-num {
    min-width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a56db, #2b6ee0);
    color: #fff;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-num {
    transform: scale(1.05);
}

.step-content {
    padding-top: 8px;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* Анимации AOS */
.aos {
    transition: all 0.6s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .steps-list {
        max-width: 100%;
    }
    
    .step-item {
        gap: 16px;
        padding-bottom: 24px;
    }
    
    .step-item::after {
        top: 42px;
        left: 20px;
    }
    
    .step-num {
        min-width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 16px;
    }
    
    .step-title {
        font-size: 15px;
    }
    
    .step-desc {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .step-item {
        gap: 14px;
        padding-bottom: 20px;
    }
    
    .step-item::after {
        top: 38px;
        left: 18px;
    }
    
    .step-num {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .step-content {
        padding-top: 4px;
    }
    
    .step-title {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .step-desc {
        font-size: 12px;
    }
}