.home-process {
    background: linear-gradient(135deg, #0a2540 0%, #1a3c5e 100%);
    color: #fff;
}

.home-process .section-title {
    color: #fff;
}

.home-process .section-desc {
    color: rgba(255,255,255,0.7);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

/* Đường kẻ nối các bước */
.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1); /* Chữ chìm sang trọng */
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.step-number:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: -20px auto 0;
    box-shadow: 0 0 0 5px rgba(173, 138, 78, 0.2);
}

.step-item:hover .step-number {
    color: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}

.step-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    .process-steps:before {
        display: none;
    }
}
