/* CSS cho cấu trúc và giao diện quy trình 5 bước */
.process-steps-wrapper {
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
    max-width: 1600px;
    margin: 0 auto;
}

.process-steps-wrapper * {
    box-sizing: border-box;
}

.process-steps-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    margin: 0 auto;
}

.process-step-card {
    position: relative;
    background-color: #f8fafc;
    border: 1.5px solid var(--color-teal);
    border-radius: 16px;
    padding: 15px 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.step-number {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-teal);
    line-height: 1;
}

.step-dot {
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.step-title {
	font-family: 'Inter 24';
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.4;
}

.step-desc {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Hiệu ứng Hover tương tác */
.process-step-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.08);
}

.process-step-card:hover .step-dot {
    background-color: var(--color-teal);
}

/* Responsive cho các loại màn hình */
@media (max-width: 1024px) {
    .process-steps-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

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

@media (max-width: 480px) {
    .process-steps-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .process-step-card {
        padding: 20px;
    }
}